/* ==========================================================================
   Step Up USMLE — design tokens
   ========================================================================== */
:root {
  --navy: #0b1b3f;
  --navy-light: #16296b;
  --blue: #1e4fd6;
  --blue-light: #4d76e8;
  --amber: #f5a623;
  --amber-dark: #d98a0a;
  --surface: #f4f6fb;
  --white: #ffffff;
  --red: #ef4444;

  --font-heading: "Poppins", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;

  --container: 1280px;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 1.75rem;
  --shadow-sm: 0 1px 2px rgba(11, 27, 63, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 27, 63, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 27, 63, 0.15);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section--sm { padding: 4rem 0; }
.bg-white { background: var(--white); }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.bg-navy .eyebrow { color: var(--amber); }

h2.heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1.15;
}
.bg-navy h2.heading { color: var(--white); }
@media (min-width: 640px) { h2.heading { font-size: 2.25rem; } }

.section-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-head p.lead { margin-top: 1rem; color: rgba(11, 27, 63, 0.65); }
.bg-navy .section-head p.lead { color: rgba(255, 255, 255, 0.65); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); }
.btn--amber { background: var(--amber); color: var(--navy); box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3); }
.btn--amber:hover { background: var(--amber-dark); }
.btn--outline { background: var(--white); color: var(--navy); border-color: rgba(11, 27, 63, 0.15); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline-dark { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.2); }
.btn--outline-dark:hover { border-color: rgba(255, 255, 255, 0.4); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--blue); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn--block { width: 100%; }
@media (min-width: 640px) { .btn--block { width: auto; } }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(11, 27, 63, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.nav-logo svg { height: 2.25rem; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(11, 27, 63, 0.8);
  position: relative;
  padding-bottom: 0.35rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--blue);
  border-radius: 999px;
}
.nav-actions { display: none; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: rgba(11, 27, 63, 0.8); }
.nav-phone svg { color: var(--blue); width: 20px; height: 20px; }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 0.5rem; color: var(--navy);
}
.mobile-menu { display: none; border-top: 1px solid rgba(11, 27, 63, 0.1); padding: 0.5rem 0 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a { display: block; padding: 0.65rem 0.75rem; border-radius: 0.5rem; font-weight: 500; color: rgba(11, 27, 63, 0.8); }
.mobile-menu a.active { background: var(--surface); color: var(--blue); }
.mobile-actions { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

@media (min-width: 1024px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--surface), var(--white));
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at top right, rgba(30, 79, 214, 0.12), transparent 55%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 3rem;
  padding: 3.5rem 0 4rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; padding: 5rem 0 6rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(11, 27, 63, 0.1);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(11, 27, 63, 0.7);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.08;
  color: var(--navy);
  margin-top: 1.25rem;
}
.hero h1 .accent { color: var(--blue); }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.4rem; } }
.hero .lead { margin-top: 1.5rem; max-width: 34rem; font-size: 1.125rem; line-height: 1.6; color: rgba(11, 27, 63, 0.7); }
.hero .lead strong { color: var(--navy); font-weight: 600; }
.hero-ctas { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-stats {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(11, 27, 63, 0.1);
  padding-top: 2rem;
}
.hero-stats .stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
@media (min-width: 640px) { .hero-stats .stat-value { font-size: 1.75rem; } }
.hero-stats .stat-label { margin-top: 0.15rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(11, 27, 63, 0.45); }

/* Hero mockup */
.hero-visual { position: relative; }
.monitor {
  position: relative;
  border-radius: 1rem;
  background: var(--navy);
  padding: 0.65rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 27, 63, 0.1);
}
.browser-bar {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--navy-light);
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.6rem 0.75rem;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot--red { background: #f87171; }
.browser-dot--amber { background: var(--amber); }
.browser-dot--blue { background: var(--blue-light); }
.browser-url {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  margin-left: 0.5rem;
}
.browser-tab {
  flex-shrink: 0; display: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) { .browser-tab { display: block; } }
.monitor-content { background: var(--white); border-radius: 0 0 0.5rem 0.5rem; padding: 1rem; }
.monitor-content .plan-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--blue); }
.plan-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  background: var(--surface);
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  margin-top: 0.5rem;
}
.plan-row .topic { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.plan-row .tags { margin-top: 0.25rem; display: flex; flex-wrap: wrap; gap: 0.25rem; }
.plan-row .tag { background: rgba(11, 27, 63, 0.05); border-radius: 0.25rem; padding: 0.1rem 0.35rem; font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(11, 27, 63, 0.5); }
.plan-row .status { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; }
.status--done { background: var(--blue); color: var(--white); }
.status--active { background: var(--amber); color: var(--navy); }
.status--pending { background: rgba(11, 27, 63, 0.1); color: rgba(11, 27, 63, 0.4); }

.floating-badge {
  position: absolute;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(11, 27, 63, 0.1);
  border-radius: 1rem;
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-md);
}
.floating-badge .emoji { font-size: 1.25rem; }
.floating-badge .fb-title { font-family: var(--font-heading); font-weight: 800; font-size: 0.875rem; color: var(--navy); }
.floating-badge .fb-sub { font-size: 0.625rem; color: rgba(11, 27, 63, 0.5); }
.floating-badge--top { top: -1.25rem; right: -0.75rem; }
.floating-badge--bottom { bottom: -1.25rem; left: -0.75rem; }
@media (min-width: 640px) {
  .floating-badge--top { right: -1.5rem; }
  .floating-badge--bottom { left: -1.5rem; }
}

