/* ── FIFA Agent Prep Platform ── Clean Editorial (FIFA.com-inspired) ── */
:root {
  --blue-deep: #0a2a52;
  --blue: #154a8c;
  --blue-bright: #1f66c9;
  --blue-pale: #eaf1fb;
  --bg: #ffffff;
  --bg-alt: #f3f6fa;
  --surface: #ffffff;
  --elevated: #f3f6fa;
  --card: #ffffff;
  --border: #e2e7ee;
  --border-light: #cfd8e3;
  --gold: #c9922e;
  --gold-dim: #a97b25;
  --gold-bright: #e0a83f;
  --gold-glow: rgba(201, 146, 46, 0.12);
  --red: #c8102e;
  --red-dim: #ffe1e6;
  --green: #1f8a4c;
  --green-dim: #e1f5e8;
  --grey: #5c6773;
  --mid: #445064;
  --light: #2a3342;
  --white: #ffffff;
  --ink: #0a1628;
  --mono: 'SF Mono', 'Courier New', monospace;
  --sans: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 1px 3px rgba(10,38,74,0.08), 0 1px 2px rgba(10,38,74,0.04);
  --shadow-lift: 0 20px 40px -12px rgba(10,38,74,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--mid);
  line-height: 1.7;
  font-size: 15px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
}

p { letter-spacing: 0; }

a { color: var(--blue); text-decoration: none; transition: opacity 0.2s var(--ease); }
a:hover { opacity: 0.75; }

::selection { background: var(--blue); color: var(--white); }

a:focus-visible, button:focus-visible, .quiz-option:focus-visible,
.module-header:focus-visible, .faq-question:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px;
}

/* ── EYEBROW / LABEL STYLE ── */
.eyebrow, .section-num, .hero-badge, .nav-links a, .nav-cta,
.hero-stat-label, .exam-fact-label, .module-status, .pricing-badge,
.card-meta, .quiz-question-number, .quiz-category, .quiz-btn,
.quiz-result-badge, .stat-card-label, .dash-brand p {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--blue-deep);
  padding: 0 28px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease);
}
nav.scrolled { background: var(--blue-deep); box-shadow: 0 2px 12px rgba(10,38,74,0.25); }
.nav-logo { font-family: var(--sans); font-weight: 900; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--white); }
.nav-logo span { color: var(--gold-bright); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { position: relative; color: rgba(255,255,255,0.75); font-size: 0.68rem; letter-spacing: 0.12em; transition: color 0.2s var(--ease); padding: 4px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold-bright); transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); opacity: 1; }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  font-size: 0.65rem; letter-spacing: 0.1em; font-weight: 700;
  background: var(--gold-bright); color: var(--blue-deep); padding: 11px 24px; border: none; cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover { background: #ecc06a; opacity: 1; transform: translateY(-1px); box-shadow: 0 6px 16px -4px rgba(201,146,46,0.4); }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1100;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--blue-deep);
  z-index: 1050; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--sans); font-weight: 800; font-size: 1.6rem; color: var(--white); letter-spacing: -0.01em; }
.mobile-menu a:hover { color: var(--gold-bright); }

/* ── HERO ── */
.hero {
  min-height: 88vh; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; text-align: left;
  padding: 8rem 6vw 5rem; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--blue-deep) 0%, var(--blue) 65%, #1c5aa8 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle at 82% 22%, rgba(255,255,255,0.14) 0%, transparent 45%),
                     radial-gradient(circle at 95% 85%, rgba(201,146,46,0.18) 0%, transparent 40%);
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  color: var(--white); font-size: 0.62rem; letter-spacing: 0.16em;
  margin-bottom: 26px; background: rgba(255,255,255,0.12); border-radius: 999px;
  animation: fadeUp 0.6s var(--ease) both;
}
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.06; margin-bottom: 22px; max-width: 15ch; color: var(--white); animation: fadeUp 0.7s var(--ease) 0.08s both; }
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero-sub { max-width: 520px; margin: 0 0 36px; color: rgba(255,255,255,0.8); font-size: clamp(0.9rem, 1.6vw, 1.05rem); animation: fadeUp 0.7s var(--ease) 0.16s both; }
.hero > a.nav-cta { display: inline-flex; animation: fadeUp 0.7s var(--ease) 0.24s both; padding: 15px 34px; font-size: 0.7rem; }
.hero-stats { display: flex; justify-content: flex-start; gap: 0; margin-top: 52px; flex-wrap: wrap; animation: fadeUp 0.7s var(--ease) 0.32s both; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 28px; width: 100%; max-width: 640px; }
.hero-stat { text-align: left; flex: 1; min-width: 100px; padding-right: 20px; }
.hero-stat-num { font-family: var(--sans); font-weight: 900; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-top: 10px; display: block; }

