/* ==========================================================================
   Smart Acumen Consulting — Design System
   Style: Liquid-glass (glassmorphism) on a deep navy canvas with gold accents
   Fonts: Playfair Display (display) + Inter (UI/body)
   ==========================================================================
   TABLE OF CONTENTS
   01. Tokens & reset            08. Methodology steps
   02. Ambient background        09. Testimonials marquee
   03. Typography & utilities    10. CTA band
   04. Buttons                   11. Inner page hero & prose (legal)
   05. Header & navigation       12. Program pages (focus/pricing/curriculum)
   06. Hero slider               13. Team & contact
   07. Expertise & stats         14. Footer, FABs, reveal, responsive
   ========================================================================== */

/* ---------- 01. TOKENS & RESET ---------- */
:root {
    /* Canvas */
    --bg-0: #04070f;
    --bg-1: #070d1b;
    --bg-2: #0b1526;

    /* Ink */
    --ink: #f2f5fb;
    --ink-2: #b9c4d8;
    --ink-3: #8492ab;

    /* Brand gold */
    --gold: #e3b74d;
    --gold-soft: #f3d98b;
    --gold-deep: #a8781f;
    --gold-grad: linear-gradient(118deg, #f7e394 0%, #e3b74d 42%, #b98a2e 100%);

    /* Glass */
    --glass: rgba(255, 255, 255, 0.045);
    --glass-2: rgba(255, 255, 255, 0.075);
    --glass-nav: rgba(7, 13, 27, 0.72);
    --line: rgba(255, 255, 255, 0.09);
    --line-2: rgba(255, 255, 255, 0.16);
    --gold-line: rgba(227, 183, 77, 0.35);

    /* Type */
    --font-display: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Poppins', -apple-system, 'Segoe UI', sans-serif;

    /* Rhythm */
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1200px;
    --section-pad: clamp(4.5rem, 9vw, 7.5rem);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --speed: 0.3s;

    /* Layers */
    --z-bg: -1;
    --z-header: 100;
    --z-drawer: 110;
    --z-fab: 90;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--bg-0);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
address { font-style: normal; }

::selection { background: rgba(227, 183, 77, 0.35); color: #fff; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
    position: fixed; top: -100%; left: 1rem;
    z-index: 200; padding: 0.75rem 1.25rem;
    background: var(--gold); color: #141004; font-weight: 600;
    border-radius: 0 0 12px 12px; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- 02. AMBIENT BACKGROUND ---------- */
.bg-scene {
    position: fixed; inset: 0; z-index: var(--z-bg);
    background:
        radial-gradient(ellipse 80% 55% at 70% -10%, rgba(30, 58, 110, 0.5), transparent 60%),
        radial-gradient(ellipse 60% 45% at 10% 15%, rgba(122, 84, 12, 0.22), transparent 60%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 55%, #030509 100%);
    overflow: hidden;
}

.orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: 0.5;
    animation: orbFloat 22s var(--ease-out) infinite alternate;
}
.orb-gold { width: 520px; height: 520px; top: -14%; left: -10%; background: radial-gradient(circle, rgba(227,183,77,0.32), transparent 65%); }
.orb-blue { width: 640px; height: 640px; top: 30%; right: -18%; background: radial-gradient(circle, rgba(43,88,168,0.35), transparent 65%); animation-delay: -8s; }
.orb-teal { width: 460px; height: 460px; bottom: -18%; left: 24%; background: radial-gradient(circle, rgba(38,116,128,0.25), transparent 65%); animation-delay: -15s; }

@keyframes orbFloat {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(60px, 40px, 0) scale(1.12); }
}

.bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
}

/* ---------- 03. TYPOGRAPHY & UTILITIES ---------- */
.container {
    width: min(var(--container), 100% - 2.5rem);
    margin-inline: auto;
}

.section { padding-block: var(--section-pad); position: relative; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 600; }

.display {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-italic {
    font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.kicker {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.kicker::before {
    content: ""; width: 34px; height: 1px;
    background: var(--gold-grad);
}
.kicker--center { justify-content: center; }
.kicker--center::after {
    content: ""; width: 34px; height: 1px;
    background: var(--gold-grad);
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.015em;
}
.section-sub { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-3); }

/* Glass surface — the core visual primitive of the site */
.glass {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(2, 5, 12, 0.45);
    overflow: hidden;
}
.glass::before {
    /* top-edge light catch */
    content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.28) 50%, transparent 95%);
    pointer-events: none;
}

/* ---------- 04. BUTTONS ---------- */
.btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    min-height: 52px; padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
    white-space: nowrap;
    cursor: pointer; user-select: none;
    overflow: hidden; /* clips the shine sweep */
    transition: transform var(--speed) var(--ease-out), box-shadow var(--speed) var(--ease-out), background var(--speed), border-color var(--speed), color var(--speed);
    will-change: transform;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; transition: transform var(--speed) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

