/* ==========================================================================
   HEDGE IS KING OPTIONS ACADEMY  —  Brand Design System (v3 · Mini MBA layout)
   White minimalism · typographic · social-proof led
   Brand colors blue + gold used sparingly as accents
   ========================================================================== */

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

:root {
  /* ── Brand colors ──────────────────────────────────────────── */
  --blue:       #1E5BAE;
  --blue2:      #2A6BC7;
  --blue-deep:  #163F7C;
  --blue-soft:  #EEF3FB;
  --gold:       #F4C430;
  --gold2:      #FFD451;
  --gold-soft:  #FFF6D6;
  --ink:        #0F1A36;
  --ink2:       #243152;
  --slate:      #5C6378;
  --slate2:     #8A92A6;
  --line:       #E5E8EE;
  --line2:      #F0F2F6;
  --white:      #FFFFFF;
  --coral:      #E63946;
  --green:      #25D366;

  --sans:    'Inter', 'Noto Sans TC', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Fraunces', 'Source Serif 4', 'Noto Serif TC', 'Noto Serif SC', Georgia, 'Times New Roman', serif;
  --serif:   'Source Serif 4', 'Noto Serif TC', 'Noto Serif SC', Georgia, 'Times New Roman', serif;

  --container: 1180px;
  --container-narrow: 880px;
  --radius:    14px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 18px;
  letter-spacing: -0.005em;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold-soft); }

/* ── shared header eyebrow (left dash + uppercase) ───────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 36px; height: 3px; background: var(--gold); }
.center .eyebrow { justify-content: center; }

/* ===========================================================
   NAV
   =========================================================== */
nav.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 76px;
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-img {
  height: 52px; width: auto; display: block;
  object-fit: contain;
}
/* Legacy placeholder (kept only so any remaining old markup still renders) */
.logo-badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: var(--white); letter-spacing: -0.5px;
}
.logo-text { color: var(--ink); font-weight: 800; font-size: 15px; line-height: 1.2; }
.logo-text small {
  color: var(--blue); display: block; font-size: 10px;
  letter-spacing: 2px; font-weight: 700; margin-top: 3px; text-transform: uppercase;
}

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink2); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 11px 22px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--blue2); transform: translateY(-1px); }
.lang-mini { display: flex; gap: 4px; align-items: center; color: var(--slate2); font-size: 12px; }
.lang-mini a { color: var(--slate); text-decoration: none; padding: 4px 8px; border-radius: 4px; font-weight: 600; transition: all .2s; }
.lang-mini a.active { color: var(--blue); background: var(--blue-soft); }
.lang-mini a:hover { color: var(--blue); }

/* ===========================================================
   HERO  (text-left + group cutout right, cream backdrop)
   =========================================================== */
.hero {
  background: #F3F1EC;
  padding: 90px 56px 70px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-inner {
  max-width: 1320px; margin: 0 auto;
  width: 100%; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px 56px; align-items: center;
}
.hero-content { max-width: 580px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 6.5vw, 102px);
  line-height: 0.98; letter-spacing: -2.5px;
  color: var(--ink); margin-bottom: 26px;
}
.hero h1 em {
  color: var(--blue); font-style: italic; font-weight: 600;
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 8px; height: 14px;
  background: var(--gold); z-index: -1; opacity: 0.5;
  border-radius: 6px;
}
.hero .lead {
  font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55;
  color: var(--slate); margin: 0 0 36px;
  max-width: 480px;
}
.hero .lead strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-tagline-tight {
  margin-top: 28px; font-size: 14px; color: var(--slate2);
  font-weight: 600; letter-spacing: 0.3px;
}
.hero-tagline-tight em { color: var(--blue); font-style: normal; font-weight: 700; }

/* one-line extra-bold headline variant (CJK) */
.hero h1.one-line {
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 62px);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.hero h1.one-line em { font-style: normal; font-weight: 900; }

/* full-width hero headline — heavy sans, capped to copy width (CJK) */
.hero h1.hero-headline-full,
.hero-headline-full {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}
.hero h1.hero-headline-full em,
.hero-headline-full em {
  color: var(--blue); font-style: normal; font-weight: 900;
  position: relative; display: inline-block;
}
.hero h1.hero-headline-full em::after,
.hero-headline-full em::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 4px; height: 8px;
  background: var(--gold); z-index: -1; opacity: 0.5;
  border-radius: 5px;
}
@media (max-width: 720px) {
  .hero h1.hero-headline-full, .hero-headline-full { font-size: 6.8vw; letter-spacing: 0.5px; }
}

/* MiniMBA-style enrol card: dark pill + icon circle + text stack + arrow block */
.cta-card {
  display: inline-flex; align-items: stretch;
  background: var(--ink);
  border-radius: 14px; overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15,26,54,0.2);
  transition: transform .15s, box-shadow .2s;
}
.cta-card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(15,26,54,0.28); }
.cta-card-icon {
  display: flex; align-items: center;
  padding: 16px 18px 16px 18px;
}
.cta-card-icon .icon-circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent, var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-card-body {
  display: flex; flex-direction: column; justify-content: center;
  gap: 2px; padding: 14px 24px 14px 0;
}
.cta-card-body small {
  color: rgba(255,255,255,0.75);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.2px;
}
.cta-card-body strong {
  color: var(--white);
  font-size: 24px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.3px;
}
.cta-card-body .cta-card-note {
  color: rgba(255,255,255,0.75);
  font-size: 12.5px; font-style: italic;
}
.cta-card-arrow {
  background: var(--accent, var(--blue)); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: 0 22px; font-size: 22px; margin-left: 16px;
  transition: background .2s;
}
.cta-card:hover .cta-card-arrow { filter: brightness(1.18); }

/* small secondary actions under the primary CTA */
.hero-secondary-actions {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  margin-top: 18px;
}
.btn-mini {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700;
  color: var(--ink2); text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  background: none; border-top: 0; border-left: 0; border-right: 0;
  cursor: pointer; font-family: inherit;
}
.btn-mini:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* Group cutout on the right */
.hero-group {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-group img {
  max-width: 100%; height: auto; display: block;
}

/* Legacy hero leftovers (kept hidden if any old markup persists) */
.hero-wordmark, .hero-photo-wrap, .hero-handwritten, .hero-photo-tag, .hero-bottom-strip, .hero-visual, .hero-faces {
  display: none;
}
.hero .lead {
  font-size: clamp(20px, 1.55vw, 24px); line-height: 1.5;
  color: var(--slate); margin: 0 0 44px;
  max-width: 580px;
}
.hero .lead strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-tagline-tight {
  margin-top: 32px; font-size: 14px; color: var(--slate2);
  font-weight: 600; letter-spacing: 0.3px;
}
.hero-tagline-tight em { color: var(--blue); font-style: normal; font-weight: 700; }

/* Instructor photo block on the right of hero (kept for fallback) */
.hero-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--blue-soft);
  box-shadow: 0 30px 60px rgba(15,26,54,0.16);
  max-width: 480px; width: 100%; margin-left: auto;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-visual-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); color: var(--ink);
  border-radius: 10px; padding: 14px 18px;
  border-left: 3px solid var(--gold);
}
.hero-visual-tag strong { display: block; font-size: 15px; font-weight: 800; }
.hero-visual-tag span { font-size: 11px; color: var(--blue); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }

/* Hero faces grid — 6 diverse student portraits with city labels */
.hero-faces {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; max-width: 520px; width: 100%; margin-left: auto;
}
.hero-face {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8edf4 0%, #c5d2e0 100%);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: flex-end;
  box-shadow: 0 8px 24px rgba(15,26,54,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-face:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(15,26,54,0.14); }
.hero-face img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}
.hero-face-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: rgba(15,26,54,0.16);
}
.hero-face-label {
  position: relative; z-index: 2;
  width: 100%;
  background: linear-gradient(0deg, rgba(15,26,54,0.85) 0%, rgba(15,26,54,0.0) 100%);
  color: var(--white);
  padding: 32px 14px 12px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
}

/* ── buttons (shared) ───────────────────────────────────────── */
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 16px 34px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-ghost {
  color: var(--ink); font-size: 15px; font-weight: 700;
  text-decoration: none; padding: 16px 30px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ===========================================================
   STUDENTS WORLDWIDE STRIP  (6 portraits with city labels)
   =========================================================== */
.students-strip {
  background: var(--white);
  padding: 90px 56px 100px;
  border-top: 1px solid var(--line);
}
.students-strip-inner { max-width: var(--container); margin: 0 auto; }
.students-strip-head { text-align: center; margin-bottom: 56px; }
.students-strip-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1; letter-spacing: -1px;
  color: var(--ink); margin-bottom: 14px;
}
.students-strip-head h2 em { color: var(--blue); font-style: italic; }
.students-strip-head p {
  font-size: 16px; color: var(--slate); max-width: 540px; margin: 0 auto;
}
.students-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  max-width: 1140px; margin: 0 auto;
}
.student-card {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; background: var(--blue-soft);
  transition: transform .3s ease;
  box-shadow: 0 6px 18px rgba(15,26,54,0.06);
}
.student-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,26,54,0.12); }
.student-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.student-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(15,26,54,0.88) 0%, rgba(15,26,54,0) 100%);
  color: var(--white);
  padding: 36px 10px 12px;
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase;
  text-align: center;
}
.students-strip-note {
  text-align: center; margin-top: 28px;
  font-size: 11px; color: var(--slate2);
  font-style: italic;
}

@media (max-width: 1024px) {
  .students-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 720px) {
  .students-strip { padding: 56px 20px; }
  .students-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .students-strip-head { margin-bottom: 36px; }
}

/* ===========================================================
   SOCIAL PROOF  (Mini MBA-style — 4 testimonial cards, white bg)
   =========================================================== */
.proof {
  background: var(--white); padding: 80px 24px 110px;
  border-top: 1px solid var(--line);
}
.proof-inner { max-width: var(--container); margin: 0 auto; }
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.proof-card {
  display: flex; flex-direction: column; gap: 18px;
}
.proof-quote {
  font-family: var(--serif);
  font-size: 18px; line-height: 1.5; color: var(--ink2);
  font-style: italic; flex: 1; font-weight: 400;
  letter-spacing: -0.005em;
}
.proof-quote::before { content: '"'; font-family: var(--serif); font-size: 38px; color: var(--blue); font-weight: 700; line-height: 0; vertical-align: -16px; margin-right: 6px; font-style: normal; }
.proof-author { padding-top: 16px; border-top: 1px solid var(--line); }
.proof-name { font-weight: 800; font-size: 14px; color: var(--ink); }
.proof-role { font-size: 12px; color: var(--slate); margin-top: 3px; }

