/* ============================================
   LAUNCHPAD 18 — Design System
   Graduate Ready. Not Just Done.
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core Palette */
  --midnight: #07080F;
  --surface: #0F1219;
  --surface-raised: #161B26;
  --surface-border: #1E2433;
  --blue: #2563EB;
  --blue-glow: #3B82F6;
  --blue-dark: #1D4ED8;
  --cyan: #06B6D4;
  --green: #10B981;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --red: #EF4444;
  --white: #F8FAFC;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Light Mode --- */
[data-theme="light"] {
  --midnight: #F8FAFC;
  --surface: #FFFFFF;
  --surface-raised: #F1F5F9;
  --surface-border: #E2E8F0;
  --white: #0F172A;
  --text: #1E293B;
  --text-muted: #475569;
  --text-dim: #64748B;
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 250, 252, 0.92);
}

[data-theme="light"] .nav-links.open {
  background: rgba(248, 250, 252, 0.98);
}

[data-theme="light"] .mobile-toggle span {
  background: #0F172A;
}

[data-theme="light"] .hero-card::before,
[data-theme="light"] .mca-card::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), transparent 50%, rgba(245, 158, 11, 0.1));
}

[data-theme="light"] .avatar-stack .avatar {
  border-color: var(--surface);
}

[data-theme="light"] .btn-secondary {
  color: #0F172A;
}

[data-theme="light"] .btn-primary {
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.2);
}

[data-theme="light"] .stat-card,
[data-theme="light"] .module-card,
[data-theme="light"] .audience-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .faq-item {
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .module-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero::before {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .site-footer {
  background: #F1F5F9;
}

[data-theme="light"] .site-footer::before {
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.3;
}

[data-theme="light"] .footer-social a {
  background: var(--surface);
}

[data-theme="light"] .footer-newsletter-form input {
  background: var(--surface);
}

/* --- Theme Toggle --- */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-raised);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }

[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-glow);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--blue);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0A0A;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--surface-border);
}

.btn-secondary:hover {
  border-color: var(--blue-glow);
  background: rgba(37, 99, 235, 0.08);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
  background: var(--blue-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--surface-border);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--white);
}

.nav-logo .logo-18 {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 0.5rem; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 { margin-bottom: 1.5rem; }

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--midnight);
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-glow);
  margin-left: -8px;
}

.avatar-stack .avatar:first-child { margin-left: 0; }

