@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ════════════════════════════════
   DESIGN TOKENS
════════════════════════════════ */
:root {
  --navy:   #0d1b2e;
  --navy2:  #162440;
  --blue:   #1a4480;
  --blue2:  #2563eb;
  --sky:    #e8f0fd;
  --gold:   #e8a020;
  --gold2:  #f5b944;
  --white:  #ffffff;
  --off:    #f7f8fa;
  --light:  #eef1f6;
  --mid:    #64748b;
  --dark:   #1e293b;
  --border: #e2e8f0;
  --r:      12px;
  --rl:     20px;
  --sh:     0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.05);
  --sh-lg:  0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  --sh-xl:  0 20px 60px rgba(13,27,46,.18);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ────────────────────────────────
   NAV
──────────────────────────────── */
#apex-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#apex-nav.scrolled { box-shadow: var(--sh-lg); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 40px; height: 40px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 900; color: var(--white);
  flex-shrink: 0;
}
.nav-logo-name { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.nav-logo-sub  { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--blue2); }

.nav-menu { display: flex; align-items: center; gap: 2px; }

/* ── Fallback: bare <a> links ── */
.nav-menu > a {
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  padding: 7px 14px; border-radius: 8px; transition: all .15s;
  display: inline-flex; align-items: center;
}
.nav-menu > a:hover { color: var(--navy); background: var(--off); }

/* ── Real WP menu: ul.menu > li > a ── */
.nav-menu ul {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu ul li { position: relative; }
.nav-menu ul li a {
  display: inline-flex; align-items: center;
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  padding: 7px 14px; border-radius: 8px;
  transition: all .15s; white-space: nowrap;
}
.nav-menu ul li a:hover,
.nav-menu ul li.current-menu-item > a,
.nav-menu ul li.current_page_item > a,
.nav-menu ul li.current-menu-ancestor > a {
  color: var(--navy); background: var(--off);
}

/* ── Dropdown sub-menus ── */
.nav-menu ul li ul {
  display: none; flex-direction: column;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-xl);
  min-width: 210px; padding: 6px 0; z-index: 300; gap: 0;
}
.nav-menu ul li:hover > ul { display: flex; }
.nav-menu ul li ul li a {
  padding: 10px 18px; border-radius: 0; width: 100%; font-size: 13px;
}
.nav-menu ul li ul li a:hover { background: var(--off); color: var(--navy); }

.nav-cta {
  font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 700;
  background: var(--navy); color: var(--white);
  padding: 10px 22px; border-radius: 9px; border: none; cursor: pointer;
  transition: all .2s; letter-spacing: .2px; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,27,46,.25); color: var(--white); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* Nav right side group */
.nav-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-phone {
  font-size: 13px; font-weight: 600; color: var(--navy);
  white-space: nowrap; transition: color .18s;
}
.nav-phone:hover { color: var(--blue2); }
@media (max-width: 1100px) { .nav-phone { display: none; } }

/* Custom logo sizing */
.nav-logo .custom-logo { height: 40px; width: auto; display: block; }
.nav-logo .custom-logo-link { display: flex; align-items: center; }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 5% 28px; z-index: 199;
  box-shadow: var(--sh-xl);
}
.mobile-menu.open { display: flex; }

/* ── Fallback bare <a> ── */
.mobile-menu > a {
  font-size: 15px; font-weight: 500; color: var(--dark);
  padding: 13px 0; border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu > a:last-child {
  border: none; margin-top: 8px;
  background: var(--navy); color: var(--white);
  text-align: center; border-radius: 10px; padding: 14px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
}

/* ── Real WP menu: ul > li > a ── */
.mobile-menu ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; width: 100%;
}
.mobile-menu ul li { width: 100%; }
.mobile-menu ul li a {
  display: block;
  font-size: 15px; font-weight: 500; color: var(--dark);
  padding: 13px 0; border-bottom: 1px solid var(--border);
  width: 100%;
}
.mobile-menu ul li a:hover { color: var(--blue2); }
.mobile-menu ul li.current-menu-item > a,
.mobile-menu ul li.current_page_item > a { color: var(--blue2); font-weight: 600; }

