/* ════════════════════════════════════════════════════════════
   CHUNAV MITRA — REDESIGN.CSS
   Tech-inspired, modern, minimal palette override
   Import AFTER style.css, enhancements.css, wizard-redesign.css
   ════════════════════════════════════════════════════════════ */

/* ── NEW GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

/* ════════════════════════════════════════
   DESIGN TOKENS — TECH PALETTE OVERRIDE
   ════════════════════════════════════════ */
:root {
  /* NEW TECH PALETTE */
  --saffron:       #F7610A;
  --saffron-light: #FF8040;
  --saffron-pale:  #FFF0E6;
  --saffron-glow:  rgba(247, 97, 10, 0.18);

  --green:         #0D9656;
  --green-light:   #10B96A;
  --green-pale:    #E6F7EF;

  --navy:          #080E1A;
  --navy-mid:      #0F1A2E;
  --navy-light:    #162236;

  --accent-blue:   #2B6EFF;
  --accent-purple: #7C3AED;
  --accent-cyan:   #06B6D4;

  --white:         #FFFFFF;
  --off-white:     #F6F7FA;
  --gray-100:      #EEF0F5;
  --gray-200:      #DCDFE8;
  --gray-400:      #9099AF;
  --gray-600:      #5A6278;
  --gray-800:      #1E2433;

  --bg:            var(--off-white);
  --bg-card:       var(--white);
  --bg-card-hover: #FAFBFF;
  --text-primary:  #0B1120;
  --text-secondary:#4A5268;
  --text-muted:    #8A91A8;
  --border:        #DDE1EC;
  --border-strong: #B0B8D0;

  --shadow-sm:  0 2px 8px rgba(8,14,26,0.07);
  --shadow-md:  0 8px 28px rgba(8,14,26,0.10);
  --shadow-lg:  0 20px 56px rgba(8,14,26,0.14);
  --shadow-glow: 0 0 40px rgba(247,97,10,0.12);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --navbar-h:  66px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── DARK MODE OVERRIDE ── */
[data-theme="dark"] {
  --bg:            #060C18;
  --bg-card:       #0C1426;
  --bg-card-hover: #111D33;
  --text-primary:  #EDF0F8;
  --text-secondary:#8892AA;
  --text-muted:    #4E5870;
  --border:        #1A2540;
  --border-strong: #243352;
  --saffron-pale:  #1C0F05;
  --green-pale:    #051A0F;
  --gray-100:      #0C1426;
  --off-white:     #060C18;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg:  0 20px 56px rgba(0,0,0,0.6);
}

/* ════════════════════════════════════════
   GLOBAL BASE
   ════════════════════════════════════════ */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ── SUBTLE BACKGROUND TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(247,97,10,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(13,150,86,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── FIX: Navbar must stack above all body children ── */
body > .navbar {
  position: fixed !important;
  z-index: 9999 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

/* ════════════════════════════════════════
   NAVBAR — overrides (defer to style.css)
   ════════════════════════════════════════ */
.nav-logo { font-family: var(--font-display); font-weight: 800; }
.logo-mark {
  background: var(--saffron);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(200,90,0,0.22);
}

/* ── NAVBAR — NEW NAV ITEM: "Why Vote" ── */
.nav-link.nav-highlight {
  color: var(--saffron);
  background: var(--saffron-pale);
  border: 1px solid rgba(200,90,0,0.15);
}
[data-theme="dark"] .nav-link.nav-highlight { background: rgba(200,90,0,0.1); }

/* ════════════════════════════════════════
   HERO — TECH UPGRADE
   ════════════════════════════════════════ */
.hero { background: var(--bg); }

/* Reimagined hero background */
.hero-bg-shapes { overflow: hidden; }
.shape {
  filter: blur(64px);
  opacity: 0.07;
}
.shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--saffron), transparent 70%);
  top: -250px; right: -150px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green), transparent 70%);
  bottom: -150px; left: -150px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-blue), transparent 70%);
  top: 35%; right: 28%;
  opacity: 0.05;
}
[data-theme="dark"] .shape { opacity: 0.15; }

