/* CSCA.ai Design System - Pixel Perfect Match */
/* Based on live site analysis of https://csca.ai */

:root {
  /* Brand Colors - Exact from reference pack */
  --color-navy: #162582;
  --color-navy-light: #3b4da4;
  --color-navy-tint: #f1f3fc;
  --color-emerald: #4ec803;
  --color-emerald-dark: #428325;
  --color-emerald-tint: #effee5;
  --color-emerald-border: #c4eaad;
  --color-orange: #ff9400;
  --color-orange-dark: #e4850f;
  --color-orange-tint: #fff4e5;
  --color-blue: #27b4f6;
  --color-blue-dark: #0d8dc8;
  --color-blue-tint: #e6f6fd;
  --color-red: #ff4c4c;
  --color-purple: #d47fff;
  
  /* Semantic Colors */
  --color-bg: #ffffff;
  --color-bg-secondary: #f5f5f7;
  --color-bg-tertiary: #fafafa;
  --color-text: #1c1c1c;
  --color-text-secondary: #878787;
  --color-border: #d2d2d7;
  
  /* Legacy colors for compatibility */
  --color-emerald-legacy: #58cc02;
  --color-emerald-dark-legacy: #389e0d;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', Inter, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, Inconsolata, monospace;
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --radius-base: 1rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-default: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.14);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.47059;
  color: var(--color-text);
  background: var(--color-bg);
  letter-spacing: -0.022em;
}

/* Typography Scale - Apple-style */
.text-hero {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.text-headline {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08349;
  letter-spacing: -0.003em;
}

.text-title-1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.text-title-2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.125;
  letter-spacing: 0.004em;
}

.text-title-3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16667;
  letter-spacing: 0.009em;
}

.text-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47059;
  letter-spacing: -0.022em;
}

.text-caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28577;
  letter-spacing: -0.016em;
}

.text-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

/* Gradient Text */
.text-gradient-navy {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphism Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--glass-border);
  height: 64px;
}

.glass-nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.nav-link:hover {
  background: var(--color-bg-secondary);
}

.nav-link.active {
  color: var(--color-navy);
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-emerald);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 0 var(--color-emerald-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--color-emerald-dark);
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--color-emerald-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--color-navy);
  background: var(--color-bg-tertiary);
}

.btn-orange {
  background: var(--color-orange);
  box-shadow: 0 4px 0 var(--color-orange-dark);
}

.btn-orange:hover {
  box-shadow: 0 6px 0 var(--color-orange-dark);
}

.btn-orange:active {
  box-shadow: 0 0 0 var(--color-orange-dark);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px var(--space-md) var(--space-2xl);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(78, 200, 3, 0.1);
  color: var(--color-emerald-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  max-width: 900px;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 21px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

/* Live Counter */
.live-counter {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  margin-bottom: var(--space-lg);
}

.counter-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: left;
  line-height: 1.3;
}

/* Hero CTA Group */
.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.hero-note {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Section Styles */
.section {
  padding: var(--space-xl) var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-emerald);
  margin-bottom: var(--space-sm);
  background: rgba(78, 200, 3, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.section-label.blue {
  color: var(--color-blue);
  background: rgba(39, 180, 246, 0.1);
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bento-card-large {
  grid-column: span 2;
}

.bento-card-full {
  grid-column: span 3;
}

/* Feature Cards */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-md);
}

.feature-icon.emerald { background: rgba(78, 200, 3, 0.1); }
.feature-icon.orange { background: rgba(255, 148, 0, 0.1); }
.feature-icon.blue { background: rgba(39, 180, 246, 0.1); }
.feature-icon.purple { background: rgba(212, 127, 255, 0.1); }

/* Subject Cards with Colored Left Borders - EXACT MATCH TO LIVE */
.subject-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.subject-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.subject-card.math {
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.04);
}

.subject-card.physics {
  border-left: 4px solid var(--color-blue);
  background: rgba(39, 180, 246, 0.04);
}

.subject-card.chemistry {
  border-left: 4px solid var(--color-emerald);
  background: rgba(78, 200, 3, 0.04);
}

.subject-card.exams {
  border-left: 4px solid #f97316;
  background: rgba(249, 115, 22, 0.04);
}

.subject-card.admission {
  border-left: 4px solid #a855f7;
  background: rgba(168, 85, 247, 0.04);
}

.subject-card-content {
  flex: 1;
}

.subject-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.subject-card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Quote Block */
.quote-block {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-lg);
}