/* Shine sweep — a glare band that travels across the button */
.btn::before {
    content: "";
    position: absolute; top: -25%; bottom: -25%; left: 0;
    width: 45%;
    background: linear-gradient(100deg, transparent 15%, var(--shine, rgba(255, 255, 255, 0.35)) 50%, transparent 85%);
    transform: translateX(-160%) skewX(-22deg);
    opacity: 0;
    pointer-events: none;
}
.btn:hover::before { animation: btnShine 0.85s var(--ease-out); }
@keyframes btnShine {
    0%   { transform: translateX(-160%) skewX(-22deg); opacity: 0; }
    12%  { opacity: 1; }
    70%  { transform: translateX(330%) skewX(-22deg); opacity: 1; }
    100% { transform: translateX(330%) skewX(-22deg); opacity: 0; }
}

.btn-gold {
    --shine: rgba(255, 255, 255, 0.65);
    background: var(--gold-grad);
    color: #1a1303;
    box-shadow: 0 10px 30px rgba(227, 183, 77, 0.28), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-gold::before { animation: btnShine 3.4s var(--ease-out) 1.2s infinite; }
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(227, 183, 77, 0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-glass {
    background: var(--glass-2);
    border: 1px solid var(--line-2);
    color: var(--ink);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-line);
    box-shadow: 0 12px 32px rgba(2, 5, 12, 0.5);
}

.btn-outline-gold {
    border: 1px solid var(--gold-line);
    color: var(--gold-soft);
    background: rgba(227, 183, 77, 0.06);
}
.btn-outline-gold:hover {
    transform: translateY(-2px);
    background: rgba(227, 183, 77, 0.14);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(227, 183, 77, 0.18);
}

.btn-sm { min-height: 44px; padding: 0.55rem 1.35rem; font-size: 0.9rem; }
.btn-lg { min-height: 58px; padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ---------- 05. HEADER & NAVIGATION ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: var(--z-header);
    padding-block: 1.1rem;
    transition: padding var(--speed) var(--ease-out), background var(--speed), box-shadow var(--speed), border-color var(--speed);
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { padding-block: 0.55rem; }
/* The scrolled backdrop lives on a pseudo-element, NOT the header itself:
   backdrop-filter on the header would make it a containing block for the
   position:fixed mobile drawer, collapsing the menu into the header strip. */
.site-header.is-scrolled::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--glass-nav);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(2, 5, 12, 0.55);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
    /* official white wordmark: scales fluidly with viewport */
    height: clamp(50px, 5vw, 66px);
    width: auto;
    filter: drop-shadow(0 4px 14px rgba(227, 183, 77, 0.3));
    transition: transform var(--speed) var(--ease-out), filter var(--speed);
}
.brand:hover .brand-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 20px rgba(227, 183, 77, 0.5));
}

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav ul { display: flex; align-items: center; gap: 0.35rem; }

.nav-link {
    position: relative;
    display: inline-flex; align-items: center;
    padding: 0.55rem 0.85rem;
    font-size: 0.94rem; font-weight: 500;
    color: var(--ink-2);
    border-radius: 10px;
    white-space: nowrap;
    transition: color var(--speed), background var(--speed);
}
.nav-link::after {
    content: ""; position: absolute;
    left: 0.85rem; right: 0.85rem; bottom: 0.28rem;
    height: 2px; border-radius: 2px;
    background: var(--gold-grad);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--speed) var(--ease-out);
}
.nav-link:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }

.nav-badge {
    margin-left: 0.4rem;
    font-size: 0.56rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.18rem 0.45rem; border-radius: 999px;
    background: var(--gold-grad); color: #1a1303;
    animation: badgePulse 2.4s ease-in-out infinite;
}
.nav-badge--alt {
    background: linear-gradient(118deg, #b9d0ff, #6f8fd8);
    color: #0a1533;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227, 183, 77, 0.45); }
    50% { box-shadow: 0 0 0 6px rgba(227, 183, 77, 0); }
}

.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px; padding: 10px;
    border-radius: 12px;
    background: var(--glass-2);
    border: 1px solid var(--line);
}
.nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--ink); border-radius: 2px;
    transition: transform var(--speed) var(--ease-out), opacity var(--speed);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0; z-index: calc(var(--z-header) - 1);
    background: rgba(2, 5, 12, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0; transition: opacity var(--speed);
}
.nav-overlay.is-visible { opacity: 1; }