/* ── HERO BADGE ── */
.hero-badge {
  background: linear-gradient(135deg, rgba(247,97,10,0.1), rgba(13,150,86,0.08));
  border: 1px solid rgba(247,97,10,0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--saffron);
}
[data-theme="dark"] .hero-badge {
  background: rgba(247,97,10,0.08);
  border-color: rgba(247,97,10,0.2);
}

/* ── HERO TITLE ── */
.hero-title { line-height: 1.1; margin-bottom: 22px; }
.hero-title .highlight {
  color: var(--saffron);
  display: inline-block;
}
.hero-title .highlight::after {
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  opacity: 0.18;
  height: 7px;
  bottom: 4px;
  border-radius: 6px;
}

/* ── HERO STATS ── */
.stat-pill {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-pill::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-pill:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 800;
  color: var(--saffron);
  letter-spacing: -0.03em;
}

/* ── BALLOT CARD ── */
.ballot-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.ballot-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF8040 100%);
  box-shadow: 0 4px 18px rgba(247,97,10,0.32), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FF7020 0%, #FF9050 100%);
  box-shadow: 0 8px 28px rgba(247,97,10,0.40);
  transform: translateY(-2px);
}
.btn-ghost { border: 1.5px solid var(--border-strong); font-weight: 600; }
.btn-ghost:hover { border-color: var(--saffron); }

/* ════════════════════════════════════════
   SECTION TAG — TECH CHIP
   ════════════════════════════════════════ */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--saffron-pale), rgba(13,150,86,0.06));
  border: 1px solid rgba(247,97,10,0.18);
  color: var(--saffron);
}
[data-theme="dark"] .section-tag { background: rgba(247,97,10,0.1); }

/* ════════════════════════════════════════
   EXPLAINER CARDS — GLASSMORPHISM
   ════════════════════════════════════════ */
.explainer { background: var(--bg-card); }
.exp-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
  position: relative;
}
.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(247,97,10,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md), 0 0 0 1px var(--saffron); }
.exp-card:hover::before { opacity: 1; }
.exp-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--saffron);
  opacity: 0.1;
  line-height: 1;
}

/* ════════════════════════════════════════
   TIMELINE — CONNECTED FLOW
   ════════════════════════════════════════ */
.timeline-section { background: var(--bg); }
.timeline::before {
  background: linear-gradient(to bottom, var(--saffron) 0%, var(--green) 100%);
  opacity: 0.25;
  width: 2px;
}
.tl-dot {
  background: var(--bg-card);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.timeline-item:hover .tl-dot {
  background: var(--saffron);
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(247,97,10,0.15);
}
.tl-body {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition);
}
.tl-body:hover {
  border-color: rgba(247,97,10,0.4);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(247,97,10,0.1);
  transform: translateX(4px);
}
.tl-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* ════════════════════════════════════════
   ELECTION TYPES
   ════════════════════════════════════════ */
.types-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.type-card {
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.type-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-color, var(--saffron));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.type-card:hover::after, .type-card.active::after { transform: scaleX(1); }
.type-card:hover, .type-card.active {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* ════════════════════════════════════════
   QUIZ — POLISHED CARDS
   ════════════════════════════════════════ */
.quiz-section { background: var(--bg); }
.question-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.question-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--accent-blue));
}
.q-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.option-btn {
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: all var(--transition);
}
.option-btn:not([disabled]):hover {
  transform: translateX(4px);
  border-color: var(--saffron);
  background: var(--saffron-pale);
}
.option-btn.correct {
  background: linear-gradient(135deg, rgba(13,150,86,0.08), rgba(13,150,86,0.05));
  border-color: var(--green);
}
.option-btn.wrong {
  background: rgba(239,68,68,0.06);
  border-color: #EF4444;
}
.q-progress-bar {
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
}

/* ════════════════════════════════════════
   WORD GAME
   ════════════════════════════════════════ */
