
/* Accessible Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #ffffff;
  color: var(--color-orange-main);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-orange-main);
  text-decoration: none;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skip-link:focus {
  top: 16px;
}

/* ==========================================================================
   SuperTET.com — Modern Exam Platform Stylesheet
   Theme: Vibrant Orange Header & Footer with Refined, Beautiful Inner Sections
   Mobile-First, High-Performance, Core Web Vitals Optimized
   ========================================================================== */

/* 1. Design Tokens & Root Variables */
:root {
  /* Brand Orange & Accents */
  --color-orange-main: #ea580c;
  --color-orange-dark: #c2410c;
  --color-orange-deep: #9a3412;
  --color-orange-darker: #7c2d12;
  --color-orange-light: #f97316;
  --color-orange-soft: #fff7ed;
  --color-orange-tint: #ffedd5;

  /* Primary Deep Navy (for text & balance) */
  --color-primary: #0f2b48;
  --color-primary-dark: #091a2c;
  --color-primary-light: #1b426d;

  /* Modern Neutral Surface & Borders */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-warm-subtle: #fefaf6;
  --bg-muted: #f1f5f9;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-warm: #fed7aa;
  --border-subtle: #f1f5f9;
  --border-strong: #94a3b8;

  /* Typography */
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;
  --text-orange: #c2410c;

  /* Status Colors (Semantic) */
  --status-official-bg: #ecfdf5;
  --status-official-text: #047857;
  --status-official-border: #a7f3d0;

  --status-verified-bg: #eff6ff;
  --status-verified-text: #1d4ed8;
  --status-verified-border: #bfdbfe;

  --status-expected-bg: #fffbeb;
  --status-expected-text: #b45309;
  --status-expected-border: #fde68a;

  --status-tba-bg: #fdf4ff;
  --status-tba-text: #701a75;
  --status-tba-border: #f5d0fe;

  --status-historical-bg: #f1f5f9;
  --status-historical-text: #475569;
  --status-historical-border: #cbd5e1;

  --status-updated-bg: #ecfeff;
  --status-updated-text: #0e7490;
  --status-updated-border: #a5f3fc;

  /* Layered Modern Elevation & Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 32px -6px rgba(15, 23, 42, 0.10), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
  --shadow-orange: 0 4px 14px rgba(234, 88, 12, 0.28);
  --shadow-orange-lg: 0 8px 24px rgba(234, 88, 12, 0.35);

  /* Modern Radius Scale */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout & Spacing */
  --container-max: 1240px;
  --container-pad: clamp(16px, 3.8vw, 32px);
  --section-space: clamp(48px, 6vw, 80px);
  
  /* System Font Stack for instant LCP */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* 2. Global Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img, svg, picture, video, canvas, iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  max-width: 100%;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-break: break-word;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem; /* 16px min prevents iOS viewport zoom */
}

a {
  color: var(--color-orange-dark);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: var(--color-orange-main);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-orange-light);
  outline-offset: 2px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Visually Hidden Utility for Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 3. Reusable Component System */

/* Status Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  line-height: 1.35;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.badge-official {
  background-color: var(--status-official-bg);
  color: var(--status-official-text);
  border-color: var(--status-official-border);
}

.badge-verified {
  background-color: var(--status-verified-bg);
  color: var(--status-verified-text);
  border-color: var(--status-verified-border);
}

.badge-expected {
  background-color: var(--status-expected-bg);
  color: var(--status-expected-text);
  border-color: var(--status-expected-border);
}

.badge-tba {
  background-color: var(--status-tba-bg);
  color: var(--status-tba-text);
  border-color: var(--status-tba-border);
}

.badge-historical {
  background-color: var(--status-historical-bg);
  color: var(--status-historical-text);
  border-color: var(--status-historical-border);
}

.badge-updated {
  background-color: var(--status-updated-bg);
  color: var(--status-updated-text);
  border-color: var(--status-updated-border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange-main) 0%, var(--color-orange-dark) 100%);
  color: #ffffff;
  border-color: var(--color-orange-dark);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--color-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-warm-subtle);
  border-color: var(--color-orange-light);
  color: var(--color-orange-dark);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-accent:hover {
  background-color: var(--color-primary-light);
  color: #ffffff;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-block {
  width: 100%;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-orange-dark);
  font-weight: 600;
  padding: 4px 0;
  min-height: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-link:hover {
  color: var(--color-orange-main);
}

/* Cards - Beautiful, Modern, Layered & Interactive */
.card {
  background-color: var(--bg-surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 26px);
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fed7aa 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.card:hover {
  border-color: #fdba74;
  box-shadow: 0 12px 28px -4px rgba(234, 88, 12, 0.13), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

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

.card .btn-link {
  transition: transform 0.18s ease, color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}

.card:hover .btn-link {
  color: var(--color-orange-main);
  transform: translateX(3px);
}

/* Section Typography */
.section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-alt {
  background-color: var(--bg-warm-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-orange-main);
  background: var(--color-orange-soft);
  border: 1px solid var(--border-warm);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  line-height: 1.35;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 780px;
  margin-top: 10px;
  line-height: 1.65;
}

/* Info Callout Box */
.info-box {
  background-color: var(--color-orange-soft);
  border-left: 4px solid var(--color-orange-main);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: #7c2d12;
  font-size: 0.94rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.info-box svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-orange-main);
}

.info-box strong {
  color: #431407;
}

/* 2026 Exam Pattern Alert & Feature Cards */
.alert-pattern-banner {
  background: linear-gradient(135deg, #fffaf5 0%, #fff7ed 50%, #ffedd5 100%);
  border: 2px solid var(--color-orange-main);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.8vw, 32px);
  margin: 24px 0;
  box-shadow: 0 8px 24px -4px rgba(234, 88, 12, 0.14), 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.pattern-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .pattern-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pattern-stat-card {
  background-color: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.05);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pattern-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-orange-main);
  box-shadow: 0 8px 20px -2px rgba(234, 88, 12, 0.16);
}