/* ---------- 06. HERO SLIDER ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; flex-direction: column;
    padding-top: clamp(5.5rem, 12vh, 8rem);
    overflow: hidden;
}
.hero::after {
    /* soft fade into the first section */
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110px;
    background: linear-gradient(180deg, transparent, rgba(4, 7, 15, 0.75));
    pointer-events: none;
}

.hero-slider { position: relative; flex: 1; display: flex; }

.hero-slide {
    position: absolute; inset: 0;
    width: 100%; /* the active (in-flow) slide must fill the slider, not shrink to content */
    display: flex; align-items: center;
    opacity: 0; visibility: hidden;
    transform: scale(0.985);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), visibility 0s 0.9s;
    pointer-events: none;
}
.hero-slide.is-active {
    position: relative;
    opacity: 1; visibility: visible;
    transform: scale(1);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    pointer-events: auto;
}

.hero-slide .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    padding-block: 2rem 6rem;
}

/* Slide entrance choreography */
.hero-copy > * { opacity: 0; transform: translateY(26px); }
.hero-slide.is-active .hero-copy > * {
    animation: riseIn 0.85s var(--ease-out) forwards;
}
.hero-slide.is-active .hero-copy > *:nth-child(1) { animation-delay: 0.12s; }
.hero-slide.is-active .hero-copy > *:nth-child(2) { animation-delay: 0.24s; }
.hero-slide.is-active .hero-copy > *:nth-child(3) { animation-delay: 0.36s; }
.hero-slide.is-active .hero-copy > *:nth-child(4) { animation-delay: 0.48s; }
.hero-slide.is-active .hero-copy > *:nth-child(5) { animation-delay: 0.60s; }

.hero-visual { opacity: 0; transform: translateY(30px) scale(0.96); }
.hero-slide.is-active .hero-visual {
    animation: riseInScale 1s var(--ease-out) 0.3s forwards;
}

@keyframes riseIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes riseInScale {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(227, 183, 77, 0.08);
    border: 1px solid var(--gold-line);
    color: var(--gold-soft);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(227, 183, 77, 0.2);
    animation: badgePulse 2s infinite;
}

.hero-title {
    margin-top: 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.9vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.14;
    color: var(--ink);
}

.hero-lead {
    margin-top: 1.4rem;
    max-width: 54ch;
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    color: var(--ink-2);
}
.hero-lead strong { color: var(--ink); font-weight: 600; }

.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-chips { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Centered slide variant (used by the Bridge the Gap slide) */
.hero-slide--center .container {
    display: flex; justify-content: center;
    padding-block: 2rem 6rem;
}
.hero-slide--center .hero-copy {
    max-width: 880px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
}
.hero-slide--center .hero-lead { max-width: 58ch; }
.hero-slide--center .hero-actions { justify-content: center; }
.hero-slide--center .hero-chips { justify-content: center; margin-top: 2rem; max-width: 640px; }
.hero-slide--center .date-badge { animation: badgePulse 2.4s ease-in-out infinite; }

.hero-price-note {
    margin-top: 1.9rem;
    font-size: 0.95rem; color: var(--ink-3);
    letter-spacing: 0.04em;
}
.hero-price-note strong {
    font-size: 1.25rem; font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-inline: 0.3rem;
}
.chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem; font-weight: 500; color: var(--ink-2);
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.chip svg { width: 15px; height: 15px; color: var(--gold); }
.chip strong { color: var(--gold-soft); font-weight: 600; }

/* Hero portrait card (slide 1) */
.hero-visual { position: relative; display: flex; justify-content: center; }

.portrait-card {
    position: relative;
    width: min(430px, 100%);
    border-radius: 30px;
    background: linear-gradient(165deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02) 55%);
    border: 1px solid var(--line-2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(2, 5, 12, 0.6);
    padding: 1rem 1rem 0;
}
.card-sheen {
    /* clipping layer keeps the rotating beam inside the card frame */
    position: absolute; inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
}
.card-sheen::before {
    content: ""; position: absolute; inset: -60%;
    background: conic-gradient(from 180deg, transparent 55%, rgba(227,183,77,0.4) 76%, transparent 92%);
    animation: spinSlow 9s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(1turn); } }
.portrait-card-inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(227, 183, 77, 0.28), transparent 65%),
        linear-gradient(180deg, #0e1930, #091124);
}
.portrait-card-inner img {
    width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; object-position: top;
}

.portrait-caption {
    position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
    width: max-content; max-width: 92%;
    text-align: center;
    padding: 0.85rem 1.7rem;
    border-radius: 16px;
    background: rgba(9, 15, 29, 0.85);
    border: 1px solid var(--gold-line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(2, 5, 12, 0.6);
}
.portrait-caption .name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem; font-weight: 700; color: var(--gold-soft);
    letter-spacing: 0.04em;
}
.portrait-caption .role {
    display: block; margin-top: 0.1rem;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ink-3);
}

