.reveal { opacity: 1 !important; transform: none !important; }
  .kicker, .hero__title, .hero__subtitle, .hero__cta-row, .hero__trust, .hero__visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }



:root {
    --gold-300:   #fcd34d;
    --gold-400:   #ffd34a;
    --gold-500:   #ffc218;
    --gold-600:   #f0b400;
    --gold-700:   #c89500;

    --navy-100:   #e0e4f5;
    --navy-200:   #c1c9ea;
    --navy-300:   #8a96d1;
    --navy-400:   #5b67a6;
    --navy-500:   #4154ad;
    --navy-600:   #364782;
    --navy-700:   #2f3968;
    --navy-800:   #26315c;
    --navy-900:   #1c2447;
    --navy-950:   #131932;
    --navy-deep:  #0c1124;

    --ink-white:  #f7f9ff;
    --ink-soft:   rgba(247, 249, 255, .82);
    --ink-muted:  rgba(202, 212, 247, .68);
    --ink-faint:  rgba(202, 212, 247, .42);

    --line:        rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .14);
    --gold-line:   rgba(255, 194, 24, .32);

    --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25), 0 1px 3px rgba(0, 0, 0, .15);
    --shadow:    0 14px 36px rgba(0, 0, 0, .35), 0 4px 12px rgba(0, 0, 0, .18);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, .45), 0 10px 26px rgba(0, 0, 0, .22);
    --shadow-gold: 0 14px 32px rgba(255, 194, 24, .30), 0 3px 10px rgba(255, 194, 24, .16);

    --t-fast: 200ms cubic-bezier(.4, 0, .2, 1);
    --t:      320ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 600ms cubic-bezier(.22, .61, .36, 1);

    --ff:        'Estedad', system-ui, sans-serif;
    --ff-display: 'Estedad', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: var(--ff);
    color: var(--ink-soft);
    background: var(--navy-deep);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: rgba(255, 194, 24, .32); color: var(--ink-white); }


/* =========================================================================
   ATMOSPHERIC BACKGROUND — deep navy with gold spotlights
   ========================================================================= */
.atmosphere {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(900px 600px at 88% 12%, rgba(255, 194, 24, .14), transparent 65%),
        radial-gradient(700px 500px at 8% 88%, rgba(65, 84, 173, .26), transparent 60%),
        radial-gradient(500px 400px at 50% 50%, rgba(255, 211, 74, .04), transparent 70%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-950) 50%, var(--navy-deep) 100%);
}

.atmosphere::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 1200px 800px at 50% 30%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 1200px 800px at 50% 30%, black 30%, transparent 70%);
    opacity: .55;
}


/* =========================================================================
   DECORATIVE ARCS — thin curved gold lines flowing between sections
   ========================================================================= */
.arc {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.arc path {
    fill: none;
    stroke: url(#arcGold);
    stroke-width: 1.4;
    stroke-linecap: round;
    opacity: .8;
}

.arc--mirror path {
    stroke: url(#arcGoldMirror);
}


/* =========================================================================
   CONTAINER
   ========================================================================= */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
}

@media (max-width: 640px) {
    .wrap { padding: 0 18px; }
}


/* =========================================================================
   BACK BAR — sticky top
   ========================================================================= */
.back-bar {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 18px 0 14px;
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    background: rgba(12, 17, 36, .72);
    border-bottom: 1px solid var(--line);
}

.back-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-strong);
    color: var(--ink-white);
    font-weight: 700;
    font-size: .9rem;
    backdrop-filter: blur(8px);
    transition: all var(--t-fast);
}

.back-btn:hover {
    transform: translateY(-1px);
    border-color: var(--gold-line);
    color: var(--gold-300);
    background: rgba(255, 194, 24, .06);
}

.back-btn i { font-size: 1em; transition: transform var(--t-fast); }
.back-btn:hover i { transform: translateX(3px); }

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .02em;
}

.brand-mark__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 0 0 3px rgba(255, 194, 24, .18);
}


/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative;
    padding: 44px 0 70px;
    overflow: hidden;
}

.hero__arc {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 600px;
    z-index: 0;
}

.hero__arc path {
    opacity: .35;
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.hero__copy { max-width: 640px; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    border-radius: 999px;
    background: rgba(255, 194, 24, .10);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    animation: rise .7s var(--t-slow) .15s both;
}

.kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(255, 194, 24, .22), 0 0 14px rgba(255, 194, 24, .55);
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 900;
    line-height: 1.35;
    color: var(--ink-white);
    letter-spacing: -.012em;
    margin: 0 0 26px;
    animation: rise .9s var(--t-slow) .25s both;
}

