/* ==========================================================================
   Zenytal Real Estate Academy
   Design system + page styles. Light theme, navy/lime/gold on white.
   ========================================================================== */

/* -------------------------------------------------------------- Tokens   */

:root {
  --navy-900: #061a45;
  --navy-800: #0a2359;
  --navy-700: #10327f;
  --blue-600: #1d4ed8;
  --blue-500: #2f6bff;
  --blue-50:  #eef3ff;

  --lime-600: #5ea22c;
  --lime-500: #7dc242;
  --lime-400: #a3e635;
  --lime-50:  #f2fbe6;

  --gold-600: #a8811a;
  --gold-500: #c9a227;
  --gold-50:  #fdf7e6;

  --ink:      #0b1220;
  --ink-soft: #33405c;
  --muted:    #5f6c88;
  --line:     #e5eaf3;
  --line-soft:#eef2f8;
  --bg:       #ffffff;
  --bg-soft:  #f6f9fd;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10, 35, 89, .06), 0 2px 8px rgba(10, 35, 89, .04);
  --shadow:    0 2px 4px rgba(10, 35, 89, .05), 0 12px 32px rgba(10, 35, 89, .08);
  --shadow-lg: 0 24px 64px rgba(10, 35, 89, .16);

  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 76px;
  --container: 1180px;
}

/* --------------------------------------------------------------- Reset   */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
  font-weight: 800;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 6px; }

/* ------------------------------------------------------------- Layout    */

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 64px 0; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--lime-500));
}
.section-head--center .eyebrow::before { display: none; }

.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { font-size: 17.5px; color: var(--muted); margin-bottom: 0; }

.lede { font-size: 18px; color: var(--muted); }

/* ------------------------------------------------------------- Buttons   */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600) 65%, var(--blue-500));
  color: #fff;
  box-shadow: 0 10px 26px rgba(29, 78, 216, .28);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(29, 78, 216, .34); }

.btn--lime {
  background: var(--lime-500);
  color: #08240a;
  box-shadow: 0 10px 26px rgba(125, 194, 66, .32);
}
.btn--lime:hover { background: var(--lime-400); }

.btn--ghost { background: #fff; color: var(--navy-800); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: #c9d6ee; }

.btn--wa { background: #25d366; color: #06280f; box-shadow: 0 10px 26px rgba(37, 211, 102, .28); }
.btn--wa:hover { background: #1fbe5b; }

.btn--lg { padding: 18px 36px; font-size: 16.5px; }
.btn--block { display: flex; width: 100%; }

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

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; color: var(--blue-600);
}
.link-arrow svg { transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------- Pills   */

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px;
  letter-spacing: .04em;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-800);
}
.pill--lime { background: var(--lime-50); border-color: #d6f0b6; color: var(--lime-600); }
.pill--gold { background: var(--gold-50); border-color: #f0e2b4; color: var(--gold-600); }
.pill--blue { background: var(--blue-50); border-color: #d6e2ff; color: var(--blue-600); }

.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dot--pulse { animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

/* -------------------------------------------------------------- Header   */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(10, 35, 89, .06); }

.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img, .brand svg { height: 42px; width: auto; }
.brand-text { display: grid; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--navy-900); }
.brand-sub { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-soft); transition: color .15s ease; }
.nav-mobile-only { display: none; }
.nav a:hover { color: var(--blue-600); }

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

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center;
}

/* ---------------------------------------------------------------- Hero   */

.hero { position: relative; overflow: hidden; padding: 74px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: -220px 0 auto -160px; height: 640px;
  background: radial-gradient(closest-side, rgba(47, 107, 255, .16), transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; top: -120px; right: -180px; width: 620px; height: 620px;
  background: radial-gradient(closest-side, rgba(125, 194, 66, .18), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: 52px; align-items: center; }

.hero h1 {
  font-size: clamp(36px, 4.6vw, 54px);
  letter-spacing: -.035em;
  text-wrap: balance;
  margin-bottom: 20px;
}
.hero h1 .mark {
  background: linear-gradient(180deg, transparent 62%, rgba(163, 230, 53, .55) 62%);
  padding: 0 .06em;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--blue-600), var(--lime-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lede { font-size: 18.5px; color: var(--muted); max-width: 54ch; margin-bottom: 30px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }

.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatars { display: flex; }
.avatars img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: 50% 24%;
  border: 3px solid #fff; margin-left: -12px; box-shadow: var(--shadow-sm);
}
.avatars img:first-child { margin-left: 0; }
.hero-proof p { margin: 0; font-size: 14.5px; color: var(--muted); }
.hero-proof strong { color: var(--navy-900); }

/* Photo cluster */
.hero-media { position: relative; }
.hero-media__main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 4 / 3.2;
}
.hero-media__main img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }

.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-card--stat { left: -24px; bottom: -20px; }
.hero-card--cert { right: -18px; top: -20px; }
.hero-card__icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
}
.hero-card--cert .hero-card__icon { background: var(--lime-50); color: var(--lime-600); }
.hero-card__val { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--navy-900); line-height: 1.1; }
.hero-card__lbl { font-size: 12px; color: var(--muted); }

