/* ========================================================
   SCHOOL OF MASTERY — v3 Sales Page
   Font: Bebas Neue (display) / Plus Jakarta Sans (UI) / Lato (body)
   ======================================================== */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green:        #21B486;
    --green-hover:  #1a9a72;
    --green-dark:   #0d2419;
    --green-glow:   rgba(33, 180, 134, 0.15);
    --gold:         #eab308;
    --gold-hover:   #ca9a07;
    --red:          #dc2626;
    --dark:         #232b2d;
    --dark-2:       #333b3d;
    --dark-card:    #3d4547;
    --dark-gradient: linear-gradient(160deg, #232b2d 0%, #333b3d 100%);
    --border:       rgba(255, 255, 255, 0.08);
    --border-green: rgba(33, 180, 134, 0.2);
    --white:        #ffffff;
    --cream:        #ffffff;
    --text-on-light:        #1a2123;
    --text-on-light-muted:  #4a5355;
    --border-on-light:      rgba(26, 33, 35, 0.12);
    --green-on-light:       #21B486;
    --gray-300:     #d4d4d8;
    --gray-400:     #b4b4bc;
    --gray-600:     #8a9396;
    --font-display: 'Bebas Neue', sans-serif;
    --font-ui:      'Plus Jakarta Sans', sans-serif;
    --font-body:    'Lato', sans-serif;
    --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-400);
    background: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-ui); color: var(--white); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
p { line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { color: var(--white); }
s { opacity: 0.5; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.text-green  { color: var(--green); }

/* ── TYPE SYSTEM ── */
.eyebrow {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.section-headline {
    font-family: var(--font-ui);
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.display-headline {
    font-family: var(--font-ui);
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 44px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
    border: none;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(33, 180, 134, 0.35);
}
.btn--primary:hover {
    background: var(--green-hover);
    box-shadow: 0 8px 36px rgba(33, 180, 134, 0.45);
}

.btn--gold {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 24px rgba(234, 179, 8, 0.3);
}
.btn--gold:hover {
    background: var(--gold-hover);
    box-shadow: 0 8px 36px rgba(234, 179, 8, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.6); }

.btn--hero  { font-size: 1.05rem; padding: 20px 52px; }
.btn--lg    { padding: 16px 40px; font-size: 0.95rem; }
.btn--xl    { padding: 22px 52px; font-size: 1.05rem; }
.btn--full  { width: 100%; }
.btn__sub   { font-size: 0.75em; font-weight: 400; opacity: 0.8; margin-top: 3px; font-family: var(--font-body); }

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.45s; }

/* ── HERO LOAD ANIMATIONS (no scroll needed — always in viewport) ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-anim   { animation: fadeUp 0.8s var(--ease-out) both; }
.hero-anim-1 { animation-delay: 0.05s; }
.hero-anim-2 { animation-delay: 0.18s; }
.hero-anim-3 { animation-delay: 0.32s; }
.hero-anim-4 { animation-delay: 0.5s; }

/* ── TOP NAV ── */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(51, 59, 61, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(33, 180, 134, 0.18);
    padding: 14px 0;
    transition: background 0.3s;
}

.topnav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topnav__logo img { height: 28px; }
.topnav__logo:hover { opacity: 0.8; }

.topnav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.topnav__links a {
    transition: color 0.2s;
}
.topnav__links a:hover { color: var(--white); }

.topnav__cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s !important;
}
.topnav__cta:hover { background: var(--green-hover); transform: translateY(-1px); }

/* ── STICKY BOTTOM BAR ── */
.sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(35, 43, 45, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(33, 180, 134, 0.25);
    padding: 11px 0;
    transform: translateY(100%);
    transition: transform 0.45s var(--ease-out);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-bar__left { display: flex; align-items: center; gap: 12px; }

.sticky-bar__dot {
    width: 9px; height: 9px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    50%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
}

.sticky-bar__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    color: var(--gray-400);
    text-transform: uppercase;
}
.sticky-bar__label strong { color: var(--white); }
.sticky-bar__label--mobile { display: none; }

.sticky-bar__sub {
    display: block;
    font-size: 0.58rem;
    color: var(--gray-600);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sticky-bar__timer { display: flex; align-items: center; gap: 3px; }

.sticky-bar__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 34px;
}

.sticky-bar__unit span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
}

.sticky-bar__unit small {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    text-transform: uppercase;
}

.sticky-bar__sep { font-size: 1.1rem; color: var(--gray-600); padding-bottom: 10px; font-weight: 700; }

.sticky-bar__btn {
    background: var(--green);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}
.sticky-bar__btn:hover { background: var(--green-hover); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(33, 180, 134, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(33, 180, 134, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero__proof-row { margin-bottom: 28px; display: flex; justify-content: center; }

.avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--gray-400);
}

.avatar-faces { display: flex; }

.avatar-face {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border: 2px solid var(--dark);
    margin-right: -8px;
    transition: transform 0.2s;
}
.avatar-face:hover { transform: scale(1.1); z-index: 1; }

.stars-row { display: flex; gap: 4px; align-items: center; }
.star-icon { width: 22px; height: 22px; }

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 13vw, 10rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 28px;
}

/* Statement variant — used when headline is a full sentence, not a punchy 3-word phrase */
.hero__headline--statement {
    font-family: var(--font-ui);
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-tm {
    font-size: 0.38em;
    vertical-align: super;
    line-height: 0;
}

.hero__definition {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.hero__micro {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--gray-600);
    letter-spacing: 0.02em;
}

.hero__visual {
    max-width: 940px;
    margin: 56px auto 0;
}

.hero__mockup {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

/* ── WHAT IS SOM ── */
.what-is-som {
    padding: 120px 0;
    background: var(--cream);
    color: var(--text-on-light);
}
.what-is-som h1, .what-is-som h2, .what-is-som h3, .what-is-som h4 { color: var(--text-on-light); }
.what-is-som p { color: var(--text-on-light-muted); }
.what-is-som strong { color: var(--text-on-light); }
.what-is-som .eyebrow { color: var(--green); }

.what-is-som__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.what-is-som__grid > * { min-width: 0; }

.what-is-som__text h2 {
    font-family: var(--font-ui);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.what-is-som__text p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-on-light-muted);
}

/* Freedom equation (merged stack) */
.freedom-equation {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    border: 1px solid var(--border-on-light);
    border-radius: 16px;
    background: #ffffff;
    padding: 8px 28px 16px 44px;
    overflow: hidden;
}

.freedom-equation__term {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.freedom-equation__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.2;
    margin-top: 1px;
}

.freedom-equation__name {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-on-light);
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.freedom-equation__desc {
    font-size: 0.85rem;
    color: var(--text-on-light-muted);
    line-height: 1.5;
    margin: 0;
}

.freedom-equation__term--last {
    position: relative;
}

.freedom-equation__plus {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-on-light-muted);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.freedom-equation__total-line {
    height: 2px;
    background: var(--text-on-light);
    margin: 10px 0;
    opacity: 0.25;
}

.freedom-equation__result {
    padding: 4px 0;
}

.freedom-equation__mf {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-on-light);
    letter-spacing: -0.01em;
}

/* Freedom cards (legacy — keep for other contexts) */
.freedom-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
}