.hero__title em {
    position: relative;
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.hero__title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(255, 194, 24, 0) 0%,
        rgba(255, 194, 24, .55) 30%,
        rgba(255, 194, 24, .75) 70%,
        rgba(255, 194, 24, 0) 100%);
    border-radius: 999px;
}

.hero__subtitle {
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 2;
    max-width: 560px;
    margin: 0 0 32px;
    animation: rise 1s var(--t-slow) .35s both;
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
    animation: rise 1s var(--t-slow) .45s both;
}

.cta-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
    color: var(--navy-900);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: transform var(--t), box-shadow var(--t);
}

.cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -85%;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-22deg);
    transition: left .85s ease;
    pointer-events: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(255, 194, 24, .42), 0 4px 14px rgba(255, 194, 24, .26);
}

.cta-primary:hover::before { left: 130%; }

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: var(--ink-white);
    font-weight: 700;
    font-size: 1rem;
    border: 1.5px solid var(--line-strong);
    backdrop-filter: blur(8px);
    transition: all var(--t-fast);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .08);
    border-color: var(--gold-line);
    color: var(--gold-300);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--ink-muted);
    font-size: .85rem;
    animation: rise 1s var(--t-slow) .55s both;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.hero__trust-item i {
    color: var(--gold-400);
    font-size: 1em;
}


/* =========================================================================
   HERO VISUAL — orbital composition
   ========================================================================= */
.hero__visual {
    position: relative;
    height: 520px;
    animation: heroVisualIn 1.2s var(--t-slow) .35s both;
}

@media (max-width: 980px) {
    .hero__visual {
        height: 440px;
        /* Clip the orbit + floating bubbles so they don't poke past the
           viewport edge once the grid collapses to one column. */
        overflow: hidden;
    }
}

@keyframes heroVisualIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Orbit ring (decorative gold circle) */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 194, 24, .18);
    animation: orbit 80s linear infinite;
}

.orbit::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 18px rgba(255, 194, 24, .85);
}

@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

@media (max-width: 980px) { .orbit { width: 360px; height: 360px; } }
@media (max-width: 540px) { .orbit { width: 300px; height: 300px; } }
@media (max-width: 380px) { .orbit { width: 260px; height: 260px; } }

/* Voucher card (centerpiece) */
.voucher {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: min(380px, 90%);
    aspect-ratio: 1.62 / 1;
    border-radius: 22px;
    padding: 24px 24px 22px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 211, 74, .18), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(65, 84, 173, .25), transparent 50%),
        linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255, 194, 24, .14),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 3;
    animation: voucherFloat 8s ease-in-out infinite;
}

@keyframes voucherFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); }
    50%      { transform: translate(-50%, -54%) rotate(-3deg); }
}

.voucher::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(255,194,24,.04) 0, rgba(255,194,24,.04) 1px, transparent 1px, transparent 14px),
        repeating-linear-gradient(-45deg, rgba(255,194,24,.04) 0, rgba(255,194,24,.04) 1px, transparent 1px, transparent 14px);
    pointer-events: none;
}

.voucher__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 1;
}

.voucher__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-300);
    font-weight: 900;
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.voucher__chip {
    width: 32px;
    height: 24px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.voucher__chip::before, .voucher__chip::after {
    content: "";
    position: absolute;
    background: rgba(28, 36, 71, .35);
    left: 4px; right: 4px; height: 1px;
}

.voucher__chip::before { top: 6px; }
.voucher__chip::after  { top: 14px; }

.voucher__body { position: relative; z-index: 1; margin-top: auto; }

.voucher__label {
    font-size: .64rem;
    color: rgba(255,255,255,.42);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.voucher__code {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-300);
    letter-spacing: .14em;
    margin-bottom: 14px;
    direction: ltr;
    text-align: left;
    text-shadow: 0 0 14px rgba(255,194,24,.35);
}

.voucher__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voucher__meta-item { display: flex; flex-direction: column; gap: 3px; }
.voucher__meta-label {
    font-size: .62rem;
    color: rgba(255,255,255,.42);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.voucher__meta-value { color: var(--ink-white); font-weight: 800; font-size: .85rem; }
.voucher__meta-value--gold { color: var(--gold-300); font-size: 1.05rem; }

/* Mode bubbles around the voucher */
.bubble {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(54, 71, 130, .55), rgba(28, 36, 71, .85));
    border: 1px solid var(--gold-line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    font-size: 1.6rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .42);
    z-index: 4;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble--instructor {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.bubble--students {
    bottom: 12%;
    left: -10px;
    animation-delay: 2s;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@media (max-width: 980px) {
    .bubble { width: 78px; height: 78px; font-size: 1.3rem; }
}
@media (max-width: 540px) {
    .bubble { width: 66px; height: 66px; font-size: 1.1rem; }
    /* Pull bubbles flush so they don't ride the clipped edge */
    .bubble--instructor { right: 0; }
    .bubble--students   { left: 0; }
}


/* =========================================================================
   STATS BAR — large numbers row below hero
   ========================================================================= */
.stats-bar {
    position: relative;
    margin-top: 28px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg,
            rgba(255, 194, 24, .03) 0%,
            transparent 50%,
            rgba(255, 194, 24, .03) 100%);
}

.stats-bar::before, .stats-bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 194, 24, .35) 30%,
        rgba(255, 194, 24, .55) 50%,
        rgba(255, 194, 24, .35) 70%,
        transparent);
}