/* Last item CTA style */
.mobile-menu ul li:last-child > a {
  border: none; margin-top: 8px;
  background: var(--navy); color: var(--white);
  text-align: center; border-radius: 10px; padding: 14px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
}
.mobile-menu ul li:last-child > a:hover { background: var(--blue); color: var(--white); }

/* Hide sub-menus on mobile */
.mobile-menu ul li ul { display: none; }

/* apex-mob-list — same as mobile-menu ul */
.mobile-menu .apex-mob-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; width: 100%;
}
.mobile-menu .apex-mob-list li a {
  display: block;
  font-size: 15px; font-weight: 500; color: var(--dark);
  padding: 13px 0; border-bottom: 1px solid var(--border);
  width: 100%;
}
.mobile-menu .apex-mob-list li a:hover { color: var(--blue2); }
.mobile-menu .apex-mob-list li.current-menu-item > a { color: var(--blue2); font-weight: 600; }

/* Separate CTA button — always last, always styled correctly */
.mob-cta-btn {
  display: block; margin-top: 14px;
  background: var(--navy); color: var(--white) !important;
  text-align: center; border-radius: 10px; padding: 14px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px;
  transition: background .2s;
}
.mob-cta-btn:hover { background: var(--blue) !important; }

/* ────────────────────────────────
   SECTION UTILITIES
──────────────────────────────── */
.apex-section { padding: clamp(72px, 8vw, 108px) 5%; }
.apex-section-white  { background: var(--white); }
.apex-section-off    { background: var(--off); }
.apex-section-navy   { background: var(--navy); }
.apex-section-light  { background: var(--light); }

.apex-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.apex-eyebrow-line { width: 24px; height: 2px; background: var(--blue2); flex-shrink: 0; }
.apex-eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue2); }

.apex-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800; color: var(--navy);
  line-height: 1.1; letter-spacing: -.5px;
}
.apex-h2 .ac { color: var(--blue2); }
.apex-h2-white { color: var(--white); }
.apex-h2-white .ac { color: var(--gold); }

.apex-body { font-size: 15.5px; line-height: 1.85; color: var(--mid); }

.apex-sec-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.apex-see-all {
  font-size: 13.5px; font-weight: 600; color: var(--blue2);
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer; transition: gap .2s; background: none; border: none;
  font-family: inherit;
}
.apex-see-all::after { content: '→'; }
.apex-see-all:hover { gap: 9px; }

/* Buttons */
.btn-gold {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  background: var(--gold); color: var(--navy);
  padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 20px rgba(232,160,32,.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.45); }

.btn-outline-white {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75);
  padding: 13px 26px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2);
  background: transparent; cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); color: var(--white); }

.btn-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: var(--navy);
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 14.5px;
  border-radius: 10px; border: none; cursor: pointer;
  transition: all .22s; box-shadow: 0 4px 20px rgba(232,160,32,.3);
  letter-spacing: .3px; margin-top: 4px;
}
.btn-submit:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(232,160,32,.4); }

/* ────────────────────────────────
   HERO
──────────────────────────────── */
.apex-hero {
  min-height: 100vh; background: var(--navy);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 5% 60px; gap: 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-bg-accent {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, rgba(26,68,128,.4) 0%, rgba(26,68,128,.1) 50%, transparent 70%);
}
.hero-bg-vline { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.06); }
.hero-bg-dot { position: absolute; border-radius: 50%; background: var(--gold); opacity: .07; }
.hbd1 { width: 400px; height: 400px; right: -100px; bottom: -100px; }
.hbd2 { width: 200px; height: 200px; right: 180px; top: 100px; opacity: .04; }

.hero-content { position: relative; z-index: 2; padding-right: 40px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.hero-eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.0; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 22px;
}
.hero-h1 .hero-accent { color: var(--gold); }

.hero-desc {
  font-size: 16px; line-height: 1.85; color: rgba(255,255,255,.58);
  font-weight: 300; max-width: 460px; margin-bottom: 36px;
}
.hero-desc strong { color: rgba(255,255,255,.88); font-weight: 600; }

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8);
  margin-left: -9px; font-family: 'Outfit', sans-serif;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars .trust-plus { background: rgba(232,160,32,.25); color: var(--gold); }
.trust-text { font-size: 13px; color: rgba(255,255,255,.45); }
.trust-text strong { color: rgba(255,255,255,.8); font-weight: 600; }