/* Detail strip under hero */
.detail-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
  box-shadow: var(--shadow-sm);
}
.detail-strip--2 { grid-template-columns: 1fr 1fr; margin-top: 36px; }
.detail-strip > div { background: #fff; padding: 22px 24px; }
.detail-strip dt {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.detail-strip dd {
  margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--navy-900);
}

/* --------------------------------------------------------------- About   */

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.about-grid--even { grid-template-columns: 1fr 1fr; gap: 56px; }
.about-claim--sm { font-size: clamp(28px, 3.6vw, 42px); }

.about-claim {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800; line-height: 1.03; letter-spacing: -.035em;
  color: var(--navy-900);
  margin: 0;
}
.about-claim span { display: block; }
.about-claim span:nth-child(2) { color: var(--blue-600); }
.about-claim span:nth-child(3) { color: var(--lime-600); }

.about-body p { font-size: 17px; }
.about-body p:last-child { margin-bottom: 0; font-weight: 600; color: var(--navy-800); }

/* --------------------------------------------------------------- Stats   */

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ""; position: absolute; inset: auto -40px -60px auto; width: 160px; height: 160px;
  background: radial-gradient(closest-side, rgba(47, 107, 255, .10), transparent);
}
.stat-card__value {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4vw, 46px); letter-spacing: -.04em;
  background: linear-gradient(120deg, var(--navy-800), var(--blue-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-card:nth-child(2) .stat-card__value { background: linear-gradient(120deg, var(--lime-600), var(--lime-500)); -webkit-background-clip: text; background-clip: text; }
.stat-card:nth-child(3) .stat-card__value { background: linear-gradient(120deg, var(--gold-600), var(--gold-500)); -webkit-background-clip: text; background-clip: text; }
.stat-card__label { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--navy-900); margin-top: 14px; }
.stat-card__note { font-size: 14.5px; color: var(--muted); margin: 6px 0 0; }

/* Compact 4-up stat row (enrollment page) */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-row > div { background: #fff; padding: 28px 24px; text-align: center; }
.stat-row .v { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--navy-900); letter-spacing: -.03em; }
.stat-row .l { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ------------------------------------------------------------ Highlights */

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.check-grid--single { grid-template-columns: 1fr; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--navy-800); }
.check-item svg { flex: none; margin-top: 3px; color: var(--lime-600); }

/* ----------------------------------------------------------- Curriculum  */

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6e2ff; }
.module-card__num {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--blue-600); background: var(--blue-50);
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 16px;
}
.module-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.module-card p { font-size: 14.8px; color: var(--muted); margin: 0; }

/* -------------------------------------------------------------- Gallery  */

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }

/* -------------------------------------------------------------- Bonuses  */