/* ==========================================================================
   Before / After
   ========================================================================== */
.ba-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-card { height: 100%; border-radius: var(--radius-lg); padding: 2rem; }
.ba-card--before { background: var(--surface); border: 1px solid rgba(11, 27, 63, 0.1); }
.ba-card--after { background: var(--navy); border: 2px solid rgba(30, 79, 214, 0.2); color: var(--white); box-shadow: var(--shadow-lg); }
.ba-head { display: flex; align-items: center; justify-content: space-between; }
.ba-head h3 { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; }
.ba-card--before h3 { color: rgba(11, 27, 63, 0.8); }
.ba-card--after h3 { color: var(--amber); }
.ba-emoji { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; font-size: 0.9rem; }
.ba-card--before .ba-emoji { background: rgba(239, 68, 68, 0.1); color: var(--red); }
.ba-card--after .ba-emoji { background: rgba(245, 166, 35, 0.15); color: var(--amber); }
.ba-count { border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; }
.ba-card--before .ba-count { background: rgba(11, 27, 63, 0.05); color: rgba(11, 27, 63, 0.5); }
.ba-card--after .ba-count { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }
.ba-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ba-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.ba-list .ba-emoji { width: 1.5rem; height: 1.5rem; font-size: 0.75rem; flex-shrink: 0; margin-top: 0.1rem; }
.ba-card--before .ba-list span:last-child { color: rgba(11, 27, 63, 0.7); }
.ba-card--after .ba-list span:last-child { color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.feature-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(11, 27, 63, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-top { display: flex; align-items: flex-start; justify-content: space-between; }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(30, 79, 214, 0.1); font-size: 1.4rem; }
.feature-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: rgba(11, 27, 63, 0.1); }
.feature-card h3 { margin-top: 1.25rem; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.feature-tagline { margin-top: 0.35rem; font-size: 0.875rem; font-weight: 500; font-style: italic; color: rgba(11, 27, 63, 0.7); }
.feature-desc { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(11, 27, 63, 0.65); }
.feature-preview { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; background: var(--surface); border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.75rem; font-weight: 600; color: rgba(11, 27, 63, 0.6); }
.feature-preview .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ==========================================================================
   Program paths
   ========================================================================== */
.path-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .path-grid { grid-template-columns: 1fr 1fr; } }
.path-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid rgba(11, 27, 63, 0.1); border-radius: var(--radius-lg); padding: 2rem 2.5rem; }
.path-card h3 { margin-top: 0.5rem; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.path-card .best-for { margin-top: 0.75rem; color: rgba(11, 27, 63, 0.7); }
.path-meta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid rgba(11, 27, 63, 0.1); padding-top: 1.5rem; }
.path-meta-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.path-meta-row .check { color: var(--blue); flex-shrink: 0; margin-top: 0.15rem; }
.path-meta-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(11, 27, 63, 0.5); }
.path-meta-value { font-size: 0.875rem; color: rgba(11, 27, 63, 0.75); }
.path-quote { margin-top: 1.5rem; background: var(--white); border-radius: 0.75rem; padding: 1rem; font-size: 0.875rem; font-style: italic; color: rgba(11, 27, 63, 0.7); }
.path-card .btn { margin-top: 2rem; align-self: flex-start; }

/* ==========================================================================
   Timeline
   ========================================================================== */
.phase-pills { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .phase-pills { grid-template-columns: repeat(4, 1fr); } }
.phase-pill {
  display: flex; align-items: center; gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 0.6rem 0.75rem;
  text-align: left;
  color: inherit;
  width: 100%;
}
.phase-pill:hover { border-color: rgba(255, 255, 255, 0.25); }
.phase-pill.active { border-color: var(--amber); background: rgba(255, 255, 255, 0.1); }
.phase-pill-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); font-size: 1rem; }
.phase-pill.active .phase-pill-icon { background: var(--amber); color: var(--navy); }
.phase-pill-meta { min-width: 0; }
.phase-pill-tag { display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.4); }
.phase-pill.active .phase-pill-tag { color: var(--amber); }
.phase-pill-name { display: block; font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.step-rail { margin-top: 1.5rem; overflow-x: auto; padding-bottom: 0.5rem; }
.step-rail-inner { display: flex; align-items: center; gap: 0.5rem; width: max-content; }
.step-dot {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  font-size: 0.75rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5);
  border: none;
}
.step-dot:hover { background: rgba(255, 255, 255, 0.15); }
.step-dot.current { background: var(--amber); color: var(--navy); }
.step-dot.passed { background: rgba(30, 79, 214, 0.4); color: var(--white); }