/* Hero dashboard panel */
.hero-visual { position: relative; z-index: 2; }
.hero-score-card {
  background: rgba(255,255,255,.97); border-radius: 20px; overflow: hidden;
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(255,255,255,.08);
}
.hsc-header {
  background: var(--navy); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.hsc-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hsc-badge { background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.3); color: var(--gold); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.hsc-score-block { padding: 24px 24px 20px; border-bottom: 1px solid var(--border); }
.hsc-overall { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.hsc-num { font-family: 'Outfit', sans-serif; font-size: 64px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.hsc-out { font-size: 18px; color: var(--mid); }
.hsc-prev { font-size: 12px; color: var(--mid); }
.hsc-prev strong { color: var(--blue2); font-weight: 600; }
.hsc-skills { padding: 20px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-bottom: 1px solid var(--border); }
.hsc-skill { background: var(--off); border-radius: 10px; padding: 13px 14px; }
.hsc-sk-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.hsc-sk-val { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.hsc-sk-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.hsc-sk-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue2), #60a5fa); }
.hsc-student { padding: 16px 24px; display: flex; align-items: center; gap: 12px; }
.hsc-st-av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.hsc-st-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.hsc-st-info { font-size: 11px; color: var(--mid); margin-top: 2px; }

.hero-float {
  position: absolute; background: var(--white);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--sh-xl); border: 1px solid var(--border);
}
.hf1 { top: -22px; left: -56px; min-width: 180px; animation: hFloat1 4s ease-in-out infinite; }
.hf2 { bottom: -22px; right: -52px; min-width: 170px; animation: hFloat2 4.5s ease-in-out infinite .6s; }
@keyframes hFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes hFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hf-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.hf-val { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1; }
.hf-sub { font-size: 11px; color: var(--mid); margin-top: 3px; }
.hf-bars { display: flex; align-items: flex-end; gap: 3px; height: 24px; margin-top: 8px; }
.hfb { border-radius: 3px 3px 0 0; background: var(--blue2); opacity: .5; width: 7px; }
.hfb.hi { opacity: 1; background: var(--gold); }

/* Ticker strip */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 48px; background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  overflow: hidden; display: flex; align-items: center;
}
.ticker-track { display: flex; animation: tickerScroll 28s linear infinite; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display: flex; align-items: center; gap: 14px; padding: 0 36px; border-right: 1px solid rgba(255,255,255,.07); flex-shrink: 0; white-space: nowrap; }
.ti-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .6; }
.ti-num { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); }
.ti-lbl { font-size: 10.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }

/* ────────────────────────────────
   FEATURES
──────────────────────────────── */
.feat-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.feat-visual {
  background: var(--navy); border-radius: var(--rl);
  overflow: hidden; min-height: 420px; display: flex; align-items: flex-end;
  position: relative;
}
.fv-bg-grad { position: absolute; inset: 0; background: linear-gradient(160deg, #1a3a6e 0%, #0d1b2e 60%); }
.fv-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; }
.fv-board { position: absolute; top: 28px; left: 28px; right: 28px; height: 72px; background: rgba(255,255,255,.06); border-radius: 10px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; padding: 0 20px; gap: 12px; }
.fv-board-line { height: 3px; border-radius: 2px; background: rgba(255,255,255,.15); flex: 1; }
.fv-board-line.short { flex: 0 0 40%; }
.fv-people { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; gap: 16px; padding: 0 28px 28px; }
.fv-person { display: flex; flex-direction: column; align-items: center; }
.fvp-head { border-radius: 50%; background: rgba(255,255,255,.12); }
.fvp-body { border-radius: 6px 6px 0 0; background: rgba(255,255,255,.08); margin-top: 4px; }
.fv-badge {
  position: absolute; background: var(--white); border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--sh-xl);
}
.fvb1 { top: 20px; right: -20px; }
.fvb2 { bottom: 20px; left: -20px; min-width: 200px; }
.fvb-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.fvb-val { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900; color: var(--navy); line-height: 1; }
.fvb-sub { font-size: 11px; color: var(--mid); margin-top: 3px; }
.fvb-row { display: flex; gap: 12px; margin-top: 8px; }
.fvb-skill { background: var(--off); border-radius: 7px; padding: 6px 10px; text-align: center; }
.fvb-skill-num { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); }
.fvb-skill-lbl { font-size: 9px; font-weight: 600; color: var(--mid); margin-top: 1px; }