/* Floating mini glass stats around portrait */
.float-badge {
    position: absolute;
    display: flex; align-items: center; gap: 0.65rem;
    padding: 0.7rem 1.05rem;
    border-radius: 14px;
    background: rgba(9, 15, 29, 0.82);
    border: 1px solid var(--line-2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(2, 5, 12, 0.55);
    animation: floatY 5.5s ease-in-out infinite;
}
.float-badge svg { width: 22px; height: 22px; color: var(--gold); }
.float-badge .num { font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1.1; }
.float-badge .lbl { font-size: 0.68rem; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.float-badge--tl { top: 7%; left: -8%; }
.float-badge--br { bottom: 14%; right: -7%; animation-delay: -2.7s; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-13px); }
}

/* Program slides visual card */
.program-visual {
    width: min(460px, 100%);
    padding: 2rem;
}
.program-visual .pv-head {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding-bottom: 1.2rem; margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--line);
}
.program-visual .pv-title {
    font-family: var(--font-display);
    font-size: 1.25rem; color: var(--ink); font-weight: 700;
}
.program-visual .pv-tag {
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.32rem 0.7rem; border-radius: 999px;
    background: var(--gold-grad); color: #1a1303; white-space: nowrap;
}
.program-visual ul { display: grid; gap: 0.8rem; }
.program-visual li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.95rem; color: var(--ink-2);
}
.program-visual li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.program-visual .pv-price {
    margin-top: 1.5rem; padding-top: 1.3rem;
    border-top: 1px solid var(--line);
    display: flex; align-items: baseline; gap: 0.5rem;
}
.program-visual .pv-price .amount {
    font-size: 2rem; font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.program-visual .pv-price .gst { font-size: 0.85rem; color: var(--ink-3); }

/* Slider controls */
.hero-controls {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 2.2rem;
}
.hero-dots { display: flex; align-items: center; gap: 0.9rem; }
.hero-dot {
    position: relative;
    width: 44px; height: 30px;
    display: flex; align-items: center;
}
.hero-dot::before {
    content: ""; width: 100%; height: 4px; border-radius: 4px;
    background: rgba(255, 255, 255, 0.16);
    transition: background var(--speed);
}
.hero-dot .fill {
    position: absolute; left: 0; top: 13px;
    height: 4px; width: 0; border-radius: 4px;
    background: var(--gold-grad);
}
.hero-dot.is-active .fill { animation: dotFill var(--slide-ms, 6500ms) linear forwards; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.hero-dot:hover::before { background: rgba(255, 255, 255, 0.3); }

.hero-count {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.85rem; letter-spacing: 0.24em;
    font-variant-numeric: tabular-nums;
    color: var(--ink-3);
}
.hero-count .now { color: var(--gold-soft); font-weight: 700; font-size: 1.05rem; }
.hero-count .sep {
    width: 34px; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-arrows { display: flex; gap: 0.7rem; }
.hero-arrow {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--glass-2);
    border: 1px solid var(--line);
    color: var(--ink);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background var(--speed), border-color var(--speed), transform var(--speed) var(--ease-out);
}
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow:hover {
    background: rgba(227, 183, 77, 0.15);
    border-color: var(--gold-line);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute; left: 50%; bottom: 2.4rem; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ink-3);
}
.hero-scroll-hint::after {
    content: ""; width: 1px; height: 42px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- 07. EXPERTISE CARDS & STATS ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.6rem;
}

.feature-card {
    padding: 2.4rem 2.1rem;
    display: flex; flex-direction: column; gap: 1.1rem;
    transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.feature-card::after {
    /* hover glow wash */
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(227, 183, 77, 0.12), transparent 65%);
    opacity: 0; transition: opacity 0.4s;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-line);
    box-shadow: 0 28px 70px rgba(2, 5, 12, 0.65);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 62px; height: 62px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(227, 183, 77, 0.2), rgba(227, 183, 77, 0.05));
    border: 1px solid var(--gold-line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.feature-icon svg { width: 28px; height: 28px; color: var(--gold-soft); }

.feature-card h3 { font-size: 1.3rem; font-family: var(--font-display); font-weight: 700; }
.feature-card p { color: var(--ink-3); font-size: 0.97rem; flex: 1; }

.feature-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.94rem; color: var(--gold-soft);
    transition: gap var(--speed) var(--ease-out), color var(--speed);
}
.feature-link svg { width: 17px; height: 17px; }
.feature-link:hover { gap: 0.85rem; color: var(--gold); }

/* WHY — split layout with stats */
.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.why-copy p + p { margin-top: 1.1rem; }
.why-copy .lead-line { color: var(--ink); font-size: 1.08rem; }