.pattern-stat-num {
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 800;
  color: var(--color-orange-dark);
  line-height: 1.1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.pattern-stat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.pattern-stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.marking-formula-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #fed7aa;
}

.formula-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.formula-pill-correct {
  color: #065f46;
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.formula-pill-wrong {
  color: #991b1b;
  border-color: #fca5a5;
  background: #fef2f2;
}

.formula-pill-unattempted {
  color: #475569;
  border-color: #cbd5e1;
  background: #f8fafc;
}

/* Hero 2-Column Responsive Layout & Spotlight Showcase */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 40px;
  }
}

.hero-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #7dd3fc;
  color: #0284c7;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 15px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.16);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0284c7;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  animation: pulseGlowSky 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGlowSky {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 45%, #c2410c 100%) !important;
  border: 1px solid #ea580c !important;
  color: #ffffff !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.4), 0 2px 4px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  min-height: 50px;
  cursor: pointer;
}

.hero-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 26px rgba(234, 88, 12, 0.5) !important;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ea580c 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.hero-btn-primary svg {
  transition: transform 0.2s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff !important;
  border: 1.5px solid #7dd3fc !important;
  color: #0369a1 !important;
  padding: 13px 26px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.08) !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  min-height: 50px;
  cursor: pointer;
}

.hero-btn-secondary:hover {
  border-color: #0284c7 !important;
  color: #0284c7 !important;
  background: #f0f9ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.18) !important;
  text-decoration: none !important;
}

.hero-trust-ribbon {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px dashed rgba(56, 189, 248, 0.4);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #091a2c;
  background: #ffffff;
  padding: 8px 15px;
  border-radius: var(--radius-full);
  border: 1.5px solid #bae6fd;
  box-shadow: 0 2px 6px rgba(14, 165, 233, 0.1);
}

.hero-trust-item svg {
  flex-shrink: 0;
}

.hero-trust-item strong {
  color: #0f172a;
}

/* Hero Spotlight Showcase Card */
.hero-spotlight-card {
  background: linear-gradient(155deg, #ffffff 0%, #f8fcff 45%, #f0f9ff 100%);
  border: 2px solid rgba(186, 230, 253, 0.95);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 
    0 20px 48px -10px rgba(14, 165, 233, 0.18),
    0 8px 24px -4px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.hero-spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 50%, #f97316 100%);
}

.hero-spotlight-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 28px 56px -10px rgba(14, 165, 233, 0.24),
    0 12px 28px -4px rgba(15, 23, 42, 0.08);
  border-color: #38bdf8;
}

.hero-spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-warm);
}

.hero-spotlight-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-pulse-indicator {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pulse-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #16a34a;
}

.pulse-ring {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(22, 163, 74, 0.35);
  animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-spotlight-badge {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.hero-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.spotlight-stat-box {
  background: #ffffff;
  border: 1.5px solid #bae6fd;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.06);
  position: relative;
}

.spotlight-stat-box:hover {
  background: #ffffff;
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.18);
}

.spotlight-stat-wrong {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-color: #fca5a5;
}

.spotlight-stat-wrong:hover {
  border-color: #dc2626;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.15);
}

.spotlight-stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.spotlight-stat-val {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.spotlight-val-correct {
  color: #047857;
  text-shadow: 0 1px 2px rgba(4, 120, 87, 0.12);
}

.spotlight-val-wrong {
  color: #dc2626;
  text-shadow: 0 1px 2px rgba(220, 38, 38, 0.12);
}

.spotlight-stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 600;
}

.hero-spotlight-strip {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(14, 165, 233, 0.08);
}

.spotlight-max-tag {
  background: #ea580c;
  color: #ffffff;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 3px rgba(234, 88, 12, 0.25);
}

.hero-spotlight-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spotlight-cadre-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #bae6fd;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.spotlight-cadre-link:hover {
  background: #f0f9ff;
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.16);
}

.cadre-link-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cadre-link-text strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.cadre-link-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Subject Grid & Expandable Cards */
.subject-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .subject-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .subject-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.subject-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
}

.subject-card:hover {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.subject-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
  gap: 8px;
}

.subject-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

.subject-card-badge {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--color-orange-dark);
  background: var(--color-orange-soft);
  border: 1px solid #fed7aa;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.subject-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin-top: 8px;
}

.subject-tag-item {
  font-size: 0.78rem;
  background-color: var(--bg-warm-subtle);
  border: 1px solid #fed7aa;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-body);
}

/* Junior Subject Group Selection Component */
.junior-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .junior-choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.junior-choice-card {
  background: #ffffff;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
}

.junior-choice-card:hover {
  border-color: var(--color-orange-main);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.14);
  transform: translateY(-2px);
}

.junior-choice-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-orange-dark);
  background: var(--color-orange-soft);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid #fed7aa;
  align-self: flex-start;
}

.junior-choice-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.junior-choice-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

/* Negative Marking Calculation Box & Strategy Box */
.calc-example-box {
  background: #ffffff;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin: 18px 0;
}

.calc-example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0;
}