.feat-list { display: flex; flex-direction: column; }
.feat-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); transition: all .2s; cursor: default; }
.feat-item:first-child { border-top: 1px solid var(--border); }
.feat-item:hover { padding-left: 8px; }
.feat-item:hover .fi-num { color: var(--blue2); }
.feat-item:hover .fi-title { color: var(--blue2); }
.fi-num { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 800; color: rgba(37,99,235,.3); min-width: 28px; padding-top: 2px; transition: color .2s; }
.fi-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; transition: color .2s; }
.fi-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ────────────────────────────────
   NUMBERS
──────────────────────────────── */
.apex-nums { display: grid; grid-template-columns: repeat(4,1fr); }
.num-cell { padding: 44px 32px; border-right: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden; transition: background .3s; }
.num-cell:last-child { border-right: none; }
.num-cell:hover { background: rgba(255,255,255,.03); }
.num-cell::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.num-cell:hover::after { opacity: 1; }
.nc-num { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.nc-num .ac { color: var(--gold); }
.nc-label { font-size: 11.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.38); }

/* ────────────────────────────────
   COURSES
──────────────────────────────── */
.courses-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: all .28s; cursor: pointer;
  display: flex; flex-direction: column; position: relative;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: transparent; }
.course-card.featured { background: var(--navy); border-color: transparent; }
.course-card.featured:hover { box-shadow: 0 24px 60px rgba(13,27,46,.5); }