/* ===========================================================
   SECTION COMMON
   =========================================================== */
section { padding: 140px 56px; }
.section-head {
  max-width: 920px; margin: 0 auto 88px; text-align: center;
}
.section-title {
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.18; color: var(--ink);
  margin-bottom: 22px; letter-spacing: -1px;
}
.section-title em {
  color: var(--blue); font-style: normal;
  position: relative; display: inline-block;
}
.section-title em::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 2px; height: 10px;
  background: var(--gold); z-index: -1; opacity: 0.5;
  border-radius: 6px;
}
.section-lead { font-size: 18px; line-height: 1.7; color: var(--slate); max-width: 680px; margin: 0 auto; font-weight: 400; }
/* Split intro: heading + lead on the left, numbered steps on the right */
.cl-split {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start;
}
.cl-split .section-head { max-width: none; margin: 0; text-align: left; }
.cl-split .section-title { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 18px; }
.cl-split .section-lead { max-width: none; margin: 0; }
.cl-split-steps {
  display: flex; flex-direction: column; gap: 30px;
  border-left: 1px solid var(--line); padding-left: 48px;
}
.cl-step { display: flex; gap: 18px; align-items: flex-start; }
.cl-step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent, #163F7C); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800;
}
.cl-step-body h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin: 0 0 6px; line-height: 1.3; }
.cl-step-body p { font-size: 15px; color: var(--slate); line-height: 1.7; margin: 0; }
@media (max-width: 880px) {
  .cl-split { grid-template-columns: 1fr; gap: 40px; }
  .cl-split-steps { border-left: 0; padding-left: 0; }
}

/* ===========================================================
   TESTIMONIAL CAROUSEL  (dark band, swipeable, dot nav)
   =========================================================== */
.testi-carousel {
  background: var(--blue);
  padding: 100px 0 64px;
  position: relative; overflow: hidden;
}
.testi-carousel .testi-head {
  text-align: center; max-width: 760px;
  margin: 0 auto 52px; padding: 0 24px;
}
.testi-carousel .testi-head .eyebrow { color: var(--gold); justify-content: center; }
.testi-carousel .testi-head .eyebrow::before { background: var(--gold); }
.testi-carousel .testi-head h2 {
  color: #fff; font-weight: 900;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -1px; line-height: 1.18;
}
.testi-carousel .testi-head h2 em { color: var(--gold); font-style: normal; }

.testi-wrap { position: relative; max-width: 1100px; margin: 0 auto; }
.testi-track {
  display: flex; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-slide {
  flex: 0 0 100%; scroll-snap-align: center;
  text-align: center; padding: 0 9vw;
  margin: 0;
}
.testi-persona {
  display: inline-flex; align-items: center;
  background: rgba(244,196,48,0.14);
  border: 1px solid rgba(244,196,48,0.4);
  color: var(--gold);
  font-size: 13px; font-weight: 700; letter-spacing: 0.8px;
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 24px;
}
.testi-slide blockquote {
  font-family: var(--serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.6; color: rgba(255,255,255,0.92);
  margin: 0 0 26px;
}
.testi-slide figcaption {
  color: var(--gold); font-size: 14px; font-weight: 700;
  letter-spacing: 1px;
  display: flex; gap: 14px; justify-content: center; align-items: center;
}
.testi-slide .testi-meta {
  margin-top: 18px;
  display: flex; gap: 10px 28px; flex-wrap: wrap; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600;
}
.testi-slide .testi-meta strong { color: #fff; font-weight: 800; }

.testi-arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer; z-index: 5;
  transition: background .2s, border-color .2s;
}
.testi-arrow:hover { background: rgba(244,196,48,0.25); border-color: var(--gold); }
.testi-arrow.prev { left: 4px; }
.testi-arrow.next { right: 4px; }

.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 44px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(255,255,255,0.28);
  cursor: pointer; transition: all .2s;
}
.testi-dots button.active { background: var(--gold); transform: scale(1.3); }
.testi-disclaimer {
  text-align: center; color: rgba(255,255,255,0.38);
  font-size: 11.5px; margin-top: 22px; padding: 0 24px;
}

@media (max-width: 720px) {
  .testi-carousel { padding: 64px 0 44px; }
  .testi-slide { padding: 0 28px; }
  .testi-arrow { display: none; }
}

/* ===========================================================
   WHY HEDGE IS KING  (3 pillars — clean cards on white)
   =========================================================== */
.why { background: var(--white); border-top: 1px solid var(--line); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  max-width: var(--container); margin: 0 auto;
}
.why-card {
  text-align: left; padding: 0;
}
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.why-card h3 {
  font-weight: 800; font-size: 22px; color: var(--ink);
  margin-bottom: 14px; line-height: 1.3;
}
.why-card p { color: var(--slate); font-size: 16px; line-height: 1.7; }

/* ===========================================================
   STATS BAND  (huge numbers, Mini MBA "40,000+ alumni" style)
   =========================================================== */
.stats-band {
  background: var(--ink); color: var(--white);
  padding: 100px 56px;
}
.stats-head { text-align: center; max-width: var(--container-narrow); margin: 0 auto 60px; }
.stats-head .eyebrow { color: var(--gold); }
.stats-head .eyebrow::before { background: var(--gold); }
.stats-head h2 { color: var(--white); font-weight: 900; font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -1px; line-height: 1.18; }
.stats-head h2 em { color: var(--gold); font-style: normal; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: var(--container); margin: 0 auto;
}
.stat-cell { text-align: center; }
.stat-num {
  font-weight: 900; font-size: clamp(56px, 6.5vw, 96px);
  color: var(--gold); line-height: 0.95; letter-spacing: -3px;
  margin-bottom: 18px;
}
.stat-label { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.stat-note { color: rgba(255,255,255,0.55); font-size: 13px; }

/* ===========================================================
   HOW IT WORKS / METHODOLOGY  (4-step horizontal)
   =========================================================== */
.method { background: var(--white); border-top: 1px solid var(--line); }
.method-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  max-width: var(--container); margin: 0 auto;
}
.method-card { text-align: left; }
.method-num {
  display: inline-block;
  font-weight: 900; font-size: 14px;
  color: var(--blue); background: var(--blue-soft);
  padding: 4px 14px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.method-card h3 { font-weight: 800; font-size: 20px; color: var(--ink); margin-bottom: 12px; }
.method-card p { color: var(--slate); font-size: 15px; line-height: 1.65; }

/* ===========================================================
   MEET HENRY SIR  (Mini MBA Mark Ritson style — text-heavy)
   =========================================================== */
.about { background: var(--white); border-top: 1px solid var(--line); }
.about-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 80px; align-items: start;
  max-width: var(--container); margin: 0 auto;
}
.about-photo {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5; background: var(--blue-soft);
  box-shadow: 0 30px 60px rgba(15,26,54,0.12);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 23%; }
.about-photo-tag {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--ink); color: var(--white);
  border-radius: 10px; padding: 12px 16px;
  border-left: 3px solid var(--gold);
}
.about-photo-tag strong { display: block; font-size: 15px; font-weight: 800; }
.about-photo-tag span { font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.about-content h2 { text-align: left; margin-bottom: 28px; }
.about-content .eyebrow { justify-content: flex-start; }
.about-intro {
  font-size: 19px; line-height: 1.7; color: var(--ink2);
  margin-bottom: 28px;
}
.about-intro strong { color: var(--ink); font-weight: 700; }
.about-body { font-size: 16px; line-height: 1.75; color: var(--slate); margin-bottom: 16px; }
.about-body strong { color: var(--ink); }
.about-body em { font-style: italic; color: var(--ink); font-weight: 600; }
.about-meta {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  margin: 32px 0;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.about-meta-cell { padding: 0; }
.about-meta-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.about-meta-text { font-size: 14.5px; color: var(--ink2); line-height: 1.55; }

/* ===========================================================
   FEATURED COURSE
   =========================================================== */
.courses { background: var(--blue-soft); border-top: 1px solid var(--line); }
.featured-course {
  max-width: var(--container); margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,26,54,0.06);
}
.featured-banner {
  background: var(--ink);
  padding: 44px 52px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: end;
  position: relative; overflow: hidden;
}
.featured-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.18) 0%, transparent 70%);
}
.featured-banner > * { position: relative; z-index: 2; }
.featured-banner .course-badge { align-self: flex-start; grid-column: 1 / -1; margin-bottom: -8px; }
.featured-title {
  font-weight: 900; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.15;
  color: var(--white); margin-bottom: 12px; letter-spacing: -0.5px;
}
.featured-tagline { color: var(--gold); font-size: 16px; line-height: 1.5; max-width: 480px; font-weight: 500; }
.featured-meta-strip { display: flex; flex-direction: column; gap: 14px; padding-left: 28px; border-left: 1px solid rgba(244,196,48,0.35); }
.featured-meta-strip div { display: flex; flex-direction: column; gap: 2px; }
.featured-meta-strip strong { font-weight: 800; font-size: 20px; color: var(--gold); line-height: 1; }
.featured-meta-strip span { font-size: 12px; color: rgba(255,255,255,0.65); }

.featured-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding: 52px; }
.featured-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.featured-desc { font-size: 16px; line-height: 1.75; color: var(--ink2); margin-bottom: 32px; }
.featured-subcol-title { font-weight: 800; font-size: 19px; color: var(--ink); margin-top: 24px; margin-bottom: 14px; }
.featured-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.featured-list li { font-size: 15px; color: var(--ink2); line-height: 1.6; padding-left: 28px; position: relative; }
.featured-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: var(--blue-soft); }
.featured-list li::after { content: '✓'; color: var(--blue); font-weight: 800; position: absolute; left: 3px; top: 4px; font-size: 11px; }

.featured-side { align-self: start; position: sticky; top: 100px; }
.featured-price-card {
  background: var(--blue-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  border-top: 4px solid var(--gold);
}
.featured-price-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--slate2); margin-bottom: 10px; }
.featured-price { font-weight: 900; font-size: 56px; color: var(--ink); line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.featured-price-note { font-size: 13px; color: var(--slate); line-height: 1.5; margin-bottom: 22px; }
.featured-price-card .course-cta { margin-bottom: 22px; }
.featured-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); }
.featured-perks li { font-size: 13.5px; color: var(--slate); padding-left: 22px; position: relative; }
.featured-perks li::before { content: '✓'; color: var(--blue); font-weight: 800; position: absolute; left: 0; top: 0; }

