/**
 * BRA Benefícios - Landing V2 (White Mode)
 * Paleta: navy #19395E / azul #004085 / verde #4CAF50 / dourado #FFD700
 */

/* ───── Base ───── */
.lv2-body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ───── Utilities ───── */
.lv2-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #004085;
    border: 1px solid rgba(0, 64, 133, 0.25);
    border-radius: 100px;
    background: rgba(0, 64, 133, 0.06);
}

.lv2-pill--small {
    padding: 0.35rem 0.9rem;
    font-size: 0.65rem;
}

.lv2-pill--dark {
    color: #004085;
    border-color: rgba(0, 64, 133, 0.3);
    background: rgba(0, 64, 133, 0.08);
}

.lv2-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.lv2-dot--green { background: #4CAF50; }
.lv2-dot--blue { background: #187ee0; }

/* ───── Buttons ───── */
.lv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    font-family: inherit;
}

.lv2-btn--primary {
    background: linear-gradient(135deg, #004085, #187ee0);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 64, 133, 0.3);
}

.lv2-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 64, 133, 0.4);
    filter: brightness(1.05);
}

.lv2-btn--outline {
    background: transparent;
    color: #19395E;
    border: 2px solid rgba(25, 57, 94, 0.25);
}

.lv2-btn--outline:hover {
    border-color: #004085;
    background: rgba(0, 64, 133, 0.04);
    transform: translateY(-2px);
}

.lv2-btn--ghost {
    background: transparent;
    color: #19395E;
    border: 2px solid rgba(25, 57, 94, 0.2);
}

.lv2-btn--ghost:hover {
    border-color: #004085;
    background: rgba(0, 64, 133, 0.04);
}

.lv2-btn--sm { padding: 0.6rem 1.5rem; font-size: 0.8125rem; }
.lv2-btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.lv2-btn--block { width: 100%; }

/* ───── Sections ───── */
.lv2-section { padding: 5rem 0; }

.lv2-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lv2-section--dark {
    background: #f8fafc;
}

.lv2-section--darker {
    background: #ffffff;
}

.lv2-section--light {
    background: linear-gradient(180deg, #f0f7ff 0%, #f0fdf4 50%, #f8fafc 100%);
}

.lv2-section--cta {
    background: linear-gradient(135deg, #19395E, #004085);
    padding: 5rem 0;
}

/* ───── Titles ───── */
.lv2-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #19395E;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1rem;
}

.lv2-title--center { text-align: center; }

.lv2-title--accent { color: #4CAF50; }

.lv2-title--dark { color: #19395E; }
.lv2-title--accent-dark { color: #004085; }

.lv2-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 56ch;
}

.lv2-subtitle--center { text-align: center; margin-left: auto; margin-right: auto; }
.lv2-subtitle--dark { color: #6b7280; }

.lv2-center-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.lv2-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
}

.lv2-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 64, 133, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(76, 175, 80, 0.06), transparent 50%),
        linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    z-index: 0;
}

.lv2-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

/* Split hero (2 columns: text + image) */
.lv2-hero--split {
    text-align: left;
    padding: 7rem 2rem 2rem;
}

.lv2-hero--split .lv2-hero__bg {
    background:
        radial-gradient(ellipse 60% 55% at 20% 20%, rgba(0, 64, 133, 0.07), transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 70%, rgba(76, 175, 80, 0.06), transparent 50%),
        linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%, #f0fdf4 100%);
}

.lv2-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lv2-hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lv2-hero--split .lv2-hero__sub {
    margin: 0 0 2rem;
}

.lv2-hero--split .lv2-hero__ctas {
    justify-content: flex-start;
}

.lv2-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lv2-hero__image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(25, 57, 94, 0.12), 0 4px 16px rgba(25, 57, 94, 0.06);
}

@media (max-width: 900px) {
    .lv2-hero--split {
        text-align: center;
    }

    .lv2-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lv2-hero__text {
        align-items: center;
        order: 2;
    }

    .lv2-hero__image {
        order: 1;
    }

    .lv2-hero__image img {
        max-width: 360px;
    }

    .lv2-hero--split .lv2-hero__ctas {
        justify-content: center;
    }
}

.lv2-hero__title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 800;
    color: #19395E;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 1.5rem 0 1.25rem;
}