.progress-track { margin-top: 1rem; height: 6px; width: 100%; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--amber); transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1); }

.step-detail { margin-top: 2rem; border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.04); padding: 1.75rem; min-height: 220px; }
@media (min-width: 640px) { .step-detail { padding: 2.5rem; } }
.step-detail-head { display: flex; align-items: center; gap: 0.75rem; }
.step-detail-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 1rem; background: var(--amber); color: var(--navy); font-size: 1.5rem; }
.step-detail-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--amber); }
.step-detail h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; }
.step-detail-tagline { margin-top: 1.25rem; font-family: var(--font-heading); font-size: 1.1rem; font-style: italic; color: rgba(255, 255, 255, 0.9); }
.step-detail-desc { margin-top: 0.75rem; max-width: 42rem; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }

.step-controls { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.step-controls .count { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.step-nav-btn { border-radius: 999px; padding: 0.6rem 1.25rem; font-size: 0.875rem; font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.15); background: transparent; color: rgba(255, 255, 255, 0.8); }
.step-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.step-nav-btn:not(:disabled):hover { border-color: rgba(255, 255, 255, 0.35); }
.step-nav-btn--next { background: var(--amber); color: var(--navy); border: none; font-weight: 700; }
.step-nav-btn--next:not(:disabled):hover { transform: scale(1.03); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card { position: relative; display: flex; flex-direction: column; height: 100%; border-radius: var(--radius-md); border: 1px solid rgba(11, 27, 63, 0.1); background: var(--white); padding: 1.5rem; }
.price-card.featured { border: 1px solid var(--blue); background: var(--navy); color: var(--white); box-shadow: var(--shadow-lg); }
.price-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--amber); color: var(--navy); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.7rem; font-weight: 700; }
.price-hours { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.featured .price-hours { color: var(--white); }
.price-value-row { margin-top: 0.75rem; display: flex; align-items: baseline; gap: 0.5rem; }
.price-value { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 800; color: var(--navy); }
.featured .price-value { color: var(--amber); }
.price-list { font-size: 0.875rem; text-decoration: line-through; color: rgba(11, 27, 63, 0.35); }
.featured .price-list { color: rgba(255, 255, 255, 0.4); }
.price-per-hour { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 600; color: rgba(11, 27, 63, 0.5); }
.featured .price-per-hour { color: rgba(255, 255, 255, 0.6); }
.price-card .btn { margin-top: 1.5rem; }

.includes-box { margin-top: 1.5rem; border-radius: var(--radius-md); border: 1px solid rgba(11, 27, 63, 0.1); background: var(--white); padding: 1.5rem; }
.includes-box p.label { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.includes-list { margin-top: 0.75rem; display: grid; gap: 0.6rem; }
@media (min-width: 640px) { .includes-list { grid-template-columns: repeat(2, 1fr); } }
.includes-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(11, 27, 63, 0.7); }
.includes-list .check { color: var(--blue); flex-shrink: 0; margin-top: 0.15rem; }

.trust-line { margin-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem; text-align: center; font-size: 0.75rem; font-weight: 500; color: rgba(11, 27, 63, 0.5); }

.marathon-card { display: grid; gap: 2rem; border-radius: var(--radius-lg); border: 2px solid rgba(30, 79, 214, 0.2); background: var(--white); padding: 2rem; }
@media (min-width: 1024px) { .marathon-card { grid-template-columns: 1fr 1.3fr; align-items: center; padding: 2.5rem; } }
.marathon-price { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--navy); }
.marathon-card .sub { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(11, 27, 63, 0.6); }

/* ==========================================================================
   Mentor
   ========================================================================== */
