/* ============================================================
   UNITE TRADING ACADEMY — Design System
   Oxford Navy & Sky · Navy Ink (#0E2238) + Institutional Blue (#1F5FA8)
   ============================================================ */

/* ---------- 1. Theme tokens ---------- */
:root {
  /* Brand — Oxford Navy & Sky (institutional blue, matches UTA logo) */
  --navy: #0E2238;
  --navy-700: #132C47;
  --navy-600: #1A3757;
  --navy-glow: #122940;

  --green: #1F5FA8;
  --green-600: #1B5494;
  --green-700: #17497F;
  --green-100: #E3EDF8;
  --sky: #5B9BD5;          /* bright accent for text on dark backgrounds */

  --gold: #C9A227;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F3F6FA;
  --bg-softer: #E9F0F8;

  /* Ink */
  --ink: #10202F;
  --muted: #5C6E84;
  --line: #DDE5EE;
  --line-strong: #C6D3E2;

  /* On-dark */
  --on-dark: #EAF1FB;
  --on-dark-muted: #9DB4CC;
  --on-dark-line: rgba(255,255,255,.10);

  /* Effects */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-btn: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14,34,56,.05);
  --shadow-md: 0 6px 18px rgba(14,34,56,.07), 0 1px 3px rgba(14,34,56,.05);
  --shadow-lg: 0 18px 44px rgba(14,34,56,.12), 0 4px 12px rgba(14,34,56,.06);
  --shadow-green: 0 8px 20px rgba(31,95,168,.25);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);

  --ff-head: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --ff-body: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --transition: .28s var(--ease);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(31,95,168,.55); outline-offset: 2px; border-radius: 6px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 600; line-height: 1.12; letter-spacing: -.012em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 1.4rem + 3.8vw, 4.1rem); font-weight: 600; letter-spacing: -.018em; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.3vw, 2.9rem); }
h3 { font-size: clamp(1.22rem, 1.05rem + .8vw, 1.5rem); }
h4 { font-size: 1.08rem; letter-spacing: -.015em; }
.em-serif { font-family: var(--ff-head); font-style: italic; font-weight: 500; letter-spacing: -.01em; }
p { color: var(--muted); }
strong { color: var(--ink); font-weight: 600; }
.lead { font-size: clamp(1.05rem, .98rem + .5vw, 1.28rem); color: var(--muted); line-height: 1.6; }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 136px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: var(--on-dark); position: relative; overflow: hidden; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: var(--on-dark-muted); }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.stack-sm > * + * { margin-top: .6rem; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ---------- 5. Section headers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--ff-head); font-weight: 600;
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--green-700);
}
.section--navy .eyebrow { color: var(--sky); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--center::before { display: none; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1.15rem; }

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--green); --btn-fg: #ffffff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .95em 1.6em; border-radius: var(--radius-btn);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  will-change: transform; white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform var(--transition); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-green); }
.btn:hover svg.arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--green); --btn-fg: #ffffff; box-shadow: 0 4px 14px rgba(31,95,168,.22); }
.btn--dark { --btn-bg: var(--navy); --btn-fg: #fff; box-shadow: var(--shadow-sm); }
.btn--dark:hover { box-shadow: 0 8px 20px rgba(14,34,56,.22); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); box-shadow: none; }
.btn--on-dark { --btn-bg: rgba(255,255,255,.06); --btn-fg: #fff; border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,.14); box-shadow: none; }
.btn--wa { --btn-bg: #25D366; --btn-fg: #04250f; }
.btn--lg { padding: 1.08em 1.9em; font-size: 1.06rem; }
.btn--sm { padding: .7em 1.2em; font-size: .92rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }

.textlink { color: var(--green-700); font-weight: 600; display: inline-flex; align-items: center; gap: .4em; }
.section--navy .textlink { color: var(--sky); }
.textlink svg { width: 1em; transition: transform var(--transition); }
.textlink:hover svg { transform: translateX(3px); }

/* ---------- 7. Pills / badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--ff-head); font-weight: 600; font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .55em .8em; border-radius: 6px;
  background: var(--green-100); color: var(--green-700);
  border: 1px solid rgba(31,95,168,.25);
}
.badge--gold { background: rgba(224,179,65,.12); color: #8f6a10; border-color: rgba(224,179,65,.35); }
.badge--dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.badge--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------- 8. Cards ---------- */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--green-700);
  margin-bottom: 20px;
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card__num {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.05rem;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); color: #fff; margin-bottom: 18px;
}