.lv2-hero__title--accent { color: #4CAF50; }

.lv2-hero__sub {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.lv2-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats bar */
.lv2-stats {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3.5rem;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: 1px solid rgba(25, 57, 94, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(25, 57, 94, 0.06);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lv2-stats__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1.25rem;
}

.lv2-stats__item strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #19395E;
    line-height: 1.2;
}

.lv2-stats__item span {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lv2-stats__icon {
    width: 32px;
    height: 32px;
    color: #4CAF50;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TWO-COL (Conheça / Clínicas)
   ═══════════════════════════════════════════ */
.lv2-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lv2-two-col--reverse .lv2-two-col__text { order: 2; }
.lv2-two-col--reverse .lv2-two-col__cards { order: 1; }

.lv2-two-col__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 900px) {
    .lv2-two-col { grid-template-columns: 1fr; }
    .lv2-two-col--reverse .lv2-two-col__text { order: 1; }
    .lv2-two-col--reverse .lv2-two-col__cards { order: 2; }
    .lv2-two-col__cards { grid-template-columns: 1fr; }
}

/* Feature cards */
.lv2-feature-card {
    background: #ffffff;
    border: 1px solid rgba(25, 57, 94, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(25, 57, 94, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lv2-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25, 57, 94, 0.08);
    border-color: rgba(0, 64, 133, 0.15);
}

.lv2-feature-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 64, 133, 0.08);
    color: #004085;
    margin-bottom: 1rem;
}

.lv2-feature-card__icon svg { width: 20px; height: 20px; }

.lv2-feature-card__icon--green { background: rgba(76, 175, 80, 0.1); color: #388E3C; }
.lv2-feature-card__icon--gold { background: rgba(255, 215, 0, 0.1); color: #b8860b; }

.lv2-feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #19395E;
    margin: 0 0 0.5rem;
}

.lv2-feature-card p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════
   TRIO CARDS (Cuidado ideal)
   ═══════════════════════════════════════════ */
.lv2-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .lv2-trio-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.lv2-trio-card {
    background: #ffffff;
    border: 1px solid rgba(25, 57, 94, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(25, 57, 94, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lv2-trio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25, 57, 94, 0.08);
}

.lv2-trio-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 64, 133, 0.08);
    color: #004085;
    margin: 0 auto 1.25rem;
}

.lv2-trio-card__icon svg { width: 24px; height: 24px; }

.lv2-trio-card__icon--green { background: rgba(76, 175, 80, 0.1); color: #388E3C; }
.lv2-trio-card__icon--gold { background: rgba(255, 215, 0, 0.1); color: #b8860b; }

.lv2-trio-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #19395E;
    margin: 0 0 0.6rem;
}

.lv2-trio-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════
   PLANS
   ═══════════════════════════════════════════ */
.lv2-plans { max-width: 1080px; margin: 0 auto; }

.lv2-plans__toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0.35rem;
    background: rgba(25, 57, 94, 0.08);
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto 2.5rem;
}

.lv2-plans__toggle-btn {
    border: none;
    background: transparent;
    padding: 0.65rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4b5563;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lv2-plans__toggle-btn--active {
    background: #fff;
    color: #004085;
    box-shadow: 0 2px 8px rgba(25, 57, 94, 0.12);
}

.bra-planos-modalidades--familiar .lv2-plans__toggle {
    background: rgba(76, 175, 80, 0.12);
}

.bra-planos-modalidades--familiar .lv2-plans__toggle-btn--active {
    color: #2e7d32;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.lv2-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    .lv2-plans__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.lv2-plans__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-top: 2.5rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Plan cards */
.lv2-plan-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(25, 57, 94, 0.08);
    box-shadow: 0 4px 20px rgba(25, 57, 94, 0.06);
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lv2-plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #004085, #187ee0, #4CAF50);
}

.lv2-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25, 57, 94, 0.1);
}

.lv2-plan-card--popular {
    border: 2px solid rgba(0, 64, 133, 0.3);
    box-shadow: 0 8px 32px rgba(0, 64, 133, 0.1);
    padding-top: 2.5rem;
}

.lv2-plan-card--popular::before {
    height: 5px;
    background: linear-gradient(90deg, #004085, #FFD700, #4CAF50);
}

.lv2-plan-card__ribbon {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #004085, #187ee0);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

.lv2-plan-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #19395E;
    margin: 0 0 0.5rem;
}

.lv2-plan-card__desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.45;
    margin: 0 0 0.75rem;
}

.lv2-plan-card__badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    margin: 0 auto 0.75rem;
}