.stats-bar::before { top: -1px; }
.stats-bar::after  { bottom: -1px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}

@media (max-width: 820px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
}

.stat {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg,
        transparent,
        var(--gold-line) 50%,
        transparent);
}

@media (max-width: 820px) {
    .stat:not(:last-child)::after { display: none; }
    .stat:nth-child(odd)::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 50px;
        background: linear-gradient(180deg, transparent, var(--gold-line) 50%, transparent);
    }
}

.stat__value {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 900;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.stat__label {
    color: var(--ink-muted);
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.6;
}


/* =========================================================================
   SECTION SCAFFOLDING
   ========================================================================= */
.section {
    position: relative;
    padding: 90px 0;
}

.section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section__eyebrow {
    display: inline-block;
    color: var(--gold-400);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--ff-display);
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 900;
    color: var(--ink-white);
    margin: 0 0 16px;
    letter-spacing: -.01em;
    line-height: 1.35;
}

.section__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section__subtitle {
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 2;
    margin: 0;
}


/* =========================================================================
   ARC DIVIDER — wave between sections
   ========================================================================= */
.divider {
    position: relative;
    height: 100px;
    overflow: visible;
}

.divider svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.divider svg path {
    fill: none;
    stroke: url(#dividerGold);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: .9;
}

.divider__node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow:
        0 0 0 5px rgba(255, 194, 24, .14),
        0 0 26px rgba(255, 194, 24, .65),
        0 0 50px rgba(255, 194, 24, .25);
    z-index: 2;
    animation: nodeGlow 3s ease-in-out infinite;
}

@keyframes nodeGlow {
    0%, 100% {
        box-shadow:
            0 0 0 5px rgba(255, 194, 24, .14),
            0 0 26px rgba(255, 194, 24, .55),
            0 0 50px rgba(255, 194, 24, .20);
    }
    50% {
        box-shadow:
            0 0 0 6px rgba(255, 194, 24, .22),
            0 0 36px rgba(255, 194, 24, .80),
            0 0 70px rgba(255, 194, 24, .35);
    }
}


/* =========================================================================
   TWO-MODE SHOWCASE — side by side cards with connecting curve
   ========================================================================= */
.modes {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 980px) {
    .modes { grid-template-columns: 1fr; gap: 28px; }
}

/* Connector curve between mode cards (desktop only) */
.modes__connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 211, 74, .18), transparent 65%),
        linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border: 1px solid var(--gold-line);
    display: grid;
    place-items: center;
    z-index: 3;
    color: var(--gold-300);
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: .04em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

@media (max-width: 980px) {
    .modes__connector { display: none; }
}

.mode-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,
        rgba(54, 71, 130, .25) 0%,
        rgba(28, 36, 71, .42) 100%);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 36px 30px 32px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.mode-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-line);
    box-shadow: var(--shadow);
}

/* Top accent stripe */
.mode-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 194, 24, 0),
        var(--gold-400) 50%,
        rgba(255, 194, 24, 0));
    opacity: .65;
}

/* Decorative arc inside card */
.mode-card__arc {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    overflow: visible;
    pointer-events: none;
    opacity: .35;
}

.mode-card__arc path {
    fill: none;
    stroke: var(--gold-400);
    stroke-width: 1;
    opacity: .55;
}

.mode-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mode-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
    transition: transform var(--t);
}

.mode-card:hover .mode-card__icon { transform: rotate(-6deg) scale(1.05); }

.mode-card__icon--alt {
    background: linear-gradient(135deg, rgba(255, 194, 24, .14), rgba(255, 194, 24, .08));
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
}