.course-cta {
  display: block; background: var(--blue); color: var(--white);
  text-align: center; padding: 16px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.course-cta:hover { background: var(--blue2); transform: translateY(-1px); }
.course-badge {
  display: inline-block;
  background: rgba(244,196,48,0.22); border: 1px solid rgba(244,196,48,0.5);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}

/* ===========================================================
   COURSE PICKER  ("Which course is right for me?" catalog)
   =========================================================== */
.course-picker { background: var(--blue-soft); border-top: 1px solid var(--line); }
.course-group-label {
  max-width: var(--container); margin: 0 auto 18px;
  font-size: 13px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--slate2);
  display: flex; align-items: center; gap: 14px;
}
.course-group-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.course-group-label + .picker-grid { margin-bottom: 56px; }
.picker-grid {
  display: grid; gap: 22px;
  max-width: var(--container); margin: 0 auto;
}
.picker-grid.online { grid-template-columns: repeat(2, 1fr); }
.picker-grid.live { grid-template-columns: repeat(3, 1fr); }
.picker-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--blue));
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.picker-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(15,26,54,0.08); }
.picker-tier {
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--accent, var(--blue)); text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.picker-badge {
  background: var(--gold-soft); border: 1px solid var(--gold);
  color: #8a6a00; font-size: 11px; font-weight: 800;
  padding: 2px 10px; border-radius: 100px; letter-spacing: 1px;
}
.picker-card h3 {
  font-size: 21px; font-weight: 900; line-height: 1.35;
  color: var(--accent, var(--blue)); margin-bottom: 12px;
}
.picker-desc { font-size: 14.5px; color: var(--slate); line-height: 1.7; margin-bottom: 20px; }
.picker-meta {
  list-style: none; margin: auto 0 22px; padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px; color: var(--ink2); font-weight: 600;
}
.picker-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 14px;
  color: var(--accent, var(--blue)); text-decoration: none;
  border-bottom: 2px solid var(--accent, var(--blue));
  padding: 0 0 3px; align-self: flex-start;
  background: none; border-top: 0; border-left: 0; border-right: 0;
  cursor: pointer; font-family: inherit;
  transition: opacity .2s;
}
.picker-cta:hover { opacity: 0.75; }
.picker-sub {
  font-size: 13px; font-weight: 700; color: var(--accent, var(--blue));
  margin: -2px 0 16px; line-height: 1.5;
}
.picker-points {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.picker-points li {
  position: relative; padding-left: 22px;
  font-size: 14px; color: var(--slate); line-height: 1.55;
}
.picker-points li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent, var(--blue)); opacity: 0.5;
}
.picker-note {
  font-size: 12.5px; color: var(--slate2); line-height: 1.55;
  margin: auto 0 0; padding-top: 14px; border-top: 1px dashed var(--line);
}
.picker-price {
  display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap;
  margin: 13px 0 18px;
}
.picker-price strong { font-size: 23px; font-weight: 900; color: var(--ink); }
.picker-price span { font-size: 12.5px; color: var(--slate2); font-weight: 600; }
.picker-price em {
  font-size: 11px; font-style: normal; font-weight: 800; letter-spacing: 0.5px;
  color: #8a6a00; background: var(--gold-soft); border: 1px solid var(--gold);
  padding: 2px 8px; border-radius: 100px;
}
.picker-tz {
  display: flex; flex-direction: column; gap: 3px;
  margin: 0 0 16px;
  font-size: 12.5px; color: var(--slate); font-weight: 500; line-height: 1.55;
}
.picker-tz-lead { font-weight: 700; color: var(--ink2); }
/* mc-bar reused as the in-card buy CTA: sits at the card bottom, blue accent, no overlap margin */
.mc-bar.picker-mc {
  margin: 16px 0 0; box-shadow: none; border-radius: 10px;
  --accent: #B07E10;
}
.mc-bar.picker-mc:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,26,54,0.18); }
@media (max-width: 1024px) {
  .picker-grid.online, .picker-grid.live { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .picker-grid.online, .picker-grid.live { grid-template-columns: 1fr; }
}

/* ── language-versions strip ─────────────────────────────── */
.lang-versions { max-width: var(--container); margin: 48px auto 0; padding: 28px; text-align: center; }
.lang-versions-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--slate2); margin-bottom: 18px; }
.lang-versions-list { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lang-version-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 22px;
  text-decoration: none; transition: all .2s; min-width: 240px;
}
.lang-version-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.lang-version-flag { font-size: 22px; }
.lang-version-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.lang-version-price { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.lang-version-arrow { color: var(--blue); font-size: 16px; font-weight: 800; margin-left: auto; }

/* ===========================================================
   FAQ ACCORDION  (Mini MBA-style — left-aligned, expandable)
   =========================================================== */
.faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  background: var(--white); border: 0;
  padding: 28px 0;
  font-family: inherit; font-weight: 800; font-size: 19px; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; line-height: 1.4;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px; line-height: 1.75; color: var(--slate);
}
.faq-a-inner p + p { margin-top: 12px; }
.faq-a-inner strong { color: var(--ink); }

/* ===========================================================
   FINAL CTA BAND  (centered, single message, blue gradient)
   =========================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  padding: 120px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band .eyebrow { justify-content: center; color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-band h2 {
  font-weight: 900; font-size: clamp(30px, 3.4vw, 46px);
  color: var(--white); margin-bottom: 22px; letter-spacing: -1.5px;
  line-height: 1.05;
}
.cta-band h2 em {
  color: var(--gold); font-style: normal;
  position: relative; display: inline-block;
}
.cta-band p {
  color: rgba(255,255,255,0.85); font-size: 18px;
  max-width: 580px; margin: 0 auto 40px; line-height: 1.7;
}
.cta-band .btn-primary {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 12px 28px rgba(244,196,48,0.35);
  padding: 16px 34px; font-size: 15px;
}
.cta-band .btn-primary:hover { background: var(--gold2); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  background: var(--green); color: white;
  padding: 16px 34px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity .2s, transform .15s;
}
.btn-wa:hover { opacity: 0.92; transform: translateY(-1px); }
.cta-next {
  margin-top: 32px; font-size: 14px; color: rgba(255,255,255,0.65);
}
.cta-next strong { color: var(--gold); font-weight: 700; }

/* ===========================================================
   STICKY NEWSLETTER BAR  (fixed bottom, dismissible)
   =========================================================== */