.bonus-band { background: linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, var(--blue-600)); color: #fff; }
.bonus-band h2, .bonus-band .section-head h2 { color: #fff; }
.bonus-band .section-head p { color: rgba(255, 255, 255, .74); }
.bonus-band .eyebrow { color: var(--lime-400); }

.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bonus-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
}
.bonus-card__tag {
  display: inline-flex; align-self: flex-start; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(163, 230, 53, .16); color: var(--lime-400);
  font-family: var(--font-display); font-weight: 800; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase;
}
.bonus-card h3 { color: #fff; font-size: 21px; margin: 16px 0 18px; }
.bonus-card ul { display: grid; gap: 10px; margin-bottom: 24px; }
.bonus-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: rgba(255, 255, 255, .82); }
.bonus-card li svg { flex: none; margin-top: 4px; color: var(--lime-400); }
.bonus-card__value {
  margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; align-items: baseline; justify-content: space-between;
}
.bonus-card__value span { font-size: 13px; color: rgba(255, 255, 255, .6); }
.bonus-card__value b { font-family: var(--font-display); font-size: 20px; color: #fff; }
.bonus-free { color: var(--lime-400) !important; }

/* --------------------------------------------------------- Testimonials  */

.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tst-card__quote { font-size: 16.5px; color: var(--ink-soft); font-style: italic; margin-bottom: 22px; }
.tst-card__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-card__person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tst-card__name { font-family: var(--font-display); font-weight: 800; color: var(--navy-900); line-height: 1.2; }
.tst-card__role { font-size: 13.5px; color: var(--muted); }
.tst-quote-mark { font-family: var(--font-display); font-size: 46px; line-height: .8; color: var(--lime-400); margin-bottom: 8px; }

.placeholder-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--gold-600);
  background: var(--gold-50); border: 1px dashed #e6d29a;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}

/* --------------------------------------------------------------- Pricing */

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
/* Grid items default to min-width:auto, which lets nowrap content push a
   track wider than its column. Everything here is allowed to shrink. */
.price-grid > *, .module-grid > *, .bonus-grid > *, .tst-grid > *,
.stat-grid > *, .stat-row > *, .detail-strip > *, .hero-grid > *, .about-grid > * { min-width: 0; }

.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 38px 34px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.price-card--featured { border: 2px solid var(--blue-500); box-shadow: 0 24px 60px rgba(29, 78, 216, .18); }
.price-card__flag {
  position: absolute; top: -14px; left: 34px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: #fff; padding: 6px 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.price-card--alt .price-card__flag { background: var(--lime-500); color: #08240a; }

.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card__sub { font-size: 15px; color: var(--muted); margin-bottom: 24px; }

.price-amount { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.price-amount .was { font-size: 20px; color: var(--muted); text-decoration: line-through; }
.price-amount .now {
  font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -.04em;
  color: var(--navy-900); line-height: 1;
}
.price-note { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

.price-card ul { display: grid; gap: 11px; margin-bottom: 28px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.2px; color: var(--ink-soft); }
.price-card li svg { flex: none; margin-top: 4px; color: var(--lime-600); }
.price-card .btn { margin-top: auto; }

/* ------------------------------------------------------------- Countdown */

.cta-band {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700) 55%, var(--blue-600));
  color: #fff; border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -140px; bottom: -180px; width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(163, 230, 53, .28), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); }
.cta-band p { color: rgba(255, 255, 255, .78); }

.countdown { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.countdown div {
  min-width: 82px; text-align: center;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius); padding: 14px 12px;
}
.countdown b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: 32px; line-height: 1; letter-spacing: -.03em;
}
.countdown span { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }

.slots-line { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }

/* ------------------------------------------------------------------ FAQ  */

.faq-list { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item.is-open { border-color: #cfdcf7; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px; background: none; border: 0; text-align: left;
  font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--navy-900);
}
.faq-q svg { flex: none; color: var(--blue-600); transition: transform .22s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a > div { padding: 0 24px 22px; color: var(--muted); font-size: 15.6px; }

/* ------------------------------------------------------------- Audience  */

.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-cloud span {
  padding: 11px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 600; color: var(--navy-800); box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------- Footer  */

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: rgba(255, 255, 255, .5); }
.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a:hover { color: var(--lime-400); }
.footer-links { display: grid; gap: 11px; font-size: 15px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13.6px; color: rgba(255, 255, 255, .55);
}

/* ------------------------------------------------------- Sticky WhatsApp */

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); }

/* ---------------------------------------------------------------- Modal  */

.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(6, 26, 69, .55); backdrop-filter: blur(4px); }

.modal__panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(92vh, 780px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.98);
  transition: transform .26s cubic-bezier(.2, .8, .3, 1);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}
.modal.is-open .modal__panel { transform: none; }