@media (min-width: 600px) {
  .calc-example-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.calc-example-item {
  background: var(--bg-warm-subtle);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.calc-example-val {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.calc-example-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.strategy-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border: 2px solid #86efac;
  border-left: 6px solid #16a34a;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.5vw, 28px);
  box-shadow: 0 4px 16px -2px rgba(22, 101, 52, 0.08);
  margin: 20px 0;
}

.strategy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.strategy-list li {
  font-size: 0.92rem;
  color: #14532d;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.strategy-list li svg {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 3px;
}


/* ==========================================================================
   4. ORANGE HEADER COMPONENT
   ========================================================================== */
.site-header {
  background: 
    radial-gradient(ellipse 70% 80% at 85% -15%, rgba(255, 237, 213, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 120%, rgba(154, 52, 18, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, #9a3412 0%, #c2410c 24%, #ea580c 58%, #f97316 88%, #fb923c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px -2px rgba(154, 52, 18, 0.38), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange-main);
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fed7aa;
}

/* Desktop Navigation - Clean White Text with Subtle Translucent Pill Hover */
.site-nav {
  display: none;
}

@media (min-width: 992px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: nowrap;
  }
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  padding: 7px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.18s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.nav-link.active {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

/* Nav Dropdown (More) */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  min-width: 210px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-medium);
  padding: 8px 0;
  z-index: 250;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 8px 16px;
  font-size: 0.86rem;
  color: var(--text-main);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item:hover {
  background-color: var(--color-orange-soft);
  color: var(--color-orange-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* High-Contrast Search Trigger on Orange Header */
.search-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.18s ease;
  min-height: 44px;
  min-width: 175px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-trigger-btn:hover {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

@media (max-width: 639px) {
  .search-trigger-btn {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-sm);
  }
  .search-trigger-btn span:not(.sr-only) {
    display: none;
  }
}

@media (min-width: 1200px) {
  .search-trigger-btn {
    min-width: 200px;
  }
}

.search-shortcut-key {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 1px 5px;
  color: #fed7aa;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #9a3412;
  border-bottom: 2px solid #7c2d12;
  box-shadow: var(--shadow-lg);
  padding: 14px var(--container-pad) 20px var(--container-pad);
  flex-direction: column;
  gap: 12px;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav-drawer.is-open {
  display: flex;
}

.mobile-nav-group {
  margin-bottom: 6px;
}

.mobile-nav-group-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fed7aa;
  padding: 6px 12px 4px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 4px;
}

.mobile-nav-group .nav-link {
  padding: 8px 12px;
  font-size: 0.92rem;
  border-bottom: none;
  display: block;
}

/* Two Clear Paths: Primary & Junior */
.path-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 28px 0;
}

@media (min-width: 768px) {
  .path-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.path-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border: 2px solid #fed7aa;
  border-left: 5px solid var(--color-orange-main);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.8vw, 30px);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.path-card:hover {
  border-color: var(--color-orange-main);
  box-shadow: 0 14px 32px -4px rgba(234, 88, 12, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.path-card-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-orange-main);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.path-card-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.path-card-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.path-card-spec {
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.mobile-nav-drawer.is-open {
  display: flex;
}

.mobile-nav-drawer .nav-link {
  padding: 12px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

/* 5. Breadcrumb Component */
.breadcrumb-nav {
  background-color: var(--bg-warm-subtle);
  border-bottom: 1px solid #fed7aa;
  padding: 9px 0;
  font-size: 0.82rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--color-orange-dark);
}

.breadcrumb-item a:hover {
  color: var(--color-orange-main);
  text-decoration: underline;
}

.breadcrumb-separator {
  margin-left: 8px;
  color: #f97316;
  font-size: 0.75rem;
}

.breadcrumb-item[aria-current="page"] {
  font-weight: 700;
  color: var(--text-main);
}

/* 6. Hero & Status Dashboard Section */
.hero-section {
  position: relative;
  background-color: #e0f2fe;
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(42px, 5.5vw, 68px);
  border-bottom: 1px solid #bae6fd;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160' fill='none' stroke='%230284c7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E %3Cg transform='translate(15, 20)'%3E %3Cpolygon points='28,4 56,18 28,32 0,18' fill='rgba(14, 165, 233, 0.04)'/%3E %3Cpath d='M10,23 v12 c0,0 9,7 18,7 s18,-7 18,-7 v-12' fill='none'/%3E %3Cpath d='M50,21 v18 l2,2' fill='none'/%3E %3Ccircle cx='52' cy='42' r='1.5' fill='%230284c7'/%3E %3C/g%3E %3Cg transform='translate(95, 22)'%3E %3Cpath d='M0,12 C8,5 18,5 26,9 C34,5 44,5 52,12 v22 C44,15 34,15 26,19 C18,15 8,15 0,22 Z' fill='rgba(14, 165, 233, 0.04)'/%3E %3Cline x1='26' y1='9' x2='26' y2='34'/%3E %3Cline x1='6' y1='18' x2='20' y2='18' stroke-dasharray='2,2'/%3E %3Cline x1='32' y1='18' x2='46' y2='18' stroke-dasharray='2,2'/%3E %3C/g%3E %3Cg transform='translate(25, 95)'%3E %3Cpolygon points='6,28 0,34 6,34' fill='%230284c7'/%3E %3Crect x='7' y='10' width='8' height='24' transform='rotate(-45 11 22)' fill='rgba(14, 165, 233, 0.04)'/%3E %3Cline x1='12' y1='15' x2='27' y2='30'/%3E %3C/g%3E %3Cg transform='translate(100, 95)'%3E %3Cpolygon points='0,40 45,40 45,-5' fill='rgba(14, 165, 233, 0.04)'/%3E %3Cpolygon points='12,32 37,32 37,7' fill='none'/%3E %3Cline x1='45' y1='6' x2='40' y2='6'/%3E %3Cline x1='45' y1='18' x2='40' y2='18'/%3E %3Cline x1='45' y1='30' x2='40' y2='30'/%3E %3Cline x1='28' y1='40' x2='28' y2='35'/%3E %3Cline x1='16' y1='40' x2='16' y2='35'/%3E %3C/g%3E %3Cg transform='translate(68, 62)'%3E %3Cpath d='M12,0 C5.5,0 0,5.5 0,12 C0,16.5 3,19 4.5,22 H19.5 C21,19 24,16.5 24,12 C24,5.5 18.5,0 12,0 Z' fill='rgba(14, 165, 233, 0.04)'/%3E %3Cline x1='6' y1='26' x2='18' y2='26'/%3E %3Cline x1='8' y1='30' x2='16' y2='30'/%3E %3Cline x1='12' y1='-5' x2='12' y2='-2'/%3E %3Cline x1='-3' y1='5' x2='0' y2='7'/%3E %3Cline x1='27' y1='5' x2='24' y2='7'/%3E %3C/g%3E %3Ccircle cx='8' cy='80' r='1.5' fill='%230284c7' opacity='0.4'/%3E %3Ccircle cx='152' cy='75' r='1.5' fill='%230284c7' opacity='0.4'/%3E %3Ccircle cx='80' cy='12' r='1.5' fill='%230284c7' opacity='0.4'/%3E %3Ccircle cx='75' cy='148' r='1.5' fill='%230284c7' opacity='0.4'/%3E %3C/svg%3E");
  background-size: 160px 160px;
  background-repeat: repeat;
  opacity: 0.09;
  pointer-events: none;
}

.hero-kicker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.last-updated-tag {
  font-size: 0.8rem;
  color: #0369a1;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1.5px solid #bae6fd;
  box-shadow: 0 1px 3px rgba(14, 165, 233, 0.1);
  display: inline-flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 4.3vw, 3.15rem);
  font-weight: 900;
  color: #091a2c;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #0f2b48;
  max-width: 860px;
  line-height: 1.72;
  font-weight: 600;
  margin-bottom: 26px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Hero Status Dashboard */
.status-dashboard-wrap {
  margin-top: 16px;
}

.dashboard-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dashboard-title {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-orange-dark);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 520px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.status-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  position: relative;
}

.status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.status-card:hover {
  transform: translateY(-3px);
  border-color: #fdba74;
  box-shadow: 0 8px 20px -2px rgba(234, 88, 12, 0.12), 0 2px 6px rgba(0,0,0,0.04);
}

.status-card:hover::before {
  background: var(--color-orange-main);
}

.status-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.status-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.status-card-val {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
  line-height: 1.2;
}

.status-card-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 7. Quick Access Bar */
.quick-access-section {
  padding: 20px 0;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.quick-access-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-orange-dark);
  margin-bottom: 12px;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: stretch;
}

@media (min-width: 480px) {
  .quick-access-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .quick-access-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-access-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.quick-access-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  min-height: 44px;
  height: 100%;
  line-height: 1.25;
  transition: all 0.2s ease;
  min-width: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.quick-access-item:hover {
  background: #fff7ed;
  color: var(--color-orange-main);
  border-color: var(--border-warm);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

/* 8. Tables (WOW-Factor Executive Status Table & Comparative Layout) */
.table-responsive,
.responsive-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
  margin-bottom: 20px;
}

.data-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.94rem;
}

.data-table th, .data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  vertical-align: middle;
}

.data-table th:last-child, .data-table td:last-child {
  border-right: none;
}

.data-table th {
  background: linear-gradient(180deg, #fff7ed 0%, #fef3c7 100%);
  color: var(--color-orange-darker);
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #fed7aa;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background-color: #fffaf5;
}

.data-table-label {
  font-weight: 600;
  color: var(--text-main);
}

.data-table-label a {
  color: var(--color-primary);
  font-weight: 700;
}

.data-table-label a:hover {
  color: var(--color-orange-main);
}

/* WOW-Factor Executive Status Table */
.wow-table-card {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px -4px rgba(234, 88, 12, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-top: 24px;
}

.wow-table-header-bar {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 16px 22px;
  border-bottom: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.wow-table-header-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-orange-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wow-status-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.wow-status-table th {
  background: #fafaf9;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}

.wow-status-table th:last-child {
  border-right: none;
}

.wow-status-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  vertical-align: middle;
  transition: background-color 0.15s ease;
}

.wow-status-table td:last-child {
  border-right: none;
}

.wow-status-table tbody tr {
  transition: all 0.15s ease;
  position: relative;
}

.wow-status-table tbody tr:hover {
  background-color: #fffbf7;
}

.wow-status-table tbody tr:last-child td {
  border-bottom: none;
}

.param-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.param-icon-pill {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.param-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.25;
}

.param-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.15s ease;
}

.param-title a:hover {
  color: var(--color-orange-main);
}

.param-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.wow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.wow-badge-available {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.wow-badge-revised {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.wow-badge-negative {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.wow-badge-tba {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.wow-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-orange-main);
  border: 1px solid var(--color-orange-dark);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(234, 88, 12, 0.2);
}

.wow-action-btn:hover {
  background: var(--color-orange-dark);
  border-color: #9a3412;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
  transform: translateY(-1px);
}

.wow-action-btn svg {
  transition: transform 0.18s ease;
}

.wow-action-btn:hover svg {
  transform: translateX(3px);
}

/* 9. "What is Super TET" Section */
.content-text-block {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-body);
}

.content-text-block p {
  margin-bottom: 14px;
}

.distinction-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .distinction-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.distinction-card {
  background-color: var(--bg-surface);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.distinction-card h4 {
  font-size: 1.02rem;
  color: var(--color-orange-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

/* 10. Latest Super TET 2026 Update Panel */
.latest-update-panel {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
  border: 2px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.08);
  margin: 18px 0;
}

.update-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #fed7aa;
}

.update-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.update-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

@media (min-width: 640px) {
  .update-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.update-matrix-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  min-width: 0;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.update-matrix-item:hover {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.update-matrix-item h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-orange-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.update-matrix-item p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* 11. Core Information Cards (6 Cards) & Beautiful Resource Cards */
.core-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .core-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .core-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.core-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.core-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.core-card-list {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.core-card-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px dashed var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.core-card-list li:last-child {
  border-bottom: none;
}

.core-card-list .label {
  color: var(--text-muted);
  font-weight: 500;
  flex: 1 1 auto;
}

.core-card-list .value {
  font-weight: 600;
  text-align: right;
  flex: 0 0 auto;
}

/* Beautiful Modern Key Exam Resource Cards */
.resource-card {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fed7aa 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-orange-main);
  box-shadow: 0 14px 30px -4px rgba(234, 88, 12, 0.16), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
}

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

.resource-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.resource-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.resource-card:hover .resource-card-icon {
  transform: scale(1.08) rotate(-2deg);
}

.resource-icon-orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.resource-icon-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.resource-icon-green {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.resource-icon-purple {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  color: #9333ea;
  border: 1px solid #e9d5ff;
}

.resource-icon-amber {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  color: #d97706;
  border: 1px solid #fde68a;
}

.resource-icon-rose {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  color: #e11d48;
  border: 1px solid #fecdd3;
}

.resource-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}

.resource-card:hover .resource-card-title {
  color: var(--color-orange-main);
}

.resource-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.resource-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
}

.resource-card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: var(--radius-sm);
  color: var(--color-orange-darker);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.resource-card-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border-color: #ea580c;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.28);
  transform: translateY(-2px);
}

.resource-card-btn svg {
  transition: transform 0.2s ease;
}

.resource-card-btn:hover svg {
  transform: translateX(4px);
}

.resource-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-orange-main);
  text-decoration: none;
  transition: all 0.18s ease;
}

.resource-action-link svg {
  transition: transform 0.18s ease;
}

.resource-card:hover .resource-action-link {
  color: var(--color-orange-dark);
}

.resource-card:hover .resource-action-link svg {
  transform: translateX(4px);
}

/* 12. Preparation Hub */
.prep-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .prep-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .prep-hub-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.prep-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.prep-card:hover {
  transform: translateY(-4px);
  border-color: #fdba74;
  box-shadow: 0 12px 28px -4px rgba(234, 88, 12, 0.14);
}

.prep-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: var(--color-orange-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid #fed7aa;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.prep-card:hover .prep-card-icon {
  transform: scale(1.08) rotate(-2deg);
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.28);
}

.prep-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.prep-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* 13. Previous Year Papers */
.pyq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .pyq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pyq-card {
  border-left: 4px solid var(--color-orange-main);
}

.pyq-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pyq-details-list {
  list-style: none;
  margin: 14px 0 20px 0;
}

.pyq-details-list li {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pyq-details-list svg {
  color: #10b981;
  flex-shrink: 0;
}

/* 14. Mock Test Section */
.mock-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .mock-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mock-card {
  text-align: center;
  padding: 26px 20px;
}

.mock-badge-wrap {
  margin-bottom: 14px;
}

.mock-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.mock-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.mock-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.mock-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* 15. Practice Questions Module */
.practice-container {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.practice-tabs {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.practice-tab-btn {
  background: var(--bg-warm-subtle);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.18s ease;
}

.practice-tab-btn.is-active, .practice-tab-btn:hover {
  background: var(--color-orange-main);
  color: #ffffff;
  border-color: var(--color-orange-main);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.practice-question-card {
  background-color: var(--bg-warm-subtle);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 16px;
}

.pq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pq-subject-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-orange-dark);
  text-transform: uppercase;
}

.pq-text {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 14px;
}

.pq-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .pq-options {
    grid-template-columns: 1fr 1fr;
  }
}

.pq-option {
  padding: 10px 14px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
}

.pq-solution {
  display: none;
  background-color: #ecfdf5;
  border-left: 3px solid #10b981;
  padding: 12px 16px;
  margin-top: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: #065f46;
}

.pq-solution.is-visible {
  display: block;
}

/* 16. Candidate Preparation Roadmap (Left-Rail Sequential Timeline) */
.roadmap-timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 10px 0 10px 10px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 27px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-orange-main) 0%, var(--border-warm) 100%);
}

.roadmap-step {
  position: relative;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange-main) 0%, var(--color-orange-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  border: 3px solid var(--bg-surface);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
  z-index: 2;
  margin-top: 10px;
}

.step-content {
  flex-grow: 1;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  min-width: 0;
  transition: all 0.18s ease;
}

.step-content:hover {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-orange-main);
  letter-spacing: 0.06em;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 3px 0 6px 0;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 8px;
}

/* 16b. Exam Practice & Study Materials Grid (4 cards in a single row on desktop) */
.prep-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .prep-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .prep-hub-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.prep-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}

.prep-card:hover {
  transform: translateY(-3px);
  border-color: #fdba74;
  box-shadow: 0 8px 24px -4px rgba(234, 88, 12, 0.14);
}

.prep-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--color-orange-main);
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.prep-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}