.check-list { margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.check-list li {
    display: flex; align-items: center; gap: 0.85rem;
    font-weight: 600; color: var(--ink);
}
.check-list .tick {
    width: 28px; height: 28px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gold-grad); color: #1a1303;
    box-shadow: 0 6px 16px rgba(227, 183, 77, 0.35);
}
.check-list .tick svg { width: 15px; height: 15px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
}
.stat-card {
    padding: 2rem 1.6rem;
    text-align: center;
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.stat-card:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.stat-value {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1.1;
}
.stat-label {
    margin-top: 0.45rem;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-3);
}

/* ---------- 08. METHODOLOGY STEPS ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}
.step-card {
    padding: 2.3rem 1.9rem 2.1rem;
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.step-card:hover { transform: translateY(-8px); border-color: var(--gold-line); }
.step-num {
    font-family: var(--font-display);
    font-size: 3.2rem; font-weight: 700; line-height: 1;
    background: linear-gradient(180deg, rgba(227,183,77,0.85), rgba(227,183,77,0.12));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step-card h3 {
    margin-top: 1.1rem;
    font-size: 1.22rem; font-family: var(--font-display); font-weight: 700;
}
.step-card p { margin-top: 0.6rem; color: var(--ink-3); font-size: 0.95rem; }
.step-card .step-line {
    margin-top: 1.4rem; height: 3px; border-radius: 3px;
    background: rgba(255,255,255,0.08);
    overflow: hidden; position: relative;
}
.step-card .step-line::after {
    content: ""; position: absolute; inset: 0;
    background: var(--gold-grad);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.9s var(--ease-out) 0.25s;
}
.step-card.is-revealed .step-line::after { transform: scaleX(1); }

/* ---------- 09. TESTIMONIALS MARQUEE ---------- */
.testimonials { overflow: hidden; }

.rating-pill {
    display: inline-flex; align-items: center; gap: 0.7rem;
    margin-top: 1.3rem;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--gold-line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.rating-pill .stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.95rem; }
.rating-pill .score { font-weight: 700; color: var(--ink); }

.marquee {
    --marquee-duration: 80s;
    display: flex; gap: 1.4rem;
    width: max-content;
    padding-block: 0.6rem;
    animation: marqueeScroll var(--marquee-duration) linear infinite;
}
.marquee-row { overflow: visible; margin-top: 1.4rem; }
.marquee-row:first-of-type { margin-top: clamp(2rem, 4vw, 3rem); }
.marquee--reverse { animation-direction: reverse; }
.marquee-row:hover .marquee { animation-play-state: paused; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.t-card {
    width: min(400px, 84vw);
    padding: 1.7rem 1.7rem 1.5rem;
    display: flex; flex-direction: column; gap: 1rem;
    flex-shrink: 0;
    transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.t-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.t-card .t-stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 0.1em; }
.t-card .t-stars span { color: var(--ink-3); margin-left: 0.5rem; letter-spacing: 0; font-weight: 600; }
.t-card blockquote { font-size: 0.95rem; color: var(--ink-2); flex: 1; }
.t-card figcaption { display: flex; align-items: center; gap: 0.85rem; }
.t-avatar {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-weight: 700; font-size: 1.05rem; color: #1a1303;
    background: var(--gold-grad);
    box-shadow: 0 6px 16px rgba(227, 183, 77, 0.3);
}
.t-card .t-name { font-weight: 600; color: var(--ink); font-size: 0.96rem; line-height: 1.25; }
.t-card .t-role { font-size: 0.8rem; color: var(--ink-3); }

/* ---------- 10. CTA BAND ---------- */
.cta-band {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
    text-align: center;
    border-radius: calc(var(--radius) + 8px);
    background:
        radial-gradient(ellipse 75% 120% at 50% -20%, rgba(227, 183, 77, 0.2), transparent 60%),
        var(--glass);
}
.cta-band::after {
    content: ""; position: absolute; inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(227,183,77,0.5), rgba(255,255,255,0.08) 40%, rgba(227,183,77,0.25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.7vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    max-width: 22ch; margin-inline: auto;
}
.cta-band p { margin-top: 1rem; color: var(--ink-3); max-width: 52ch; margin-inline: auto; }
.cta-band .btn { margin-top: 2.2rem; }

/* ---------- 11. INNER PAGE HERO & PROSE ---------- */
.page-hero {
    position: relative;
    padding: clamp(9rem, 18vh, 12rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    text-align: center;
}
.page-hero .breadcrumb {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.85rem; color: var(--ink-3);
    margin-bottom: 1.4rem;
}
.page-hero .breadcrumb a { color: var(--gold-soft); transition: color var(--speed); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb svg { width: 13px; height: 13px; }
.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.7vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.page-lead {
    margin: 1.3rem auto 0; max-width: 62ch;
    font-size: 1.07rem; color: var(--ink-2);
}

.prose-card {
    max-width: 880px;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 3.5rem);
}
.prose h2 {
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 700;
    margin: 2.2rem 0 0.9rem;
    padding-left: 1.1rem;
    border-left: 3px solid var(--gold);
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { margin: 0.6rem 0 1.2rem; display: grid; gap: 0.55rem; }
.prose ul li {
    position: relative; padding-left: 1.7rem; color: var(--ink-2);
}
.prose ul li::before {
    content: ""; position: absolute; left: 0.2rem; top: 0.62em;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-grad);
}
.prose a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }

.notice-strip {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.4rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-sm);
    background: rgba(227, 183, 77, 0.08);
    border: 1px solid var(--gold-line);
    color: var(--gold-soft);
    font-weight: 500;
}
.notice-strip svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.15rem; }