.hero-proof-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-proof-text strong {
  color: var(--white);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent 50%, rgba(245, 158, 11, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
}

.hero-card-subtitle {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.readiness-modules {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.readiness-module {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface-raised);
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
}

.readiness-module:hover {
  border-color: var(--surface-border);
  transform: translateX(4px);
}

.module-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.module-icon.career { background: rgba(37, 99, 235, 0.15); color: var(--blue-glow); }
.module-icon.finance { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.module-icon.life { background: rgba(245, 158, 11, 0.15); color: var(--gold); }
.module-icon.ready { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }

.module-info { flex: 1; }

.module-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.module-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.module-status {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-status.active {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.trust-stat-value .accent { color: var(--blue-glow); }

.trust-stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- Problem Section --- */
.problem {
  padding: var(--section-pad) 0;
}

.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.stat-card.span-2 {
  grid-column: span 2;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number.red { color: var(--red); }
.stat-number.gold { color: var(--gold); }
.stat-number.blue { color: var(--blue-glow); }

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem-content h2 {
  margin-bottom: 1.5rem;
}

.problem-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.founder-quote {
  padding: 1.5rem;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.75rem 0.75rem 0;
  margin-top: 2rem;
}

.founder-quote blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.founder-quote cite {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--text-dim);
  font-weight: 600;
}

/* --- Program Section --- */
.program {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.program-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.program-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-top: 1rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.module-card {
  padding: 2rem;
  background: var(--midnight);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.module-card:hover::before { opacity: 1; }

.module-card-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.module-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.module-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.module-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.module-card .topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.module-card .topic-tag {
  padding: 0.25rem 0.75rem;
  background: var(--surface-raised);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- How It Works --- */
.how-it-works {
  padding: var(--section-pad) 0;
}

.how-it-works-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.how-it-works-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-glow);
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}

.step:hover .step-number {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.step h3 { margin-bottom: 0.75rem; }

.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Audience Section --- */
.audience {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.audience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.audience-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.audience-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.audience-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1.5px solid var(--surface-border);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.audience-tab:hover,
.audience-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.audience-panel {
  display: none;
  animation: fadeIn 0.3s var(--ease);
}

.audience-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.audience-card {
  padding: 2rem;
  background: var(--midnight);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
}

.audience-card h4 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- MCA Teaser --- */
.mca-teaser {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.mca-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mca-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1.5rem;
  text-align: center;
  position: relative;
}

.mca-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(135deg, var(--blue), transparent 40%, transparent 60%, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mca-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-glow);
  margin-bottom: 1.5rem;
}

.mca-card h2 { margin-bottom: 1rem; }

.mca-card p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.mca-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.mca-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.mca-feature-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.mca-feature-desc {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* --- Testimonials --- */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.testimonials-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--midnight);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: var(--surface-border);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-glow);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --- Graduation CTA --- */
.grad-cta {
  padding: var(--section-pad) 0;
  text-align: center;
}

.grad-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.grad-cta h2 { margin-bottom: 1rem; }

.grad-cta h2 .gold {
  color: var(--gold);
}

.grad-cta p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.grad-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- FAQ --- */
.faq {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.faq-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--midnight);
  border: 1px solid var(--surface-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--blue); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue-glow); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   ELITE FOOTER
   ============================================ */
.site-footer {
  padding: 5rem 0 0;
  background: var(--midnight);
  border-top: 1px solid var(--surface-border);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* Footer Main Grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--surface-border);
}

/* Footer Brand Column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-brand .footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--white);
}

.footer-brand .footer-logo .logo-18 { color: var(--gold); }

.footer-brand .footer-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: all 0.25s var(--ease);
}

.footer-social a:hover {
  border-color: var(--blue);
  color: var(--blue-glow);
  transform: translateY(-2px);
}

/* Footer Link Columns */
.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-column a:hover { color: var(--white); }

/* Footer Newsletter */
.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-form input::placeholder { color: var(--text-dim); }
.footer-newsletter-form input:focus { border-color: var(--blue); }

.footer-newsletter-form button {
  padding: 0.625rem 1.25rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s;
}

.footer-newsletter-form button:hover { background: var(--blue-glow); }

/* MCA Parent Brand Bar */
.footer-mca-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.footer-mca-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-mca-inner .mca-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer-mca-inner .mca-logo-text span { color: var(--white); }

.footer-mca-divider {
  width: 1px;
  height: 20px;
  background: var(--surface-border);
}

.footer-mca-inner .mca-tagline {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Legal Disclaimers */
.footer-legal {
  padding: 2rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.7;
  text-align: center;
}

.footer-disclaimer strong {
  color: var(--text-muted);
  font-weight: 600;
}

/* Copyright Bar */
.footer-copyright {
  padding: 1.5rem 0;
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .problem .container { grid-template-columns: 1fr; }
  .problem-stats { order: 2; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 8, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--surface-border);
    gap: 1.25rem;
  }
  .mobile-toggle { display: flex; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .audience-tabs { flex-wrap: wrap; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mca-features { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-copyright-inner { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
  .footer-mca-inner { flex-direction: column; gap: 0.5rem; }
  .footer-mca-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .problem-stats { grid-template-columns: 1fr; }
  .stat-card.span-2 { grid-column: span 1; }
  .grad-cta-actions { flex-direction: column; align-items: center; }
  .footer-newsletter-form { flex-direction: column; }
}

/* ============================================
   QUIZ ENGINE STYLES
   ============================================ */

/* Module Hero */
.module-hero {
  padding: calc(var(--section-pad) + 2rem) 0 2rem;
  text-align: center;
}
.module-back {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.module-back:hover { color: var(--blue); }
.module-hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.module-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.75rem;
}
.module-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-section { padding: 2rem 0 var(--section-pad); }

/* Start Screen */
.quiz-start, .quiz-track-selector {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.quiz-start-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.quiz-start h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}
.quiz-start-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.quiz-start-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.quiz-start-btn { font-size: 1.05rem; padding: 0.85rem 2.5rem; }

/* Track Selector */
.quiz-track-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 550px;
  margin: 2rem auto 0;
}
.quiz-track-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: var(--midnight);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--white);
}
.quiz-track-btn:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.quiz-track-icon { font-size: 2.5rem; }
.quiz-track-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.quiz-track-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Progress Bar */
.quiz-progress {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  height: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 20px;
  transition: width 0.4s ease;
}
.quiz-progress-text {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Question */
.quiz-question {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.quiz-q-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

/* Multiple Choice Options */
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--midnight);
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: var(--text);
  width: 100%;
  font-size: 0.95rem;
}
.quiz-option:hover:not(.disabled) {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}
.quiz-option.correct {
  border-color: var(--green) !important;
  background: rgba(16, 185, 129, 0.1) !important;
}
.quiz-option.incorrect {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.1) !important;
}
.quiz-option.disabled { cursor: default; opacity: 0.7; }
.quiz-option.disabled.correct { opacity: 1; }
.quiz-option.disabled.incorrect { opacity: 1; }
.quiz-option.selected-trade {
  border-color: var(--cyan) !important;
  background: rgba(6, 182, 212, 0.1) !important;
  opacity: 1;
}
.quiz-option-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.quiz-option.correct .quiz-option-letter { background: var(--green); color: #fff; }
.quiz-option.incorrect .quiz-option-letter { background: #ef4444; color: #fff; }

/* Likert Scale (Assessment) */
.quiz-likert {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.quiz-likert-btn {
  flex: 1;
  min-width: 100px;
  padding: 0.85rem 0.5rem;
  background: var(--midnight);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.quiz-likert-btn:hover:not(:disabled) {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
}
.quiz-likert-btn.selected {
  border-color: var(--cyan) !important;
  background: rgba(6, 182, 212, 0.15) !important;
  font-weight: 600;
}
.quiz-likert-btn:disabled { cursor: default; opacity: 0.6; }
.quiz-likert-btn.selected:disabled { opacity: 1; }

/* Feedback */
#quiz-feedback { margin-top: 1.25rem; }
.quiz-feedback {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.quiz-feedback.correct {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.quiz-feedback.incorrect {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.quiz-feedback-icon {
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}
.quiz-feedback.correct .quiz-feedback-icon { color: var(--green); }
.quiz-feedback.incorrect .quiz-feedback-icon { color: #ef4444; }
.quiz-feedback-body {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
}
.quiz-next-btn { margin-top: 0.5rem; }

/* Results */
.quiz-results {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.quiz-results-header { margin-bottom: 2rem; }
.quiz-score-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--border);
}
.quiz-score-circle.excellent { border-color: var(--green); background: rgba(16,185,129,0.08); }
.quiz-score-circle.good { border-color: var(--cyan); background: rgba(6,182,212,0.08); }
.quiz-score-circle.decent { border-color: var(--blue); background: rgba(37,99,235,0.08); }
.quiz-score-circle.fair { border-color: var(--gold); background: rgba(245,158,11,0.08); }
.quiz-score-circle.low { border-color: #ef4444; background: rgba(239,68,68,0.08); }
.quiz-score-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.quiz-score-of {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.quiz-results h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.quiz-results p { color: var(--text-muted); }
.quiz-results-bar {
  background: var(--midnight);
  border-radius: 10px;
  height: 12px;
  margin: 1.5rem auto;
  max-width: 400px;
  overflow: hidden;
}
.quiz-results-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 10px;
}
.quiz-missed {
  text-align: left;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.quiz-missed h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.quiz-missed ul { list-style: none; padding: 0; margin: 0; }
.quiz-missed li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Paywall */
.quiz-paywall, .quiz-bonus-unlocked {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 16px;
  text-align: center;
}
.quiz-paywall-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.quiz-paywall h3, .quiz-bonus-unlocked h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}
.quiz-paywall p, .quiz-bonus-unlocked p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.quiz-stripe-btn {
  background: linear-gradient(135deg, var(--gold), #d97706) !important;
  color: #000 !important;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
}
.quiz-stripe-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.quiz-paywall-secure {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* Promo Blocks */
.quiz-promo {
  position: relative;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}
.quiz-promo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan);
}
.quiz-promo h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}
.quiz-promo p { color: var(--text-muted); margin-bottom: 1.25rem; }
.quiz-promo-sub { font-size: 0.85rem; color: var(--text-muted); }
.wth-promo { border-color: var(--gold); }
.wth-promo .quiz-promo-badge { background: rgba(245,158,11,0.15); color: var(--gold); }
.mca-promo { border-color: var(--cyan); }

/* Navigation Actions */
.quiz-nav-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Assessment Bars */
.assessment-bars { margin: 2rem 0; text-align: left; }
.assessment-bar-item { margin-bottom: 1.25rem; }
.assessment-bar-item.top .assessment-bar-label strong { color: var(--cyan); }
.assessment-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.assessment-bar-label strong { color: var(--white); }
.assessment-bar-label span { color: var(--text-muted); }
.assessment-bar-track {
  height: 10px;
  background: var(--midnight);
  border-radius: 10px;
  overflow: hidden;
}
.assessment-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 10px;
  transition: width 0.6s ease;
}
.assessment-bar-item.top .assessment-bar-fill {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}
.assessment-matches {
  text-align: left;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.assessment-matches h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  margin: 0 0 1.25rem;
}
.assessment-match {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--midnight);
  border-radius: 12px;
}
.assessment-match h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--cyan);
  margin: 0 0 0.5rem;
}
.assessment-match p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.assessment-careers { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Trade School Results */
.trade-matches { margin: 2rem 0; }
.trade-match {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--midnight);
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: left;
}
.trade-match-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 40px;
}
.trade-match-icon { font-size: 2rem; }
.trade-match-body h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  margin: 0 0 0.35rem;
}
.trade-match-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* Module Card Links (index page) */
.module-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.module-card-link:hover { color: var(--cyan); }

/* Quiz Responsive */
@media (max-width: 768px) {
  .quiz-start, .quiz-track-selector { padding: 2rem 1.25rem; }
  .quiz-question { padding: 1.5rem 1rem; }
  .quiz-track-options { grid-template-columns: 1fr; }
  .quiz-likert { flex-direction: column; }
  .quiz-likert-btn { min-width: auto; }
  .quiz-results { padding: 2rem 1.25rem; }
  .quiz-paywall, .quiz-bonus-unlocked { padding: 1.5rem; }
  .quiz-promo { padding: 1.5rem; }
  .trade-match { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .quiz-nav-actions { flex-direction: column; align-items: stretch; }
  .quiz-start-meta { flex-direction: column; gap: 0.5rem; }
}