.game-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.letter-cell {
  border-radius: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  transition: all 0.12s ease;
}
.letter-cell:hover {
  background: var(--saffron-pale);
  border-color: var(--saffron);
  transform: scale(1.08);
}
.letter-cell.selected {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(247,97,10,0.35);
}
.letter-cell.found {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-color: transparent;
}

/* ════════════════════════════════════════
   CHAT FAB + PANEL
   ════════════════════════════════════════ */
.chat-fab {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF8040 100%);
  box-shadow: 0 8px 28px rgba(247,97,10,0.42), 0 2px 0 rgba(255,255,255,0.12) inset;
  font-family: var(--font-display);
}
.chat-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(247,97,10,0.52);
}
.chat-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  backdrop-filter: blur(24px);
  background: var(--bg-card);
}
.chat-header { background: var(--bg-card); }
.chat-avatar {
  background: linear-gradient(135deg, var(--saffron), #FF8040);
  box-shadow: 0 2px 10px rgba(247,97,10,0.3);
}
.send-btn {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  box-shadow: 0 2px 8px rgba(247,97,10,0.28);
}
.quick-btn:hover {
  border-color: var(--saffron);
  background: var(--saffron-pale);
  color: var(--saffron);
}
[data-theme="dark"] .quick-btn:hover { background: rgba(247,97,10,0.1); }

/* ════════════════════════════════════════
   RIGHTS & DUTIES
   ════════════════════════════════════════ */
.rights-section { background: var(--bg-card); }
.tab-btn {
  font-family: var(--font-display);
  font-weight: 700;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--saffron), #FF8040);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(247,97,10,0.28);
}
.accordion-item { border-radius: var(--radius-md); }
.accordion-item:hover, .accordion-item.open { border-color: rgba(247,97,10,0.35); }
.accordion-header:hover { background: var(--saffron-pale); }
[data-theme="dark"] .accordion-header:hover { background: rgba(247,97,10,0.07); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer { background: var(--navy); }
.footer-logo { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
.footer-tricolor span:nth-child(1) { background: var(--saffron); }
.footer-tricolor span:nth-child(3) { background: var(--green); }

/* ════════════════════════════════════════
   ★ NEW SECTION: WHY VOTE
   ════════════════════════════════════════ */
.why-vote-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

/* Impact Counter Row */
.impact-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 72px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.impact-cell {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
  cursor: default;
}
.impact-cell:last-child { border-right: none; }
.impact-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cell-accent, var(--saffron));
  opacity: 0;
  transition: opacity var(--transition);
}
.impact-cell:hover { background: var(--off-white); }
.impact-cell:hover::before { opacity: 1; }
[data-theme="dark"] .impact-cell:hover { background: var(--bg); }
.impact-cell:nth-child(1) { --cell-accent: var(--saffron); }
.impact-cell:nth-child(2) { --cell-accent: var(--green); }
.impact-cell:nth-child(3) { --cell-accent: var(--accent-blue); }
.impact-cell:nth-child(4) { --cell-accent: var(--accent-purple); }

.impact-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cell-accent, var(--saffron));
  display: block;
  margin-bottom: 4px;
}
.impact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Reason Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--why-color, var(--saffron));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card:hover::after { transform: scaleX(1); }

.why-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--why-bg, var(--saffron-pale));
}
.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }

/* Quote Strip */
.quote-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}
.quote-strip::after {
  content: '"';
  position: absolute;
  right: 48px; top: 16px;
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  font-weight: 800;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: white;
  line-height: 1.5;
  flex: 1;
  letter-spacing: -0.02em;
}
.quote-text em { color: var(--saffron-light); font-style: normal; }
.quote-attr {
  flex-shrink: 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.quote-attr strong { display: block; color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 4px; }

/* ════════════════════════════════════════
   ★ NEW SECTION: HOW VOTING WORKS
   ════════════════════════════════════════ */
.how-vote-section {
  background: var(--bg);
  padding: 100px 0;
}

/* Process Steps Horizontal */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 72px;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  opacity: 0.25;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.ps-dot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ps-dot::after {
  content: attr(data-step);
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--saffron);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step:hover .ps-dot {
  border-color: var(--saffron);
  box-shadow: 0 0 0 6px rgba(247,97,10,0.1), var(--shadow-md);
  transform: scale(1.05);
}
.ps-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.ps-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Documents & EVM Info Grid */
.vote-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 72px;
}
.vote-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition);
}
.vote-info-card:hover { box-shadow: var(--shadow-md); }
.vic-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.vic-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.vic-icon.orange { background: var(--saffron-pale); }
.vic-icon.green { background: var(--green-pale); }
.vic-header h3 { font-size: 1.05rem; margin-bottom: 4px; }
.vic-header p { font-size: 0.8rem; color: var(--text-muted); }