/* Reason (compact) */
.reason { display: flex; gap: 16px; align-items: flex-start; }
.reason__ico { flex: none; width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-soft); border: 1px solid var(--line); color: var(--green-700); }
.reason__ico svg { width: 21px; height: 21px; }
.reason h4 { margin-bottom: .25rem; }
.reason p { font-size: .95rem; }
.section--navy .reason__ico { background: rgba(31,95,168,.14); color: var(--green); }

/* ---------- 9. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(14,34,56,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); letter-spacing: -.02em; }
.brand__mark { height: 52px; width: auto; flex: none; object-fit: contain; }
.brand small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--ff-head); font-weight: 500; font-size: .89rem; color: var(--ink);
  padding: .55em .85em; border-radius: 8px; transition: color var(--transition), background var(--transition);
  position: relative; display: inline-flex; align-items: center; gap: .35em;
}
.nav__link:hover { color: var(--green-700); background: var(--bg-soft); }
.nav__link.active { color: var(--green-700); }
.nav__link.active::after { content: ""; position: absolute; left: .85em; right: .85em; bottom: .1em; height: 2px; background: var(--green); border-radius: 2px; }

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

/* Dropdown */
.has-dd { position: relative; }
.dd-toggle svg { width: 14px; transition: transform var(--transition); }
.has-dd:hover .dd-toggle svg, .has-dd:focus-within .dd-toggle svg { transform: rotate(180deg); }
.dd {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.has-dd:hover .dd, .has-dd:focus-within .dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dd-item { display: flex; gap: 13px; padding: 11px; border-radius: 8px; transition: background var(--transition); }
.dd-item:hover { background: var(--bg-soft); }
.dd-item__ico { flex: none; width: 38px; height: 38px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--green-700); display: grid; place-items: center; }
.dd-item__ico svg { width: 20px; }
.dd-item strong { font-family: var(--ff-head); font-size: .96rem; display: block; }
.dd-item span { font-size: .82rem; color: var(--muted); }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; border-radius: 11px; position: relative; }
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.hamburger span { top: 21px; }
.hamburger span::before, .hamburger span::after { left: 0; }
.hamburger span::before { top: -7px; } .hamburger span::after { top: 7px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 74px 0 0; z-index: 99; background: #fff;
  transform: translateX(100%); transition: transform .38s var(--ease); overflow-y: auto;
  padding: 22px var(--gutter) 40px; display: flex; flex-direction: column; gap: 4px;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a { font-family: var(--ff-head); font-weight: 500; font-size: 1.12rem; padding: 15px 6px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav a.sub { font-size: 1rem; font-weight: 400; color: var(--muted); padding-left: 20px; }
.mobile-nav a svg { width: 18px; height: 18px; flex: none; color: var(--muted); }
.mobile-nav .btn svg { color: currentColor; }
.mobile-nav .btn { margin-top: 22px; }
.scroll-lock { overflow: hidden; }

/* ---------- 10. Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--on-dark); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; }
.hero__glow--1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(31,95,168,.55), transparent 70%); top: -140px; right: -80px; }
.hero__glow--2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(26,55,87,.9), transparent 70%); bottom: -160px; left: -120px; }
.hero__grid-lines { position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 100%);
}
.hero__inner { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(30px, 4vw, 56px); padding-block: clamp(56px, 8vw, 104px); }
.hero__eyebrow { color: var(--sky); }
.hero h1 { color: #fff; margin: 18px 0; }
.hero h1 .accent { color: var(--sky); font-family: var(--ff-head); font-style: italic; font-weight: 500; font-size: 1.02em; letter-spacing: -.012em; }
.hero__sub { color: var(--on-dark-muted); font-size: clamp(1.05rem, .98rem + .5vw, 1.25rem); max-width: 40ch; }
.hero .btn-row { margin-top: 32px; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg); }
.hero__card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hero__card-top .sym { font-family: var(--ff-head); font-weight: 700; color: #fff; }
.hero__card-top .chg { color: var(--green); font-weight: 600; font-size: .9rem; background: rgba(31,95,168,.14); padding: .3em .7em; border-radius: 8px; }

/* Candles animate up */
.candle rect, .candle line { transform-box: fill-box; transform-origin: center bottom; }

/* --- TradingView-style hero chart --- */
.hero__card.tv { padding: 10px 10px 12px; background: linear-gradient(180deg, rgba(14,34,56,.85), rgba(6,18,32,.92)); border-color: rgba(255,255,255,.1); }
.tv__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 7px; }
.tv__title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tv__title .sym { font-family: var(--ff-head); font-weight: 700; color: #fff; font-size: .98rem; letter-spacing: -.01em; }
.tv__title .tf { font-size: .68rem; font-weight: 600; color: #cfe0f5; background: rgba(255,255,255,.09); padding: .22em .5em; border-radius: 6px; }
.tv__title .ex { font-size: .72rem; color: var(--on-dark-muted); }
.tv__chg { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .8rem; font-weight: 600; color: var(--green); background: rgba(31,95,168,.14); padding: .28em .6em; border-radius: 7px; white-space: nowrap; }
.tv__chg.down { color: #FF6B7D; background: rgba(246,70,93,.16); }
.tv__legend { display: flex; flex-wrap: wrap; gap: 8px 13px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .73rem; color: var(--on-dark-muted); margin-bottom: 8px; }
.tv__legend span { white-space: nowrap; }
.tv__legend b { color: #fff; font-weight: 600; }
.tv__legend .up b { color: var(--green); } .tv__legend .down b { color: #FF6B7D; }
#hero-chart { width: 100%; height: auto; display: block; }
.tv__note { color: var(--on-dark-muted); font-size: .72rem; margin-top: 8px; opacity: .8; }

/* Static hero chart container + legend overlay (Unite design, TV candles) */
.tvc { position: relative; border-radius: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
.tvc svg { display: block; }
.tvc-legend {
  position: absolute; top: 10px; left: 13px; pointer-events: none;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 3px 11px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 11px; color: #EAF1FB;
}
.tvc-legend .sym { font-family: var(--ff-head); font-weight: 600; font-size: 12.5px; letter-spacing: .02em; }
.tvc-legend .mut { color: #7E93B2; }
.tvc-legend b { font-weight: 500; color: #26a69a; }

/* ---------- 11. Trust strip ---------- */
.trust { background: rgba(255,255,255,.03); border-top: 1px solid var(--on-dark-line); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 28px; }
.trust__item { text-align: center; }
.trust__num { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.5rem, 1.15rem + 1.3vw, 2.15rem); color: #fff; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.trust__num .u { color: var(--sky); }
.trust__label { font-size: .68rem; color: var(--on-dark-muted); margin-top: 9px; letter-spacing: .18em; text-transform: uppercase; }
@media (min-width: 721px) { .trust__item + .trust__item { border-left: 1px solid var(--on-dark-line); } }

/* ---------- 12. Course cards ---------- */
.course-card { position: relative; display: flex; flex-direction: column; overflow: hidden; }
.course-card--feature { border: 1.5px solid var(--green); box-shadow: var(--shadow-lg); }
.course-card__ribbon { position: absolute; top: 22px; right: 22px; }
.course-card__title { margin: 6px 0 8px; }
.course-card__price { font-family: var(--ff-head); font-weight: 800; font-size: 1.9rem; color: var(--ink); margin: 4px 0; }
.course-card__price small { font-size: .78rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.course-card__for { font-size: .88rem; color: var(--muted); }
.feature-list { display: grid; gap: 12px; margin: 20px 0; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.feature-list li svg { flex: none; width: 20px; height: 20px; color: var(--green-700); margin-top: 2px; }
.course-card .btn { margin-top: auto; }
.divider { height: 1px; background: var(--line); margin: 4px 0 20px; }

/* ---------- 13. Comparison table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.compare th, .compare td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare thead th { font-family: var(--ff-head); background: var(--navy); color: #fff; font-size: 1rem; }
.compare thead th:first-child { background: var(--navy-700); }
.compare tbody th { font-weight: 600; color: var(--ink); font-family: var(--ff-body); width: 26%; }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: 0; }
.compare td { color: var(--muted); font-size: .96rem; }
.compare .col-feature { background: rgba(31,95,168,.05); }
.compare .yes { color: var(--green-700); font-weight: 600; }
.compare .price { font-family: var(--ff-head); font-weight: 700; color: var(--ink); }
.compare .cta-row td { padding-top: 22px; }

/* ---------- 14. Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; }
.step__badge { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 18px; }
.section--navy .step__badge { background: rgba(91,155,213,.12); border: 1px solid rgba(91,155,213,.45); color: var(--sky); }
.section--navy .step--connected::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 8px, transparent 8px 16px); }
.step--connected::before { content: ""; position: absolute; top: 26px; left: 62px; right: -30%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); }
.steps .step:last-child.step--connected::before { display: none; }

/* ---------- 15. Mentor ---------- */
.mentor { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.mentor__photo { position: relative; }
.mentor__photo-frame { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, var(--navy), var(--navy-600)); aspect-ratio: 4/5; box-shadow: var(--shadow-lg); display: grid; place-items: center; color: var(--on-dark-muted); }
.mentor__photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-photo { width: 96px; height: 96px; border-radius: 14px; object-fit: cover; object-position: top; margin: 0 auto 16px; display: block; }
.mentor__stat { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 14px 22px; display: flex; gap: 26px; white-space: nowrap; }
.mentor__stat b { font-family: var(--ff-head); font-size: 1.3rem; color: var(--ink); display: block; line-height: 1; }
.mentor__stat span { font-size: .72rem; color: var(--muted); }
.mentor__quote { border-left: 2px solid var(--green); padding-left: 20px; font-family: var(--ff-head); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--ink); margin: 24px 0; letter-spacing: -.008em; }

/* ---------- 16. Testimonials ---------- */
.tst-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(88%, 420px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; }
.tst-track::-webkit-scrollbar { display: none; }
.tst { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.tst__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: .82rem; }
.tst__quote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; flex: 1; }
.tst__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tst__avatar { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 600; flex: none; }
.tst__who b { font-family: var(--ff-head); font-size: .98rem; display: block; }
.tst__who span { font-size: .82rem; color: var(--muted); }
.tst-controls { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.tst-controls button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: var(--transition); color: var(--ink); }
.tst-controls button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tst-controls button svg { width: 20px; }

/* ---------- 17. Accordion (FAQ + curriculum) ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px clamp(18px,3vw,28px); text-align: left; font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); transition: color var(--transition); }
.acc-head:hover { color: var(--green-700); }
.acc-head .acc-ico { flex: none; width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: var(--transition); }
.acc-ico::before, .acc-ico::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.acc-ico::before { width: 12px; height: 2px; } .acc-ico::after { width: 2px; height: 12px; transition: transform var(--transition); }
.acc-item.open .acc-ico { background: var(--green); color: #fff; border-color: var(--green); }
.acc-item.open .acc-ico::after { transform: rotate(90deg); opacity: 0; }
.acc-head .acc-eyebrow { font-family: var(--ff-body); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-700); display: block; margin-bottom: 4px; font-weight: 600; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel__in { padding: 0 clamp(18px,3vw,28px) 24px; color: var(--muted); }
.acc-panel__in p { font-size: .98rem; }
.acc-panel ul { display: grid; gap: 9px; margin-top: 6px; }
.acc-panel ul li { display: flex; gap: 10px; font-size: .96rem; color: var(--muted); }
.acc-panel ul li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 9px; }

/* Category label for FAQ groups */
.faq-cat { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--green-700); margin: 40px 0 16px; display: flex; align-items: center; gap: 10px; }
.faq-cat::before { content: ""; width: 8px; height: 22px; border-radius: 4px; background: var(--green); }
.faq-cat:first-of-type { margin-top: 0; }

/* ---------- 18. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .card {
  background: linear-gradient(135deg, var(--navy), var(--navy-600));
  border: 0; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px);
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band .card::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(31,95,168,.22), transparent 70%); top: -180px; right: -100px; filter: blur(40px); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: var(--on-dark-muted); position: relative; max-width: 52ch; margin: 16px auto 0; }
.cta-band .btn-row { position: relative; margin-top: 30px; }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--navy); color: var(--on-dark-muted); padding-top: clamp(56px, 7vw, 88px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--on-dark-line); }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .95rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--on-dark-line); display: grid; place-items: center; color: var(--on-dark); transition: var(--transition); }
.footer-social a:hover { background: var(--green); color: #04120b; border-color: var(--green); transform: translateY(-2px); }
.footer-social svg { width: 19px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--ff-head); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .95rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-contact li { display: flex; gap: 11px; font-size: .95rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; flex: none; color: var(--green); margin-top: 3px; }
.footer-disclaimer { font-size: .8rem; line-height: 1.6; color: var(--on-dark-muted); padding: 26px 0; border-bottom: 1px solid var(--on-dark-line); opacity: .85; }
.footer-disclaimer strong { color: var(--on-dark); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding: 24px 0 34px; font-size: .86rem; }
.footer-bottom a:hover { color: var(--green); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- 20. WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.35); transition: transform var(--transition); }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1; animation: pulse 3s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.45); opacity: 0; } }

/* ---------- 21. Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--green-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--bg-soft);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(31,95,168,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-status { margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-size: .92rem; display: none; }
.form-status.ok { display: block; background: var(--green-100); color: var(--green-700); }
.form-status.err { display: block; background: #FDECEC; color: #C0392B; }

/* Contact info list */
.contact-info { display: grid; gap: 20px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__ico { flex: none; width: 46px; height: 46px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--green-700); display: grid; place-items: center; }
.contact-info__ico svg { width: 22px; }
.contact-info__item b { font-family: var(--ff-head); display: block; margin-bottom: 2px; }
.contact-info__item a, .contact-info__item span { color: var(--muted); font-size: .96rem; }

/* ---------- 22. Page hero (inner pages) ---------- */
.page-hero { background: var(--navy); color: var(--on-dark); position: relative; overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; opacity: .6;
  background: radial-gradient(600px 300px at 80% 0%, rgba(31,95,168,.25), transparent 70%),
              radial-gradient(500px 300px at 0% 100%, rgba(26,55,87,.9), transparent 70%); }
.page-hero__inner { padding-block: clamp(30px, 4vw, 52px); max-width: 760px; }
.page-hero h1 { color: #fff; margin: 10px 0 8px; font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem); }
.page-hero p { color: var(--on-dark-muted); font-size: clamp(.95rem, .9rem + .3vw, 1.05rem); max-width: 62ch; }
.page-hero .breadcrumb { font-size: .78rem; margin-bottom: 2px; }
.page-hero .btn-row { margin-top: 18px; }
.page-hero .btn-row .btn { padding: .8em 1.35em; font-size: .88rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: var(--on-dark-muted); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--green); }

/* ---------- 23. Detail-page bits ---------- */
.outcome-list { display: grid; gap: 14px; }
.outcome-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; }
.outcome-list li svg { flex: none; width: 24px; height: 24px; color: var(--green); background: var(--green-100); border-radius: 50%; padding: 4px; margin-top: 2px; }
.section--navy .outcome-list li svg { background: rgba(31,95,168,.16); }

.sticky-buy { position: sticky; top: 96px; }
.buy-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px; }
.buy-card__price { font-family: var(--ff-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.buy-card__price small { font-size: .8rem; font-weight: 500; color: var(--muted); }
.buy-card__meta { display: grid; gap: 12px; margin: 22px 0; }
.buy-card__meta li { display: flex; gap: 10px; font-size: .94rem; align-items: center; }
.buy-card__meta svg { width: 18px; color: var(--green-700); flex: none; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { font-size: .84rem; padding: .5em .95em; border-radius: 7px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink); font-weight: 500; letter-spacing: .02em; }

.include-grid li { display: flex; gap: 12px; align-items: flex-start; }
.include-grid svg { flex: none; width: 22px; color: var(--green-700); margin-top: 3px; }

/* Legal / prose */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; font-size: 1rem; }
.prose ul { display: grid; gap: 8px; margin: 0 0 16px; padding-left: 4px; }
.prose ul li { display: flex; gap: 10px; margin-bottom: 0; }
.prose ul li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 9px; }
.prose a { color: var(--green-700); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.notice { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: 12px; padding: 18px 22px; margin: 22px 0; }
.notice p { margin-bottom: 0; font-size: .95rem; }
.updated { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }

/* Placeholder marker (for owner-editable content) */
.ph { border-bottom: 1px dashed rgba(224,179,65,.45); }

/* ---------- 24. Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-2 { transition-delay: .08s; }
.js .reveal-3 { transition-delay: .16s; }
.js .reveal-4 { transition-delay: .24s; }

/* ---------- 25. Helpers ---------- */
.hide { display: none !important; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.text-green { color: var(--green-700); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.split--wide-left { grid-template-columns: 1.2fr .8fr; }

/* ---------- 26. Responsive ---------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav__menu, .nav__cta .btn--dark { display: none; }
  .hamburger { display: block; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 640px; }
  .mentor { grid-template-columns: 1fr; }
  .mentor__photo { max-width: 380px; margin-inline: auto; margin-bottom: 44px; }
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sticky-buy { position: static; }
  .step--connected::before { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; overflow-x: hidden; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn--block-mobile { display: flex; width: 100%; }
  .btn-row { width: 100%; }
  .hero .btn-row .btn { flex: 1; }
  .section { padding-block: clamp(52px, 11vw, 80px); }
  /* Keep the wordmark on mobile, just scaled down so logo + text + hamburger fit */
  .site-header .brand { gap: 8px; font-size: .92rem; }
  .site-header .brand small { display: none; }
  .brand__mark { height: 40px; }
  .mentor__photo { margin-bottom: 0; }
  .mentor__stat { position: static; transform: none; margin: 16px auto 0; width: max-content; max-width: 100%; flex-wrap: wrap; justify-content: center; gap: 14px 22px; white-space: normal; padding: 12px 18px; }
  .hero__card { padding: 16px; }
  .hero__card.tv { padding: 8px 8px 10px; }
  .course-card__price { font-size: 1.55rem; }
  /* On narrow cards the corner ribbon collides with the inline badge — let it flow instead */
  .course-card__ribbon { position: static; display: block; align-self: flex-start; margin-bottom: 10px; }
  .tst { padding: 22px; }
  .compare th, .compare td { padding: 12px 14px; font-size: .9rem; }
  .page-hero__inner { padding-block: 26px 32px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container { --gutter: 18px; }
  .btn-row .btn { flex: 1 1 auto; justify-content: center; }
  .trust__num { font-size: 1.45rem; }
  .hero h1 { font-size: clamp(1.7rem, 8.5vw, 2.1rem); }
  .tst-track { grid-auto-columns: 92%; }
}