.freedom-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    cursor: default;
}
.freedom-card:last-child { border-bottom: none; }
.freedom-card:hover { background: rgba(33, 180, 134, 0.05); }

.freedom-card__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.freedom-card__num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(33, 180, 134, 0.2);
    line-height: 1;
    min-width: 36px;
    flex-shrink: 0;
}

.freedom-card h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 3px;
}

.freedom-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

/* Modern Freedom equation */
.mf-equation {
    background: rgba(33, 180, 134, 0.06);
    border: 1px solid var(--border-green);
    border-radius: 14px;
    padding: 24px 28px;
    text-align: center;
}

.mf-equation__parts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 16px;
}

.mf-equation__term {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mf-equation__emoji {
    font-size: 1.4rem;
    line-height: 1;
}

.mf-equation__term span:last-child {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-400);
    white-space: nowrap;
}

.mf-equation__op {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gray-600);
    line-height: 1;
    padding-bottom: 12px;
    flex-shrink: 0;
}

.mf-equation__divider {
    height: 1px;
    background: var(--border-green);
    margin-bottom: 16px;
}

.mf-equation__result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mf-equation__equals {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gray-600);
    line-height: 1;
}

.mf-equation__mf {
    font-family: var(--font-ui);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
}

/* ── MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    background: var(--green);
    padding: 13px 0;
}

.marquee {
    display: flex;
    gap: 28px;
    animation: marquee 28s linear infinite;
    width: max-content;
    white-space: nowrap;
}

.marquee span {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #09090b;
}

.marquee__dot { opacity: 0.35; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── RESULTS MARQUEE ── */
.results-marquee-wrap {
    overflow: hidden;
    background: var(--green);
    padding: 13px 0;
}