.doc-list { display: flex; flex-direction: column; gap: 10px; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  transition: all var(--transition);
}
.doc-item:hover { border-color: rgba(247,97,10,0.3); background: var(--saffron-pale); }
[data-theme="dark"] .doc-item:hover { background: rgba(247,97,10,0.06); }
.doc-item-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  flex-shrink: 0;
}

.evm-features { display: flex; flex-direction: column; gap: 12px; }
.evm-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}
.evm-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--green-pale);
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FAQ Accordions */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(247,97,10,0.3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-display);
  user-select: none;
  background: var(--bg-card);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--saffron-pale); }
[data-theme="dark"] .faq-q:hover { background: rgba(247,97,10,0.07); }
.faq-chevron {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--saffron); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding: 0 20px;
  line-height: 1.65;
  background: var(--bg-card);
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ════════════════════════════════════════
   ★ NEW SECTION: VOTER AWARENESS
   ════════════════════════════════════════ */
.awareness-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

/* Myth vs Fact */
.mvf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 72px;
}
.mvf-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.mvf-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mvf-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.mvf-label.myth {
  background: rgba(239,68,68,0.1);
  color: #EF4444;
  border: 1px solid rgba(239,68,68,0.2);
}
.mvf-label.fact {
  background: rgba(13,150,86,0.1);
  color: var(--green);
  border: 1px solid rgba(13,150,86,0.2);
}
.mvf-card h4 { font-size: 0.95rem; margin-bottom: 10px; }
.mvf-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }

/* Important Dates CTA */
.awareness-cta {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF8040 50%, var(--saffron) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.awareness-cta::before {
  content: '🗳️';
  position: absolute;
  font-size: 14rem;
  opacity: 0.06;
  right: -40px;
  bottom: -40px;
  line-height: 1;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.awareness-cta h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.awareness-cta p { opacity: 0.88; font-size: 1rem; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--saffron);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ════════════════════════════════════════
   ANIMATED REVEAL IMPROVEMENTS
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children of reveal parents */
.why-grid .why-card:nth-child(2) { transition-delay: 0.08s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.16s; }
.process-step:nth-child(2) .ps-dot { transition-delay: 0.08s; }
.process-step:nth-child(3) .ps-dot { transition-delay: 0.16s; }
.process-step:nth-child(4) .ps-dot { transition-delay: 0.24s; }
.process-step:nth-child(5) .ps-dot { transition-delay: 0.32s; }

/* ════════════════════════════════════════
   NAV LINK ADDITIONS (added via JS)
   ════════════════════════════════════════ */
.nav-why-vote, .nav-how-vote, .nav-awareness {
  /* these classes added by JS snippet below */
}

/* ════════════════════════════════════════
   SCROLLBAR STYLING
   ════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--saffron); }

/* ════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-track::before { display: none; }
  .vote-info-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .mvf-grid { grid-template-columns: 1fr; }
  .impact-row { flex-wrap: wrap; }
  .impact-cell { min-width: 50%; border-bottom: 1px solid var(--border); }
  .quote-strip { flex-direction: column; gap: 24px; padding: 40px 32px; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 20px; }
  .awareness-cta { padding: 40px 28px; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .vote-info-card { padding: 24px; }
  .impact-cell { min-width: 100%; }
}
