/* ═══════════════════════════════════════
   LOCUS TUITION — style.css
   Design system: dark navy nav, gold accent,
   warm white body, Instrument Serif + Outfit
═══════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy:       #1f3c5e;
  --navy-deep:  #152b44;
  --gold:       #fbbf24;
  --gold-light: #fcd34d;
  --gold-pale:  #fffbeb;
  --gold-border:#fde68a;
  --electric:   #06b6d4;
  --electric-pale: #ecfeff;
  --blue:       #3b82f6;
  --blue-pale:  #eff6ff;
  --green-pale: #f0fdf4;
  --green:      #16a34a;
  --purple-pale:#f5f3ff;
  --purple:     #7c3aed;
  --teal:       #0d9488;
  --teal-pale:  #f0fdfa;
  --forest:     #2d6a5f;
  --forest-pale:#eaf3f1;
  --coral:      #f97316;
  --coral-pale: #fff7ed;
  --white:      #ffffff;
  --cream:      #f8fafc;
  --rule:       #e2e8f0;
  --rule-light: #f1f5f9;
  --text:       #0f172a;
  --muted:      #64748b;
  --hint:       #94a3b8;
  --success:    #059669;
  --font-serif: 'Instrument Serif', serif;
  --font-sans:  'Outfit', sans-serif;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ─── UTILITIES ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: white;
  text-decoration: none;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 16px; height: 16px; }
.logo-mark--sm { width: 26px; height: 26px; }
.logo-mark--sm svg { width: 14px; height: 14px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-links a[aria-current="page"] { color: var(--electric); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── NAV LIGHT (interior pages) ─── */
#nav.nav--light {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
#nav.nav--light .nav-logo { color: var(--navy); }
#nav.nav--light .nav-links a { color: var(--muted); }
#nav.nav--light .nav-links a:hover { color: var(--navy); }
#nav.nav--light .nav-links a[aria-current="page"] { color: var(--electric); }
#nav.nav--light .nav-hamburger span { background: var(--navy); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: var(--navy-deep);
  z-index: 99;
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li a {
  display: block;
  padding: 12px 32px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu li a:hover { color: white; }
.mobile-cta {
  display: inline-block !important;
  margin: 8px 32px 0 !important;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 14px rgba(240,165,0,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--text);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--hint);
  background: var(--cream);
}