.sticky-newsletter {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--ink); color: var(--white);
  padding: 16px 32px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
  transform: translateY(0); transition: transform .35s ease;
}
.sticky-newsletter.hidden { transform: translateY(110%); }
.sticky-newsletter-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.sticky-newsletter-copy { flex: 1; min-width: 0; }
.sticky-newsletter-copy strong {
  display: block; font-size: 15px; font-weight: 800;
  color: var(--white); letter-spacing: -0.2px;
}
.sticky-newsletter-copy strong span { color: var(--gold); }
.sticky-newsletter-copy p {
  font-size: 13.5px; color: rgba(255,255,255,0.7);
  margin-top: 3px; line-height: 1.4;
}
.sticky-newsletter-form { display: flex; gap: 8px; flex-shrink: 0; }
.sticky-newsletter-form input {
  padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-size: 14px; font-family: inherit;
  min-width: 220px;
}
.sticky-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.sticky-newsletter-form input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.sticky-newsletter-form button {
  background: var(--blue); color: var(--white);
  padding: 12px 22px; border-radius: 8px; border: 0;
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.sticky-newsletter-form button:hover { background: var(--blue2); }
.sticky-newsletter-close {
  background: transparent; border: 0;
  color: rgba(255,255,255,0.5); font-size: 22px;
  cursor: pointer; padding: 0 4px;
  transition: color .2s; line-height: 1;
}
.sticky-newsletter-close:hover { color: var(--white); }
.sticky-newsletter-thanks {
  text-align: center; padding: 8px 0;
  color: var(--gold); font-weight: 700; font-size: 15px;
}

/* prevent newsletter bar from covering footer content */
body.has-sticky { padding-bottom: 96px; }

@media (max-width: 720px) {
  .sticky-newsletter { padding: 12px 16px; }
  .sticky-newsletter-inner { flex-direction: column; gap: 10px; align-items: stretch; }
  .sticky-newsletter-form input { min-width: 0; flex: 1; }
  .sticky-newsletter-close { position: absolute; top: 8px; right: 12px; }
  body.has-sticky { padding-bottom: 168px; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 72px 56px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; max-width: var(--container); margin-left: auto; margin-right: auto; }
.footer-brand .logo-text { color: var(--white); font-size: 16px; margin-bottom: 12px; }
.footer-brand .logo-text small { color: var(--gold); }
.footer-desc { font-size: 13.5px; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-col h4 { color: var(--gold); font-size: 12px; font-weight: 700; margin-bottom: 18px; letter-spacing: 2px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 16px;
  max-width: var(--container); margin: 0 auto;
  color: rgba(255,255,255,0.45);
}
.footer-student-login { color: var(--gold) !important; text-decoration: none; font-weight: 700; }
.footer-student-login:hover { text-decoration: underline; }
.lang-switcher { display: flex; gap: 8px; }
.lang-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); padding: 6px 14px; border-radius: 100px; font-size: 12px; cursor: pointer; text-decoration: none; transition: all .2s; }
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.lang-btn.active { background: rgba(244,196,48,0.2); border-color: var(--gold); color: var(--gold); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  section { padding: 88px 32px; }
  .hero { padding: 80px 32px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-content { max-width: none; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .about-meta { grid-template-columns: 1fr; }
  .featured-banner { grid-template-columns: 1fr; padding: 36px 32px; }
  .featured-meta-strip { padding-left: 0; border-left: 0; border-top: 1px solid rgba(244,196,48,0.35); padding-top: 24px; flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .featured-body { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
  .featured-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  nav.topnav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .lang-mini { display: none; }
  section { padding: 64px 20px; }
  .hero { padding: 72px 20px 60px; }
  .proof-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .method-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band { padding: 80px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   NAV DROPDOWN  (課程 submenu)
   =========================================================== */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; color: var(--slate2); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: -16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: 0 16px 40px rgba(15,26,54,0.14);
  padding: 12px 0; min-width: 268px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav-dropdown-menu a {
  display: block; padding: 9px 20px;
  font-size: 13.5px; font-weight: 600; color: var(--ink2);
  text-decoration: none; transition: all .15s;
}
.nav-dropdown-menu a:hover { background: var(--blue-soft); color: var(--blue); }
.nav-dropdown-menu .menu-note {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--slate2);
  padding: 8px 20px 4px;
}

/* ===========================================================
   SITE FOOTER v2  (newsletter + columns, dark)
   =========================================================== */
.site-footer { background: #0A0F1E; color: rgba(255,255,255,0.6); padding: 72px 56px 28px; }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  max-width: var(--container); margin: 0 auto 52px;
}
.footer-news h4 { color: #fff; font-size: 20px; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.3px; }
.footer-news p { font-size: 13.5px; line-height: 1.65; margin-bottom: 18px; max-width: 260px; }
.footer-news-form { display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.footer-news-form input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px; padding: 11px 14px;
  color: #fff; font-family: inherit; font-size: 13.5px;
}
.footer-news-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-news-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.footer-news-form button {
  background: linear-gradient(135deg, var(--gold), #D99B1F);
  color: #231A02; border: 0; border-radius: 8px;
  padding: 12px; font-weight: 800; font-size: 14px;
  cursor: pointer; font-family: inherit;
  transition: opacity .2s;
}
.footer-news-form button:hover { opacity: 0.9; }
.footer-news-form select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px; padding: 11px 8px;
  color: #fff; font-family: inherit; font-size: 13.5px;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.footer-news-form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.footer-news-form select option { color: #111; }
.footer-phone-row { display: flex; gap: 8px; }
.footer-phone-row select { flex: 0 0 138px; width: 138px; }
.footer-phone-row input { flex: 1 1 auto; min-width: 0; }
.footer-news-fine { font-size: 11.5px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 260px; margin-top: 2px; }
.footer-news-fine a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer-news-fine a:hover { color: #fff; }
.footer-news-grouplabel { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.72); margin-bottom: -2px; }
.footer-news-err { font-size: 11.5px; color: #ff9090; line-height: 1.45; }
.footer-thanks { color: var(--gold); font-weight: 700; }
.site-footer .footer-col h4 {
  color: var(--gold); font-size: 13px; letter-spacing: 2px;
  font-weight: 800; margin-bottom: 16px;
}
.site-footer .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer .footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color .2s; }
.site-footer .footer-col a:hover { color: var(--gold); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  max-width: var(--container); margin: 0 auto;
  font-size: 12.5px;
}
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: rgba(255,255,255,0.55); display: flex; transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.site-footer .footer-disclaimer { max-width: var(--container); margin: 0 auto 22px; }
.site-footer .footer-disclaimer p { font-size: 11.5px; line-height: 1.75; color: rgba(255,255,255,0.42); margin: 0; }
@media (max-width: 1024px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .site-footer { padding: 48px 24px 24px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   COURSE LANDING PAGES  (cl-*)
   =========================================================== */
.cl-hero {
  background: linear-gradient(140deg, var(--cl-a, #1B2B52) 0%, var(--cl-b, #0E1830) 100%);
  color: #fff; padding: 110px 56px 90px;
}
.cl-hero-inner { max-width: var(--container); margin: 0 auto; }
.cl-hero .eyebrow { color: var(--gold); }
.cl-hero .eyebrow::before { background: var(--gold); }
.cl-hero h1 {
  font-weight: 900; font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.12; letter-spacing: -1px;
  margin-bottom: 18px; max-width: 800px;
}
.cl-sub {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 640px; margin-bottom: 40px;
}
.cl-hero .cta-card { border: 1px solid rgba(255,255,255,0.16); }
.cl-note { margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
/* Standardized hero CTAs: buy (primary) + free trial (secondary) */
.cl-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cl-cta-buy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  padding: 17px 32px; border-radius: 12px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  box-shadow: 0 10px 28px rgba(212,164,54,0.28);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.cl-cta-buy:hover { transform: translateY(-2px); background: #E2B43F; box-shadow: 0 14px 34px rgba(212,164,54,0.42); }
.cl-cta-try {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 16px 30px; border-radius: 12px;
  font-weight: 700; font-size: 15.5px; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.cl-cta-try:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
@media (max-width: 560px) {
  .cl-hero-actions { flex-direction: column; align-items: stretch; }
  .cl-cta-buy, .cl-cta-try { justify-content: center; }
}

.cl-quote { background: var(--gold); padding: 90px 24px; }
.cl-quote blockquote {
  max-width: 840px; margin: 0 auto;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.2vw, 28px); line-height: 1.65;
  color: #231A02; text-align: center;
}
.cl-quote figcaption {
  text-align: center; margin-top: 22px;
  color: #6B5408; font-weight: 800; font-size: 13px; letter-spacing: 1.5px;
}

.cl-mentor { background: var(--white); border-top: 1px solid var(--line); }
.cl-mentor-inner {
  max-width: 880px; margin: 0 auto;
  display: flex; gap: 44px; align-items: center;
}
.cl-mentor img {
  width: 150px; height: 150px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--blue-soft);
  flex-shrink: 0;
}
.cl-mentor h3 { font-weight: 900; font-size: 24px; color: var(--ink); margin-bottom: 10px; }
.cl-mentor p { font-size: 15px; color: var(--slate); line-height: 1.75; }
@media (max-width: 720px) {
  .cl-hero { padding: 72px 24px 56px; }
  .cl-mentor-inner { flex-direction: column; text-align: center; }
}

/* ===========================================================
   MC CARDS  (MiniMBA-style course cards: tab + photo + black bar)
   =========================================================== */
.mc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: var(--container); margin: 0 auto;
}
.mc-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--blue));
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px 26px 30px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.mc-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(15,26,54,0.09); }
/* whole card is the link */
a.mc-card { text-decoration: none; color: inherit; cursor: pointer; }
a.mc-card:hover .mc-bar { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.34); }
/* coming-soon card: greyed out, not clickable */
.mc-card.is-soon { cursor: default; }
.mc-card.is-soon:hover { transform: none; box-shadow: none; }
.mc-card.is-soon .mc-photo img { filter: grayscale(1); opacity: .55; }
.mc-card.is-soon .mc-bar { background: #6F747C; box-shadow: 0 10px 26px rgba(0,0,0,0.16); }
.mc-card.is-soon .mc-bar:hover { transform: none; }
.mc-card.is-soon .mc-bar-icon span { background: #9AA0A6; }
.mc-card.is-soon .mc-bar-body strong { color: #fff; }
.mc-format {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 13px; border-radius: 100px;
  margin-bottom: 16px; text-transform: uppercase;
}
.mc-format.ondemand { background: var(--blue-soft); color: var(--blue); }
.mc-format.live { background: var(--gold-soft); color: #8a6a00; }
.mc-format.soon { background: #ECEDEF; color: #8A8E95; }
.mc-card h3 {
  color: var(--accent, var(--blue));
  font-size: 21px; font-weight: 900; line-height: 1.35;
  margin-bottom: 12px;
}
.mc-desc { font-size: 14.5px; color: var(--slate); line-height: 1.7; margin-bottom: 14px; }
.mc-links { display: flex; gap: 20px; margin-bottom: 22px; }
.mc-read {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 15px; color: var(--accent, var(--blue));
  text-decoration: none;
}
.mc-read:hover { text-decoration: underline; }
.mc-photo {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 16/10; margin-top: auto;
}
.mc-photo img { width: 100%; height: 100%; object-fit: cover; }
.mc-bar {
  display: flex; align-items: stretch;
  background: #15131C; border-radius: 12px; overflow: hidden;
  text-decoration: none;
  margin: -26px 10px 0; position: relative; z-index: 2;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  transition: transform .15s, box-shadow .2s;
}
.mc-bar:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.34); }
.mc-bar-icon { display: flex; align-items: center; padding: 12px 12px 12px 14px; }
.mc-bar-icon span {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent, var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mc-bar-body { padding: 12px 8px 12px 2px; color: #fff; flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 1px; }
.mc-bar-body small { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 700; }
.mc-bar-body strong { font-size: 18px; font-weight: 800; line-height: 1.25; letter-spacing: -0.2px; color: var(--gold); }
.mc-bar-body em { font-style: italic; font-size: 13px; color: rgba(255,255,255,0.8); font-family: var(--serif); }
.mc-bar-arrow {
  background: var(--accent, var(--blue)); color: #fff;
  display: flex; align-items: center;
  padding: 0 16px; font-size: 19px; font-weight: 800;
}
/* mc-bar reused as the hero CTA (no card-overlap margin) */
.mc-bar.cl-hero-bar { margin: 0; max-width: 340px; }
/* course-picker groups: 理論班 / 策略大師班 */
.mc-group { max-width: var(--container); margin: 0 auto; }
.mc-group + .mc-group { margin-top: 58px; }
.mc-group-head {
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.mc-group-title {
  font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1.25;
  padding-left: 14px; border-left: 5px solid var(--gold); flex-shrink: 0;
}
.mc-group-sub { font-size: 14.5px; color: var(--slate); line-height: 1.7; flex: 1; min-width: 280px; }
/* two-card group keeps the same card width as the 3-up grid, centered */
.mc-grid.is-pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc((2 * var(--container) - 26px) / 3);
}
@media (max-width: 1024px) { .mc-grid, .mc-grid.is-pair { grid-template-columns: 1fr 1fr; max-width: var(--container); } }
@media (max-width: 720px) { .mc-grid, .mc-grid.is-pair { grid-template-columns: 1fr; } }

/* ===========================================================
   WHY HENRY  (MiniMBA "Why Choose" layout — text + checklist)
   =========================================================== */
.why-henry { background: #E6ECF6; padding: 110px 56px; }
.why-henry-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center;
}
.why-henry .eyebrow { color: var(--blue); }
.why-henry .eyebrow::before { background: var(--gold); }
.why-henry h2 {
  font-weight: 900; font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.18; letter-spacing: -1px; color: var(--ink); margin-bottom: 22px;
}
.why-henry h2 em { color: var(--blue); font-style: normal; }
.why-henry p { font-size: 16px; line-height: 1.8; color: var(--slate); }
.why-henry p strong { color: var(--ink); font-weight: 700; }
.wh-list { display: flex; flex-direction: column; gap: 14px; }
.wh-item {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.wh-badge {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.wh-badge svg { display: block; }
.wh-text { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.4; }
.wh-text span { display: block; font-size: 13px; font-weight: 500; color: var(--slate); margin-top: 3px; }
@media (max-width: 900px) {
  .why-henry { padding: 72px 24px; }
  .why-henry-inner { grid-template-columns: 1fr; gap: 44px; }
}

/* ===========================================================
   COMPARE  (other tutors vs Henry Sir — two columns)
   =========================================================== */
.compare-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 1000px; margin: 0 auto;
}
.compare-col {
  border-radius: var(--radius-lg); padding: 34px 30px;
}
.compare-col.them {
  background: #EDEFF3;
  border: 1px solid var(--line);
}
.compare-col.us {
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 44px rgba(15,26,54,0.12);
}
.compare-tag {
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 6px;
}
.compare-col.them .compare-tag { color: var(--slate2); }
.compare-col.us .compare-tag { color: var(--blue); }
.compare-col h3 {
  font-size: 22px; font-weight: 900; line-height: 1.3; margin-bottom: 24px;
}
.compare-col.them h3 { color: var(--slate); }
.compare-col.us h3 { color: var(--ink); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-list li {
  position: relative; padding-left: 31px;
  font-size: 15.5px; line-height: 1.6;
}
.compare-col.them .compare-list li { color: var(--slate); }
.compare-col.us .compare-list li { color: var(--ink2); font-weight: 600; }
.compare-ic { position: absolute; left: 0; top: 4px; }
.compare-col.us .compare-list li strong { color: var(--blue); font-weight: 800; }
@media (max-width: 900px) {
  .compare-wrap { grid-template-columns: 1fr; gap: 16px; }
}

/* ===========================================================
   NAV ICONS  (newsletter + region switch)
   =========================================================== */
.nav-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  color: var(--ink2); text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-icon:hover { background: var(--blue-soft); color: var(--blue); }
.nav-region {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 700; color: var(--ink2);
  text-decoration: none; padding: 7px 12px;
  border: 1px solid var(--line); border-radius: 100px;
  transition: all .2s; white-space: nowrap;
}
.nav-region:hover { border-color: var(--blue); color: var(--blue); }

/* ===========================================================
   REGION GATEWAY PAGE
   =========================================================== */
.region-page {
  min-height: 100vh; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 24px; text-align: center;
}
.region-logo { height: 64px; width: auto; margin-bottom: 40px; background:#fff; padding:10px 16px; border-radius:12px; }
.region-page h1 {
  color: #fff; font-weight: 900; font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1px; margin-bottom: 10px;
}
.region-page h1 span { color: var(--gold); }
.region-page .sub { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 48px; }
.region-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 760px; width: 100%;
}
.region-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px; padding: 44px 32px; text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s;
}
.region-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255,255,255,0.07); }
.region-flag { font-size: 52px; display: block; margin-bottom: 18px; }
.region-card h2 { color: #fff; font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.region-card .region-en { color: var(--gold); font-size: 14px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px; }
.region-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
.region-go {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 800; font-size: 14px;
}
.region-foot { margin-top: 44px; color: rgba(255,255,255,0.4); font-size: 12px; }
@media (max-width: 640px) { .region-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   TRACK RECORD  (MiniMBA "How It Works" layout — seals + columns)
   =========================================================== */
.track-section { background: #F3F1EC; padding: 110px 56px; }
.track-top {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 2.2fr; gap: 48px; align-items: start;
}
.track-top .eyebrow { margin: 8px 0 0; }
.track-headline {
  font-weight: 900; font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3; letter-spacing: -0.5px; color: var(--ink);
}
.track-headline em { color: var(--blue); font-style: normal; }
.track-rule {
  max-width: var(--container); margin: 44px auto;
  border: 0; border-top: 1px solid rgba(30,91,174,0.25);
}
.track-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
.track-col { text-align: left; }
.track-badge { display: block; width: 78px; height: 78px; margin-bottom: 22px; }
.track-col h3 {
  font-weight: 900; font-size: clamp(28px, 2.6vw, 38px);
  color: var(--ink); line-height: 1.05; margin-bottom: 10px; letter-spacing: -1px;
}
.track-col p { font-size: 14.5px; color: var(--slate); line-height: 1.6; }
@media (max-width: 900px) {
  .track-section { padding: 72px 24px; }
  .track-top { grid-template-columns: 1fr; gap: 20px; }
  .track-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) { .track-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   LANGUAGE DROPDOWN  (globe trigger + scalable menu)
   =========================================================== */
.lang-dd { position: relative; }
.lang-dd-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 12px; font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--ink2); cursor: pointer; transition: all .2s;
}
.lang-dd-trigger:hover { border-color: var(--blue); color: var(--blue); }
.lang-dd-trigger .chev { transition: transform .2s; }
.lang-dd:hover .lang-dd-trigger .chev,
.lang-dd:focus-within .lang-dd-trigger .chev { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15,26,54,0.14);
  padding: 8px; min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; z-index: 130;
}
.lang-dd:hover .lang-dd-menu,
.lang-dd:focus-within .lang-dd-menu { opacity: 1; visibility: visible; transform: none; }
.lang-dd-menu a {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  font-size: 14px; font-weight: 600; color: var(--ink2);
  text-decoration: none; border-radius: 8px; transition: all .15s;
}
.lang-dd-menu a:hover { background: var(--blue-soft); color: var(--blue); }
.lang-dd-menu a.active { color: var(--blue); font-weight: 800; }
.lang-dd-menu a.active::after { content: '✓'; margin-left: auto; color: var(--blue); }
@media (max-width: 720px) {
  .nav-region, .nav-icon { display: none; }
  .lang-dd-trigger .lang-label { display: none; }
}

/* ===========================================================
   MOBILE HAMBURGER + DRAWER
   =========================================================== */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

@media (max-width: 720px) {
  .nav-actions { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: none; border: 0; cursor: pointer; z-index: 110;
  }
  .nav-toggle span {
    display: block; width: 100%; height: 2.5px; border-radius: 2px;
    background: var(--ink); transition: transform .25s, opacity .2s;
  }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .mobile-menu {
    display: block; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 105; padding: 22px 24px 44px;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .3s ease;
  }
  body.menu-open .mobile-menu { transform: translateX(0); }
  body.menu-open { overflow: hidden; }

  .mobile-menu a {
    display: block; padding: 15px 4px;
    font-size: 17px; font-weight: 700; color: var(--ink);
    text-decoration: none; border-bottom: 1px solid var(--line);
  }
  .mm-group { margin-top: 22px; }
  .mm-group-title {
    font-size: 12px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--blue); margin-bottom: 2px;
  }
  .mm-group a { font-size: 15px; font-weight: 600; padding: 12px 4px; color: var(--ink2); }
  .mm-cta {
    margin-top: 26px; background: var(--blue); color: #fff !important;
    text-align: center; padding: 17px !important; border-radius: 10px;
    border-bottom: 0 !important; font-weight: 800; font-size: 16px !important;
  }
}

/* ===========================================================
   WEBINAR REGISTRATION PAGE
   =========================================================== */
.webinar-hero {
  background: #F3F1EC;
  padding: 80px 56px;
}
.webinar-wrap {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.webinar-intro .eyebrow { color: var(--blue); }
.webinar-intro .eyebrow::before { background: var(--gold); }
.webinar-badge {
  display: block;
  color: var(--ink); font-weight: 800; font-size: 15.5px; line-height: 1.4;
  margin-bottom: 12px;
}
.wb-tz {
  display: flex; flex-direction: column; gap: 7px;
  max-width: 440px; margin: 0 0 24px;
}
.wb-tz span { display: flex; gap: 8px; align-items: baseline; font-size: 13.5px; color: var(--slate); }
.wb-tz b { color: var(--ink); font-weight: 800; white-space: nowrap; }
@media (max-width: 480px) { .wb-tz { grid-template-columns: 1fr; } }
.webinar-intro h1 {
  color: var(--ink); font-weight: 900; font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 18px;
}
.webinar-intro h1 em { color: var(--blue); font-style: normal; }
.webinar-intro .w-sub { color: var(--slate); font-size: 17px; line-height: 1.7; margin-bottom: 26px; }
.webinar-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.webinar-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink2); font-size: 15px; line-height: 1.5; }
.webinar-list svg { flex-shrink: 0; margin-top: 3px; }

/* YouTube video band */
.video-band { background: var(--white); padding: 72px 56px; border-top: 1px solid var(--line); }
.video-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.video-head .eyebrow { justify-content: center; }
.video-head h2 { font-weight: 900; font-size: clamp(26px, 3vw, 40px); letter-spacing: -1px; color: var(--ink); }
.video-wrap {
  max-width: 900px; margin: 0 auto; position: relative;
  aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,26,54,0.18);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 720px) { .video-band { padding: 48px 20px; } }

/* Header Login link */
.nav-login {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 700; color: var(--ink2);
  text-decoration: none; padding: 7px 12px;
  border: 1px solid var(--line); border-radius: 8px; transition: all .2s;
}
.nav-login:hover { border-color: var(--blue); color: var(--blue); }

.webinar-form-card {
  background: #fff; border-radius: var(--radius-lg);
  border-top: 5px solid var(--gold);
  padding: 36px; box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.webinar-form-card h2 { font-size: 24px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.webinar-form-card .fc-sub { font-size: 14px; color: var(--slate); margin-bottom: 24px; }
.webinar-form { display: flex; flex-direction: column; gap: 14px; }
.webinar-form label { font-size: 13px; font-weight: 700; color: var(--ink2); margin-bottom: -6px; }
.webinar-form input {
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--blue-soft);
}
.webinar-form input:focus { outline: 2px solid var(--blue); outline-offset: 1px; background: #fff; }
.webinar-form select {
  padding: 13px 38px 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink); background-color: var(--blue-soft);
  -webkit-appearance: none; appearance: none; cursor: pointer; width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F1A36' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.webinar-form select:focus { outline: 2px solid var(--blue); outline-offset: 1px; background-color: #fff; }
.webinar-form select:invalid { color: var(--slate2); }
.wb-phone-row { display: flex; gap: 10px; }
.wb-phone-row #wb-cc { flex: 0 0 142px; width: 142px; }
.wb-phone-row #wb-phone { flex: 1 1 auto; }
@media (max-width: 420px) {
  .wb-phone-row { flex-direction: column; }
  .wb-phone-row #wb-cc { flex: none; width: 100%; }
}
.webinar-form button {
  margin-top: 8px; background: var(--blue); color: #fff; border: 0;
  border-radius: 10px; padding: 16px; font-weight: 800; font-size: 16px;
  cursor: pointer; font-family: inherit; transition: background .2s;
}
.webinar-form button:hover { background: var(--blue2); }
.webinar-form .fc-fine { font-size: 12px; color: var(--slate2); line-height: 1.5; margin-top: 6px; }
.webinar-thanks { text-align: center; padding: 30px 10px; }
.webinar-thanks .big { font-size: 40px; }
.webinar-thanks h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 12px 0 8px; }
.webinar-thanks p { font-size: 14px; color: var(--slate); line-height: 1.6; }
@media (max-width: 900px) {
  .webinar-hero { padding: 56px 24px; }
  .webinar-wrap { grid-template-columns: 1fr; gap: 36px; }
}

/* Webinar nav link — highlighted (free lead magnet) */
.nav-links a.nav-webinar { color: #B07E10; font-weight: 800; }

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-hero { background: #F3F1EC; padding: 80px 56px 48px; text-align: center; }
.contact-hero .eyebrow { justify-content: center; }
.contact-hero h1 { font-weight: 900; font-size: clamp(32px, 4vw, 52px); letter-spacing: -1px; color: var(--ink); margin-bottom: 14px; }
.contact-hero h1 em { color: var(--blue); font-style: normal; }
.contact-hero p { font-size: 18px; color: var(--slate); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.contact-section { background: var(--white); padding: 64px 56px 100px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; }
.contact-card {
  background: var(--blue-soft); border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 38px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.contact-card .c-icon { width: 62px; height: 62px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 6px 16px rgba(15,26,54,0.08); }
.contact-card h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--slate); margin-bottom: 22px; line-height: 1.6; }
.contact-card .c-btn { margin-top: auto; background: var(--blue); color: #fff; text-decoration: none; padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: background .2s; }
.contact-card .c-btn:hover { background: var(--blue2); }
.contact-card.wechat .c-btn { background: #07C160; }
.contact-card.email .c-btn { background: var(--ink); }
.contact-qr { width: 150px; height: 150px; border-radius: 12px; background: #fff; border: 1px dashed var(--slate2); display: flex; align-items: center; justify-content: center; color: var(--slate2); font-size: 12px; text-align: center; margin-bottom: 20px; padding: 10px; }
@media (max-width: 900px) { .contact-section { padding: 48px 24px 72px; } .contact-grid { grid-template-columns: 1fr; } .contact-hero { padding: 56px 24px 32px; } }

/* ===========================================================
   COURSE MODULE LIST (beginner course page)
   =========================================================== */
.module-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.module-row {
  display: flex; align-items: center; gap: 18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px;
  transition: box-shadow .2s, transform .2s;
}
.module-row:hover { box-shadow: 0 8px 22px rgba(15,26,54,0.07); }
.module-row.free { border: 2px solid var(--gold); background: #FFFDF5; }
.module-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.module-row.free .module-num { background: var(--gold-soft); color: #8a6a00; }
.module-info { flex: 1; min-width: 0; }
.module-info h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.module-info span { font-size: 13px; color: var(--slate); }
.module-tail { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.module-badge-free { background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: 100px; letter-spacing: 0.5px; }
.module-lock { color: var(--slate2); display: flex; }
.m-cta { font-weight: 800; font-size: 13px; color: var(--blue); text-decoration: none; white-space: nowrap; }
.m-cta:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .module-row { flex-wrap: wrap; gap: 10px; }
  .module-tail { width: 100%; justify-content: flex-end; }
}

/* ── Curriculum: stats strip + learning stages ── */
.curr-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 820px; margin: 0 auto 34px;
}
.curr-stat {
  background: var(--blue-soft); color: var(--ink);
  border-radius: 100px; padding: 9px 20px; font-size: 13.5px; font-weight: 600;
}
.curr-stat em { color: var(--blue); font-style: normal; font-weight: 900; font-size: 16px; }
.curr-stats + .module-list { margin-bottom: 28px; }
.curriculum { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.curr-stage {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px 28px;
  transition: box-shadow .2s, transform .2s;
}
.curr-stage:hover { box-shadow: 0 8px 22px rgba(15,26,54,0.07); transform: translateY(-2px); }
.cs-num {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; letter-spacing: -0.5px;
}
.cs-body { flex: 1; min-width: 0; }
.cs-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 5px; }
.curr-stage h4 { font-size: 18px; font-weight: 800; color: var(--ink); margin: 0 0 8px; }
.curr-stage p { font-size: 14.5px; color: var(--slate); line-height: 1.7; margin: 0; }
.curr-note {
  text-align: center; max-width: 720px; margin: 32px auto 0;
  font-size: 14.5px; color: var(--slate); line-height: 1.9;
}
.curr-note strong { color: var(--ink); }
.curr-note a { color: var(--blue); font-weight: 700; text-decoration: none; }
.curr-note a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .curr-stage { gap: 16px; padding: 20px; }
  .cs-num { width: 40px; height: 40px; font-size: 15px; }
}

/* ── "What you get" feature seals ── */
.feat-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.feat-col { text-align: center; }
.feat-seal { display: block; width: 74px; height: 74px; margin: 0 auto 18px; }
.feat-col h4 { font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.feat-col p { font-size: 13.5px; color: var(--slate); line-height: 1.65; max-width: 220px; margin: 0 auto; }
@media (max-width: 760px) { .feat-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; } }
@media (max-width: 430px) { .feat-grid { grid-template-columns: 1fr; } }

/* ── Course modules: 4 topic cards (I–IV) ── */
.topic-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.topic-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 30px 24px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.topic-card:hover { box-shadow: 0 12px 30px rgba(15,26,54,0.08); transform: translateY(-2px); }
.topic-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.topic-rn {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue); color: #fff; font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0.5px;
}
.topic-kicker { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 3px; }
.topic-card h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin: 0; line-height: 1.25; }
.topic-desc { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.topic-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.topic-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--slate); line-height: 1.5; }
.topic-list li svg { flex: 0 0 auto; margin-top: 3px; }
.topic-foot { margin-top: auto; border-top: 1px solid var(--line); padding-top: 15px; display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.topic-meta { font-size: 12.5px; color: var(--slate2); }
.topic-meta strong { color: var(--ink); font-weight: 800; }
.topic-free { margin-left: auto; font-size: 12.5px; font-weight: 800; color: var(--blue); text-decoration: none; white-space: nowrap; }
.topic-free:hover { text-decoration: underline; }
.topic-note { text-align: center; max-width: 720px; margin: 26px auto 0; font-size: 12.5px; color: var(--slate2); line-height: 1.7; }
@media (max-width: 760px) { .topic-grid { grid-template-columns: 1fr; } }

/* ── Target audience cards: B&W photo + gold caption bar ── */
.aud-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.aud-card {
  border-radius: 16px; overflow: hidden; background: var(--white);
  box-shadow: 0 12px 30px rgba(15,26,54,0.10);
  display: flex; flex-direction: column;
}
.aud-photo {
  aspect-ratio: 4 / 4.5;
  background-color: #2a2f38;
  background-size: cover; background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.04);
}
.aud-bar { background: #D4A436; padding: 20px 22px 24px; flex: 1; }
.aud-bar h3 { color: #fff; font-size: 16.5px; font-weight: 800; margin: 0 0 8px; line-height: 1.35; }
.aud-bar p { color: rgba(255,255,255,0.92); font-size: 13px; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .aud-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .aud-grid { grid-template-columns: 1fr; } }

/* ── Real syllabus: 4 topics, 30 lessons ── */
.syllabus { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.syl-topic { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.syl-head { display: flex; align-items: center; gap: 15px; padding: 20px 26px; background: var(--blue-soft); border-bottom: 1px solid var(--line); }
.syl-head .topic-rn { flex: 0 0 auto; }
.syl-head h3 { font-size: 17.5px; font-weight: 800; color: var(--ink); margin: 0; line-height: 1.25; }
.syl-meta { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.syl-list { list-style: none; margin: 0; padding: 0; }
.syl-lesson { display: flex; align-items: baseline; gap: 14px; padding: 13px 26px; border-top: 1px solid var(--line); font-size: 14px; }
.syl-lesson:first-child { border-top: 0; }
.syl-lesson.free { background: #FFFDF5; }
.syl-num { flex: 0 0 auto; width: 26px; font-weight: 800; color: var(--slate2); font-size: 13px; font-variant-numeric: tabular-nums; }
.syl-title { flex: 1 1 auto; min-width: 0; color: var(--ink); line-height: 1.5; }
.syl-info { flex: 0 0 auto; font-size: 12px; color: var(--slate2); white-space: nowrap; }
.syl-badge { flex: 0 0 auto; background: var(--gold); color: var(--ink); font-size: 10.5px; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-decoration: none; white-space: nowrap; }
a.syl-badge:hover { background: var(--gold-deep, #C79A2E); }
.syl-foot { text-align: center; max-width: 760px; margin: 26px auto 0; font-size: 13.5px; color: var(--slate); line-height: 1.8; }
.syl-foot strong { color: var(--ink); }
.syl-foot a { color: var(--blue); font-weight: 700; text-decoration: none; }
.syl-foot a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .syl-head { flex-wrap: wrap; padding: 16px 18px; }
  .syl-meta { margin-left: 0; order: 3; width: 100%; }
  .syl-lesson { flex-wrap: wrap; gap: 4px 12px; padding: 12px 18px; }
  .syl-info { width: 100%; padding-left: 40px; }
}

/* ── Reading progress bar (sits at the bottom edge of the header) ── */
.scroll-progress {
  position: fixed; top: 76px; left: 0; height: 3px; width: 0;
  background: var(--gold); z-index: 120; transition: width .08s linear;
}
@media (max-width: 720px) { .scroll-progress { top: 64px; } }

/* anchor offset so sticky nav doesn't cover section headings */
section[id] { scroll-margin-top: 90px; }

/* ── In-page TOC (right rail · checkout-style · appears after the hero) ── */
.page-toc {
  position: fixed; top: 50%; right: 36px; transform: translateY(-50%);
  z-index: 70; width: 232px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.page-toc.visible { opacity: 1; visibility: visible; }
.page-toc-title { font-size: 11px; font-weight: 800; letter-spacing: 1.6px; color: var(--slate2); margin-bottom: 4px; }
.page-toc-nav a {
  display: block; font-size: 15px; color: var(--slate); text-decoration: none;
  padding: 13px 0; line-height: 1.3;
  border-bottom: 1px solid var(--line);
  transition: color .15s, border-color .15s;
}
.page-toc-nav a:hover { color: var(--ink); }
.page-toc-nav a.active { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--blue); }
.page-toc-social-label { font-size: 15px; font-weight: 800; color: var(--ink); margin: 30px 0 14px; }
.page-toc-social { display: flex; align-items: center; gap: 20px; }
.page-toc-social a { color: var(--ink); display: flex; transition: color .15s, transform .15s; }
.page-toc-social a:hover { color: var(--blue); transform: translateY(-2px); }
.page-toc-social svg { width: 21px; height: 21px; }
@media (max-width: 1300px) { .page-toc { display: none; } }

/* ═══════════════════ LEGAL PAGES (T&C / Privacy) ═══════════════════ */
.legal-hero { background: var(--blue-soft); border-bottom: 1px solid var(--line); padding: 64px 24px 46px; }
.legal-hero-inner { max-width: 880px; margin: 0 auto; }
.legal-hero .eyebrow { color: var(--blue); }
.legal-hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--ink); margin: 10px 0 14px; line-height: 1.22; }
.legal-hero p { color: var(--slate); font-size: 15px; line-height: 1.75; max-width: 740px; margin: 0; }
.legal-updated { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--slate2); font-weight: 600; }
.legal-wrap { max-width: 880px; margin: 0 auto; padding: 54px 24px 96px; }
.legal-note { background: var(--gold-soft); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 0 0 38px; font-size: 14px; color: var(--ink2); line-height: 1.7; }
.legal-toc { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px 24px; margin: 0 0 46px; }
.legal-toc h2 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--slate); margin: 0 0 14px; font-weight: 800; }
.legal-toc ol { columns: 2; column-gap: 40px; padding-left: 18px; margin: 0; }
.legal-toc li { font-size: 14px; line-height: 1.95; break-inside: avoid; }
.legal-toc a { color: var(--blue); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.legal-body h2 { font-size: 21px; font-weight: 800; color: var(--ink); margin: 46px 0 14px; scroll-margin-top: 90px; }
.legal-body h2 .legal-num { color: var(--blue); margin-right: 10px; }
.legal-body h3 { font-size: 16px; font-weight: 700; color: var(--ink2); margin: 24px 0 8px; }
.legal-body p, .legal-body li { font-size: 15px; line-height: 1.82; color: var(--slate2); }
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 16px; }
.legal-body li { margin-bottom: 7px; }
.legal-body a { color: var(--blue); }
.legal-body strong { color: var(--ink2); font-weight: 700; }
.legal-callout { background: var(--blue-soft); border-radius: 10px; padding: 18px 22px; margin: 18px 0 22px; }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-body hr { border: none; border-top: 1px solid var(--line); margin: 42px 0; }
@media (max-width: 680px) { .legal-toc ol { columns: 1; } .legal-hero { padding: 48px 20px 36px; } }

/* ═══════════════════ TRACK-RECORD PHOTO STRIP (Option A) ═══════════════════ */
.track-strip {
  display: flex; gap: 16px; margin-top: 54px;
  overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 14px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(15,26,54,0.22) transparent;
}
.track-strip::-webkit-scrollbar { height: 8px; }
.track-strip::-webkit-scrollbar-track { background: rgba(15,26,54,0.06); border-radius: 100px; }
.track-strip::-webkit-scrollbar-thumb { background: rgba(15,26,54,0.22); border-radius: 100px; }
.track-shot {
  position: relative; flex: 0 0 auto;
  width: 340px; height: 222px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(15,26,54,0.10);
  scroll-snap-align: start;
}
.track-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.track-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 13px;
  background: linear-gradient(to top, rgba(10,16,30,0.82) 0%, rgba(10,16,30,0) 100%);
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
}
.track-strip-hint {
  margin: 16px 0 0; font-size: 12.5px; color: var(--slate2);
  display: flex; align-items: center; gap: 7px;
}
@media (max-width: 640px) { .track-shot { width: 268px; height: 180px; } }

/* ═══════════════════ NAV "coming soon" item (期權中階課程) ═══════════════════ */
.nav-dropdown-menu a.is-soon, .mm-group a.is-soon { color: var(--slate2); cursor: default; pointer-events: none; }
.nav-dropdown-menu a.is-soon em, .mm-group a.is-soon em {
  font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: .5px;
  background: #ECEDEF; color: #8A8E95; padding: 1px 7px; border-radius: 100px;
  margin-left: 7px; vertical-align: 1px;
}

/* book covers inside the track-record strip (portrait) */
.track-shot.book { width: 150px; }
@media (max-width: 640px) { .track-shot.book { width: 122px; } }

/* track-record strip: prev/next arrows instead of scrollbar */
.track-strip-wrap { position: relative; }
.track-strip-wrap .track-strip { scrollbar-width: none; padding-bottom: 0; }
.track-strip-wrap .track-strip::-webkit-scrollbar { display: none; }
.track-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(15,26,54,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; color: var(--ink);
  cursor: pointer; z-index: 4; padding: 0;
  transition: background .15s, box-shadow .15s;
}
.track-arrow:hover { background: var(--blue-soft); box-shadow: 0 8px 22px rgba(15,26,54,0.22); }
.track-arrow.prev { left: 8px; }
.track-arrow.next { right: 8px; }

/* ═══════════════════ WHY-HENRY · HK tutor band ═══════════════════ */
.hk-tutor { max-width: 1000px; margin: 62px auto 0; }
.hk-tutor-title { text-align: center; color: var(--ink); font-size: clamp(20px,2.2vw,26px); font-weight: 900; margin: 0 0 30px; letter-spacing: -0.3px; }
.hk-tutor-title em { color: var(--blue); font-style: normal; }
.hk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hk-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 20px; }
.hk-item h4 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin: 0 0 9px; display: flex; align-items: center; gap: 10px; line-height: 1.3; }
.hk-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hk-item p { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin: 0; }
@media (max-width: 860px) { .hk-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hk-grid { grid-template-columns: 1fr; } }

/* ═══════════════════ WEBINAR · historical archive (3-up) ═══════════════════ */
.webinar-archive { padding: 90px 56px 100px; background: var(--blue-soft); border-top: 1px solid var(--line); }
.webinar-archive .video-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.webinar-archive .video-head .eyebrow { justify-content: center; }
.archive-sub { color: var(--slate); font-size: 16px; line-height: 1.7; margin: 14px 0 0; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; }
.archive-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 24px rgba(15,26,54,0.06); }
.archive-video { position: relative; aspect-ratio: 16/9; background: #000; }
.archive-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.archive-meta { padding: 16px 18px 18px; }
.archive-meta h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin: 0 0 5px; }
.archive-meta p { font-size: 13.5px; color: var(--slate); line-height: 1.6; margin: 0; }
@media (max-width: 880px) { .webinar-archive { padding: 64px 24px 72px; } .archive-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .archive-grid { grid-template-columns: 1fr; } }

/* why-henry: grouped sub-reasons inside a compare box */
.compare-wrap { align-items: start; }
.compare-sub { margin: 20px 0 13px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 14.5px; font-weight: 800; color: var(--ink); }
.compare-sub strong { color: var(--blue); }

/* ═══════════════════ HERO · founder portrait (Henry Sir) ═══════════════════ */
.hero-founder { position: relative; z-index: 1; width: 100%; max-width: 430px; margin: 0 auto; }
.hero-founder-card {
  position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  background: #fff; box-shadow: 0 28px 56px rgba(15,26,54,0.20);
}
.hero-founder-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-founder-tag {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 22px 18px;
  background: linear-gradient(to top, rgba(10,16,30,0.86) 0%, rgba(10,16,30,0) 100%);
}
.hero-founder-tag strong { display: block; color: #fff; font-size: 19px; font-weight: 800; letter-spacing: 0.3px; }
.hero-founder-tag span { color: var(--gold); font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.hero-founder::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border: 2px solid var(--gold); border-radius: 20px; transform: translate(16px, 16px);
}
@media (max-width: 720px) { .hero-founder { max-width: 320px; } .hero-founder::after { transform: translate(12px, 12px); } }

/* hero · founder cut-out (no box) — base / mobile */
.hero-founder-cut { width: 100%; max-width: 320px; margin: 0 auto; text-align: center; position: relative; }
.hero-founder-cut img { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 30px rgba(15,26,54,0.16)); }
.hero-founder-name { margin-top: 4px; }
.hero-founder-name strong { display: block; font-size: 17px; font-weight: 800; color: var(--ink); }
.hero-founder-name span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: var(--gold); }
/* desktop · founder figure fills the right column: head near eyebrow, base near the CTA */
@media (min-width: 861px) {
  .hero-inner { position: relative; }
  .hero-group { position: absolute; top: -40px; bottom: -70px; right: 2%; width: 44%; max-width: 540px; display: flex; align-items: flex-end; justify-content: flex-end; }
  .hero-founder-cut { max-width: none; width: auto; height: 100%; margin: 0; position: relative; display: flex; flex-direction: column; justify-content: flex-end; }
  .hero-founder-cut img { width: auto; height: 100%; max-width: 100%; margin: 0 auto; object-fit: contain; object-position: bottom center; }
  .hero-founder-name { position: absolute; bottom: 5%; left: 0; margin: 0; width: max-content; text-align: left; background: none; padding: 0; }
  .hero-founder-name strong { color: var(--ink); font-size: 16px; }
  .hero-founder-name span { color: #8a6a00; font-size: 10.5px; }
}


/* ── newsletter: footer CTA button + dedicated subscribe page (2026-06-24) ── */
.footer-sub-btn { display:inline-block; background:var(--gold); color:var(--ink); font-weight:800; font-size:14px; padding:11px 24px; border-radius:100px; text-decoration:none; transition:background .15s, transform .15s; }
.footer-sub-btn:hover { background:var(--gold2); transform:translateY(-1px); }
.subscribe-hero { background:var(--ink); color:#fff; padding:88px 24px 96px; }
.subscribe-inner { max-width:540px; margin:0 auto; text-align:center; }
.subscribe-hero .eyebrow { color:var(--gold); justify-content:center; }
.subscribe-hero h1 { color:#fff; font-size:clamp(30px,4vw,44px); font-weight:900; letter-spacing:-0.5px; line-height:1.12; margin:0 0 14px; }
.subscribe-hero .subscribe-sub { color:rgba(255,255,255,.75); font-size:16px; line-height:1.6; margin:0 0 34px; }
.subscribe-hero .footer-news-form { max-width:340px; margin:0 auto; text-align:left; }


/* ── footer region switcher pill (moved out of nav, 2026-06-30) ── */
.footer-social { flex-wrap: wrap; }
a.footer-region-pill { display: inline-flex; align-items: center; gap: 7px; margin-left: 6px; padding: 7px 14px; border: 1px solid rgba(255,255,255,0.28); border-radius: 100px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s, border-color .2s; }
a.footer-region-pill:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom a.footer-region-pill { margin-left: 0; }
@media (max-width: 720px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ── webinar hero: watch-latest-replay secondary CTA (2026-06-30) ── */
.wb-replay-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 10px 20px; border: 1.5px solid #1E5BAE; border-radius: 100px; color: #1E5BAE; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .15s, color .15s; }
.wb-replay-link:hover { background: #1E5BAE; color: #fff; }

/* ── footer payment methods + contact office card (2026-07-02) ── */
/* aligned with the © copyright line via the same centered container (2026-07-29) */
.footer-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 18px auto 0; max-width: var(--container); font-size: 11.5px; color: rgba(255,255,255,0.45); }
.footer-pay .pay-chip { border: 1px solid rgba(255,255,255,0.22); border-radius: 6px; padding: 3px 9px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.65); }
.footer-pay img { display: block; height: 28px; width: auto; max-width: 100%; object-fit: contain; }
.contact-card.office .c-addr { margin-bottom: 10px; font-weight: 600; color: var(--ink); }
.contact-card.office .c-hours { margin-bottom: 0; }

/* ── Simplified-Chinese pages prefer SC fonts — fixes mixed-bold headlines (2026-07-02) ── */
html[lang="zh-CN"] {
  --sans:    'Inter', 'Noto Sans SC', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Fraunces', 'Source Serif 4', 'Noto Serif SC', 'Noto Serif TC', Georgia, 'Times New Roman', serif;
  --serif:   'Source Serif 4', 'Noto Serif SC', 'Noto Serif TC', Georgia, 'Times New Roman', serif;
}

/* ── Student results: filterable listing + story pages (2026-07-31) ── */
.results-hero { background: var(--ink); padding: 96px 40px 64px; text-align: center; }
.results-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -0.5px; margin: 12px 0 14px; }
.results-hero p { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.results-hero .eyebrow { color: var(--gold); justify-content: center; }

.results-wrap { max-width: var(--container); margin: 0 auto; padding: 48px 40px 96px; }
.rf-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.rf-toggle { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); border-radius: 100px; padding: 9px 18px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: border-color .15s; }
.rf-toggle:hover { border-color: var(--blue); color: var(--blue); }
.rf-toggle .chev { transition: transform .18s; }
.rf-toggle.open .chev { transform: rotate(180deg); }
.rf-count-badge { background: var(--blue); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 800; padding: 1px 8px; }
.rf-bar .results-count { margin-bottom: 0; }
.results-filters { display: none; flex-direction: column; gap: 14px; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; background: #fff; }
.results-filters.open { display: flex; }
.rf-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.rf-label { font-size: 12.5px; font-weight: 800; color: var(--slate); letter-spacing: 1px; min-width: 74px; }
.rf-chip { border: 1.5px solid var(--line); background: #fff; color: var(--ink2); border-radius: 100px; padding: 7px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .15s; font-family: inherit; }
.rf-chip:hover { border-color: var(--blue); color: var(--blue); }
.rf-chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.rf-reset { background: none; border: none; color: var(--slate2); font-size: 13px; text-decoration: underline; cursor: pointer; font-family: inherit; padding: 7px 6px; }
.results-count { font-size: 13.5px; color: var(--slate); margin-bottom: 20px; }

.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px 22px; text-decoration: none; transition: box-shadow .18s, transform .18s; position: relative; }
.result-card:hover { box-shadow: 0 14px 36px rgba(15,26,54,.12); transform: translateY(-3px); }
.result-card.hidden { display: none; }
.rc-badge { align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: .3px; color: var(--blue-deep); background: var(--blue-soft); border-radius: 100px; padding: 4px 11px; margin-bottom: 14px; }
.rc-badge.gold { color: #7A5B00; background: var(--gold-soft); }
.result-card h3 { color: var(--ink); font-size: 17px; font-weight: 700; letter-spacing: -0.2px; line-height: 1.45; margin: 0 0 6px; }
.rc-meta { font-size: 12.5px; color: var(--slate2); margin-bottom: 16px; line-height: 1.6; }
@media (min-width: 721px) {
  .result-card h3 { min-height: calc(1.45em * 2); }
  .rc-meta { min-height: calc(1.6em * 2); }
}
.rc-stats .rc-stat strong { white-space: nowrap; }
.rc-stats { display: flex; gap: 18px; margin: 16px -26px -22px; margin-top: auto; padding: 13px 56px 13px 26px; background: var(--blue-soft); border-radius: 0 0 15px 15px; flex-wrap: wrap; }
.rc-stat small { display: block; font-size: 11px; color: var(--slate2); letter-spacing: .5px; margin-bottom: 2px; }
.rc-stat strong { font-size: 14px; color: var(--ink2); font-weight: 500; }
.rc-stats .rc-stat:last-child strong { font-size: 15px; color: var(--blue); font-weight: 500; }
.rc-stats .rc-stat:last-child strong.up { color: #0E8345; }
.rc-stat strong.up { color: #0E8345; }
.rc-arrow { position: absolute; right: 22px; bottom: 20px; color: var(--blue); font-weight: 800; }

.story-hero { background: var(--blue-soft); padding: 88px 40px 48px; }
.story-hero-inner { max-width: var(--container-narrow); margin: 0 auto; }
.story-hero h1 { color: var(--ink); font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; line-height: 1.25; letter-spacing: -0.5px; margin: 12px 0 18px; }
.story-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 26px; }
.story-fact { background: #fff; padding: 16px 18px; }
.story-fact small { display: block; font-size: 11px; color: var(--slate2); letter-spacing: 1px; margin-bottom: 4px; }
.story-fact strong { font-size: 15px; color: var(--ink); font-weight: 800; line-height: 1.4; }
.story-fact strong.up { color: #0E8345; }
.story-body { max-width: var(--container-narrow); margin: 0 auto; padding: 56px 40px 40px; }
.story-body h2 { color: var(--ink); font-size: 22px; font-weight: 800; margin: 40px 0 14px; }
.story-body h2:first-child { margin-top: 0; }
.story-body p, .story-body li { color: var(--ink2); font-size: 16.5px; line-height: 1.85; }
.story-body ul { padding-left: 22px; margin: 12px 0; }
.story-quote { border-left: 4px solid var(--gold); background: var(--gold-soft); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; font-size: 17px; line-height: 1.8; color: var(--ink); font-style: italic; }
.story-table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: 12px; }
.story-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.story-table th { background: var(--ink); color: #fff; text-align: left; padding: 11px 16px; font-weight: 700; white-space: nowrap; }
.story-table td { padding: 10px 16px; border-top: 1px solid var(--line2); color: var(--ink2); line-height: 1.6; }
@media (max-width: 720px) { .story-table { font-size: 13.5px; } .story-table th, .story-table td { padding: 9px 10px; } .story-table th { white-space: normal; line-height: 1.5; } }
.story-table td.up { color: #0E8345; font-weight: 700; }
.story-table td.down { color: var(--coral); font-weight: 700; }
.story-disclaimer { max-width: var(--container-narrow); margin: 0 auto; padding: 0 40px 56px; font-size: 12.5px; color: var(--slate2); line-height: 1.7; }
.story-cta { max-width: var(--container-narrow); margin: 0 auto 72px; padding: 0 40px; }
.story-cta-box { background: var(--ink); border-radius: 18px; padding: 34px 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.story-cta-box h3 { color: #fff; font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.story-cta-box p { color: rgba(255,255,255,.7); font-size: 14.5px; margin: 0; }
.story-cta-box a { background: var(--gold); color: var(--ink); border-radius: 100px; padding: 13px 26px; font-weight: 800; font-size: 15px; text-decoration: none; white-space: nowrap; }
.story-back { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 14px; font-weight: 700; text-decoration: none; margin-bottom: 8px; }

@media (max-width: 1024px) {
  .results-grid { grid-template-columns: 1fr 1fr; }
  .story-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .results-hero { padding: 72px 20px 48px; }
  .results-wrap { padding: 36px 20px 72px; }
  .results-grid { grid-template-columns: 1fr; gap: 16px; }
  .rf-label { min-width: 100%; }
  .story-hero { padding: 72px 20px 36px; }
  .story-body { padding: 40px 20px 28px; }
  .story-disclaimer, .story-cta { padding-left: 20px; padding-right: 20px; }
  .story-cta-box { padding: 26px 22px; }
}

/* ── results: proof images + stats strip (2026-07-31) ── */
.story-img { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 22px 0; background: #fff; }
.story-img img { width: 100%; display: block; }
.story-img figcaption { font-size: 12.5px; color: var(--slate2); line-height: 1.6; padding: 10px 16px; border-top: 1px solid var(--line2); }
.results-stats { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.rs-cell { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; padding: 16px 26px; min-width: 170px; }
.rs-cell strong { display: block; color: var(--gold); font-size: 22px; font-weight: 900; letter-spacing: -0.3px; }
.rs-cell small { color: rgba(255,255,255,0.6); font-size: 12px; }
@media (max-width: 720px) { .results-stats { gap: 10px; } .rs-cell { padding: 12px 16px; min-width: 44%; } }
.story-img.phone { max-width: 400px; margin-left: auto; margin-right: auto; }

/* ── story 1-minute summary box (2026-08-01) ── */
.story-tldr { background: var(--blue-soft); border: 1px solid #D7E3F6; border-radius: 14px; padding: 20px 24px; margin-bottom: 36px; }
.story-tldr .tldr-title { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; color: var(--blue); margin: 0 0 10px; }
.story-tldr ul { margin: 0; padding-left: 20px; }
.story-tldr li { font-size: 15.5px; line-height: 1.9; color: var(--ink2); }
.story-tldr li strong { color: var(--ink); }
/* ── story result panel: big skimmable outcome (2026-08-01) ── */
.story-result { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 20px 0 8px; }
.story-result .sr-cell { background: #fff; padding: 20px 20px 16px; }
.story-result .sr-cell strong { display: block; font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: var(--ink); margin-bottom: 4px; }
.story-result .sr-cell strong.up { color: #0E8345; }
.story-result .sr-cell strong.down { color: var(--coral); }
.story-result .sr-cell small { font-size: 12.5px; color: var(--slate); line-height: 1.5; display: block; }
@media (max-width: 720px) { .story-result { grid-template-columns: 1fr; } }
/* ── comparison table: vertical divider between the two compared columns ── */
.story-table.compare th:nth-child(3), .story-table.compare td:nth-child(3) { border-left: 2px solid #CBD2DE; }
.story-table.compare { table-layout: fixed; }
.story-table.compare th:first-child, .story-table.compare td:first-child { width: 64px; white-space: nowrap; }
@media (max-width: 720px) { .story-table.compare th:first-child, .story-table.compare td:first-child { width: 50px; } }

/* ── waiting-list form checkboxes (2026-08-02) ── */
.wl-check { display: flex; align-items: flex-start; gap: 10px; text-align: left; color: rgba(255,255,255,.88); font-size: 14.5px; line-height: 1.5; margin: 9px 0; cursor: pointer; }
.wl-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold); flex: none; cursor: pointer; }
.wl-check span em { display: block; font-style: normal; font-size: 12px; color: rgba(255,255,255,.5); }
.wl-check.wl-optin { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); }
