body {
    background-color: #f5f7fb;
    color: #1f2937;
}

/* HERO */
.hero-section {
    min-height: 92vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-text {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.hero-form-card {
    border-radius: 24px;
}

/* BLOQUES */
.section-soft {
    background-color: #f8fafc;
}

.section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.section-desc {
    max-width: 720px;
}

/* TRUST */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.trust-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    font-weight: 600;
    color: #334155;
}

/* CARDS */
.info-card,
.step-card,
.benefit-card,
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.info-card:hover,
.step-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

/* FORM */
.form-control {
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

/* BOTONES */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.btn-light {
    border-radius: 12px;
    font-weight: 600;
}

/* LEGAL */
.legal-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 22px;
    padding: 32px;
}

/* FAQ */
.faq-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

/* CTA */
.cta-final {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.price-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 16px;
}

.price-label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.1;
    margin-top: 4px;
}

.price-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
}

/* FOOTER */
footer {
    background: #ffffff !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2.3rem;
    }

    .hero-features {
        margin-bottom: 12px;
    }
}