.modal__aside {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-700) 62%, var(--blue-600));
  color: #fff; padding: 40px 34px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.modal__aside::after {
  content: ""; position: absolute; left: -90px; bottom: -140px; width: 340px; height: 340px;
  background: radial-gradient(closest-side, rgba(163, 230, 53, .3), transparent 70%);
}
.modal__aside > * { position: relative; z-index: 1; }
.modal__aside h3 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.modal__aside p { color: rgba(255, 255, 255, .76); font-size: 15px; }
.modal__aside ul { display: grid; gap: 12px; margin-top: 22px; }
.modal__aside li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.6px; color: rgba(255, 255, 255, .88); }
.modal__aside li svg { flex: none; margin-top: 3px; color: var(--lime-400); }
.modal__aside-foot { margin-top: auto; padding-top: 26px; font-size: 13px; color: rgba(255, 255, 255, .6); }

.modal__body { padding: 40px 38px; }
.modal__body h4 { font-size: 22px; margin-bottom: 6px; }
.modal__body > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  display: grid; place-items: center;
}
.modal__close:hover { background: var(--bg-soft); }

/* ---------------------------------------------------------------- Forms  */

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13.4px; font-weight: 700; color: var(--navy-800);
  margin-bottom: 7px; letter-spacing: .01em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; font: inherit; font-size: 15.4px; color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(47, 107, 255, .14);
}
.field input::placeholder { color: #9aa6c0; }
.field.has-error input, .field.has-error select { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, .1); }
.field__error { display: none; font-size: 12.8px; color: #dc2626; margin-top: 6px; font-weight: 600; }
.field.has-error .field__error { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.4px; color: var(--muted); margin: 4px 0 20px; }
.form-consent input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--blue-600); }

.form-status { display: none; padding: 12px 16px; border-radius: 12px; font-size: 14.2px; font-weight: 600; margin-bottom: 16px; }
.form-status.is-error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.btn.is-loading { pointer-events: none; opacity: .75; }
.spinner {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.modal__success { display: none; text-align: center; padding: 24px 8px; }
.modal__success.is-visible { display: block; }
.success-check {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--lime-50); color: var(--lime-600); display: grid; place-items: center;
  animation: pop .4s cubic-bezier(.2, .9, .3, 1.3);
}
@keyframes pop { from { transform: scale(.5); opacity: 0; } }
.modal__success h4 { font-size: 24px; }
.redirect-note { font-size: 13.6px; color: var(--muted); margin-top: 18px; }

/* -------------------------------------------------------- Payment modal  */

.pay-detail {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
}
.pay-detail > div {
  background: #fff; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pay-detail dt { font-size: 13px; color: var(--muted); }
.pay-detail dd { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 16.5px; color: var(--navy-900); }
.copy-btn {
  border: 1px solid var(--line); background: var(--bg-soft); color: var(--blue-600);
  border-radius: 9px; padding: 6px 12px; font-size: 12.6px; font-weight: 800;
}
.copy-btn:hover { background: var(--blue-50); }
.copy-btn.is-done { color: var(--lime-600); background: var(--lime-50); border-color: #d6f0b6; }

/* -------------------------------------------------------------- Carousel */

/* Native scroll + scroll-snap: swipe, keyboard and momentum come free, and the
   slides still read in order if JavaScript never arrives. */
.carousel { position: relative; --gap: 20px; --per: 3; }
.carousel--two { --per: 2; }

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-inline: -8px;
  padding: 8px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__track { display: flex; gap: var(--gap); }

.carousel__slide {
  flex: 0 0 calc((100% - (var(--gap) * (var(--per) - 1))) / var(--per));
  scroll-snap-align: start;
}

.carousel__controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 28px;
}
.carousel__btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy-800);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .16s ease, color .16s ease, opacity .16s ease;
}
.carousel__btn:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.carousel__btn[disabled] { opacity: .32; pointer-events: none; }

.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 999px;
  border: 0; background: #ccd6e8; transition: width .2s ease, background .2s ease;
}
.carousel__dots button[aria-current="true"] { width: 26px; background: var(--blue-600); }

/* Gallery slide */
.shot { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 26%; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  background: linear-gradient(transparent, rgba(6, 26, 69, .82));
  color: #fff; font-size: 13.4px; font-weight: 600;
}