.prep-card:hover .prep-card-title {
  color: var(--color-orange-main);
}

.prep-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 18px;
}

.prep-card .btn {
  margin-top: auto;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 17. Useful Tools & Resources Dashboard (Aspirant Utilities) */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

/* Individual Utility Card */
.tool-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  min-width: 0;
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
}

/* Primary Featured Card: Mock Tests */
.tool-card-featured {
  border-color: #fed7aa;
  border-top: 3px solid var(--color-orange-main);
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.06), 0 6px 16px -2px rgba(234, 88, 12, 0.05);
}

.tool-card-featured:hover {
  border-color: #fb923c;
  border-top-color: var(--color-orange-main);
  box-shadow: 0 6px 20px -2px rgba(234, 88, 12, 0.14);
}

/* Secondary Historical Card */
.tool-card-secondary {
  background: #fafaf9;
  border-color: #e2e8f0;
  opacity: 0.95;
}

.tool-card-secondary:hover {
  border-color: #cbd5e1;
}

/* Card Top Bar: Badge + Icon */
.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tool-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.tool-badge-primary {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.tool-badge-neutral {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.tool-badge-secondary {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

.tool-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.tool-card-featured .tool-card-icon {
  background: #fff7ed;
  color: var(--color-orange-main);
  border-color: #fed7aa;
}

/* Card Title */
.tool-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Card Description */
.tool-card-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 14px;
}

/* Card Body Content */
.tool-card-body {
  margin-bottom: 16px;
}

/* Card 1: Compact Stat Matrix Strip */
.tool-stats-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: #fffaf5;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.tool-stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
}

.tool-stat-item svg {
  color: #ea580c;
  flex-shrink: 0;
}

.tool-status-line {
  font-size: 0.75rem;
  color: #ea580c;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tool-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ea580c;
  flex-shrink: 0;
}

/* Card 2: Feature Checklist */
.tool-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.tool-checklist li {
  font-size: 0.8rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.35;
}

.tool-checklist li svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Card 3: Two Plan Mini Rows */
.tool-plan-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tool-plan-row {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
}

.tool-plan-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
}