.results-marquee {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 80s linear infinite;
    width: max-content;
    white-space: nowrap;
}

.results-marquee__result {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    color: #09090b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-right: 6px;
}

.results-marquee__name {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(9, 9, 11, 0.6);
    letter-spacing: 0.06em;
    padding-right: 14px;
}

.results-marquee__sep {
    font-size: 0.72rem;
    color: rgba(9, 9, 11, 0.3);
    padding-right: 14px;
}

/* ── TRACK RECORD ── */
.track-record {
    padding: 120px 0;
    background: var(--dark-gradient);
}

.track-record__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.check-list { margin: 24px 0; }

.check-list li {
    padding: 11px 0 11px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.97rem;
    color: var(--gray-400);
    position: relative;
    transition: color 0.2s;
}
.check-list li:hover { color: var(--white); }

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.track-record__since {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-top: 16px;
    font-style: italic;
}

.link-arrow {
    display: inline-block;
    color: var(--green);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: letter-spacing 0.2s;
}
.link-arrow:hover { letter-spacing: 0.02em; text-decoration: underline; }

.track-record__img-wrap { position: relative; display: block; }

.track-record__img-wrap img {
    border-radius: 14px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    transition: transform 0.4s var(--ease-out);
}
.track-record__img-wrap:hover img { transform: scale(1.01); }

.img-caption {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--gray-600);
    font-family: var(--font-ui);
}

/* ── WHAT YOU GET ── */
.what-you-get {
    padding: 120px 0;
    background: var(--dark-gradient);
}

.inclusion {
    margin-bottom: 48px;
}

.inclusion__num { display: none; }

.inclusion__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 36px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.inclusion__content:hover {
    border-color: var(--border-green);
    box-shadow: 0 8px 40px rgba(33, 180, 134, 0.06);
}

.inclusion--flip .inclusion__content { direction: rtl; }
.inclusion--flip .inclusion__content > * { direction: ltr; }

/* Image placeholder */
.img-placeholder {
    background: linear-gradient(160deg, rgba(33, 180, 134, 0.07), rgba(9, 9, 11, 0.4));
    border: 1px dashed rgba(33, 180, 134, 0.25);
    border-radius: 12px;
    padding: 28px 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.img-placeholder__value {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.img-placeholder__label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.01em;
}

.img-placeholder__note {
    display: block;
    font-size: 0.72rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 10px;
    line-height: 1.5;
}

.inclusion__real-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s var(--ease-out);
}
.inclusion__content:hover .inclusion__real-img { transform: scale(1.02); }

.inclusion__tag {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.inclusion__text h3 {
    font-family: var(--font-ui);
    font-size: 1.9rem;
    font-weight: 800;
    text-transform: none;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.inclusion__text p {
    font-size: 0.97rem;
    color: var(--gray-400);
    margin-bottom: 14px;
    line-height: 1.75;
}

.inclusion__bullets { margin: 14px 0; }

.inclusion__bullets li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color 0.2s;
}
.inclusion__bullets li:hover { color: var(--white); }

.inclusion__bullets li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(33, 180, 134, 0.14);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.inclusion-summary {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(33, 180, 134, 0.22);
    border-radius: 20px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 0 40px rgba(33, 180, 134, 0.06);
}

.inclusion-summary__left { flex: 1; }

.inclusion-summary__label {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
    display: block;
}

.inclusion-summary__total {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--red);
    line-height: 1;
    text-decoration: line-through;
    margin-bottom: 16px;
}

.inclusion-summary__price-label {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(33, 180, 134, 0.7);
    margin-bottom: 6px;
    display: block;
}

.inclusion-summary__price {
    font-family: var(--font-display);
    font-size: 3.8rem;
    color: #ffffff;
    line-height: 1;
}

.inclusion-summary__price span {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.inclusion-summary__right { flex-shrink: 0; text-align: center; }

.inclusion-summary__note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    font-family: var(--font-ui);
}

@media (max-width: 640px) {
    .inclusion-summary { flex-direction: column; padding: 36px 28px; text-align: center; }
    .inclusion-summary__right { width: 100%; }
}

.inclusion__price-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 7px 16px;
    background: rgba(33, 180, 134, 0.1);
    border: 1px solid rgba(33, 180, 134, 0.28);
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.05em;
}