/* ------------------------------------------------------------ Video cards */

.video-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; height: 100%;
}
.video-card__frame { position: relative; background: var(--navy-900); }
.video-card__frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 26%; opacity: .82; }
.video-card__play {
  position: absolute; inset: 0; width: 100%;
  display: grid; place-items: center;
  border: 0; background: none; color: #fff;
}
.video-card__play span {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255, 255, 255, .94); color: var(--navy-800);
  display: grid; place-items: center; padding-left: 4px;
  box-shadow: 0 10px 30px rgba(6, 26, 69, .34);
  transition: transform .2s ease, background .2s ease;
}
.video-card__play:hover span { transform: scale(1.09); background: var(--lime-400); }
.video-card__soon {
  position: absolute; inset: auto 0 0 0; padding: 10px;
  background: rgba(6, 26, 69, .8); color: #fff;
  font-size: 12.4px; font-weight: 700; text-align: center; letter-spacing: .04em;
}
/* The card is the video and nothing else — the frame fills it edge to edge. */
.video-card__frame { border-radius: inherit; overflow: hidden; }
.video-card__frame img { aspect-ratio: 16 / 10; }

/* Video lightbox */
.video-lightbox {
  position: fixed; inset: 0; z-index: 110;
  display: grid; place-items: center; padding: 20px;
  background: rgba(6, 26, 69, .78); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
}
.video-lightbox.is-open { opacity: 1; visibility: visible; }
.video-lightbox__inner {
  width: min(980px, 100%); aspect-ratio: 16 / 9;
  background: #000; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-lightbox__inner iframe, .video-lightbox__inner video { width: 100%; height: 100%; border: 0; display: block; }
.video-lightbox__close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .12); color: #fff;
  display: grid; place-items: center;
}
.video-lightbox__close:hover { background: rgba(255, 255, 255, .24); }

/* ------------------------------------------------------------------ Team */

.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin-inline: auto; }

.leader {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 14px 14px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  /* The "frame": a gold gradient edge drawn behind the white card. */
  background-image: linear-gradient(#fff, #fff), linear-gradient(150deg, var(--gold-500), #f3e2a8 38%, var(--gold-600) 72%, var(--gold-500));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 3px solid transparent;
}
.leader__portrait {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--bg-soft);
  margin-bottom: 20px;
}
.leader__portrait img, .leader__portrait .portrait-ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader__badge {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, .95);
  border-radius: 999px; padding: 7px 16px;
  font-family: var(--font-display); font-weight: 800; font-size: 11.6px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600);
  box-shadow: var(--shadow-sm);
}
.leader h3 { font-size: 22px; margin: 0 0 4px; }
.leader__role { font-size: 13.6px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); }
.leader__bio { font-size: 15px; color: var(--muted); margin: 14px 0 0; padding-inline: 8px; }
.leader__link {
  display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600); margin-top: 16px;
}
.leader__link:hover { background: var(--blue-600); color: #fff; }

.facilitator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.person:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.person__portrait {
  flex: none; width: 112px; height: 112px; border-radius: 20px; overflow: hidden;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.person__portrait img, .person__portrait .portrait-ph { width: 100%; height: 100%; object-fit: cover; display: block; }
.person h4 { font-size: 19px; margin: 0 0 3px; }
.person__role { font-size: 14px; color: var(--blue-600); font-weight: 700; }
.person__topic { font-size: 13.4px; color: var(--muted); margin-top: 7px; }

/* ------------------------------------------------------------- Timeline  */

/* Two columns so nine modules don't run on forever. The connector line lives on
   each item rather than the container, so it stays continuous per column
   whatever the column count is. */
.timeline {
  max-width: 1040px; margin-inline: auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 44px;
  list-style: none;
}
.tl-item {
  position: relative;
  padding: 0 0 34px 32px;
  border-left: 2px solid var(--line);
}
.tl-item::before {
  content: ""; position: absolute; left: -9px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue-500);
}
.tl-item:nth-child(even)::before { border-color: var(--lime-500); }
/* The last cell in each column shouldn't trail a line into empty space. */
.tl-item:nth-last-child(-n+2) { padding-bottom: 8px; }
.tl-num {
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue-600);
}
.tl-item h3 { font-size: 21px; margin: 6px 0 6px; }
.tl-item p { margin: 0; color: var(--muted); font-size: 15.4px; }