.bra-planos-modalidades--individual .bra-plano-trio-card__badge--familiar { display: none !important; }
.bra-planos-modalidades--familiar .bra-plano-trio-card__badge--individual { display: none !important; }
.bra-planos-modalidades--individual .bra-plano-trio-pane--familiar { display: none !important; }
.bra-planos-modalidades--familiar .bra-plano-trio-pane--individual { display: none !important; }

.bra-plano-trio-card__badge--individual {
    background: rgba(0, 64, 133, 0.1);
    color: #004085;
}

.bra-plano-trio-card__badge--familiar {
    background: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
}

.lv2-plan-card__price { margin: 0.25rem 0; }

.lv2-plan-card__amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #004085;
    letter-spacing: -0.03em;
}

.lv2-plan-card__amount--green { color: #2e7d32; }

.lv2-plan-card__period {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: 2px;
}

.lv2-plan-card__legend {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(25, 57, 94, 0.08);
}

.lv2-plan-card__section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #19395E;
    margin: 0 0 0.65rem;
    text-align: left;
    width: 100%;
}

.lv2-plan-card__features {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    text-align: left;
    flex: 1;
    width: 100%;
}

.lv2-plan-card__features--extra { margin-top: -0.25rem; }

.lv2-plan-card__features li {
    font-size: 0.8375rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 0.45rem;
    padding-left: 1.5rem;
    position: relative;
}

.lv2-plan-card__features li::before {
    content: '\2665';
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 0.6rem;
    color: #187ee0;
    line-height: 1.35;
}

.bra-planos-modalidades--familiar .lv2-plan-card__features li::before {
    color: #4CAF50;
}

.bra-planos-modalidades--familiar .lv2-plan-card::before {
    background: linear-gradient(90deg, #2e7d32, #4CAF50, #81c784);
}

.bra-planos-modalidades--familiar .lv2-plan-card--popular::before {
    background: linear-gradient(90deg, #2e7d32, #FFD700, #4CAF50);
}

.bra-planos-modalidades--familiar .lv2-btn--primary {
    background: linear-gradient(135deg, #2e7d32, #4CAF50);
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3);
}

.lv2-plan-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    width: 100%;
    padding-top: 1rem;
}

/* ═══════════════════════════════════════════
   PILARES (5 cards)
   ═══════════════════════════════════════════ */
.lv2-pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .lv2-pilares-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .lv2-pilares-grid { grid-template-columns: 1fr 1fr; }
}

.lv2-pilar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(25, 57, 94, 0.08);
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(25, 57, 94, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lv2-pilar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25, 57, 94, 0.08);
}

.lv2-pilar-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 64, 133, 0.08);
    color: #004085;
    margin-bottom: 1rem;
}

.lv2-pilar-card__icon svg { width: 22px; height: 22px; }

.lv2-pilar-card__icon--green { background: rgba(76, 175, 80, 0.1); color: #388E3C; }
.lv2-pilar-card__icon--gold { background: rgba(255, 215, 0, 0.1); color: #b8860b; }

.lv2-pilar-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #19395E;
    margin: 0 0 0.35rem;
}

.lv2-pilar-card p {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.45;
    margin: 0 0 0.75rem;
    flex: 1;
}

.lv2-pilar-card__cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #004085;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════ */
.lv2-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .lv2-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .lv2-steps { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

.lv2-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(25, 57, 94, 0.08);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(25, 57, 94, 0.04);
}

.lv2-step__num {
    width: 42px;
    height: 42px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #004085, #187ee0);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.lv2-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #19395E;
    margin: 0 0 0.5rem;
}

.lv2-step p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.lv2-faq-wrap { max-width: 780px; }

.lv2-faq__item {
    border-bottom: 1px solid rgba(25, 57, 94, 0.08);
}

.lv2-faq__item:first-child {
    border-top: 1px solid rgba(25, 57, 94, 0.06);
}

.lv2-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #19395E;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.lv2-faq__trigger:hover { color: #004085; }

.lv2-faq__icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: #004085;
    transition: transform 0.25s ease;
}

.lv2-faq__item.open .lv2-faq__icon { transform: rotate(45deg); }

.lv2-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0;
}

.lv2-faq__item.open .lv2-faq__answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.lv2-faq__answer p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════
   CTA FINAL (this one stays dark for contrast)
   ═══════════════════════════════════════════ */
.lv2-cta-final {
    text-align: center;
    padding: 2rem 0;
}

.lv2-section--cta .lv2-title { color: #fff; }
.lv2-section--cta .lv2-subtitle { color: rgba(255, 255, 255, 0.8); }

.lv2-section--cta .lv2-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.lv2-section--cta .lv2-btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.lv2-cta-final__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}