.mode-card__head-meta { flex: 1; min-width: 0; }

.mode-card__pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 6px;
}

.mode-card__pill--gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
}

.mode-card__pill--ghost {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line-strong);
    color: var(--ink-soft);
}

.mode-card__title {
    color: var(--ink-white);
    font-size: 1.18rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.5;
}

.mode-card__desc {
    color: var(--ink-muted);
    font-size: .95rem;
    line-height: 2;
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
}

.mode-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.mode-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    font-size: .9rem;
    line-height: 1.85;
}

.mode-card__list li i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(255, 211, 74, .25), rgba(255, 194, 24, .15));
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    display: grid;
    place-items: center;
    font-size: .82rem;
    margin-top: 2px;
}

.mode-card__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: var(--ink-white);
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid var(--line-strong);
    transition: all var(--t-fast);
}

.mode-card__cta:hover {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    border-color: var(--gold-500);
    transform: translateX(-3px);
    box-shadow: var(--shadow-gold);
}


/* =========================================================================
   PRICING VISUALIZATION — bar comparison
   ========================================================================= */
.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 820px) {
    .pricing { grid-template-columns: 1fr; gap: 24px; }
}

.pricing-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(54, 71, 130, .22) 0%, rgba(28, 36, 71, .38) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,194,24,0), var(--gold-400) 50%, rgba(255,194,24,0));
}

.pricing-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.pricing-card__head-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 194, 24, .10);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: 1.2rem;
}

.pricing-card__head-title {
    color: var(--ink-white);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0;
}

.pricing-card__head-sub {
    color: var(--ink-muted);
    font-size: .82rem;
    margin: 2px 0 0;
}

/* Visual bar showing instructor vs student split */
.pay-bar {
    position: relative;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    margin-bottom: 18px;
    display: flex;
    align-items: stretch;
}

.pay-bar__instructor {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    font-weight: 900;
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.pay-bar__student {
    background: linear-gradient(135deg, rgba(54, 71, 130, .65), rgba(28, 36, 71, .85));
    color: var(--ink-white);
    font-weight: 700;
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.pay-bar__split {
    width: 2px;
    background: var(--gold-400);
    box-shadow: 0 0 12px rgba(255, 194, 24, .55);
}

/* Concrete numbers table */
.price-table {
    margin-top: 18px;
    background: rgba(0, 0, 0, .15);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.price-table__row {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    font-size: .85rem;
    align-items: center;
}

.price-table__row:last-child { border-bottom: none; }

.price-table__row--head {
    background: rgba(255, 255, 255, .03);
    color: var(--ink-faint);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.price-table__cell {
    color: var(--ink-soft);
    font-weight: 600;
}

.price-table__cell--gold {
    color: var(--gold-300);
    font-weight: 800;
}

.pricing-card__note {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 194, 24, .06);
    border: 1px solid var(--gold-line);
    color: var(--ink-soft);
    font-size: .82rem;
    line-height: 1.85;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card__note i {
    color: var(--gold-400);
    margin-top: 2px;
    flex-shrink: 0;
}


/* =========================================================================
   PROCESS — shared workflow
   ========================================================================= */
.process {
    position: relative;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 980px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .process-steps { grid-template-columns: 1fr; }
}

.proc-step {
    position: relative;
    background: linear-gradient(160deg, rgba(54, 71, 130, .20) 0%, rgba(28, 36, 71, .32) 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 22px 26px;
    backdrop-filter: blur(10px);
    transition: all var(--t);
}

.proc-step:hover {
    transform: translateY(-3px);
    border-color: var(--gold-line);
}

.proc-step__num {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.proc-step__num-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    font-weight: 900;
    display: grid;
    place-items: center;
    font-size: .9rem;
    box-shadow: 0 4px 10px rgba(255, 194, 24, .26);
    flex-shrink: 0;
}

.proc-step__num-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-line), transparent);
}

.proc-step__title {
    color: var(--ink-white);
    font-size: 1rem;
    font-weight: 900;
    margin: 0 0 8px;
    line-height: 1.55;
}

.proc-step__text {
    color: var(--ink-muted);
    font-size: .87rem;
    line-height: 1.95;
    margin: 0;
}


/* =========================================================================
   FEATURES GRID — 6 universal panel features
   ========================================================================= */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

.feature {
    padding: 28px 24px;
    background: linear-gradient(160deg, rgba(54, 71, 130, .20) 0%, rgba(28, 36, 71, .32) 100%);
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(8px);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

/* Tiny corner arc */
.feature::after {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 194, 24, .08), transparent 65%);
    opacity: 0;
    transition: opacity var(--t);
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--gold-line);
    background: linear-gradient(160deg, rgba(54, 71, 130, .30) 0%, rgba(28, 36, 71, .42) 100%);
}