/* ── SECTIONS ── */
.section {
  max-width: 1200px; margin: 0 auto; padding: 100px 6vw;
  border-bottom: 1px solid var(--border);
}
.section:nth-of-type(even) { background: var(--bg-alt); max-width: 100%; }
.section:nth-of-type(even) > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section:last-of-type { border-bottom: none; }
.section-head { text-align: left; margin-bottom: 56px; max-width: 720px; }
.section-num { display: flex; align-items: center; gap: 10px; font-size: 0.65rem; color: var(--blue); letter-spacing: 0.16em; margin-bottom: 14px; }
.section-num::before { content: ''; width: 24px; height: 3px; background: var(--gold); display: inline-block; border-radius: 2px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section-head h2 em { font-style: normal; color: var(--blue); }
.section-head p { color: var(--grey); font-size: 0.94rem; max-width: 600px; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-icon {
  width: 44px; height: 44px; background: var(--blue-pale); display: flex; align-items: center;
  justify-content: center; color: var(--blue); margin-bottom: 22px; font-size: 1rem; font-weight: 800;
  border-radius: 8px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card:hover .card-icon { background: var(--blue); color: var(--white); }
.card h3 { font-size: 1.12rem; margin-bottom: 12px; }
.card p { color: var(--grey); font-size: 0.86rem; line-height: 1.8; }
.card-meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--blue); display: flex; justify-content: space-between; }

/* ── MODULES ── */
.module-list { max-width: 900px; margin: 0; }
.module-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.module-item:hover { box-shadow: var(--shadow-lift); }
.module-item.open { border-color: var(--blue); }
.module-header {
  padding: 22px 26px; display: flex; align-items: center; gap: 20px;
  cursor: pointer;
}
.module-num { font-family: var(--sans); font-weight: 900; font-size: 1.5rem; color: var(--border-light); width: 40px; text-align: center; transition: color 0.25s var(--ease); }
.module-item.open .module-num { color: var(--blue); }
.module-info { flex: 1; }
.module-info h4 { font-size: 1.02rem; margin-bottom: 4px; font-weight: 800; }
.module-info p { font-size: 0.78rem; color: var(--grey); font-weight: 400; letter-spacing: 0; }
.module-status { font-size: 0.58rem; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 999px; }
.module-status.locked { background: var(--red-dim); color: var(--red); }
.module-status.ready { background: var(--green-dim); color: var(--green); }
.module-status.in-progress { background: var(--gold-glow); color: var(--gold-dim); }
.module-toggle { color: var(--grey); font-size: 0.8rem; transition: transform 0.3s var(--ease); }
.module-item.open .module-toggle { transform: rotate(180deg); color: var(--blue); }
.module-body {
  padding: 0 26px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.module-item.open .module-body { max-height: 600px; padding: 0 26px 26px 86px; }
.module-body p { color: var(--grey); font-size: 0.85rem; margin-bottom: 12px; }
.module-body ul { margin-left: 18px; color: var(--grey); font-size: 0.85rem; }
.module-body ul li { margin-bottom: 7px; }
@media (max-width: 640px) {
  .module-item.open .module-body { padding-left: 26px; }
}

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.pricing-grid.single { max-width: 420px; grid-template-columns: 1fr; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 36px;
  text-align: left; position: relative; box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pricing-card.featured {
  border-color: var(--gold); border-width: 2px;
}
.pricing-badge {
  display: inline-block; background: var(--gold); color: var(--white); font-size: 0.58rem;
  letter-spacing: 0.12em; padding: 6px 14px; font-weight: 700; border-radius: 999px;
  white-space: nowrap; margin-bottom: 22px;
}
.pricing-name { font-family: var(--sans); font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.pricing-price { font-family: var(--sans); font-weight: 900; font-size: 3.4rem; color: var(--blue); margin-bottom: 8px; letter-spacing: -0.02em; }
.pricing-price span { font-size: 1.2rem; color: var(--grey); }
.pricing-desc { font-size: 0.85rem; color: var(--grey); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; font-size: 0.83rem; color: var(--mid); border-bottom: 1px solid var(--border); padding-left: 24px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-btn {
  display: inline-block; width: 100%; text-align: center; padding: 16px 36px; font-size: 0.7rem;
  letter-spacing: 0.1em; font-weight: 700;
  background: var(--gold); color: var(--white); border: none; cursor: pointer; border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.pricing-btn:hover { background: var(--gold-bright); box-shadow: 0 8px 20px -6px rgba(201,146,46,0.45); }
.pricing-btn.secondary { background: transparent; border: 1px solid var(--border-light); color: var(--blue); }
.pricing-btn.secondary:hover { border-color: var(--blue); background: var(--blue-pale); box-shadow: none; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  position: relative; box-shadow: var(--shadow-card);
}
.testimonial::before { content: '"'; font-family: var(--sans); font-weight: 900; font-size: 3.2rem; color: var(--blue-pale); position: absolute; top: 12px; left: 22px; line-height: 1; }
.testimonial-text { font-size: 0.85rem; color: var(--mid); margin-bottom: 18px; padding-top: 24px; }
.testimonial-author { font-size: 0.78rem; color: var(--blue); font-weight: 700; }
.testimonial-role { font-size: 0.6rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; font-size: 0.95rem; font-weight: 700; color: var(--ink); transition: color 0.25s var(--ease);
}
.faq-question:hover { color: var(--blue); }
.faq-toggle { flex-shrink: 0; font-size: 0.8rem; color: var(--grey); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-toggle { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  padding: 0 4px; max-height: 0; overflow: hidden;
  font-size: 0.85rem; color: var(--grey); line-height: 1.8;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 4px 22px; }

/* ── DASHBOARD ── */
.dashboard-layout { display: flex; min-height: 100vh; background: var(--bg-alt); }
.dash-sidebar {
  width: 260px; background: var(--blue-deep); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh; z-index: 100;
}
.dash-brand { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.dash-brand h2 { font-size: 0.95rem; color: var(--white); }
.dash-brand p { font-size: 0.58rem; color: var(--gold-bright); letter-spacing: 0.12em; margin-top: 6px; }
.dash-nav { flex: 1; overflow-y: auto; padding: 12px 0; }
.dash-nav-item {
  padding: 13px 20px; display: flex; align-items: center; gap: 12px;
  cursor: pointer; color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 600; transition: all 0.2s;
  border-left: 3px solid transparent;
}
.dash-nav-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.dash-nav-item.active { background: rgba(255,255,255,0.08); color: var(--gold-bright); border-left-color: var(--gold-bright); }
.dash-nav-icon { width: 20px; text-align: center; font-size: 0.9rem; }
.dash-main { margin-left: 260px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.dash-header {
  height: 64px; background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; padding: 0 28px;
  position: sticky; top: 0; z-index: 50;
}
.dash-header h2 { font-size: 1rem; }
.dash-content { flex: 1; padding: 28px; overflow-y: auto; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-card);
}
.stat-card-value { font-family: var(--sans); font-weight: 900; font-size: 2rem; color: var(--blue); letter-spacing: -0.02em; }
.stat-card-label { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--grey); margin-top: 6px; }
.progress-bar { height: 6px; background: var(--border); border-radius: 999px; margin-top: 12px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 999px; transition: width 0.5s; }

/* ── QUIZ ENGINE ── */
.quiz-container { max-width: 750px; margin: 0 auto; }
.quiz-header-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; margin-bottom: 28px; border-bottom: 1px solid var(--border);
}
.quiz-timer {
  font-family: var(--mono); font-weight: 700; font-size: 1.3rem; color: var(--blue);
}
.quiz-timer.warning { color: var(--red); }
.quiz-progress-info { font-size: 0.75rem; color: var(--grey); font-weight: 500; }
.quiz-question-number { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 14px; }
.quiz-question-text { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 26px; line-height: 1.5; }
.quiz-category { display: inline-block; padding: 5px 12px; background: var(--blue-pale); color: var(--blue); font-size: 0.58rem; letter-spacing: 0.08em; margin-bottom: 18px; border-radius: 999px; font-weight: 700; }

.quiz-options { list-style: none; }
.quiz-option {
  padding: 17px 20px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px;
  cursor: pointer; transition: all 0.2s var(--ease); display: flex; align-items: center; gap: 14px;
  font-size: 0.9rem; color: var(--mid); background: var(--surface);
}
.quiz-option:hover { border-color: var(--blue); color: var(--ink); background: var(--blue-pale); }
.quiz-option.selected { background: var(--blue-pale); border-color: var(--blue); color: var(--ink); }
.quiz-option.correct { background: var(--green-dim); border-color: var(--green); color: var(--green); }
.quiz-option.wrong { background: var(--red-dim); border-color: var(--red); color: var(--red); }
.quiz-option-letter {
  width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.quiz-option.selected .quiz-option-letter { border-color: var(--blue); color: var(--blue); }
.quiz-option.correct .quiz-option-letter { border-color: var(--green); color: var(--green); }
.quiz-option.wrong .quiz-option-letter { border-color: var(--red); color: var(--red); }

.quiz-explanation {
  display: none; padding: 18px 22px; background: var(--blue-pale); border-radius: var(--radius);
  border-left: 4px solid var(--blue); margin-top: 18px; font-size: 0.8rem; color: var(--mid); line-height: 1.7;
}
.quiz-explanation.show { display: block; }

.quiz-nav-buttons { display: flex; justify-content: space-between; margin-top: 26px; gap: 16px; }
.quiz-btn {
  padding: 13px 28px; border: 1px solid var(--border); background: var(--surface); border-radius: 999px;
  color: var(--mid); font-size: 0.68rem; letter-spacing: 0.1em; font-weight: 700;
  cursor: pointer; transition: all 0.2s var(--ease);
}
.quiz-btn:hover { background: var(--blue-pale); border-color: var(--blue); color: var(--blue); }
.quiz-btn.primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.quiz-btn.primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.quiz-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── QUIZ RESULTS ── */
.quiz-results {
  display: none; text-align: center; padding: 56px 24px;
}
.quiz-results.show { display: block; }
.quiz-score { font-family: var(--sans); font-weight: 900; font-size: 5.5rem; color: var(--blue); line-height: 1; letter-spacing: -0.03em; }
.quiz-score-label { font-size: 1rem; color: var(--grey); margin-top: 10px; }
.quiz-result-badge {
  display: inline-block; padding: 9px 26px; margin-top: 26px; border-radius: 999px;
  font-size: 0.68rem; letter-spacing: 0.12em; font-weight: 700;
}
.quiz-result-badge.pass { background: var(--green-dim); color: var(--green); }
.quiz-result-badge.fail { background: var(--red-dim); color: var(--red); }
.quiz-result-details { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.quiz-result-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-card); }
.quiz-result-stat-value { font-family: var(--sans); font-weight: 900; font-size: 1.6rem; color: var(--ink); }
.quiz-result-stat-label { font-size: 0.58rem; color: var(--grey); letter-spacing: 0.1em; }

/* ── EXAM INFO ── */
.exam-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin: 36px 0 0; }
.exam-fact {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: left;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); box-shadow: var(--shadow-card);
  border-left: 3px solid transparent;
}
.exam-fact:hover { border-left-color: var(--gold); box-shadow: var(--shadow-lift); }
.exam-fact-value { font-family: var(--sans); font-weight: 900; font-size: 2rem; color: var(--blue); letter-spacing: -0.02em; }
.exam-fact-label { font-size: 0.6rem; color: var(--grey); letter-spacing: 0.1em; margin-top: 10px; display: block; }

/* ── CTA ── */
.cta-section {
  text-align: center; padding: 110px 6vw;
  background: linear-gradient(150deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.cta-section h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 18px; color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.78); max-width: 500px; margin: 0 auto 36px; font-size: 0.95rem; }
.cta-section .nav-cta { background: var(--gold); color: var(--white); }
.cta-section .nav-cta:hover { background: var(--gold-bright); }

/* ── FOOTER ── */
footer { text-align: center; padding: 52px 24px; color: var(--grey); font-size: 0.75rem; border-top: 1px solid var(--border); background: var(--bg-alt); }
footer p:first-child { letter-spacing: 0.04em; font-weight: 700; color: var(--mid); font-size: 0.75rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero h1, .hero-sub, .hero > a, .hero-stats { animation: none; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav > a.nav-cta { display: none; }
  .nav-logo { font-size: 0.92rem; }
  .nav-toggle { display: flex; }
  .hero { padding: 7rem 24px 3.5rem; align-items: flex-start; }
  .hero-stats { gap: 20px 0; }
  .hero-stat { min-width: 45%; }
  .section { padding: 72px 24px; }
  .dash-sidebar { display: none; }
  .dash-main { margin-left: 0; }
  .dashboard-layout.mobile-sidebar .dash-sidebar { display: flex; position: fixed; width: 100%; z-index: 200; }
}
@media (min-width: 769px) {
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.pulse { animation: pulse 2s infinite; }