.cc-image { height: 120px; position: relative; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cc-img-0 { background: linear-gradient(145deg, #dbeafe, #bfdbfe); }
.cc-img-1 { background: linear-gradient(145deg, #d1fae5, #a7f3d0); }
.cc-img-2 { background: linear-gradient(145deg, #0d1b2e, #1a3a6e); }
.cc-img-3 { background: linear-gradient(145deg, #fef3c7, #fde68a); }
.cc-img-4 { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }

.cc-band-bg { font-family: 'Outfit', sans-serif; font-weight: 900; line-height: 1; letter-spacing: -2px; opacity: .12; position: absolute; bottom: -10px; right: 10px; font-size: 80px; color: var(--navy); pointer-events: none; }
.course-card.featured .cc-band-bg { color: var(--white); }
.cc-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-radius: 30px; padding: 6px 14px; box-shadow: 0 2px 12px rgba(0,0,0,.1); position: relative; z-index: 1; }
.course-card.featured .cc-pill { background: rgba(255,255,255,.15); }
.cc-pill-num { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 900; color: var(--navy); }
.course-card.featured .cc-pill-num { color: var(--white); }
.cc-pill-lbl { font-size: 10px; font-weight: 600; color: var(--mid); }
.course-card.featured .cc-pill-lbl { color: rgba(255,255,255,.6); }
.cc-people { display: flex; gap: 4px; margin-top: 8px; justify-content: center; }
.cc-person-dot { width: 24px; height: 24px; border-radius: 50%; background: rgba(13,27,46,.1); }
.course-card.featured .cc-person-dot { background: rgba(255,255,255,.15); }
.cc-badge { position: absolute; top: 10px; left: 10px; background: var(--blue2); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; z-index: 2; }

.cc-body { padding: 18px 16px; flex: 1; display: flex; flex-direction: column; }
.cc-level { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue2); margin-bottom: 8px; }
.course-card.featured .cc-level { color: rgba(255,255,255,.5); }
.cc-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: -.3px; margin-bottom: 6px; line-height: 1.15; }
.course-card.featured .cc-name { color: var(--white); }
.cc-target { font-size: 12px; color: var(--mid); margin-bottom: 14px; flex: 1; line-height: 1.5; }
.course-card.featured .cc-target { color: rgba(255,255,255,.45); }
.cc-metas { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.cc-meta-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); }
.course-card.featured .cc-meta-item { color: rgba(255,255,255,.5); }
.cc-meta-dot { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--blue2); flex-shrink: 0; }
.course-card.featured .cc-meta-dot { background: var(--gold); }
.cc-price { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800; color: var(--blue2); padding-top: 12px; border-top: 1px solid var(--border); }
.course-card.featured .cc-price { color: var(--gold); border-top-color: rgba(255,255,255,.08); }
.cc-price-sub { font-size: 10px; font-weight: 400; color: var(--mid); margin-top: 2px; font-family: 'DM Sans', sans-serif; }
.course-card.featured .cc-price-sub { color: rgba(255,255,255,.3); }

/* ────────────────────────────────
   METHOD STEPS
──────────────────────────────── */
.method-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.method-step { padding: 36px 28px; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background .25s; cursor: default; }
.method-step:last-child { border-right: none; }
.method-step:hover { background: var(--sky); }
.ms-num { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 900; color: rgba(37,99,235,.07); line-height: 1; margin-bottom: 16px; }
.method-step:hover .ms-num { color: rgba(37,99,235,.12); }
.ms-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ms-desc { font-size: 13.5px; color: var(--mid); line-height: 1.7; }
.ms-accent-bar { height: 3px; background: var(--blue2); position: absolute; bottom: 0; left: 0; right: 0; opacity: 0; transition: opacity .25s; }
.method-step:hover .ms-accent-bar { opacity: 1; }

/* ────────────────────────────────
   GALLERY
──────────────────────────────── */
.apex-gallery { display: grid; grid-template-columns: 5fr 3fr 3fr; grid-template-rows: 260px 260px; gap: 14px; }
.gallery-item { border-radius: var(--rl); overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: 1/3; }
.gallery-scene { width: 100%; height: 100%; transition: transform .4s; }
.gallery-item:hover .gallery-scene { transform: scale(1.04); }

.gs-classroom { background: linear-gradient(145deg, #0d1b2e 0%, #1a3a6e 60%, #0a2a5e 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.gs-classroom::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; }
.classroom-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .18; }
.classroom-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13,27,46,.9), transparent); padding: 28px 28px 24px; }

.gs-board { background: linear-gradient(145deg, #e8f0fd, #c7d9fb); display: flex; align-items: center; justify-content: center; }
.gs-board-inner { width: 75%; background: var(--white); border-radius: 10px; padding: 16px; box-shadow: 0 8px 32px rgba(13,27,46,.12); }
.gs-board-line { height: 8px; background: var(--light); border-radius: 4px; margin-bottom: 8px; }
.gs-board-line.blue { background: rgba(37,99,235,.2); width: 80%; }
.gs-board-line.sm { width: 55%; }
.gs-board-line.xs { width: 40%; }

.gs-score { background: var(--off); display: flex; align-items: center; justify-content: center; }
.gs-score-card { background: var(--white); border-radius: 12px; padding: 20px; box-shadow: var(--sh-lg); width: 80%; }
.gs-score-num { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; }
.gs-score-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.gs-score-bars { display: flex; align-items: flex-end; gap: 6px; height: 40px; }
.gsb { border-radius: 4px 4px 0 0; background: var(--blue2); }

.gs-progress { background: linear-gradient(145deg, #fef9f0, #fef3c7); display: flex; align-items: center; justify-content: center; }
.gs-progress-inner { display: flex; flex-direction: column; gap: 8px; width: 80%; }
.gsp-row { background: var(--white); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.gsp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.gsp-line { height: 7px; border-radius: 3px; background: var(--light); flex: 1; }

.gs-app { background: linear-gradient(145deg, #f0fdf4, #dcfce7); display: flex; align-items: center; justify-content: center; }
.gs-phone { background: var(--navy); border-radius: 18px; padding: 12px 10px; width: 70%; box-shadow: var(--sh-xl); }
.gs-screen { background: var(--navy2); border-radius: 12px; padding: 12px; }
.gs-app-row { background: rgba(255,255,255,.06); border-radius: 6px; padding: 8px 10px; margin-bottom: 6px; }
.gs-app-row:last-child { margin-bottom: 0; background: rgba(37,99,235,.25); }
.gs-app-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.5); }
.gs-app-val { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--white); margin-top: 2px; }

.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13,27,46,.82), transparent); padding: 20px 20px 16px; }
.gc-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.gc-sub { font-size: 11.5px; color: rgba(255,255,255,.55); }

/* ────────────────────────────────
   TEACHERS
──────────────────────────────── */
.teachers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.teacher-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; transition: all .28s; }
.teacher-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: transparent; }
.tc-photo { height: 200px; position: relative; overflow: hidden; }
.tc-photo-bg { position: absolute; inset: 0; transition: transform .4s; }
.teacher-card:hover .tc-photo-bg { transform: scale(1.05); }
.tc-bg-1 { background: radial-gradient(ellipse at 50% 30%, #1a4a7a, #0d1b2e); }
.tc-bg-2 { background: radial-gradient(ellipse at 50% 30%, #1a3a6e, #080f25); }
.tc-bg-3 { background: radial-gradient(ellipse at 50% 30%, #1a5a3a, #08201a); }
.tc-bg-4 { background: radial-gradient(ellipse at 50% 30%, #3a1a5a, #12082a); }
.tc-silhouette { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 1; opacity: .18; }
.tc-score-chip { position: absolute; bottom: 14px; right: 14px; z-index: 2; background: var(--white); border-radius: 9px; padding: 5px 12px; box-shadow: var(--sh-lg); font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 900; color: var(--navy); }
.tc-body { padding: 20px; }
.tc-name { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.tc-role { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue2); margin-bottom: 10px; }
.tc-desc { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ────────────────────────────────
   TESTIMONIALS
──────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 28px; transition: all .25s; cursor: default; position: relative; overflow: hidden; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); border-color: var(--blue2); }
.testi-card::before { content: '"'; position: absolute; top: 12px; right: 20px; font-family: 'Outfit', sans-serif; font-size: 80px; font-weight: 900; color: rgba(37,99,235,.05); line-height: 1; pointer-events: none; }
.tc-score-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.tc-from { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: rgba(37,99,235,.3); }
.tc-arrow { font-size: 16px; color: var(--blue2); font-weight: 700; }
.tc-to { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -1px; }
.tc-label { font-size: 12px; color: var(--mid); }
.tc-quote { font-size: 14px; line-height: 1.85; color: var(--mid); margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800; color: var(--white); }
.tc-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.tc-school { font-size: 11px; color: var(--mid); margin-top: 2px; }

/* ────────────────────────────────
   HALL OF FAME
──────────────────────────────── */
.hof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.hof-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; display: flex; align-items: center; gap: 16px; transition: all .25s; cursor: default; }
.hof-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--blue2); }
.hof-rank { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 900; color: rgba(37,99,235,.08); line-height: 1; flex-shrink: 0; min-width: 50px; }
.hof-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.hof-school { font-size: 11px; color: var(--mid); margin-bottom: 8px; }
.hof-pill { display: inline-flex; align-items: baseline; gap: 3px; background: var(--sky); border: 1px solid rgba(37,99,235,.15); padding: 3px 10px; border-radius: 20px; }
.hof-score { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 900; color: var(--blue2); }
.hof-score-lbl { font-size: 10px; font-weight: 600; color: rgba(37,99,235,.6); }

/* ────────────────────────────────
   BLOG
──────────────────────────────── */
.blog-list { border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.blog-row { display: grid; grid-template-columns: 80px 1fr auto; align-items: stretch; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .18s; }
.blog-row:last-child { border-bottom: none; }
.blog-row:hover { background: var(--sky); }
.br-num { border-right: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 900; color: rgba(37,99,235,.15); transition: color .18s; }
.blog-row:hover .br-num { color: var(--blue2); }
.br-body { padding: 22px 24px; }
.br-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue2); margin-bottom: 6px; }
.br-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.5; transition: color .18s; }
.blog-row:hover .br-title { color: var(--blue2); }
.br-date { font-size: 11px; color: var(--mid); margin-top: 6px; }
.br-arrow { border-left: 1px solid var(--border); display: flex; align-items: center; padding: 0 22px; font-size: 16px; color: var(--border); transition: all .18s; }
.blog-row:hover .br-arrow { color: var(--blue2); transform: translateX(3px); }

/* ────────────────────────────────
   CTA SECTION
──────────────────────────────── */
.cta-layout { display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; }
.cta-visual { border-radius: var(--rl); overflow: hidden; height: 460px; position: relative; background: var(--light); }
.cta-vis-bg { position: absolute; inset: 0; background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 60%, #c7d9fb 100%); }
.cta-circles { position: absolute; inset: 0; }
.cta-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(37,99,235,.12); }
.ctac1 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ctac2 { width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(255,255,255,.5); }
.cta-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 2; }
.cta-big-score { font-family: 'Outfit', sans-serif; font-size: 72px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.cta-score-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue2); margin-top: 6px; }
.cta-float-card { position: absolute; background: var(--white); border-radius: 12px; padding: 14px 18px; box-shadow: var(--sh-lg); }
.ctafc1 { top: 28px; right: 24px; }
.ctafc2 { bottom: 28px; left: 24px; min-width: 180px; }
.ctafc-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.ctafc-val { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); }
.ctafc-sub { font-size: 11px; color: var(--mid); margin-top: 2px; }
.ctafc-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