/* ---------- 12. PROGRAM PAGES ---------- */
.program-hero {
    position: relative;
    min-height: 88svh;
    display: flex; align-items: center;
    padding: clamp(8rem, 16vh, 11rem) 0 clamp(4rem, 8vw, 6rem);
}
.program-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.program-hero .hero-title { font-size: clamp(2.2rem, 4.7vw, 3.4rem); }

.date-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: var(--gold-grad); color: #1a1303;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(227, 183, 77, 0.35);
}
.date-badge svg { width: 16px; height: 16px; }

/* Focus areas grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Pricing */
.pricing-wrap { max-width: 560px; margin-inline: auto; }
.pricing-card {
    text-align: center;
    padding: clamp(2.4rem, 5vw, 3.4rem);
}
.pricing-card::after {
    content: ""; position: absolute; inset: -1px;
    border-radius: inherit; padding: 1px;
    background: linear-gradient(160deg, rgba(227,183,77,0.6), rgba(255,255,255,0.06) 45%, rgba(227,183,77,0.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.pricing-kicker {
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--gold);
}
.price-line { margin-top: 1.2rem; display: flex; align-items: baseline; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
.price-currency { font-size: 1.6rem; color: var(--gold-soft); font-weight: 600; }
.price-amount {
    font-size: clamp(3.2rem, 7vw, 4.6rem);
    font-weight: 700; line-height: 1;
    font-variant-numeric: tabular-nums;
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-gst { font-size: 1rem; color: var(--ink-3); font-weight: 500; }
.pricing-features { margin-top: 1.9rem; display: grid; gap: 0.85rem; text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 0.8rem; color: var(--ink-2); }
.pricing-features li svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }
.pricing-card .btn { margin-top: 2.2rem; width: 100%; }
.pricing-note { margin-top: 1rem; font-size: 0.83rem; color: var(--ink-3); }

/* Curriculum pillars */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.pillar-card { padding: 2.2rem 2rem; }
.pillar-card .feature-icon { margin-bottom: 1.2rem; }
.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 1.28rem; font-weight: 700;
    margin-bottom: 1.1rem;
}
.pillar-card ul { display: grid; gap: 0.7rem; }
.pillar-card li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    color: var(--ink-2); font-size: 0.95rem;
}
.pillar-card li svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 0.22rem; }

/* Program meta chips row */
.meta-row {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 2.2rem;
}
.meta-chip {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.9rem 1.3rem;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.meta-chip svg { width: 22px; height: 22px; color: var(--gold); }
.meta-chip .m-val { font-weight: 700; color: var(--ink); line-height: 1.2; }
.meta-chip .m-lbl { font-size: 0.72rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- 13. TEAM & CONTACT ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.6rem;
}
.team-card {
    text-align: center;
    padding: 0 0 1.8rem;
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.team-card:hover { transform: translateY(-8px); border-color: var(--gold-line); }
.team-photo {
    position: relative;
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(227, 183, 77, 0.22), transparent 65%),
        linear-gradient(180deg, #0d1830, #091124);
}
.team-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.6s var(--ease-out);
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 {
    margin-top: 1.4rem;
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700;
}
.team-role {
    margin-top: 0.3rem;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold);
}
.team-social {
    margin-top: 1.1rem;
    display: flex; justify-content: center; gap: 0.6rem;
}
.team-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--glass-2);
    border: 1px solid var(--line);
    color: var(--ink-2);
    transition: background var(--speed), color var(--speed), border-color var(--speed), transform var(--speed) var(--ease-out);
}
.team-social a svg { width: 17px; height: 17px; }
.team-social a:hover {
    background: var(--gold-grad); color: #1a1303;
    border-color: transparent; transform: translateY(-3px);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.contact-card {
    padding: 2.2rem 1.9rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.contact-card:hover { transform: translateY(-7px); border-color: var(--gold-line); }
.contact-card .feature-icon { width: 58px; height: 58px; border-radius: 50%; }
.contact-card h3 { font-size: 1.08rem; font-weight: 600; }
.contact-card p, .contact-card a.line { color: var(--ink-2); font-size: 0.97rem; }
.contact-card a.line:hover { color: var(--gold-soft); }
.contact-card .hint { font-size: 0.8rem; color: var(--ink-3); }

.wa-cta {
    margin-top: 3rem;
    display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
    text-align: center;
}

/* About page */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
}
.mv-card { padding: 2.4rem 2.2rem; }
.mv-card h3 {
    display: flex; align-items: center; gap: 0.9rem;
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    margin-bottom: 1rem;
}
.mv-card p { color: var(--ink-2); font-size: 1.02rem; }

.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.founder-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 85% 65% at 50% 100%, rgba(227, 183, 77, 0.25), transparent 60%),
        linear-gradient(180deg, #0d1830, #091124);
    border: 1px solid var(--line-2);
    box-shadow: 0 30px 80px rgba(2, 5, 12, 0.6);
}
.founder-photo img { width: 100%; object-fit: cover; }
.role-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