.tool-plan-sub {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 1px;
}

/* Card 4: Historical Note */
.tool-historical-box {
  background: #f1f5f9;
  border-left: 3px solid #94a3b8;
  border-radius: 0 6px 6px 0;
  padding: 8px 10px;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.4;
}

/* Bottom CTA Buttons */
.tool-card-btn {
  margin-top: auto;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.tool-btn-primary {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border: 1px solid #ea580c;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.22);
}

.tool-btn-primary:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}

.tool-btn-neutral {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  box-shadow: var(--shadow-xs);
}

.tool-btn-neutral:hover {
  border-color: #ea580c;
  color: #ea580c;
  background: #fff7ed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

.tool-btn-secondary {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
}

.tool-btn-secondary:hover {
  border-color: #94a3b8;
  color: #0f172a;
  background: #f8fafc;
  transform: translateY(-1px);
}

/* 18. Comparisons Section */
.comparisons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .comparisons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 19. Latest Updates & Bulletins Beautiful Cards */
.bulletin-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .bulletin-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .bulletin-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.bulletin-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  min-width: 0;
}

.bulletin-card:hover {
  transform: translateY(-3px);
  border-color: #fdba74;
  box-shadow: 0 8px 24px -4px rgba(234, 88, 12, 0.12);
}

.bulletin-card-featured {
  border-color: #fed7aa;
  border-top: 3.5px solid var(--color-orange-main);
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.06), 0 6px 18px -2px rgba(234, 88, 12, 0.08);
}