.inclusion__note {
    font-size: 0.82rem !important;
    color: var(--gray-600) !important;
    font-style: italic;
}

/* Curriculum pills */
.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.curriculum-pill {
    background: rgba(33, 180, 134, 0.05);
    border: 1px solid rgba(33, 180, 134, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    transition: background 0.2s, border-color 0.2s;
}

.curriculum-pill:hover {
    background: rgba(33, 180, 134, 0.09);
    border-color: rgba(33, 180, 134, 0.25);
}

.curriculum-pill strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.curriculum-pill span {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.55;
}

/* Value bridge */
.value-bridge {
    margin-top: 72px;
    padding: 56px;
    background: linear-gradient(135deg, rgba(33, 180, 134, 0.08), rgba(33, 180, 134, 0.03));
    border: 1px solid var(--border-green);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.value-bridge__total-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.value-bridge__crossed {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gray-600);
    text-decoration: line-through;
    margin-bottom: 20px;
}

.value-bridge__pay-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 4px;
}

.value-bridge__weekly {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.value-bridge__weekly span {
    font-size: 2rem;
    color: var(--gray-400);
}

.value-bridge__monthly {
    font-size: 0.88rem;
    color: var(--gray-600);
    font-family: var(--font-ui);
}

/* Curriculum pillar dropdowns */
.curriculum-pillars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.curriculum-pillar__head {
    width: 100%;
    background: rgba(33, 180, 134, 0.06);
    border: 1px solid rgba(33, 180, 134, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
}

.curriculum-pillar__head:hover,
.curriculum-pillar__head[aria-expanded="true"] {
    background: rgba(33, 180, 134, 0.12);
    border-color: rgba(33, 180, 134, 0.3);
}

.curriculum-pillar__head em {
    font-style: normal;
    color: var(--green);
    margin-left: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}

.curriculum-pillar__arrow {
    font-size: 1.2rem;
    color: var(--green);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    font-weight: 300;
}

.curriculum-pillar__head[aria-expanded="true"] .curriculum-pillar__arrow {
    transform: rotate(45deg);
}

.curriculum-pillar__list {
    margin: 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.curriculum-pillar__list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--gray-400);
    font-family: var(--font-body);
}

.curriculum-pillar__list li:last-child { border-bottom: none; }

/* ── RESULTS WALL ── */
.results-wall {
    padding: 120px 0 80px;
    background: var(--dark);
}

.hof-counter {
    text-align: center;
    margin: 20px 0 6px;
}

.hof-counter span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: var(--green);
    display: block;
    line-height: 1;
    letter-spacing: 0.01em;
}

.hof-counter p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    font-family: var(--font-ui);
}

/* Animated Testimonial Wall */
.testi-outer {
    position: relative;
    height: 90vh;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0 24px;
}

.testi-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: scrollUpCol linear infinite;
    will-change: transform;
}
.testi-col:hover { animation-play-state: paused; }
.testi-col--1 { animation-duration: 30s; }
.testi-col--2 { animation-duration: 22s; }
.testi-col--3 { animation-duration: 26s; }