.feature:hover::after { opacity: 1; }

.feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 194, 24, .10);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: transform var(--t-fast);
    position: relative;
    z-index: 1;
}

.feature:hover .feature__icon {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
}

.feature__title {
    color: var(--ink-white);
    font-size: 1.02rem;
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.feature__text {
    color: var(--ink-muted);
    font-size: .88rem;
    line-height: 2;
    margin: 0;
    position: relative;
    z-index: 1;
}


/* =========================================================================
   COMPARE TABLE
   ========================================================================= */
.compare {
    background: linear-gradient(160deg, rgba(54, 71, 130, .22) 0%, rgba(28, 36, 71, .38) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(14px);
    overflow: hidden;
    position: relative;
}

.compare::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,194,24,0), var(--gold-400) 50%, rgba(255,194,24,0));
}

.compare__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.compare__row:last-child { border-bottom: none; }

.compare__row--head {
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 18px;
}

.compare__cell {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.85;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare__row--head .compare__cell {
    font-weight: 800;
    color: var(--ink-white);
    font-size: 1rem;
}

.compare__cell-label { color: var(--ink-soft); font-weight: 600; }

.compare__cell-yes {
    color: var(--gold-300);
    font-weight: 700;
}

.compare__cell-yes::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    font-weight: 900;
    display: grid;
    place-items: center;
    font-size: .82rem;
    flex-shrink: 0;
}

.compare__head-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.compare__head-tag--gold { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: var(--navy-900); }
.compare__head-tag--ghost { background: rgba(255,255,255,.06); border: 1px solid var(--line-strong); color: var(--ink-soft); }

@media (max-width: 720px) {
    .compare__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
    .compare__row--head { display: none; }
    .compare__cell-label::before {
        content: "•";
        margin-left: 8px;
        color: var(--gold-400);
    }
}


/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: linear-gradient(160deg, rgba(54, 71, 130, .20) 0%, rgba(28, 36, 71, .32) 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color var(--t-fast);
}

.faq-item:hover { border-color: var(--gold-line); }
.faq-item[open] { border-color: var(--gold-line); box-shadow: 0 0 0 1px var(--gold-line); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    color: var(--ink-white);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 194, 24, .10);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: 1.1rem;
    transition: transform var(--t);
}

.faq-item[open] .faq-item__icon {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    transform: rotate(45deg);
}

.faq-item__body {
    padding: 0 24px 22px 76px;
    color: var(--ink-muted);
    line-height: 2.05;
    font-size: .92rem;
}


/* =========================================================================
   FINAL CTA
   ========================================================================= */
.section--final { padding: 60px 0 100px; }

.final-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 194, 24, .22), transparent 55%),
        linear-gradient(135deg, rgba(54, 71, 130, .42) 0%, rgba(28, 36, 71, .68) 100%);
    border: 1px solid var(--gold-line);
    border-radius: 32px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 194, 24, .18);
}

.final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,194,24,0), var(--gold-400) 50%, rgba(255,194,24,0));
}

.final-cta__content { position: relative; z-index: 1; }

.final-cta__eyebrow {
    color: var(--gold-400);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.final-cta__title {
    font-family: var(--ff-display);
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 900;
    color: var(--ink-white);
    margin: 0 0 18px;
    line-height: 1.4;
    letter-spacing: -.01em;
}

.final-cta__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta__sub {
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 2;
    max-width: 580px;
    margin: 0 auto 32px;
}

.final-cta__btn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-600));
    color: var(--navy-900);
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 18px 40px rgba(255, 194, 24, .42);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.final-cta__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    transform: translateX(-100%) skewX(-22deg);
    transition: transform .85s ease;
}

.final-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 56px rgba(255, 194, 24, .56);
}

.final-cta__btn:hover::before { transform: translateX(220%) skewX(-22deg); }

@media (max-width: 640px) {
    .final-cta { padding: 50px 30px; border-radius: 24px; }
}


/* =========================================================================
   FOOTER
   ========================================================================= */
.foot {
    text-align: center;
    padding: 30px 0 50px;
    color: var(--ink-faint);
    font-size: .85rem;
    border-top: 1px solid var(--line);
    margin-top: 30px;
}

.foot strong { color: var(--gold-300); font-weight: 800; }


/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--t-slow), transform .8s var(--t-slow);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================================
   ACCESSIBILITY
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .voucher, .orbit, .bubble { animation: none !important; }
}