.quote-text {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.4;
}

/* Subject Finder - EXACT MATCH TO SCREENSHOTS */
.subject-finder {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  max-width: 800px;
  margin: 0 auto;
}

/* Info Banner */
.finder-info-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-navy-tint);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-navy);
}

.finder-info-banner-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Wizard Steps */
.wizard-step {
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
}

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

.wizard-step-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.wizard-step-number {
  width: 32px;
  height: 32px;
  background: var(--color-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.wizard-step-number.completed {
  background: var(--color-emerald);
}

.wizard-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.wizard-step-subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-left: 44px;
  margin-bottom: var(--space-md);
}

/* Option Cards */
.wizard-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.wizard-options.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 640px) {
  .wizard-options.two-col {
    grid-template-columns: 1fr;
  }
}

.wizard-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--color-border);
}

.wizard-option:hover {
  border-color: var(--color-navy);
}

.wizard-option.selected {
  background: var(--color-navy-tint);
  border: 2px solid var(--color-navy);
}

.wizard-option-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.wizard-option-content {
  flex: 1;
  min-width: 0;
}

.wizard-option-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.wizard-option-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--color-emerald-tint);
  color: var(--color-emerald-dark);
  border: 1px solid var(--color-emerald-border);
}

.wizard-option-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.wizard-option-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.wizard-option.selected .wizard-option-check {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.wizard-option-check::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
}

.wizard-option.selected .wizard-option-check::after {
  opacity: 1;
}

/* Result Cards */
.wizard-result {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-md);
}

.wizard-result-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.wizard-result-icon {
  font-size: 32px;
}

.wizard-result-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.wizard-result-subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.wizard-result-subjects {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.wizard-subject-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-navy);
  color: white;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
}

.wizard-subject-pill .mandatory-label {
  font-size: 11px;
  opacity: 0.8;
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.wizard-result-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-navy-tint);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.wizard-result-note-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.wizard-result-cta {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}

/* Disabled state for steps */
.wizard-step.disabled {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* Animation for step reveal */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes pulseCheck {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.wizard-step.reveal {
  animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.wizard-option.selected .wizard-option-check {
  animation: pulseCheck 0.3s ease;
}

.wizard-result {
  animation: fadeInUp 0.5s ease forwards;
}

/* Hover effects for options */
.wizard-option {
  position: relative;
  overflow: hidden;
}

.wizard-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(22, 37, 130, 0.04), transparent);
  transition: left 0.6s;
}

.wizard-option:hover::before {
  left: 100%;
}

/* Step number transition */
.wizard-step-number {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wizard-step-number.completed {
  transform: scale(1.1);
}

/* Enhanced wizard option hover */
.wizard-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wizard-option.selected {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 37, 130, 0.12);
}

.finder-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(39, 180, 246, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--color-blue);
}

.finder-note-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.finder-note-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.finder-note-text strong {
  color: var(--color-text);
}

/* Mock Preview Card */
.mock-preview {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: white;
  position: relative;
  overflow: hidden;
}

.mock-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(78, 200, 3, 0.1) 0%, transparent 70%);
}

.mock-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.mock-preview-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-preview-timer {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--color-orange);
}