/* ------------------------------------------------------ Compare (tuition) */

.compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow); overflow: hidden;
}
.compare__col { padding: 38px 34px; display: flex; flex-direction: column; }
.compare__col--pay { background: linear-gradient(180deg, var(--blue-50), #fff 46%); }
.compare__col--sell { background: linear-gradient(180deg, var(--lime-50), #fff 46%); }
.compare__or {
  display: grid; place-items: center; padding: 0 6px;
  background: var(--line-soft); position: relative;
}
.compare__or span {
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 6px; writing-mode: vertical-rl;
}
.compare__tag {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 11.6px;
  letter-spacing: .1em; text-transform: uppercase;
}
.compare__col--pay .compare__tag { background: var(--blue-600); color: #fff; }
.compare__col--sell .compare__tag { background: var(--lime-500); color: #08240a; }
.compare h3 { font-size: 23px; margin: 18px 0 6px; }
.compare__sub { font-size: 14.8px; color: var(--muted); margin-bottom: 22px; }
.compare ul { display: grid; gap: 11px; margin: 0 0 28px; }
.compare li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.2px; color: var(--ink-soft); }
.compare li svg { flex: none; margin-top: 4px; color: var(--lime-600); }
.compare .btn { margin-top: auto; }

/* --------------------------------------------------------- Sticky enroll  */

.enroll-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.6) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(10, 35, 89, .1);
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1);
}
.enroll-bar.is-up { transform: none; }
.enroll-bar__inner { display: flex; align-items: center; gap: 22px; padding: 14px 0; }
.enroll-bar__price { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy-900); line-height: 1.1; }
.enroll-bar__price s { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 8px; }
.enroll-bar__meta { font-size: 12.8px; color: var(--muted); }
.enroll-bar__cd { display: flex; gap: 6px; margin-left: auto; }
.enroll-bar__cd div {
  min-width: 46px; text-align: center; padding: 6px 8px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
}
.enroll-bar__cd b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--navy-900); line-height: 1; }
.enroll-bar__cd span { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

body.has-enroll-bar .wa-float { bottom: 96px; }

/* ---------------------------------------------------- Enrollment hero form */

.enroll-form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 32px 30px;
  position: relative;
}
.enroll-form-card__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 4px; }
.enroll-form-card h2 { font-size: 22px; margin: 0; }
.enroll-form-card__intro { font-size: 14.6px; color: var(--muted); margin-bottom: 18px; }

/* Two ways in, given equal billing so the free route is never hidden. */
.path-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.path-opt {
  position: relative; display: grid; gap: 3px;
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 14px;
  background: #fff; cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.path-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.path-opt:hover { border-color: #c3d3ef; }
.path-opt:focus-within { box-shadow: 0 0 0 4px rgba(47, 107, 255, .18); }
.path-opt__label { font-size: 12.4px; font-weight: 700; letter-spacing: .03em; color: var(--muted); }
.path-opt__price { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy-900); line-height: 1.15; }
.path-opt__price s { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-left: 4px; }

.path-opt.is-active { border-color: var(--blue-500); background: var(--blue-50); }
.path-opt.is-active .path-opt__label { color: var(--blue-600); }
.path-opt:last-child.is-active { border-color: var(--lime-500); background: var(--lime-50); }
.path-opt:last-child.is-active .path-opt__label { color: var(--lime-600); }

.path-note { font-size: 13.4px; color: var(--muted); margin-bottom: 18px; }

.form-done__actions { display: flex; flex-direction: column; gap: 10px; }
.enroll-form-card .field label { font-size: 12.8px; }
.enroll-form-card__foot { font-size: 13px; color: var(--muted); text-align: center; margin: 16px 0 0; }
.enroll-form-card__foot a { color: var(--blue-600); font-weight: 700; }

.form-done { display: none; text-align: center; }
.form-done.is-visible { display: block; }
.form-done .success-check { width: 62px; height: 62px; margin-bottom: 16px; }
.form-done h3 { font-size: 21px; margin-bottom: 6px; }
.form-done p { font-size: 14.6px; color: var(--muted); margin-bottom: 20px; }