/* ─── SECTION BASE ─── */
.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── HERO ─── */
.hero {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: 62px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: #b87a00;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 0;
}
.hero-stat {
  padding: 18px 24px;
  background: white;
  border: 1px solid var(--rule);
  flex: 1;
  text-align: center;
}
.hero-stat:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.hero-stat:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text);
  line-height: 1;
}
.stat-number em {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-serif);
}
.stat-label {
  font-size: 10px;
  color: var(--hint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* Hero card */
.hero-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(15,31,61,0.07);
}
.hero-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule-light);
}
.card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.offering-list { list-style: none; }
.offering-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--rule-light);
}
.offering-item--last { border-bottom: none; }
.offering-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offering-icon svg { width: 17px; height: 17px; }
.offering-icon--gold   { background: var(--gold-pale);   color: #b87a00; }
.offering-icon--blue   { background: var(--blue-pale);   color: var(--blue); }
.offering-icon--green  { background: var(--green-pale);  color: var(--green); }
.offering-icon--purple { background: var(--purple-pale); color: var(--purple); }
.offering-text { flex: 1; }
.offering-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.offering-text span {
  font-size: 11px;
  color: var(--hint);
  margin-top: 1px;
}
.offering-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.hero-card-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-card-cta:hover { background: var(--gold-light); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy);
  padding: 16px 32px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.trust-item svg {
  width: 15px; height: 15px;
  color: rgba(240,165,0,0.7);
  flex-shrink: 0;
}

/* ─── OFFER SECTION ─── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rule);
}
.offer-card--featured::before {
  background: var(--gold);
}
.offer-card--featured {
  border-color: rgba(240,165,0,0.25);
}
.offer-card:hover {
  box-shadow: 0 12px 40px rgba(15,31,61,0.09);
  transform: translateY(-3px);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.offer-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.offer-icon svg { width: 24px; height: 24px; }
.offer-icon--gold   { background: var(--gold-pale);   color: #b87a00; }
.offer-icon--blue   { background: var(--blue-pale);   color: var(--blue); }
.offer-icon--purple { background: var(--purple-pale); color: var(--purple); }
.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}
.offer-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.offer-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.offer-features li {
  font-size: 13px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--rule-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.offer-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
}
.offer-price span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.offer-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--rule);
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
}
.offer-cta:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.offer-cta--featured {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.offer-cta--featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 8px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: var(--rule);
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 auto 20px;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--rule);
}
.step-item h4 {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── BOOTCAMP ─── */
.bootcamp-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.bootcamp-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30,70,160,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.bootcamp-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.bootcamp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bootcamp-section .section-label { color: rgba(240,165,0,0.6); }
.bootcamp-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.bootcamp-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.bootcamp-text > p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 32px;
}
.bootcamp-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.bootcamp-fact { display: flex; flex-direction: column; gap: 3px; }
.bootcamp-fact strong {
  font-family: var(--font-serif);
  font-size: 24px;
  color: white;
}
.bootcamp-fact span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.bootcamp-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}
.bootcamp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.bootcamp-card--higher {
  background: rgba(255,255,255,0.04);
}
.bootcamp-card-dates {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bootcamp-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: white;
  margin-bottom: 4px;
}
.bootcamp-card-tier {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.bootcamp-card-price {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bootcamp-card-price-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.bootcamp-card-cta {
  display: block;
  background: var(--gold);
  color: var(--navy);
  padding: 11px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.bootcamp-card-cta:hover { background: var(--gold-light); }
.bootcamp-card-cta--outline {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.bootcamp-card-cta--outline:hover { background: rgba(255,255,255,0.14); }
.bootcamp-spots {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}
.bootcamp-spots strong { color: #f87171; }

/* ─── RESULTS ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(15,31,61,0.08); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 4px; left: 18px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 13px; color: var(--text); }
.author-detail { font-size: 11px; color: var(--hint); margin-top: 1px; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.result-item {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.result-before { font-size: 13px; color: var(--hint); margin-bottom: 4px; }
.result-arrow  { font-size: 18px; color: var(--gold); margin: 4px 0; }
.result-after  { font-family: var(--font-serif); font-size: 36px; color: var(--navy); line-height: 1; }
.result-label  { font-size: 11px; color: var(--hint); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.results-note  { font-size: 12px; color: var(--hint); text-align: center; font-style: italic; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy) 0%, #1a4080 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: white;
}
.about-placeholder svg { width: 72px; height: 72px; opacity: 0.5; }
.about-placeholder span { font-size: 14px; opacity: 0.4; }
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(240,165,0,0.3);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
}
.about-badge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.about-content .section-title { margin-top: 6px; }
.about-content > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}
.about-quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}
.qual-item {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.qual-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.faq-item h4 {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-item h4::before {
  content: 'Q';
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 30px;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--navy-deep); }
.contact-section .section-label { color: rgba(240,165,0,0.6); }
.contact-section .section-title { color: white; }
.contact-section .section-title em { color: var(--gold); }
.contact-section .section-sub { color: rgba(255,255,255,0.5); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: white;
  transition: all 0.2s;
}
.contact-method:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
}
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-icon--whatsapp { background: #25d366; color: white; }
.contact-method-icon--email    { background: var(--blue); color: white; }
.contact-method-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-method-text span { font-size: 12px; color: rgba(255,255,255,0.45); }
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  transform: translateY(-2px);
}
.social-handle { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 12px; }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 11px 15px;
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(240,165,0,0.5); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: white;
  text-decoration: none;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 130px 0 90px;
  text-align: center;
  color: var(--white);
}
.page-hero .section-label {
  color: var(--gold);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 400;
}
.page-hero h1 em { font-style: italic; }
.page-hero-sub {
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  font-size: 17px;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── PHILOSOPHY PILLARS ─── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.philosophy-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.philosophy-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.philosophy-card-icon svg { width: 22px; height: 22px; }
.philosophy-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.philosophy-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── TRANSFORM GRADES GRID ─── */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.transform-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
}
.transform-card:hover {
  box-shadow: 0 10px 36px rgba(15,37,68,0.1);
  transform: translateY(-3px);
}
.transform-card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.transform-card-visual svg {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.9);
}
.transform-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.transform-step-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hint);
  margin-bottom: 7px;
}
.transform-card-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.transform-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}
.transform-card--cta .transform-card-body {
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.transform-card--cta h4 { font-size: 16px; margin-bottom: 6px; }
.transform-card--cta p { flex: 0; }
.transform-card--cta .btn-primary {
  margin-top: 16px;
  align-self: stretch;
  justify-content: center;
}

/* ─── SECTION NAVY ─── */
.section--navy { background: var(--navy); }

/* ─── ABOUT PROBLEM ─── */
.about-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-problem-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 16px;
}
.pain-list {
  list-style: none;
  margin-top: 8px;
}
.pain-list-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hint);
  margin-bottom: 16px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before {
  content: '×';
  color: var(--hint);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1.5;
}