.mock-preview-question {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.mock-preview-qtext {
  font-size: 15px;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.mock-preview-options {
  display: grid;
  gap: 8px;
}

.mock-preview-option {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mock-preview-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mock-preview-option.correct {
  background: rgba(78, 200, 3, 0.2);
  border: 1px solid var(--color-emerald);
}

.mock-preview-option.correct::after {
  content: '✓';
  float: right;
  color: var(--color-emerald);
}

/* Score Prediction */
.score-prediction {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.score-prediction-header {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.score-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.score-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-navy);
}

.score-label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.score-confidence {
  font-size: 12px;
  color: var(--color-emerald);
  margin-bottom: var(--space-md);
}

.score-progress-bar {
  height: 8px;
  background: var(--color-bg-secondary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.score-progress-fill {
  height: 100%;
  background: var(--color-emerald);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.score-item {
  text-align: center;
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-md);
}

.score-item-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
}

.score-item-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 2px;
}

.score-item-prediction {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-md);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid var(--color-emerald);
  border-radius: 50%;
}

.timeline-item.closed::before {
  border-color: var(--color-border);
  background: var(--color-bg-secondary);
}

.timeline-item.next::before {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.timeline-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.timeline-title {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.timeline-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.timeline-badge.closed {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
}

.timeline-badge.next {
  background: var(--color-orange-tint);
  color: var(--color-orange-dark);
}

.timeline-badge.upcoming {
  background: var(--color-emerald-tint);
  color: var(--color-emerald-dark);
}

/* Exam Dates List with Toggle Switches */
.exam-dates-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.exam-date-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.exam-date-item.next {
  background: rgba(78, 200, 3, 0.04);
  border-color: var(--color-emerald);
}

.exam-date-info {
  flex: 1;
}

.exam-date-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.exam-date-title {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.exam-date-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.exam-date-status {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.exam-date-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.exam-date-badge.closed {
  background: rgba(255, 76, 76, 0.12);
  color: #dc2626;
}

.exam-date-badge.next {
  background: rgba(255, 148, 0, 0.12);
  color: #c2410c;
}

.exam-date-badge.upcoming {
  background: rgba(39, 180, 246, 0.12);
  color: #0369a1;
}

.exam-date-toggle {
  width: 44px;
  height: 24px;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.exam-date-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.exam-date-toggle.active {
  background: var(--color-emerald);
}

.exam-date-toggle.active::after {
  left: 22px;
}

.exam-date-toggle.disabled {
  background: var(--color-bg-secondary);
  cursor: not-allowed;
}

.exam-date-toggle.disabled::after {
  background: var(--color-border);
}

/* Booking Cards */
.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.booking-card:hover {
  border-color: var(--color-emerald);
}

.booking-card.selected {
  border-color: var(--color-emerald);
  background: rgba(78, 200, 3, 0.06);
}

.booking-card-badge {
  position: absolute;
  top: -10px;
  right: var(--space-md);
  background: var(--color-emerald);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.booking-card-title {
  font-size: 18px;
  font-weight: 600;
}

.booking-card-price {
  text-align: right;
}

.booking-card-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
}

.booking-card-currency {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.booking-card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.booking-card-note {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* Fee Calculator */
.fee-calculator {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.fee-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.fee-label {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.fee-value {
  font-weight: 600;
  font-size: 14px;
}

.fee-local {
  text-align: right;
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.fee-note {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: var(--space-sm) 0 var(--space-md);
  padding: var(--space-sm);
  background: rgba(78, 200, 3, 0.04);
  border-radius: var(--radius-sm);
}

.fee-total {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fee-total-label {
  font-weight: 600;
}

.fee-total-value {
  text-align: right;
}

.fee-total-amount {
  font-weight: 800;
  color: var(--color-emerald);
  font-size: 24px;
}

.fee-total-local {
  font-size: 11px;
  color: var(--color-text-secondary);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, #162582 0%, #3b4da4 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card-content {
  padding: var(--space-md);
}

.blog-card-category {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.blog-card-category.authority {
  background: rgba(22, 37, 130, 0.1);
  color: var(--color-navy);
}

.blog-card-category.exam {
  background: rgba(255, 148, 0, 0.1);
  color: #c2410c;
}

.blog-card-category.study {
  background: rgba(78, 200, 3, 0.1);
  color: #166534;
}

.blog-card-category.strategy {
  background: rgba(255, 76, 76, 0.1);
  color: #dc2626;
}

.blog-card-category.booking {
  background: rgba(39, 180, 246, 0.1);
  color: #0369a1;
}

.blog-card-category.insights {
  background: rgba(212, 127, 255, 0.1);
  color: #9333ea;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.cta-counter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  margin-bottom: var(--space-lg);
}

.cta-counter-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
}

.cta-counter-text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Footer */
.footer {
  background: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.footer-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-navy);
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-trust {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Article Styles */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px var(--space-md) var(--space-2xl);
}

.article-header {
  margin-bottom: var(--space-lg);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.article-category {
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.article-readtime {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--color-emerald-tint);
  color: var(--color-emerald-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-left: auto;
}

.article-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.article-subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
}

.author-title {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.article-date {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Table of Contents */
.toc {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

.toc-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 4px;
}

.toc-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.toc-list a:hover {
  background: var(--color-bg-secondary);
  color: var(--color-navy);
}

/* TL;DR Box */
.tldr-box {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-left: 4px solid #f4d03f;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
}

.tldr-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.tldr-content h3 {
  font-size: 12px;
  font-weight: 700;
  color: #b7950b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.tldr-content p {
  color: #7d6608;
  line-height: 1.6;
  font-size: 15px;
}

/* Info Boxes */
.info-box {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  display: flex;
  gap: var(--space-sm);
}

.info-box.protip {
  background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);
}

.info-box.warning {
  background: linear-gradient(135deg, #fdedec 0%, #f5b7b1 100%);
}

.info-box.graduate {
  background: linear-gradient(135deg, #ebf5fb 0%, #d4e6f1 100%);
}

.info-box.scientist {
  background: linear-gradient(135deg, #f5eef8 0%, #e8daef 100%);
}

.info-box-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.info-box-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.info-box.protip strong { color: #0e6251; }
.info-box.protip p { color: #117a65; }

.info-box.warning strong { color: #922b21; }
.info-box.warning p { color: #7b241c; }

.info-box.graduate strong { color: #1a5276; }
.info-box.graduate p { color: #2471a3; }

.info-box.scientist strong { color: #6c3483; }
.info-box.scientist p { color: #7d3c98; }

.info-box p {
  font-size: 15px;
  line-height: 1.5;
}

/* Article Content */
.article-content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: var(--space-lg) 0 var(--space-md);
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: var(--space-lg) 0 var(--space-sm);
}

.article-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.article-content ul, .article-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.article-content li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.data-table th {
  background: var(--color-bg-secondary);
  padding: 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.data-table td {
  padding: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 15px;
}

.data-table tr:hover td {
  background: var(--color-bg-tertiary);
}

/* Score Ranges */
.score-ranges {
  margin: var(--space-md) 0;
}

.score-range {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.score-range-value {
  font-weight: 700;
  color: var(--color-navy);
  min-width: 140px;
  flex-shrink: 0;
}

.score-range-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25d366;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.related-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.progress-step {
  text-align: center;
  flex: 1;
}

.progress-step-number {
  width: 40px;
  height: 40px;
  background: var(--color-bg-tertiary);
  color: var(--color-text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.progress-step.active .progress-step-number {
  background: var(--color-emerald);
  color: white;
}

.progress-step.completed .progress-step-number {
  background: var(--color-emerald);
  color: white;
}

.progress-step-label {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.progress-step.active .progress-step-label {
  color: var(--color-text);
  font-weight: 600;
}

.progress-connector {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-connector-line {
  height: 2px;
  background: var(--color-border);
  width: 100%;
}

.progress-step.completed + .progress-connector .progress-connector-line {
  background: var(--color-emerald);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(22, 37, 130, 0.1);
}

.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: inherit;
  appearance: none;
  background: white;
  cursor: pointer;
}

.form-phone {
  display: flex;
  gap: 8px;
}

.form-phone-code {
  padding: 14px 12px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-size: 14px;
  white-space: nowrap;
}

/* Confirmation Screen */
.confirmation-screen {
  text-align: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  background: var(--color-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.confirmation-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

.confirmation-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.confirmation-text {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin-bottom: var(--space-lg);
}

/* Booking Summary */
.booking-summary {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.booking-summary-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.booking-summary-label {
  color: var(--color-text-secondary);
}

.booking-summary-value {
  font-weight: 500;
}

.booking-summary-total {
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
  margin-top: 8px;
}

.booking-summary-total .booking-summary-label {
  font-weight: 600;
  color: var(--color-text);
}

.booking-summary-total .booking-summary-value {
  font-weight: 700;
  color: var(--color-emerald);
}

/* Next Steps */
.next-steps {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.next-steps-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-md);
}

.next-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.next-step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.next-step-icon.completed {
  background: var(--color-emerald);
  color: white;
}

.next-step-icon.pending {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.next-step-text {
  font-size: 14px;
}

.next-step-text.pending {
  color: var(--color-text-secondary);
}

/* Support Cards */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.support-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  text-align: center;
}

.support-card-icon {
  font-size: 32px;
  margin-bottom: var(--space-sm);
}

.support-card-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 15px;
}

.support-card-info {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Disclaimer Box */
.disclaimer-box {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-left: 4px solid #f4d03f;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.disclaimer-box p {
  color: #7d6608;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-card-large,
  .bento-card-full {
    grid-column: span 2;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .text-hero {
    font-size: 48px;
  }
  
  .text-headline {
    font-size: 36px;
  }
  
  .text-title-1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card-large,
  .bento-card-full {
    grid-column: span 1;
  }
  
  .booking-cards {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .score-breakdown {
    grid-template-columns: 1fr;
  }
  
  .support-cards {
    grid-template-columns: 1fr;
  }
  
  .article-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .text-hero {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ENHANCED ANIMATIONS ===== */

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(78, 200, 3, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(78, 200, 3, 0.8);
  }
}

/* Animation utility classes */
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-bounceIn {
  animation: bounceIn 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Staggered animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Scroll-triggered animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section animations */
.hero-badge {
  animation: fadeInDown 0.6s ease-out 0.2s both;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.live-counter {
  animation: scaleIn 0.6s ease-out 0.8s both;
}

.hero-cta {
  animation: fadeInUp 0.6s ease-out 1s both;
}

.hero-note {
  animation: fadeIn 0.6s ease-out 1.2s both;
}

/* Button hover effects */
.btn-primary {
  transition: all 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--color-emerald-dark), 0 8px 20px rgba(78, 200, 3, 0.4);
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--color-emerald-dark);
}

/* Card hover effects */
.subject-card,
.bento-card,
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subject-card:hover,
.bento-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Progress bar animations */
.progress-fill,
.xp-fill {
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Loading shimmer effect */
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Counter animation helper */
.counter-animate {
  font-variant-numeric: tabular-nums;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Chinese Subject Pills - Special styling for Chinese-taught program subjects */
.wizard-subject-pill.chinese-subject {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.wizard-subject-pill.chinese-subject .mandatory-label {
  background: rgba(255, 255, 255, 0.25);
}

/* Warning Banner for Chinese Subject Requirement */
.wizard-result-warning {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  color: #92400e;
  margin-bottom: var(--space-md);
}

.wizard-result-warning-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wizard-result-warning strong {
  color: #78350f;
}