/* ---------- 14. FOOTER, FABS, REVEAL, RESPONSIVE ---------- */
.site-footer {
    position: relative;
    margin-top: var(--section-pad);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(2, 4, 9, 0.6));
    border-top: 1px solid var(--line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.footer-glow {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: min(680px, 90%); height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.25fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 3rem;
}

.footer-logo img { width: 210px; height: auto; }
.footer-tagline { margin-top: 1.2rem; font-size: 0.95rem; color: var(--ink-3); max-width: 34ch; }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--glass-2);
    border: 1px solid var(--line);
    color: var(--ink-2);
    transition: background var(--speed), color var(--speed), transform var(--speed) var(--ease-out), border-color var(--speed);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
    background: var(--gold-grad); color: #1a1303;
    border-color: transparent; transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
}
.footer-links { display: grid; gap: 0.7rem; }
.footer-links a {
    color: var(--ink-3); font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: color var(--speed), transform var(--speed) var(--ease-out);
}
.footer-links a::before {
    content: ""; width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--speed) var(--ease-out);
}
.footer-links a:hover { color: var(--gold-soft); }
.footer-links a:hover::before { width: 14px; }

.footer-contact { display: grid; gap: 1rem; }
.footer-contact p { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.94rem; color: var(--ink-3); }
.footer-contact svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 0.18rem; }
.footer-contact a:hover { color: var(--gold-soft); }

.footer-subscribe {
    margin-top: 1.4rem;
    display: flex; gap: 0.6rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--line);
}
.footer-subscribe input {
    flex: 1; min-width: 0;
    background: transparent; border: none; outline: none;
    padding: 0.5rem 1rem;
    color: var(--ink); font: inherit; font-size: 0.92rem;
}
.footer-subscribe input::placeholder { color: var(--ink-3); }
.footer-subscribe .btn { flex-shrink: 0; }
.subscribe-note { margin-top: 0.8rem; font-size: 0.86rem; color: var(--gold-soft); }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    padding-block: 1.6rem;
    border-top: 1px solid var(--line);
    font-size: 0.88rem; color: var(--ink-3);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--ink-3); transition: color var(--speed); }
.footer-bottom-links a:hover { color: var(--gold-soft); }

/* Floating action buttons */
.whatsapp-fab {
    position: fixed; right: 1.4rem; bottom: 1.4rem;
    z-index: var(--z-fab);
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    box-shadow: 0 14px 36px rgba(34, 197, 94, 0.4);
    transition: transform var(--speed) var(--ease-out), box-shadow var(--speed);
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 45px rgba(34, 197, 94, 0.5); }

.back-to-top {
    position: fixed; right: 1.55rem; bottom: 5.6rem;
    z-index: var(--z-fab);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--glass-nav);
    border: 1px solid var(--gold-line);
    color: var(--gold-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity var(--speed), transform var(--speed) var(--ease-out), visibility var(--speed);
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(227, 183, 77, 0.18); }

/* Scroll-reveal system — hidden state only applies when JS is running (.js on <html>) */
.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
}
.js .reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-slide .container,
    .program-hero .container { grid-template-columns: 1fr; gap: 2.6rem; }
    .hero-visual { order: -1; }
    .hero-slide .container { padding-block: 1rem 5.5rem; }
    .hero-slide--center .container { padding-block: 1rem 5.5rem; }
    .portrait-card { width: min(330px, 88%); }
    .program-visual { display: none; }
    .hero-scroll-hint { display: none; }

    /* Center hero content when it stacks under the visual */
    .hero-copy,
    .program-hero .hero-copy {
        display: flex; flex-direction: column; align-items: center;
        text-align: center;
    }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .hero-chips, .meta-row { justify-content: center; }

    .why-grid, .founder-grid, .about-grid { grid-template-columns: 1fr; }
    .founder-photo { max-width: 420px; margin-inline: auto; }
    .float-badge--tl { left: 0; }
    .float-badge--br { right: 0; }
}