.cta-checks { display: flex; flex-direction: column; gap: 11px; margin: 20px 0 30px; }
.cta-check { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.62); }
.check-box { width: 20px; height: 20px; flex-shrink: 0; border-radius: 5px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.check-tick { width: 9px; height: 5px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg) translate(1px,-1px); }

.apex-form-card { }
.form-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 4px; letter-spacing: -.3px; }
.form-subtitle { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 12px; }
.form-field input,
.form-field select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px; font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--white);
  outline: none; transition: border-color .2s, background .2s;
}
.form-field input::placeholder { color: rgba(255,255,255,.28); }
.form-field input:focus,
.form-field select:focus { border-color: rgba(232,160,32,.5); background: rgba(255,255,255,.09); }
.form-field select { color: rgba(255,255,255,.55); }
.form-field select option { background: #162440; color: var(--white); }
.form-note { font-size: 11px; color: rgba(255,255,255,.28); text-align: center; margin-top: 12px; }

/* ────────────────────────────────
   FOOTER
──────────────────────────────── */
#apex-footer { background: var(--navy); padding: 70px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.85; max-width: 270px; margin: 16px 0 20px; }
.footer-license { font-size: 12px; color: rgba(255,255,255,.2); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.38); cursor: pointer; transition: all .2s; font-family: 'Outfit', sans-serif; }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.38); margin-bottom: 10px; transition: all .18s; }
.footer-col a:hover { color: rgba(255,255,255,.82); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .18s; }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ────────────────────────────────
   FLOAT BUTTONS