.mentor-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .mentor-grid { grid-template-columns: 0.9fr 1.1fr; } }
.mentor-photo-wrap { position: relative; max-width: 22rem; margin: 0 auto; }
.mentor-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.mentor-photo span { padding: 0 2rem; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: rgba(255, 255, 255, 0.25); text-align: center; }
.mentor-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--white); border: 1px solid rgba(11, 27, 63, 0.1); border-radius: var(--radius-md); padding: 1rem; box-shadow: var(--shadow-lg); }
.mentor-badge .big { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.mentor-badge .small { font-size: 0.7rem; font-weight: 600; color: rgba(11, 27, 63, 0.5); }
.mentor-name { margin-top: 0.75rem; font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.mentor-credentials { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mentor-credential { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--surface); border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.75rem; font-weight: 600; color: rgba(11, 27, 63, 0.75); }
.mentor-credential .check { color: var(--blue); }
.mentor-bio { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mentor-bio p { line-height: 1.6; color: rgba(11, 27, 63, 0.7); }
.mentor-stats { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; border-top: 1px solid rgba(11, 27, 63, 0.1); padding-top: 1.5rem; }
.mentor-stats .val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.mentor-stats .lbl { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.3; color: rgba(11, 27, 63, 0.55); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.stars { display: flex; align-items: center; justify-content: center; gap: 0.25rem; color: var(--amber); font-size: 1.25rem; }
.testimonial-grid { margin-top: 3.5rem; column-count: 1; column-gap: 1.25rem; }
@media (min-width: 640px) { .testimonial-grid { column-count: 2; } }
@media (min-width: 1024px) { .testimonial-grid { column-count: 3; } }
.testimonial-item { break-inside: avoid; margin-bottom: 1.25rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(11, 27, 63, 0.1); box-shadow: var(--shadow-sm); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: var(--radius-md); border: 1px solid rgba(11, 27, 63, 0.1); background: var(--surface); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; }
.faq-number { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: rgba(11, 27, 63, 0.3); flex-shrink: 0; }
.faq-item.open .faq-number { color: var(--blue); }
.faq-question span.q-text { flex: 1; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); }
.faq-toggle { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: rgba(11, 27, 63, 0.05); color: rgba(11, 27, 63, 0.6); font-weight: 700; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem 4rem; line-height: 1.6; color: rgba(11, 27, 63, 0.65); }

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom left, rgba(30, 79, 214, 0.25), transparent 55%); }
.final-cta .inner { position: relative; max-width: 42rem; margin: 0 auto; }
.final-cta p.lead { margin-top: 1rem; color: rgba(255, 255, 255, 0.7); }
.final-cta .cta-row { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .final-cta .cta-row { flex-direction: row; } }

.site-footer { background: var(--navy); color: var(--white); }
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-brand svg { height: 2.25rem; width: auto; }
.footer-brand p { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.footer-social { margin-top: 1.5rem; display: flex; gap: 1rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.footer-social a:hover { background: var(--blue); }
.footer-col h3 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.5); }
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 0; font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ==========================================================================
   Page hero (subpages)
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; background: var(--surface); text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(30, 79, 214, 0.1), transparent 55%); }
.page-hero .inner { position: relative; max-width: 48rem; margin: 0 auto; padding: 4rem 0; }
@media (min-width: 1024px) { .page-hero .inner { padding: 6rem 0; } }
.page-hero h1 { margin-top: 1.25rem; font-family: var(--font-heading); font-weight: 800; font-size: 2.25rem; line-height: 1.1; color: var(--navy); }
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
.page-hero h1 .accent { color: var(--blue); }
.page-hero .desc { margin: 1.5rem auto 0; max-width: 42rem; font-size: 1.125rem; line-height: 1.6; color: rgba(11, 27, 63, 0.7); }
.page-hero .cta-row { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .page-hero .cta-row { flex-direction: row; justify-content: center; } }
.page-hero .note { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(11, 27, 63, 0.5); }
.page-hero .stat-strip { margin: 3.5rem auto 0; max-width: 42rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .page-hero .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.page-hero .stat-strip .val { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--navy); }
@media (min-width: 640px) { .page-hero .stat-strip .val { font-size: 1.75rem; } }
.page-hero .stat-strip .lbl { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 600; color: rgba(11, 27, 63, 0.6); }

/* ==========================================================================
   Generic helpers
   ========================================================================== */
.text-center { text-align: center; }
.mt-lg { margin-top: 3.5rem; }
.max-w-content { max-width: 48rem; margin: 0 auto; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.two-col { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.simple-card { border-radius: var(--radius-md); border: 1px solid rgba(11, 27, 63, 0.1); background: var(--surface); padding: 1.5rem; }
.simple-card.dark { background: var(--navy); color: var(--white); border-color: rgba(30, 79, 214, 0.2); }
.tag-pill { display: inline-flex; border-radius: 999px; background: rgba(30, 79, 214, 0.1); padding: 0.25rem 0.75rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--blue); }

.curriculum-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }
.curriculum-pill { border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05); border-radius: 999px; padding: 0.6rem 1.25rem; font-size: 0.875rem; font-weight: 500; }

/* ==========================================================================
   Scroll-reveal animation (progressive enhancement via JS)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