/* Split hero (enrollment page) */
.hero--split { padding-bottom: 72px; }
.hero-grid--form { grid-template-columns: 1.02fr .98fr; align-items: start; gap: 48px; }
.hero-grid--form h1 { font-size: clamp(34px, 4.2vw, 50px); }

.hero-facts { display: grid; gap: 12px; margin: 0 0 26px; }
.hero-facts li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.6px; color: var(--ink-soft); font-weight: 500; }
.hero-facts svg { flex: none; margin-top: 4px; color: var(--lime-600); }

/* Feature strip */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-strip li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 20px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--navy-800); font-size: 15px;
}
.feature-strip svg { flex: none; margin-top: 3px; color: var(--lime-600); }

/* Quote banner */
.quote-banner {
  border-left: 4px solid var(--lime-500);
  padding: 6px 0 6px 28px;
  max-width: 900px;
}
.quote-banner h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.quote-banner p { font-size: 17px; color: var(--muted); }
.quote-banner p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- Utilities */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------- Responsive  */

@media (max-width: 1040px) {
  .hero-grid, .hero-grid--form { grid-template-columns: 1fr; gap: 44px; }
  .about-grid--even { grid-template-columns: 1fr; gap: 32px; }
  .detail-strip--2 { grid-template-columns: 1fr 1fr; }
  .hero-card--stat { left: 12px; }
  .hero-card--cert { right: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .module-grid, .bonus-grid, .tst-grid, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel { --per: 2; }
  .facilitator-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .compare__or { padding: 6px 0; }
  .compare__or span { writing-mode: horizontal-tb; padding: 6px 18px; }
}

@media (max-width: 860px) {
  .nav, .header-cta .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { gap: 10px; }
  .site-header .btn { padding: 11px 20px; font-size: 14.5px; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 22px 22px; box-shadow: var(--shadow);
  }
  .nav.is-open a { padding: 12px 4px; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
  .nav.is-open .nav-mobile-only { display: block; color: var(--blue-600); font-weight: 700; border-bottom: 0; }
  .modal__panel { grid-template-columns: 1fr; }
  .modal__aside { display: none; }
  .modal__body { padding: 44px 26px 32px; }
  .price-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .leaders { grid-template-columns: 1fr; max-width: 420px; }
  .enroll-bar__cd { display: none; }
  .enroll-bar__inner { gap: 14px; }
  .gallery-grid figure:nth-child(1) { grid-row: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .module-grid, .bonus-grid, .tst-grid, .stat-grid, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .detail-strip, .stat-row, .detail-strip--2 { grid-template-columns: 1fr; }
  .gallery-grid { gap: 12px; }
  .countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .countdown div { min-width: 0; }
  .cta-band { padding: 40px 24px; }
  .price-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { padding: 48px 0 64px; }
  .countdown div { min-width: 68px; padding: 12px 8px; }
  .countdown b { font-size: 26px; }
  .btn { width: 100%; white-space: normal; }
  .btn-row { flex-direction: column; align-items: stretch; }

  /* The header bar stays a single compact row — it must never inherit the
     full-width, wrapping button treatment used in page content. */
  .site-header .btn { width: auto; white-space: nowrap; padding: 10px 16px; font-size: 13.5px; }
  .header-inner { gap: 12px; }
  .brand-sub { display: none; }
  .brand img, .brand svg { height: 36px; }
  .nav-toggle { width: 40px; height: 40px; }

  .carousel { --per: 1; --gap: 14px; }
  .carousel__viewport { margin-inline: -22px; padding-inline: 22px; }
  .facilitator-grid, .feature-strip { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .tl-item { padding-left: 26px; }
  .tl-item:nth-last-child(-n+2) { padding-bottom: 34px; }
  .tl-item:last-child { padding-bottom: 8px; }
  .compare__col { padding: 30px 22px; }
  .enroll-form-card { padding: 26px 20px; }
  .quote-banner { padding-left: 20px; }
  .enroll-bar__inner { padding: 12px 0; }
  .enroll-bar__price { font-size: 18px; }
  .enroll-bar .btn { width: auto; white-space: nowrap; padding: 12px 20px; font-size: 14px; margin-left: auto; }
  .enroll-bar__meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