.bulletin-card-featured:hover {
  border-color: #ea580c;
  border-top-color: var(--color-orange-main);
  box-shadow: 0 10px 28px -4px rgba(234, 88, 12, 0.18);
}

.bulletin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.bulletin-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.bulletin-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}

.bulletin-card:hover .bulletin-card-title {
  color: var(--color-orange-main);
}

.bulletin-card-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bulletin-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fffaf5;
  border: 1px solid #ffedd5;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #c2410c;
  margin-bottom: 18px;
  align-self: flex-start;
}

.bulletin-card-footer {
  margin-top: auto;
  width: 100%;
}

.bulletin-btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border: 1px solid #ea580c;
  border-radius: 10px;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.22);
  box-sizing: border-box;
}

.bulletin-btn:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
  transform: translateY(-2px);
}

.bulletin-btn svg {
  transition: transform 0.2s ease;
}

.bulletin-btn:hover svg {
  transform: translateX(4px);
}

.bulletin-section-footer {
  margin-top: 24px;
  text-align: center;
}

/* Compatibility alias for any news-card elements */
.news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: #fdba74;
  box-shadow: 0 8px 24px -4px rgba(234, 88, 12, 0.12);
}

.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.news-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.news-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
}

.news-card .btn-link {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border: 1px solid #ea580c;
  border-radius: 8px;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.22);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.news-card .btn-link:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

/* 20. FAQ Accordion */
.faq-accordion {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100% !important;
  box-sizing: border-box;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
  border-color: var(--border-warm);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.08);
}

.faq-item.is-open {
  border-color: var(--border-warm);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.09);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  color: var(--color-orange-main);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-orange-dark);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* 21. Trust / Editorial & E-E-A-T Panel */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  min-width: 0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all 0.2s ease;
}

.trust-item:hover {
  border-color: var(--border-warm);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.08);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--color-orange-soft);
  color: var(--color-orange-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid #fed7aa;
}

.trust-item h4 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.author-panel {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.06);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange-main), var(--color-orange-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.author-info {
  flex: 1 1 240px;
  min-width: 240px;
}

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==========================================================================
   22. DEEP WARM ORANGE FOOTER COMPONENT
   ========================================================================== */
.site-footer {
  background: 
    radial-gradient(ellipse 75% 55% at 85% 10%, rgba(249, 115, 22, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 65% 50% at 15% 85%, rgba(194, 65, 12, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, #2e0f06 0%, #431407 18%, #7c2d12 52%, #551c09 82%, #1e0903 100%);
  color: #ffedd5;
  padding-top: clamp(52px, 7vw, 76px);
  padding-bottom: 36px;
  font-size: 0.9rem;
  border-top: 4px solid #f97316;
  box-shadow: 0 -8px 32px rgba(234, 88, 12, 0.18);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 237, 213, 0.65) 50%, transparent 100%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(4, 1fr);
  }
}

.footer-col {
  min-width: 0;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #fed7aa;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ffedd5;
  transition: all 0.15s ease;
  word-break: break-word;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-disclaimer-card {
  background-color: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: #fed7aa;
  line-height: 1.6;
}

.footer-disclaimer-card a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  color: #fdba74;
}

.back-to-top-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  transition: all 0.18s ease;
}

.back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* 23. Search Modal Dialog */
.search-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(32px, 8vh, 80px);
  padding-left: 14px;
  padding-right: 14px;
}

.search-modal-backdrop.is-active {
  display: flex;
}

.search-modal-box {
  background-color: var(--bg-surface);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid #fed7aa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-modal-header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.search-input-field {
  flex-grow: 1;
  border: none;
  font-size: 1.02rem;
  color: var(--text-main);
  background: transparent;
  outline: none;
}

.search-input-field::placeholder {
  color: var(--text-muted);
}

.search-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}

.search-close-btn:hover {
  color: var(--color-orange-main);
}

.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
  text-decoration: none;
}

.search-result-item:hover, .search-result-item:focus {
  background-color: var(--color-orange-soft);
}

.search-result-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.search-result-cat {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-orange-main);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.search-result-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.search-modal-footer {
  padding: 10px 18px;
  background-color: var(--bg-warm-subtle);
  border-top: 1px solid #fed7aa;
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* 23b. Infographic Figures */
.infographic-figure {
  margin: 26px 0 18px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border-warm);
  box-shadow: 0 6px 24px -4px rgba(234, 88, 12, 0.08), 0 2px 6px rgba(15, 23, 42, 0.03);
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.infographic-figure:hover {
  border-color: var(--color-orange-main);
  box-shadow: 0 14px 32px -4px rgba(234, 88, 12, 0.16), 0 4px 10px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.infographic-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1672 / 941;
}

.infographic-caption {
  padding: 12px 20px;
  font-size: 0.84rem;
  color: var(--text-muted);
  background: #fffaf5;
  border-top: 1px solid #ffedd5;
  text-align: center;
  font-weight: 600;
  line-height: 1.45;
}

/* 23c. Explore Super TET 2026 Topic Hub */
.topic-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .topic-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .topic-hub-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.topic-hub-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.topic-hub-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-orange-darker);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffedd5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topic-hub-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.topic-hub-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.18s ease;
}