@media (max-width: 1080px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0;
        z-index: var(--z-drawer);
        width: min(340px, 86vw);
        flex-direction: column; align-items: flex-start;
        gap: 0.5rem;
        padding: 5.5rem 1.8rem 2rem;
        background: rgba(6, 11, 22, 0.92);
        border-left: 1px solid var(--line);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        transform: translateX(100%);
        transition: transform 0.45s var(--ease-out);
        overflow-y: auto;
    }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; width: 100%; gap: 0.2rem; }
    .nav-link { width: 100%; padding: 0.85rem 1rem; font-size: 1.05rem; border-radius: 12px; }
    .nav-link::after { display: none; }
    .nav-link.is-active { background: rgba(227, 183, 77, 0.1); color: var(--gold-soft); }
    .nav-cta { width: 100%; margin-top: 1.2rem; }
    .nav-toggle { position: relative; z-index: calc(var(--z-drawer) + 1); }

    .program-hero { min-height: auto; }
    .prose-card { padding: clamp(1.5rem, 5vw, 2.5rem); }
    .cta-band { padding-inline: 1.4rem; }
}

@media (max-width: 640px) {
    :root { --radius: 18px; }
    .stats-grid { gap: 0.9rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
    .footer-bottom { justify-content: center; text-align: center; }
    .hero-controls { flex-direction: column-reverse; align-items: center; gap: 1.1rem; }
    .hero-count { display: none; }
    .t-card { width: min(330px, 84vw); }
    .meta-row { gap: 0.7rem; }
    .meta-chip { padding: 0.7rem 1rem; }
    .whatsapp-fab { right: 1rem; bottom: 1rem; }
    .back-to-top { right: 1.15rem; bottom: 5rem; }
    .btn-lg { min-height: 54px; padding: 0.9rem 1.8rem; font-size: 1rem; }
    .footer-logo img { width: 180px; }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 2rem); }
    .brand-logo { height: 44px; }
    .hero { padding-top: 5rem; }
    .hero-title { font-size: clamp(1.9rem, 8.6vw, 2.3rem); }
    .hero-lead { font-size: 0.98rem; }
    .hero-eyebrow { font-size: 0.7rem; padding: 0.4rem 0.9rem; }
    .portrait-card { width: min(280px, 92%); padding: 0.75rem 0.75rem 0; }
    .portrait-caption { padding: 0.65rem 1.1rem; bottom: -20px; }
    .portrait-caption .name { font-size: 0.92rem; }
    .float-badge { padding: 0.5rem 0.75rem; gap: 0.45rem; }
    .float-badge svg { width: 17px; height: 17px; }
    .float-badge .num { font-size: 0.85rem; }
    .float-badge .lbl { font-size: 0.58rem; }
    .chip { font-size: 0.78rem; padding: 0.42rem 0.8rem; }
    .date-badge { font-size: 0.7rem; padding: 0.5rem 1rem; }
    .hero-price-note strong { font-size: 1.1rem; }
    .section-title { font-size: clamp(1.5rem, 6.8vw, 1.8rem); }
    .page-title { font-size: clamp(1.8rem, 8vw, 2.3rem); }
    .feature-card { padding: 1.9rem 1.5rem; }
    .pillar-card, .mv-card { padding: 1.8rem 1.5rem; }
    .pricing-card { padding: 2rem 1.4rem; }
    .price-amount { font-size: clamp(2.7rem, 13vw, 3.4rem); }
    .step-card { padding: 1.9rem 1.5rem; }
    .contact-card { padding: 1.8rem 1.4rem; }
    .cta-band h2 { font-size: clamp(1.6rem, 7.5vw, 2rem); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-value { font-size: 1.7rem; }
    .stat-label { font-size: 0.7rem; }
    .t-card { width: min(300px, 88vw); padding: 1.4rem 1.3rem 1.2rem; }
    .rating-pill { flex-wrap: wrap; justify-content: center; }
    .footer-subscribe { flex-direction: column; border-radius: 20px; padding: 0.6rem; }
    .footer-subscribe input { text-align: center; padding: 0.65rem 0.8rem; }
    .footer-subscribe .btn { width: 100%; }
    .hero-arrow { width: 46px; height: 46px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .marquee { animation: none; transform: none; }
    .reveal { opacity: 1; transform: none; }
    .hero-copy > *, .hero-visual { opacity: 1; transform: none; }
}