/* ─── ABOUT STAT STRIP ─── */
.about-stats-strip {
  display: flex;
  align-items: stretch;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  margin-top: 40px;
  overflow: hidden;
}
.about-stat-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--rule);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--forest);
  line-height: 1;
}
.about-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── ABOUT NOT SECTION ─── */
.about-not-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.about-not-header .section-label { color: var(--gold); }
.about-not-header .section-title { color: white; }
.about-not-header .section-sub { color: rgba(255,255,255,0.5); }
.about-not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-not-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.about-not-icon {
  width: 44px;
  height: 44px;
  background: rgba(240,165,0,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.about-not-icon svg { width: 22px; height: 22px; }
.about-not-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
.about-not-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── COURSES JUMP NAV ─── */
.courses-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.courses-jump-link {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--rule);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.courses-jump-link:hover { border-color: var(--gold); color: var(--navy); }

/* ─── OFFER GRID 2-COL MODIFIER ─── */
.offer-grid--two { grid-template-columns: repeat(2, 1fr); }

/* ─── BOOTCAMP NOTICE ─── */
.bootcamp-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ─── IGCSE SECTION ─── */
.igcse-info-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 860px;
  margin: 40px auto 0;
}
.igcse-info-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 4px;
}
.igcse-info-icon svg { width: 26px; height: 26px; }
.igcse-info-body { flex: 1; }
.igcse-info-body h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 12px; }
.igcse-info-body p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 10px; }
.igcse-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 24px;
}
.igcse-price-item {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.igcse-price-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.igcse-price-item .igcse-rate {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text);
  line-height: 1;
}
.igcse-price-item span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ─── FAQ ACCORDION ─── */
.faq-accordion {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-category-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-top: 36px;
  margin-bottom: 4px;
}
.faq-category-label:first-child { margin-top: 0; }
.faq-accordion-item {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
}
.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.15s;
}
.faq-accordion-trigger:hover { background: var(--cream); }
.faq-accordion-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-accordion-trigger[aria-expanded="true"] .faq-accordion-icon { transform: rotate(180deg); }
.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-accordion-content { padding: 0 22px 20px; }
.faq-accordion-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── COMPARISON GRID ─── */
.comparison-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.comparison-col {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-col-header {
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comparison-col--bad .comparison-col-header {
  background: #fef3f2;
  color: #c0392b;
  border-bottom: 1px solid #fdd;
}
.comparison-col--good .comparison-col-header {
  background: var(--forest-pale);
  color: var(--forest);
  border-bottom: 1px solid rgba(45,106,95,0.2);
}
.comparison-col-header svg { width: 16px; height: 16px; flex-shrink: 0; }
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule-light);
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.comparison-item:last-child { border-bottom: none; }
.comparison-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.comparison-icon--bad  { background: #fef3f2; }
.comparison-icon--good { background: var(--forest-pale); }
.comparison-icon svg { width: 12px; height: 12px; }
.comparison-icon--bad  svg { color: #e05c4a; }
.comparison-icon--good svg { color: var(--forest); }

/* ─── EXPECT CARDS (book.html) ─── */
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.expect-card { background: white; border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 28px 24px; }
.expect-card-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--gold); }
.expect-card-icon svg { width: 20px; height: 20px; }
.expect-card h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.expect-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ─── CONTACT PILLS (book.html) ─── */
.contact-pills { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.contact-pill { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border: 1.5px solid var(--rule); border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.contact-pill:hover { border-color: var(--gold); color: var(--navy); }
.contact-pill svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pill    { animation: fadeUp 0.5s ease 0.1s both; }
.hero h1      { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub     { animation: fadeUp 0.6s ease 0.3s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.4s both; }
.hero-stats   { animation: fadeUp 0.6s ease 0.5s both; }
.hero-card    { animation: fadeUp 0.7s ease 0.25s both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-card     { display: none; }
  .offer-grid    { grid-template-columns: 1fr; max-width: 480px; }
  .bootcamp-inner { grid-template-columns: 1fr; }
  .bootcamp-cards { flex-direction: row; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; }
  .results-grid  { grid-template-columns: repeat(2, 1fr); }
  .faq-grid      { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .philosophy-grid { grid-template-columns: 1fr; max-width: 480px; }
  .about-problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-not-grid { grid-template-columns: 1fr; max-width: 480px; }
  .comparison-cols { grid-template-columns: 1fr; }
  .offer-grid--two { grid-template-columns: 1fr; max-width: 480px; }
  .igcse-info-card { flex-direction: column; gap: 20px; padding: 28px; }
  .igcse-pricing { grid-template-columns: 1fr; }
  .about-stats-strip { flex-wrap: wrap; }
  .about-stat-item { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid var(--rule); }
  .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  #nav { padding: 0 20px; }
  .hero-inner { padding: 56px 20px 64px; }
  .container { padding: 0 20px; }
  .bootcamp-cards { flex-direction: column; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .about-quals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .transform-grid { grid-template-columns: 1fr; }
}