@keyframes scrollUpCol {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.tc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tc:hover {
    border-color: #bbf0d9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.tc img {
    width: 100%;
    height: auto;
    display: block;
}
.tc__body {
    padding: 16px 20px 20px;
}

/* Mobile: thumb-scroll instead of animation */
@media (max-width: 600px) {
    .testi-outer {
        height: 75vh;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .testi-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 6px; }
    .testi-col { animation: none; gap: 6px; }
    .testi-col--2 { display: flex; }
    .testi-col--3 { display: flex; }
    .testi-col [aria-hidden="true"] { display: none; }
}
@media (min-width: 601px) and (max-width: 900px) {
    .testi-outer { height: 88vh; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-col--3 { display: none; }
}
.tc__stars {
    color: #f5a623;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.tc__result {
    font-size: 15px;
    font-weight: 900;
    color: #232b2d;
    margin-bottom: 6px;
    line-height: 1.3;
}
.tc__quote {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 300;
}
.tc__name {
    font-size: 11px;
    color: #5f6873;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    margin-top: 48px;
}

.testimonial-slider__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow: hidden;
}

/* Page-based: show a "page" of 3 or 9 slides */
.testimonial-slide {
    display: none;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.testimonial-slide.active-slide {
    display: block;
    animation: slideIn 0.4s var(--ease-out) both;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testimonial-slide:hover {
    transform: translateY(-4px);
    border-color: var(--border-green);
}

.testimonial-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 10;
    line-height: 1;
    padding-bottom: 2px;
}

.testimonial-arrow:hover {
    background: rgba(33, 180, 134, 0.15);
    border-color: var(--border-green);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow--prev { left: -24px; }
.testimonial-arrow--next { right: -24px; }

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.testimonial-dot.active, .testimonial-dot:hover {
    background: var(--green);
    transform: scale(1.3);
}

/* ── TESTIMONIAL TEXT CARDS ── */
.tcard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.tcard {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.2s, transform 0.2s var(--ease-out);
    cursor: pointer;
    overflow: hidden;
}

.tcard__thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.tcard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s var(--ease-out);
}

.tcard:hover .tcard__thumb img {
    transform: scale(1.05);
}

.tcard:hover {
    border-color: var(--border-green);
    transform: translateY(-3px);
}

.tcard__result {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    flex: 1;
    padding: 16px 20px 0;
}

.tcard__name {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    padding: 0 20px 16px;
}

.tcard__result:last-child {
    padding-bottom: 16px;
}

.tcard__btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--border-green);
    border-radius: 6px;
    padding: 8px 14px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.tcard__btn:hover {
    background: var(--green);
    color: var(--dark);
}

@media (max-width: 900px) {
    .tcard-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.25s ease;
}

.lightbox.active { display: flex; }

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    object-fit: contain;
    animation: zoomIn 0.3s var(--ease-out);
}

@keyframes zoomIn {
    from { transform: scale(0.92); }
    to   { transform: scale(1); }
}

