/* Pricing Card Base */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #fdba74;
}

/* Plan Popular (Pro Flota) */
.pricing-card.popular {
    border: 2px solid #f97316;
    background: linear-gradient(to bottom, #fff7ed, white);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(249, 115, 22, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

/* Tipografía */
.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.plan-period {
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

.plan-desc {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Lista de Features */
.features-list {
    margin: 2rem 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    color: #334155;
    font-size: 0.95rem;
}

.check-icon {
    color: #10b981; /* green-500 */
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Botones */
.plan-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569;
}
.btn-outline:hover {
    border-color: #0f172a;
    color: #0f172a;
}

.btn-primary {
    background: #f97316;
    color: white;
    border: 2px solid #f97316;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
}