.topic-hub-link:last-child {
  border-bottom: none;
}

.topic-hub-link:hover {
  color: var(--color-orange-main);
  transform: translateX(3px);
}

.topic-hub-link svg {
  color: #cbd5e1;
  transition: transform 0.18s ease, color 0.18s ease;
  flex-shrink: 0;
}

.topic-hub-link:hover svg {
  color: var(--color-orange-main);
  transform: translateX(2px);
}

/* 24. Print Styles */
@media print {
  .site-header, .search-modal-backdrop, .site-footer, .btn, .mobile-menu-toggle {
    display: none !important;
  }
  body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
  }
}


/* Integrated Hero Breadcrumb (High Visibility) */
.hero-breadcrumb {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0 0 16px 0 !important;
  font-size: 0.85rem;
}

.hero-breadcrumb .breadcrumb-list {
  gap: 6px;
}

.hero-breadcrumb .breadcrumb-item {
  color: #0f2b48;
  font-weight: 600;
}

.hero-breadcrumb .breadcrumb-item a {
  color: #0284c7;
  font-weight: 800;
  transition: color 0.15s ease;
}

.hero-breadcrumb .breadcrumb-item a:hover {
  color: #0369a1;
  text-decoration: underline;
}

.hero-breadcrumb .breadcrumb-separator {
  color: #0284c7;
  margin-left: 4px;
  margin-right: 4px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-breadcrumb .breadcrumb-item[aria-current="page"] {
  color: #091a2c;
  font-weight: 900;
}

/* ==========================================================================
   Task 3 Refinements: Core Info Hub, Editorial Bulletin Feed & Topic Directory
   ========================================================================== */

/* 3-Column Grouped Navigation Cards in #info-hub */
.info-group-card {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.info-group-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 50%, #fed7aa 100%);
  opacity: 1;
}

.info-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ffedd5;
}

.info-group-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-group-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.25;
}

.info-group-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c2410c;
  display: block;
}

.info-group-links {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-group-link-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.18s ease;
}

.info-group-link-item:hover {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
  transform: translateX(3px);
}

.info-link-icon {
  color: #ea580c;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-link-content {
  flex-grow: 1;
}

.info-link-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  display: block;
}

.info-link-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
  display: block;
}

/* Editorial Newsfeed Layout in #latest-updates */
.bulletin-editorial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .bulletin-editorial-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
  }
}

.bulletin-compact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bulletin-compact-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.bulletin-compact-item:hover {
  border-color: #fed7aa;
  box-shadow: 0 4px 12px -2px rgba(234, 88, 12, 0.08);
  transform: translateY(-2px);
}

.bulletin-compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bulletin-compact-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.35;
}

.bulletin-compact-desc {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
  line-height: 1.45;
}

.bulletin-compact-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
}

.bulletin-compact-link:hover {
  text-decoration: underline;
  color: #c2410c;
}

/* 5-Column Responsive Topic Directory in #topic-hub */
.topic-hub-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .topic-hub-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .topic-hub-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}


/* ==========================================================================
   Super TET 2026 Notification Page Dedicated Components
   ========================================================================== */

/* Prominent Top-of-Page Notification Status Box */
.notification-status-box {
  background: linear-gradient(135deg, #fffaf5 0%, #fff7ed 60%, #ffedd5 100%);
  border: 2px solid #fed7aa;
  border-left: 6px solid var(--color-orange-main);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.5vw, 28px);
  margin: 20px 0 28px 0;
  box-shadow: 0 4px 16px -2px rgba(234, 88, 12, 0.08);
}

.status-box-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #fed7aa;
}

.status-box-sub {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange-dark);
  display: block;
  margin-bottom: 4px;
}

.status-box-main-title {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.25;
}

.status-meta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .status-meta-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.status-meta-item {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.status-meta-label {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 2px;
}

.status-meta-val {
  font-size: 0.92rem;
  color: var(--color-primary);
  font-weight: 700;
}

.status-explanation-card {
  background: #ffffff;
  border-left: 3px solid var(--color-orange-main);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.status-source-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #7c2d12;
}

.status-source-tag a {
  color: var(--color-orange-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Official Source Box */
.notification-source-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 16px 0;
}

/* 10-Item Notification Details Grid */
.notification-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .notification-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.notification-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all 0.2s ease;
}

.notification-detail-card:hover {
  border-color: #fed7aa;
  box-shadow: 0 4px 12px -2px rgba(234, 88, 12, 0.08);
  transform: translateY(-2px);
}

.detail-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px 0;
}

.detail-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}

.detail-card-text a {
  color: var(--color-orange-main);
  font-weight: 600;
  text-decoration: none;
}

.detail-card-text a:hover {
  text-decoration: underline;
}

/* Exam Spec Cards Grid (Primary vs Junior) */
.exam-spec-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .exam-spec-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exam-spec-card {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #ffedd5;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.spec-list li {
  position: relative;
  padding-left: 18px;
}

.spec-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--color-orange-main);
  font-weight: 800;
}

/* Pathway Distinction Grid */
.pathway-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .pathway-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pathway-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px;
}

/* Timeline Pipeline */
.timeline-pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: border-color 0.2s ease;
}

.timeline-step-card:hover {
  border-color: #cbd5e1;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--bg-subtle);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #cbd5e1;
}