.lightbox__close {
    position: fixed;
    top: 20px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ── WHO IT'S FOR ── */
.who-its-for {
    padding: 120px 0;
    background: var(--cream);
    color: var(--text-on-light);
}
.who-its-for h1, .who-its-for h2, .who-its-for h3, .who-its-for h4 { color: var(--text-on-light); }
.who-its-for p { color: var(--text-on-light-muted); }
.who-its-for strong { color: var(--text-on-light); }

.for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.for-col {
    padding: 44px 40px;
    border-radius: 14px;
}

.for-col--yes {
    background: rgba(33, 180, 134, 0.06);
    border: 1px solid rgba(33, 180, 134, 0.18);
}

.for-col--no {
    background: rgba(220, 38, 38, 0.04);
    border: 1px solid rgba(220, 38, 38, 0.14);
}

.for-col h2 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.for-col--yes h2 { color: var(--green); }
.for-col--no h2  { color: #f87171; }

.for-col ul li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: start;
}

.for-col ul li:last-child { border-bottom: none; }

.for-tick, .for-cross {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.for-tick {
    background: rgba(33, 180, 134, 0.12);
    color: var(--green);
}

.for-cross {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.for-col ul li strong {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    display: block;
    padding-top: 1px;
}

/* ── PRICING ── */
.pricing {
    padding: 120px 0;
    background: var(--dark-gradient);
}

.pricing-wrap { max-width: 560px; margin: 0 auto; }

.pricing-box {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.pricing-box__hero {
    background: linear-gradient(180deg, #f0f0f0 0%, var(--cream) 100%);
    text-align: center;
    padding: 48px 32px 0;
    overflow: hidden;
}

.pricing-box__hero img {
    max-height: 140px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.pricing-box__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 48px 48px;
    gap: 4px;
}

.pricing-box__price-col { text-align: center; }

.pricing-box__divider {
    width: 1px;
    background: #d1cdc6;
    align-self: stretch;
    margin: 0 32px;
}

.pricing-box__label {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a766e;
    margin-bottom: 12px;
}

.pricing-box__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.pricing-box__currency {
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-box__num {
    font-family: var(--font-display);
    font-size: 5.5rem;
    color: var(--dark);
    line-height: 1;
}

.pricing-box__per {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: #7a766e;
    line-height: 1;
}

.pricing-box__sub {
    font-size: 0.78rem;
    color: #9a9690;
    margin-bottom: 20px;
    font-family: var(--font-ui);
}

/* Annual column */
.pricing-box__annual-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 16px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-box__annual-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6px;
}

.pricing-box__annual-was {
    font-size: 0.9rem;
    color: #9a9690;
    text-decoration: line-through;
    font-family: var(--font-ui);
    margin-bottom: 4px;
}

.pricing-box__annual-now {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--dark);
    line-height: 1;
}

.pricing-box__annual-now small {
    font-size: 1.1rem;
    color: #7a766e;
    font-family: var(--font-ui);
    font-weight: 600;
}

.pricing-box__annual-equiv {
    font-size: 0.78rem;
    color: #9a9690;
    margin-bottom: 20px;
    font-family: var(--font-ui);
}

.pricing-cta {
    margin-top: 4px;
    font-size: 0.88rem;
    padding: 14px 20px;
}

.pricing-box__includes {
    padding: 32px 48px 40px;
    border-top: 2px solid #e8e3db;
    background: rgba(0,0,0,0.02);
}

.pricing-box__includes-title {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9a9690;
    margin-bottom: 16px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e8e3db;
    font-size: 0.88rem;
    color: var(--dark);
    gap: 16px;
    font-family: var(--font-body);
}

.pricing-item:last-child { border-bottom: none; }

.pricing-item__val {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--green);
    white-space: nowrap;
}

.pricing-box__total-val {
    margin-top: 20px;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: #9a9690;
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--cream);
    color: var(--text-on-light);
}
.about h1, .about h2, .about h3, .about h4 { color: var(--text-on-light); }
.about p { color: var(--text-on-light-muted); }
.about strong { color: var(--text-on-light); }
.about .eyebrow { color: var(--green); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.about .display-headline {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about__text p {
    margin-bottom: 12px;
}

.about__image img {
    border-radius: 16px;
    width: 100%;
    transition: transform 0.5s var(--ease-out);
}
.about__image:hover img { transform: scale(1.015); }

.about__video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.about__video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(33,180,134,0.08) 0%, transparent 70%);
}

.about__video-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(33, 180, 134, 0.15);
    border: 2px solid rgba(33, 180, 134, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: background 0.2s, transform 0.2s;
}

.about__video-placeholder:hover .about__video-play {
    background: rgba(33, 180, 134, 0.28);
    transform: scale(1.08);
}

.about__video-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin: 0;
}

.about__text p {
    font-size: 1rem;
    color: var(--text-on-light-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about__stat { text-align: center; }

.about__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 5px;
}

.about__stat span {
    font-size: 0.72rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: var(--font-ui);
    font-weight: 600;
}

/* ── GUARANTEE ── */
.guarantee {
    padding: 120px 0;
    background: var(--dark-gradient);
}

.guarantee__center {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.guarantee__badge {
    width: 240px;
    height: auto;
    display: block;
    margin: 0 auto 32px;
}

.guarantee__headline {
    font-family: var(--font-ui);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 8px;
}

.guarantee__subheading {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin: 24px 0 12px;
}

.guarantee__intro {
    font-size: 1.05rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    line-height: 1.65;
}

.guarantee__sub {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    font-style: italic;
}

.guarantee__weeks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guarantee__weeks li {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.guarantee__weeks li strong {
    color: #ffffff;
}

.guarantee__outcome {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 10px;
}

.guarantee__outcome--yes { color: #4ade80; font-weight: 600; }
.guarantee__outcome--no  { color: var(--gray-300); }

.guarantee__hook {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.5;
}

.guarantee__disclaimer {
    font-size: 0.8rem;
    color: var(--gray-400);
    opacity: 0.6;
    font-style: italic;
}

.guarantee__visual img {
    border-radius: 14px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
}

/* ── FAQ ── */
.faq {
    padding: 120px 0;
    background: var(--cream);
    color: var(--text-on-light);
}
.faq h1, .faq h2, .faq h3, .faq h4 { color: var(--text-on-light); }
.faq p { color: var(--text-on-light-muted); }
.faq strong { color: var(--text-on-light); }
.faq .eyebrow { color: var(--green); }

.faq-list {
    max-width: 740px;
    margin: 48px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item[open] {
    border-color: var(--border-green);
}

.faq-item summary {
    padding: 20px 28px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    transition: background 0.2s;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.03); }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--green);
    flex-shrink: 0;
    font-weight: 300;
    transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
    padding: 20px 28px 24px;
    color: var(--gray-400);
    font-size: 0.97rem;
    line-height: 1.75;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-freedom-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-freedom-list li {
    font-size: 0.97rem;
    color: var(--text-on-light-muted);
    line-height: 1.5;
}

.faq-freedom-list li strong {
    color: var(--text-on-light);
}

/* ── FINAL CTA ── */
.final-cta {
    padding: 120px 0;
    background: var(--dark-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(33, 180, 134, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta__logo { margin: 0 auto 40px; }

.final-cta__headline {
    font-family: var(--font-ui);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    text-transform: none;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.final-cta__sub {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.final-cta__tm {
    font-size: 0.45em;
    vertical-align: super;
    line-height: 0;
}

.final-cta__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ── FOOTER ── */
.footer {
    background: var(--dark);
    padding: 48px 0;
    text-align: center;
}

.footer img { margin: 0 auto 20px; opacity: 0.7; }

.footer p {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.footer__disclaimer {
    font-size: 0.72rem !important;
    max-width: 560px;
    margin: 12px auto 0 !important;
    line-height: 1.65;
}

/* ========================================================
   LIGHT SECTION CARD + COMPONENT OVERRIDES
   ======================================================== */

/* -- what-is-som (light) -- */
.what-is-som .freedom-cards {
    background: #ffffff;
    border-color: var(--border-on-light);
}
.what-is-som .freedom-card { border-bottom-color: var(--border-on-light); }
.what-is-som .freedom-card:hover { background: rgba(33, 180, 134, 0.05); }
.what-is-som .freedom-card h4 { color: var(--text-on-light); }
.what-is-som .freedom-card p { color: var(--text-on-light-muted); }
.what-is-som .freedom-card__num { color: rgba(33, 180, 134, 0.25); }

.what-is-som .mf-equation {
    background: var(--dark);
    border-color: rgba(255,255,255,0.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.what-is-som .mf-equation__term span:last-child { color: rgba(255,255,255,0.55); }
.what-is-som .mf-equation__op { color: rgba(255,255,255,0.9); }
.what-is-som .mf-equation__equals { color: rgba(255,255,255,0.9); }
.what-is-som .mf-equation__mf { color: var(--green); text-shadow: 0 0 18px rgba(33,180,134,0.6), 0 0 40px rgba(33,180,134,0.3); }
.what-is-som .mf-equation__divider { background: rgba(255,255,255,0.07); }
.what-is-som .mf-equation__result { align-items: center; gap: 10px; }

/* -- results-wall (light) -- */
.results-wall .hof-counter span { color: var(--green); }
.results-wall .hof-counter p { color: var(--text-on-light-muted); }
.results-wall .tcard {
    background: #ffffff;
    border-color: var(--border-on-light);
}
.results-wall .tcard__thumb { border-bottom-color: var(--border-on-light); }
.results-wall .tcard__result { color: var(--text-on-light); }
.results-wall .tcard__name { color: var(--green); }
.results-wall .tcard:hover { border-color: rgba(33, 180, 134, 0.35); }
.results-wall .link-arrow { color: var(--green); }
.results-wall .testimonial-dot { background: rgba(26, 33, 35, 0.2); }
.results-wall .testimonial-dot.active,
.results-wall .testimonial-dot:hover { background: var(--green); transform: scale(1.3); }
.results-wall .testimonial-arrow { background: rgba(26, 33, 35, 0.08); border-color: var(--border-on-light); color: var(--text-on-light); }
.results-wall .testimonial-arrow:hover { background: rgba(33, 180, 134, 0.15); border-color: rgba(33, 180, 134, 0.35); color: var(--text-on-light); }

/* -- who-its-for (light) -- */
.who-its-for .for-col--yes {
    background: rgba(33, 180, 134, 0.08);
    border-color: rgba(33, 180, 134, 0.25);
}
.who-its-for .for-col--no {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.2);
}
.who-its-for .for-col--yes h2 { color: var(--green); }
.who-its-for .for-col--no h2  { color: #b91c1c; }
.who-its-for .for-col ul li { border-bottom-color: var(--border-on-light); }
.who-its-for .for-col ul li strong { color: var(--text-on-light); }
.who-its-for .for-tick { color: var(--green); background: rgba(33, 180, 134, 0.12); }
.who-its-for .for-cross { color: #b91c1c; background: rgba(185, 28, 28, 0.1); }

/* -- about (light) -- */
.about .about__stat strong { color: var(--green); }
.about .about__stat span { color: var(--text-on-light-muted); }
.about .about__stats { border-top-color: var(--border-on-light); }

/* -- faq (light) -- */
.faq .faq-item {
    border-color: var(--border-on-light);
    background: #ffffff;
}
.faq .faq-item[open] { border-color: rgba(33, 180, 134, 0.35); }
.faq .faq-item summary { color: var(--text-on-light); }
.faq .faq-item summary:hover { background: rgba(26, 33, 35, 0.03); }
.faq .faq-item summary::after { color: var(--green); }
.faq .faq-answer { color: var(--text-on-light-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .topnav__links { gap: 16px; font-size: 0.72rem; }
    .topnav__links a:not(.topnav__cta) { display: none; }

    .what-is-som__grid,
    .track-record__inner,
    .for-grid,
    .guarantee__grid,
    .about__grid { grid-template-columns: 1fr; }

    .what-is-som__text { text-align: center; }
    .what-is-som__text p { text-align: left; }
    .what-is-som__grid { gap: 32px; }

    .inclusion__content { grid-template-columns: 1fr; }
    .inclusion--flip .inclusion__content { direction: ltr; }

    .curriculum-grid { grid-template-columns: 1fr; }

    .value-bridge { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
    .value-bridge__right { display: flex; justify-content: center; }

    .for-grid { grid-template-columns: 1fr; }
    .for-col { padding: 32px 24px; }

    .pricing-box__main {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 32px;
    }
    .pricing-box__includes { padding: 28px 28px 36px; }

    .about__stats { grid-template-columns: repeat(2, 1fr); }

    .testimonial-slider__wrap { grid-template-columns: 1fr 1fr; }
    .testimonial-arrow--prev { left: -8px; }
    .testimonial-arrow--next { right: -8px; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .hero { padding: 100px 0 56px; }
    .hero__headline { font-size: clamp(3.5rem, 14vw, 5.5rem); }
    .hero__headline--statement { font-size: clamp(1.9rem, 8vw, 3rem); }

    .testimonial-slider__wrap { grid-template-columns: 1fr; }
    .testimonial-arrow { display: none; }

    .about__stats { grid-template-columns: repeat(2, 1fr); }

    .pricing-box__num { font-size: 4.5rem; }

    .final-cta__btns .btn--xl,
    .final-cta__btns .btn--lg { padding: 18px 28px; font-size: 0.95rem; }

    /* Sticky bar: 2-row layout */
    .sticky-bar__inner { flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 6px 16px; gap: 4px; }
    .sticky-bar__left { flex: 0 0 100%; justify-content: flex-start; gap: 6px; order: 1; }
    .sticky-bar__sub { display: none; }
    .sticky-bar__label { display: none; }
    .sticky-bar__label--mobile { display: block; font-family: var(--font-ui); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.04em; color: var(--gray-300); text-transform: uppercase; }
    .sticky-bar__dot { width: 8px; height: 8px; }
    .sticky-bar__timer { order: 2; align-self: center; }
    .sticky-bar__btn { order: 3; padding: 10px 18px; font-size: 0.75rem; align-self: center; }
    .sticky-bar__timer .sticky-bar__unit small { display: block; font-size: 0.44rem; }
    .sticky-bar__unit { min-width: 34px; }
    .sticky-bar__unit span { font-size: 1.3rem; }

    /* Avatar row: centred and smaller */
    .avatar-row { flex-direction: column; align-items: center; text-align: center; gap: 6px; font-size: 0.75rem; }
    .star-icon { width: 16px; height: 16px; }

    /* Hero: image above definition paragraph on mobile */
    .hero .container { display: flex; flex-direction: column; align-items: center; }
    .hero__proof-row { order: 1; width: 100%; }
    .hero__headline { order: 2; }
    .hero__visual { order: 3; margin: 16px auto 0; }
    .hero__definition { order: 4; }
    .hero-anim-4:not(.hero__visual) { order: 5; }

    #pricing .section-sub { display: none; }
    .hero__definition { font-size: 0.95rem; line-height: 1.7; margin-top: 24px; }

    /* mf-equation: single emoji row on mobile */
    .mf-equation { padding: 14px 12px; }
    .mf-equation__parts { display: flex; flex-wrap: nowrap; gap: 10px; justify-content: center; align-items: center; margin-bottom: 12px; }
    .mf-equation__term span:last-child { display: none; }
    .mf-equation__emoji { font-size: 1.7rem; }
    .mf-equation__op { font-size: 1rem; padding-bottom: 0; color: rgba(255,255,255,0.25); }
    .mf-equation__mf { font-size: 1.3rem; }
    .mf-equation__equals { font-size: 1.8rem; color: rgba(255,255,255,0.25); }
}