/* =============================================================================
   LIGHT THEME — comprehensive overrides
   ----
   Each override targets a specific selector that breaks under the light
   palette. Specificity is intentionally raised by chaining the parent
   `[data-theme="light"]` attribute with two classes where the original
   used a single class — this prevents stale cached browser rules from
   winning, without resorting to `!important`.

   Sections mirror the original file:
     1. Kicker badge
     2. Hero title gradient + body text + trust items
     3. Hero visual: bubbles (voucher card stays intentionally dark)
     4. CTA secondary + back button (ghost-style on light bg)
     5. Stats bar values
     6. Section titles + eyebrows + gradients
     7. Two-mode cards
     8. Mode connector
     9. Pricing card + pay-bar
    10. Price table
    11. Process steps
    12. Features grid
    13. Compare table
    14. FAQ
    15. Final CTA
    16. Decorative arcs visibility
   ========================================================================== */

/* ---------- 1. KICKER -------------------------------------------------- */
[data-theme="light"] .hero .kicker {
    background: rgba(255, 194, 24, .12);
    border-color: rgba(200, 149, 0, .35);
    color: var(--gold-700);
}

/* ---------- 2. HERO TITLE + BODY -------------------------------------- */
[data-theme="light"] .hero .hero__title {
    color: var(--navy-900);
}
[data-theme="light"] .hero .hero__title em {
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
[data-theme="light"] .hero .hero__title em::after {
    background: linear-gradient(90deg,
        rgba(200, 149, 0, 0) 0%,
        rgba(200, 149, 0, .55) 30%,
        rgba(200, 149, 0, .80) 70%,
        rgba(200, 149, 0, 0) 100%);
}
[data-theme="light"] .hero .hero__subtitle {
    color: rgba(28, 36, 71, .68);
}
/* Trust row: the wrapping color is --ink-muted (60% navy) which is too
   faint on a light card. Push it up to ink-soft strength. */
[data-theme="light"] .hero .hero__trust {
    color: rgba(28, 36, 71, .82);
}
[data-theme="light"] .hero .hero__trust-item {
    color: var(--navy-900);
}
[data-theme="light"] .hero .hero__trust-item i {
    color: var(--gold-700);
}
[data-theme="light"] .hero .hero__trust-item strong {
    color: var(--navy-900);
}

/* ---------- 3. HERO VISUAL: bubbles (voucher stays dark) -------------- */
[data-theme="light"] .hero__visual .bubble {
    background: linear-gradient(135deg, rgba(28, 36, 71, .04), rgba(28, 36, 71, .08));
    border-color: rgba(200, 149, 0, .42);
    box-shadow: 0 14px 36px rgba(28, 36, 71, .12);
}
[data-theme="light"] .hero__visual .bubble i,
[data-theme="light"] .hero__visual .bubble svg {
    color: var(--gold-700);
}

/* Voucher itself — keep the navy "real plastic voucher" look on light bg,
   only soften the outer shadow so it doesn't feel disconnected. */
[data-theme="light"] .hero__visual .voucher {
    box-shadow:
        0 30px 70px rgba(28, 36, 71, .25),
        0 0 0 1px rgba(255, 255, 255, .04) inset,
        0 0 60px rgba(255, 194, 24, .08);
}

[data-theme="light"] .hero__visual .orbit {
    border-color: rgba(200, 149, 0, .25);
}

/* ---------- 4. CTA SECONDARY + BACK-BTN ------------------------------- */
[data-theme="light"] .hero .cta-secondary,
[data-theme="light"] .back-bar .back-btn {
    background: rgba(28, 36, 71, .04);
    border-color: rgba(28, 36, 71, .12);
    color: var(--navy-900);
}
[data-theme="light"] .hero .cta-secondary:hover,
[data-theme="light"] .back-bar .back-btn:hover {
    background: rgba(255, 194, 24, .12);
    border-color: rgba(255, 194, 24, .55);
    color: var(--gold-700);
}

/* ---------- 5. STATS BAR --------------------------------------------- */
[data-theme="light"] .stats-bar {
    background:
        linear-gradient(180deg,
            rgba(255, 194, 24, .04) 0%,
            transparent 50%,
            rgba(255, 194, 24, .04) 100%);
}
[data-theme="light"] .stats-bar .stat__value {
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
[data-theme="light"] .stats-bar .stat__label {
    color: rgba(28, 36, 71, .68);
}

/* ---------- 6. SECTION TITLES ---------------------------------------- */
[data-theme="light"] .section .section__eyebrow {
    color: var(--gold-700);
}
[data-theme="light"] .section .section__title {
    color: var(--navy-900);
}
[data-theme="light"] .section .section__title em {
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
[data-theme="light"] .section .section__subtitle {
    color: rgba(28, 36, 71, .68);
}

/* ---------- 7. TWO-MODE CARDS ---------------------------------------- */
[data-theme="light"] .modes .mode-card {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
    box-shadow: 0 4px 14px rgba(28, 36, 71, .05);
}
[data-theme="light"] .modes .mode-card:hover {
    border-color: rgba(255, 194, 24, .55);
    box-shadow: 0 18px 36px rgba(28, 36, 71, .12);
}
[data-theme="light"] .modes .mode-card__title {
    color: var(--navy-900);
}
[data-theme="light"] .modes .mode-card__desc {
    color: rgba(28, 36, 71, .82);
}
[data-theme="light"] .modes .mode-card__list li {
    color: rgba(28, 36, 71, .82);
}
[data-theme="light"] .modes .mode-card__list i {
    color: var(--gold-700);
}
[data-theme="light"] .modes .mode-card__head-meta {
    color: rgba(28, 36, 71, .68);
}
[data-theme="light"] .modes .mode-card__pill--ghost {
    background: rgba(28, 36, 71, .04);
    border-color: rgba(28, 36, 71, .12);
    color: var(--navy-900);
}
[data-theme="light"] .modes .mode-card__cta {
    color: var(--navy-900);
}
[data-theme="light"] .modes .mode-card__cta:hover {
    color: var(--gold-700);
}

/* ---------- 8. MODE CONNECTOR ---------------------------------------- */
[data-theme="light"] .modes .modes__connector {
    background:
        radial-gradient(circle, rgba(255, 211, 74, .15), transparent 65%),
        linear-gradient(135deg, #ffffff, #f5f7fc);
    border-color: rgba(200, 149, 0, .42);
    color: var(--gold-700);
    box-shadow: 0 8px 22px rgba(28, 36, 71, .12);
}

/* ---------- 9. PRICING CARD + PAY-BAR -------------------------------- */
[data-theme="light"] .pricing .pricing-card {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
    box-shadow: 0 4px 14px rgba(28, 36, 71, .05);
}
[data-theme="light"] .pricing .pricing-card__head-icon {
    color: var(--gold-700);
}
[data-theme="light"] .pricing .pricing-card__head-title {
    color: var(--navy-900);
}
[data-theme="light"] .pricing .pricing-card__head-sub {
    color: rgba(28, 36, 71, .68);
}
[data-theme="light"] .pricing .pricing-card__note {
    color: rgba(28, 36, 71, .68);
}
[data-theme="light"] .pricing .pay-bar {
    background: rgba(28, 36, 71, .04);
    border: 1px solid rgba(28, 36, 71, .08);
}
[data-theme="light"] .pricing .pay-bar__instructor {
    background: linear-gradient(90deg, rgba(54, 71, 130, .92), rgba(28, 36, 71, .98));
    color: #ffffff;
}
[data-theme="light"] .pricing .pay-bar__student {
    color: var(--navy-900);
}

/* ---------- 10. PRICE TABLE ------------------------------------------ */
[data-theme="light"] .pricing .price-table {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
}
[data-theme="light"] .pricing .price-table__row {
    border-bottom-color: rgba(28, 36, 71, .08);
}
[data-theme="light"] .pricing .price-table__row--head {
    background: rgba(28, 36, 71, .035);
    color: rgba(28, 36, 71, .68);
}
[data-theme="light"] .pricing .price-table__cell {
    color: rgba(28, 36, 71, .82);
}
[data-theme="light"] .pricing .price-table__cell--gold {
    color: var(--gold-700);
}

/* ---------- 11. PROCESS STEPS ---------------------------------------- */
[data-theme="light"] .process .proc-step__num {
    background:
        radial-gradient(circle, rgba(255, 211, 74, .15), transparent 65%),
        linear-gradient(135deg, #ffffff, #f5f7fc);
    border-color: rgba(200, 149, 0, .42);
    color: var(--gold-700);
    box-shadow: 0 8px 22px rgba(28, 36, 71, .10);
}
[data-theme="light"] .process .proc-step__num-circle {
    border-color: rgba(28, 36, 71, .12);
}
[data-theme="light"] .process .proc-step__num-line {
    background: linear-gradient(180deg, var(--gold-line), transparent);
}
[data-theme="light"] .process .proc-step__title {
    color: var(--navy-900);
}
[data-theme="light"] .process .proc-step__text {
    color: rgba(28, 36, 71, .82);
}

/* ---------- 12. FEATURES GRID --------------------------------------- */
[data-theme="light"] .features .feature {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
    box-shadow: 0 4px 14px rgba(28, 36, 71, .05);
}
[data-theme="light"] .features .feature:hover {
    border-color: rgba(255, 194, 24, .55);
    box-shadow: 0 14px 30px rgba(28, 36, 71, .10);
}
[data-theme="light"] .features .feature__icon {
    background:
        radial-gradient(circle, rgba(255, 211, 74, .15), transparent 65%),
        linear-gradient(135deg, #ffffff, #eef0fa);
    border-color: rgba(200, 149, 0, .42);
    color: var(--gold-700);
}
[data-theme="light"] .features .feature__title {
    color: var(--navy-900);
}
[data-theme="light"] .features .feature__text {
    color: rgba(28, 36, 71, .82);
}

/* ---------- 13. COMPARE TABLE ---------------------------------------- */
[data-theme="light"] .compare {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
}
[data-theme="light"] .compare .compare__row {
    border-bottom-color: rgba(28, 36, 71, .08);
}
[data-theme="light"] .compare .compare__row--head {
    background: rgba(28, 36, 71, .035);
}
[data-theme="light"] .compare .compare__cell {
    color: rgba(28, 36, 71, .82);
}
[data-theme="light"] .compare .compare__cell-label {
    color: var(--navy-900);
    font-weight: 800;
}
[data-theme="light"] .compare .compare__cell-yes {
    color: var(--gold-700);
}
[data-theme="light"] .compare .compare__head-tag--ghost {
    background: rgba(28, 36, 71, .04);
    border-color: rgba(28, 36, 71, .12);
    color: var(--navy-900);
}

/* ---------- 14. FAQ -------------------------------------------------- */
[data-theme="light"] .faq .faq-item {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
}
[data-theme="light"] .faq .faq-item:hover {
    border-color: rgba(255, 194, 24, .42);
}
/* The question text itself lives inside <summary>; in light mode it
   needs explicit navy color (browser default for summary may shadow
   the inherited --ink-white token). */
[data-theme="light"] .faq .faq-item summary {
    color: var(--navy-900);
}
[data-theme="light"] .faq .faq-item__icon {
    color: var(--gold-700);
}
[data-theme="light"] .faq .faq-item__body {
    color: rgba(28, 36, 71, .82);
}

/* ---------- 15. FINAL CTA -------------------------------------------- */
[data-theme="light"] .final-cta {
    background:
        radial-gradient(ellipse 800px 300px at 50% 0%, rgba(255, 194, 24, .12), transparent 60%),
        linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(200, 149, 0, .35);
    box-shadow: 0 18px 36px rgba(28, 36, 71, .10);
}
[data-theme="light"] .final-cta__eyebrow {
    color: var(--gold-700);
}
[data-theme="light"] .final-cta__title {
    color: var(--navy-900);
}
[data-theme="light"] .final-cta__sub {
    color: rgba(28, 36, 71, .82);
}

/* ---------- 16. DECORATIVE ARCS -------------------------------------- */
[data-theme="light"] .arc path,
[data-theme="light"] .hero__arc path,
[data-theme="light"] .mode-card .mode-card__arc path {
    opacity: .55;
}
/* ============== LIGHT THEME — fixes for course-info ============== */

/* The 4-step process cards (چهار قدم تا راه‌اندازی دوره) */
[data-theme="light"] .process .proc-step {
    background: linear-gradient(160deg, #ffffff 0%, #f5f7fc 100%);
    border-color: rgba(28, 36, 71, .10);
    box-shadow: 0 4px 14px rgba(28, 36, 71, .05);
    backdrop-filter: none;
}
[data-theme="light"] .process .proc-step:hover {
    border-color: rgba(255, 194, 24, .55);
    box-shadow: 0 14px 30px rgba(28, 36, 71, .10);
}

/* Payment split bar (50% مدرس / 50% دانشجو) — instructor gold, student soft */
[data-theme="light"] .pricing .pay-bar__instructor {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
}
[data-theme="light"] .pricing .pay-bar__student {
    background: linear-gradient(135deg, #e6ecf5, #d8e0ee);
    color: var(--navy-900);
}

/* FAQ icon — change rotated "+" to a clearer "−" effect */
[data-theme="light"] .faq .faq-item[open] .faq-item__icon {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
}

[data-theme="light"] .wrap {color: rgba(28, 36, 71, .82);}