.step-content {
  flex-grow: 1;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.step-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

/* Quick Links 6-Grid */
.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-resource-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quick-resource-card:hover {
  border-color: var(--color-orange-main);
  box-shadow: 0 4px 14px -2px rgba(234, 88, 12, 0.1);
  transform: translateY(-2px);
}

.quick-res-icon {
  width: 36px;
  height: 36px;
  background: var(--color-orange-soft);
  color: var(--color-orange-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-res-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 3px 0;
}

.quick-res-desc {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* Editorial Log & Source Transparency Cards */
.editorial-log-card,
.source-transparency-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px;
}

.log-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

/* FAQ Accordion Styling inside Notification */
.faq-accordion-group {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #fed7aa;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron,
.faq-icon {
  transition: transform 0.2s ease;
  color: #64748b;
}

.faq-item[open] .faq-chevron,
.faq-item[open] .faq-icon,
.faq-item.is-open .faq-chevron,
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-orange-main);
}

.faq-answer {
  padding: 0 20px 18px 20px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--color-orange-main);
  text-decoration: underline;
  font-weight: 600;
}


/* Header Compatibility & Fallback Rules */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fed7aa;
}

.main-nav {
  display: none;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-list li {
  margin: 0;
  padding: 0;
}

.header-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.18s ease;
  min-height: 44px;
  min-width: 175px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-search-btn:hover {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 639px) {
  .header-search-btn {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-sm);
  }
  .header-search-btn .search-btn-text {
    display: none;
  }
}

@media (min-width: 1200px) {
  .header-search-btn {
    min-width: 200px;
  }
}

.search-btn-text {
  color: #ffffff;
  font-weight: 600;
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Drawer Fallback */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #9a3412;
  border-bottom: 2px solid #7c2d12;
  box-shadow: var(--shadow-lg);
  padding: 14px var(--container-pad) 20px var(--container-pad);
  flex-direction: column;
  gap: 12px;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 300;
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fed7aa;
}


/* Hero Grid & Responsive Layout */
.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .hero-content-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 40px;
    align-items: start;
  }
}

.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0369a1;
  margin-bottom: 14px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(14, 165, 233, 0.08);
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: #0f2b48;
  line-height: 1.68;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero-quick-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #475569;
  margin: 18px 0 14px 0;
}

.quick-links-label {
  font-weight: 700;
  color: #334155;
  margin-right: 2px;
}

.quick-link-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0369a1;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #bae6fd;
  padding: 3px 10px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.18s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.quick-link-item:hover {
  background: #ffffff;
  border-color: #0284c7;
  color: #0284c7;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(2, 132, 199, 0.15);
}

.quick-link-sep {
  display: none;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Syllabus Grid 2-column on Desktop */
.syllabus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .syllabus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Generic Card Title & Desc */
.card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 14px;
}


/* Universal support for both native details[open] and interactive div.is-open FAQ items */
.faq-item[open] .faq-answer,
.faq-item.is-open .faq-answer {
  display: block !important;
}

div.faq-item:not(.is-open) .faq-answer {
  display: none;
}

/* ==========================================================================
   QUICK NAVIGATION COMPONENT (Structured Multi-Column & Multi-Row Grid)
   ========================================================================== */
.quick-nav,
nav[aria-label="Quick Navigation"] {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--color-orange-main, #ea580c) !important;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.quick-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.quick-nav-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-nav-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--color-orange-main, #ea580c);
  flex-shrink: 0;
  border: 1px solid #ffedd5;
}

.quick-nav-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-primary, #0f172a);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0;
}

.quick-nav-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted, #64748b);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.quick-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.quick-nav-item {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none !important;
  color: #1e293b !important;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
}

.quick-nav-label {
  font-weight: 700;
  color: var(--color-primary, #0f172a);
  font-size: 0.92rem;
  line-height: 1.3;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.quick-nav-item:hover .quick-nav-label {
  color: var(--color-orange-dark, #c2410c);
}

.quick-nav-item:hover {
  background: #fff7ed;
  border-color: #fdba74;
  color: var(--color-orange-dark, #c2410c) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

.quick-nav-item:focus-visible {
  outline: 2px solid var(--color-orange-main, #ea580c);
  outline-offset: 2px;
}

.quick-nav-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.quick-nav-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.quick-nav-item:hover .quick-nav-num {
  background: var(--color-orange-main, #ea580c);
  color: #ffffff;
}

.quick-nav-text {
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
  min-width: 0;
}

.quick-nav-title-text {
  display: block;
  font-weight: 700;
  color: var(--color-primary, #0f172a);
  font-size: 0.95rem;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.quick-nav-item:hover .quick-nav-title-text {
  color: var(--color-orange-dark, #c2410c);
}

.quick-nav-desc-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted, #64748b);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.35;
}

.quick-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.quick-nav-item:hover .quick-nav-arrow {
  color: var(--color-orange-main, #ea580c);
  transform: translateX(3px);
}

/* ==========================================================================
   WHATSAPP COMMUNITY CTA BANNER
   ========================================================================== */
.whatsapp-banner-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 45%, #047857 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px -4px rgba(6, 95, 70, 0.28), 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #ffffff;
}

.whatsapp-banner-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wa-card-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.wa-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.wa-content {
  min-width: 0;
}

.wa-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin-bottom: 6px;
}

.wa-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8); }
  70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.wa-desc {
  font-size: 0.92rem;
  color: #d1fae5;
  line-height: 1.5;
  margin: 0 0 12px 0;
  max-width: 720px;
}

.wa-highlights {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
}

.wa-pill svg {
  color: #25d366;
}

.wa-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wa-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.42);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid #22c55e;
}

.wa-join-btn:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
}

.wa-join-btn svg {
  transition: transform 0.18s ease;
}

.wa-join-btn:hover svg:last-child {
  transform: translateX(3px);
}

.wa-sub-note {
  font-size: 0.75rem;
  color: #a7f3d0;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 840px) {
  .whatsapp-banner-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 18px;
  }
  .wa-card-left {
    flex-direction: column;
    gap: 12px;
  }
  .wa-card-right {
    width: 100%;
  }
  .wa-join-btn {
    width: 100%;
  }
}