──────────────────────────────── */
.apex-float { position: fixed; bottom: 24px; right: 24px; z-index: 998; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 50px; border: none; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; box-shadow: var(--sh-xl); transition: all .22s; }
.float-btn:hover { transform: translateX(-5px); }
.float-btn-navy { background: var(--navy); color: var(--white); }
.float-btn-zalo { background: #0068FF; color: var(--white); }

/* ────────────────────────────────
   REVEAL ANIMATION
──────────────────────────────── */
.apex-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.apex-reveal.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: .07s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .21s; }
.delay-4 { transition-delay: .28s; }
.delay-5 { transition-delay: .35s; }

/* ────────────────────────────────
   RESPONSIVE
──────────────────────────────── */
@media (max-width: 1280px) {
  .courses-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1100px) {
  .apex-hero { grid-template-columns: 1fr; padding-bottom: 80px; }
  .hero-visual { display: none; }
  .feat-layout { grid-template-columns: 1fr; }
  .feat-visual { display: none; }
  .cta-layout { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .apex-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-item:first-child { grid-row: 1/2; }
  .teachers-grid { grid-template-columns: 1fr 1fr; }
  .apex-nums { grid-template-columns: 1fr 1fr; }
  .num-cell:nth-child(2) { border-right: none; }
  .num-cell:nth-child(1),.num-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 900px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding-right: 0; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; }
  .hof-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: none; }
  .method-step:nth-child(1), .method-step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .hero-h1 { letter-spacing: -.5px; }
  .courses-grid { grid-template-columns: 1fr; }
  .apex-nums { grid-template-columns: 1fr 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid var(--border); }
  .method-step:last-child { border-bottom: none; }
  .teachers-grid { grid-template-columns: 1fr; }
  .hof-grid { grid-template-columns: 1fr; }
  .apex-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-ticker { display: none; }
  .apex-section { padding: 64px 5%; }
}
