/* =========================================================
   המרכז הארצי לזכויות מס – Styles
   Professional Institutional Design | gov.il Standard
   ========================================================= */

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

/* ---- Design Tokens (Israeli Government Design System – gov.il) ---- */
:root {
  /* gov.il Deep Royal Blue palette */
  --gov-blue:        #003F8C;
  --gov-blue-dark:   #002D6B;
  --gov-blue-hover:  #004FA8;
  --gov-blue-light:  #E8F0FB;
  --gov-blue-mid:    #A8C0E8;

  /* Secondary accent – teal/steel (gov.il secondary) */
  --gov-purple:      #0056B3;
  --gov-purple-soft: #1565C0;
  --gov-purple-light:#E3EEF9;

  /* Sky-blue accent (announcement bar border, highlight text) */
  --gov-accent-sky:  #7EC8F4;
  --gov-gold:        #B8860B;
  --gov-gold-light:  #FFF8DC;

  --text-primary:    #111827;
  --text-secondary:  #374151;
  --text-muted:      #6B7280;

  --bg-white:        #FFFFFF;
  --bg-light:        #F2F6FC;
  --bg-subtle:       #DDE8F5;

  --border:          #C5CFDE;
  --border-light:    #DDE3EF;

  --success:         #0D7A3E;
  --success-bg:      #D1F0E0;
  --error:           #B91C1C;

  --radius-sm: 4px;
  --radius:    6px;
  --radius-md: 9px;
  --radius-lg: 14px;

  --font:      'Rubik', 'Assistant', Arial, sans-serif;
  --ease:      0.18s ease;
  --font-base: 16px;
}

/* ---- Base ---- */
html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Accessibility ---- */

/*
 * High-contrast mode is implemented by overriding CSS custom properties and
 * a small set of hardcoded colours.  We intentionally do NOT use
 * `filter: contrast()` on <body> because that creates a new CSS containing
 * block for `position:fixed` children, which makes the accessibility FAB and
 * panel scroll off-screen instead of staying fixed in the viewport.
 */
body.a11y-contrast {
  /* Re-map design tokens to high-contrast values */
  --text-primary:    #000000;
  --text-secondary:  #000000;
  --text-muted:      #111111;
  --bg-white:        #FFFFFF;
  --bg-light:        #FFFFFF;
  --bg-subtle:       #EEEEEE;
  --border:          #000000;
  --border-light:    #333333;
  --gov-blue:        #0000CC;
  --gov-blue-dark:   #00008B;
  --gov-blue-hover:  #000077;
  --gov-blue-light:  #E0E0FF;
  --gov-blue-mid:    #8888EE;
  --gov-purple:      #440088;
  --gov-purple-soft: #5500AA;
  --gov-purple-light:#F0E8FF;
  --success:         #004400;
  --success-bg:      #CCFFCC;
  --error:           #880000;
}

/* Hero banner – uses mostly hardcoded colours */
body.a11y-contrast .hero-section              { background: #001A47; }
body.a11y-contrast .hero-title,
body.a11y-contrast .hero-subtitle,
body.a11y-contrast .hero-bullets li           { color: #FFFFFF; }
body.a11y-contrast .hero-title .highlight,
body.a11y-contrast .stat-num,
body.a11y-contrast .bullet-check              { color: #AADDFF; }
body.a11y-contrast .hero-disclaimer           { color: rgba(255,255,255,0.85); }
body.a11y-contrast .stat-card                 { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
body.a11y-contrast .stat-desc                 { color: #FFFFFF; }
body.a11y-contrast .btn-hero                  { background: #FFFFFF !important; color: #000066 !important; border-color: #FFFFFF !important; }
body.a11y-contrast .btn-hero:hover,
body.a11y-contrast .btn-hero:focus-visible    { background: #E0E0FF !important; border-color: #E0E0FF !important; color: #000044 !important; }

/* a11y reset button – has hardcoded reddish palette */
body.a11y-contrast .a11y-reset               { background: #FFF0F0; border-color: #880000; color: #880000; }
body.a11y-contrast .a11y-reset:hover         { background: #FFE0E0; }
body.a11y-contrast .a11y-reset .a11y-option-icon { color: #880000; }

/* Ensure the accessibility FAB and panel are always clearly visible,
   independently of every other style change. */
body.a11y-contrast .a11y-fab {
  background: #00008B;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 2px #00008B, 0 2px 8px rgba(0,0,0,0.5);
}
body.a11y-contrast .a11y-fab:hover,
body.a11y-contrast .a11y-fab:focus-visible   { background: #0000CC; }
body.a11y-contrast .a11y-panel               { border: 2px solid #000000; }
body.a11y-contrast .a11y-panel-header        { background: #00008B; }
body.a11y-contrast .a11y-title               { color: #FFFFFF; }
body.a11y-contrast .a11y-close-btn           { color: rgba(255,255,255,0.9); }
body.a11y-contrast .a11y-section-label       { color: #111111; }
body.a11y-contrast .a11y-text-ctrl          { border-color: #000000; }
body.a11y-contrast .a11y-size-btn            { background: #EEEEEE; border-color: #000000; color: #000000; }
body.a11y-contrast .a11y-size-btn:hover,
body.a11y-contrast .a11y-size-btn:focus-visible { background: #E0E0FF; color: #000066; }
body.a11y-contrast .a11y-size-display        { background: #FFFFFF; border-color: #000000; color: #000000; }
body.a11y-contrast .a11y-option-btn          { background: #FFFFFF; border: 2px solid #000000; color: #000000; }
body.a11y-contrast .a11y-option-btn:hover,
body.a11y-contrast .a11y-option-btn:focus-visible { background: #E0E0FF; border-color: #0000CC; color: #000000; }
body.a11y-contrast .a11y-option-btn[aria-checked="true"],
body.a11y-contrast .a11y-option-btn.active   { background: #00008B; color: #FFFFFF; border-color: #00008B; }
body.a11y-contrast .a11y-option-btn[aria-checked="true"] .a11y-option-icon { color: #FFFFFF; }

/* Text scaling: must target html so rem units (relative to html) scale correctly */
html.a11y-text-lg  { font-size: calc(var(--font-base) * 1.15); }
html.a11y-text-xl  { font-size: calc(var(--font-base) * 1.30); }
body.a11y-links a  {
  outline: 2px solid var(--gov-blue) !important;
  text-decoration: underline !important;
}
body.a11y-no-anim *,
body.a11y-no-anim *::before,
body.a11y-no-anim *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}

:focus-visible {
  outline: 2px solid var(--gov-blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gov-blue);
  color: #fff;
  border-color: var(--gov-blue);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gov-blue-hover);
  border-color: var(--gov-blue-hover);
}

.btn-outline {
  background: transparent;
  color: var(--gov-blue);
  border-color: var(--gov-blue);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gov-blue-light);
}

.btn-large { padding: 14px 32px; font-size: 1.05rem; }
.btn-hero  {
  padding: 16px 38px;
  font-size: 1.15rem;
  font-weight: 800;
  background: #ffffff !important;
  color: var(--gov-blue) !important;
  border-color: #ffffff !important;
  box-shadow: 0 3px 14px rgba(0,0,0,0.22);
  letter-spacing: 0.02em;
}
.btn-hero:hover,
.btn-hero:focus-visible {
  background: #eef2ff !important;
  border-color: #eef2ff !important;
  color: var(--gov-blue-dark) !important;
}
.btn-arrow { font-size: 1.05em; }

/* ============================================================
   ACCESSIBILITY FAB & PANEL (gov.il standard)
   ============================================================ */
.a11y-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: var(--gov-blue-dark);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px 18px 10px 14px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,56,168,0.30);
  transition: background var(--ease), box-shadow var(--ease);
}
.a11y-fab:hover,
.a11y-fab:focus-visible {
  background: var(--gov-blue);
  box-shadow: 0 4px 16px rgba(0,56,168,0.40);
}
.a11y-fab-icon { flex-shrink: 0; }
.a11y-fab-label { font-size: 0.875rem; }

.a11y-panel {
  position: fixed;
  bottom: 78px;
  left: 24px;
  z-index: 9998;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: 248px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  display: none;
  overflow: hidden;
}
.a11y-panel.open { display: block; }

/* Panel header – gov.il blue bar */
.a11y-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gov-blue-dark);
  color: #fff;
  padding: 11px 14px;
}
.a11y-header-icon { flex-shrink: 0; opacity: 0.9; }

.a11y-title {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.a11y-close-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease), background var(--ease);
  flex-shrink: 0;
}
.a11y-close-btn:hover,
.a11y-close-btn:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.2);
}

/* Panel body */
.a11y-panel-body { padding: 14px 14px 12px; }

/* Text-size section */
.a11y-section { margin-bottom: 12px; }
.a11y-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.a11y-text-ctrl {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
}
.a11y-size-btn {
  flex: 0 0 44px;
  height: 38px;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: background var(--ease), color var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-size-btn:hover,
.a11y-size-btn:focus-visible {
  background: var(--gov-blue-light);
  color: var(--gov-blue);
}
.a11y-size-btn:focus-visible {
  outline: 2px solid var(--gov-blue);
  outline-offset: -2px;
}
.a11y-size-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.a11y-size-btn:disabled:hover { background: var(--bg-light); color: var(--text-primary); }

.a11y-size-display {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-right: 1.5px solid var(--border);
  border-left: 1.5px solid var(--border);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
}

/* Toggle options */
.a11y-options { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }

.a11y-option-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  text-align: right;
  width: 100%;
}
.a11y-option-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: var(--text-secondary);
  transition: color var(--ease);
}
.a11y-option-btn:hover,
.a11y-option-btn:focus-visible {
  background: var(--gov-blue-light);
  border-color: var(--gov-blue);
}
.a11y-option-btn[aria-checked="true"],
.a11y-option-btn.active {
  background: var(--gov-blue);
  color: #fff;
  border-color: var(--gov-blue);
}
.a11y-option-btn[aria-checked="true"] .a11y-option-icon,
.a11y-option-btn.active .a11y-option-icon { color: #fff; }

.a11y-reset { background: #FFF5F5; border-color: #FECACA; color: var(--error); }
.a11y-reset:hover { background: #FEE2E2; }
.a11y-reset .a11y-option-icon { color: var(--error); }
.a11y-reset[aria-checked="true"],
.a11y-reset.active { background: var(--gov-blue); color: #fff; border-color: var(--gov-blue); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg-white);
  border-bottom: 3px solid var(--gov-blue);
  box-shadow: 0 2px 8px rgba(0,63,140,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  gap: 12px;
  position: relative;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gov-blue);
}
.logo-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 20px;
}
.header-badge {
  background: var(--gov-blue-light);
  color: var(--gov-blue);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 11px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,56,168,0.25);
}

.header-gif-desktop {
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
}
.header-gif-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 3px;
}

/* Government logos in header – removed; kept for reference only */

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: #002D6B;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 99;
  text-align: center;
  border-bottom: 2px solid var(--gov-accent-sky);
  letter-spacing: 0.01em;
}
.announce-bar .announce-icon { font-size: 1.1em; flex-shrink: 0; }
.announce-bar .announce-text { flex: 1; line-height: 1.35; }
.announce-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  transition: color var(--ease);
}
.announce-close:hover { color: #fff; }

/* ============================================================
   FLOATING SOCIAL PROOF NOTIFICATION
   ============================================================ */
.social-proof-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 8000;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gov-blue);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.social-proof-popup.visible {
  opacity: 1;
  transform: translateX(0);
}
.sp-icon { font-size: 1.6rem; flex-shrink: 0; }
.sp-text { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.45; }
.sp-text strong { color: var(--text-primary); display: block; font-size: 0.88rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #003F8C 0%, #002D6B 60%, #001A47 100%);
  color: #fff;
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-section > .container { position: relative; }
.hero-section > .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge { display: none; }

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0s both;
}
.hero-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}
.hero-title .highlight { color: var(--gov-accent-sky); }

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 24px;
  line-height: 1.65;
  max-width: 550px;
}
.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 30px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255,255,255,0.93);
}
.bullet-check { color: var(--gov-accent-sky); }
.hero-disclaimer {
  margin: 16px auto 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.stat-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gov-accent-sky);
  line-height: 1.1;
}
.stat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 5px;
}

/* ============================================================
   QUESTIONNAIRE
   ============================================================ */
.questionnaire-section {
  padding: 48px 0 56px;
  background: var(--bg-light);
}

/* Governmental official header strip */
.quiz-gov-header {
  background: var(--gov-blue);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  border-bottom: 4px solid var(--gov-accent-sky);
  max-width: 640px;
  margin: 0 auto 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quiz-gov-emblem {
  flex-shrink: 0;
}
.quiz-gov-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 3px;
}
.quiz-gov-title-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quiz-gov-title-main {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.quiz-gov-title-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.quiz-gov-seal {
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 4px 10px;
}
.quiz-gov-seal-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Logo image in header */
.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.quiz-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.quiz-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 6px 28px rgba(0,63,140,0.10);
}

/* Quiz header */
.quiz-header { margin-bottom: 22px; }

.quiz-badge {
  display: inline-block;
  background: var(--gov-blue-light);
  color: var(--gov-blue);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: var(--radius);
  margin-bottom: 9px;
  border: 1px solid rgba(0,63,140,0.18);
  letter-spacing: 0.01em;
}
.success-badge {
  background: var(--success-bg);
  color: var(--success);
  border-color: rgba(13,122,62,0.2);
}

.quiz-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gov-blue);
  margin-bottom: 14px;
}
.quiz-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -8px;
  margin-bottom: 4px;
}

/* Progress bar */
.progress-bar-wrapper { display: flex; flex-direction: column; gap: 5px; }
.progress-bar-track {
  width: 100%;
  height: 5px;
  background: var(--bg-subtle);
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gov-blue);
  border-radius: 50px;
  transition: width 0.35s ease;
  width: 0%;
}
.progress-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
}

/* Question */
.question-area { min-height: 160px; }
.question-block { animation: fadeInQuestion 0.25s ease; }
@keyframes fadeInQuestion {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.question-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.question-text {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 22px;
  line-height: 1.55;
  text-align: center;
}

/* Answer buttons */
.answer-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.answer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-light);
  color: var(--text-primary);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  min-height: 64px;
}
.answer-btn:focus-visible {
  border-color: var(--gov-blue);
  background: var(--gov-blue-light);
  color: var(--gov-blue);
}
.answer-btn:disabled { cursor: default; }

/* Hover ONLY on devices with real pointer (not touch) */
@media (hover: hover) {
  .answer-btn:hover {
    border-color: var(--gov-blue);
    background: var(--gov-blue-light);
    color: var(--gov-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,63,140,0.15);
  }
  .answer-btn.yes-btn:hover {
    border-color: var(--success);
    background: var(--success-bg);
    color: var(--success);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(13,122,62,0.15);
  }
  .answer-btn.no-btn:hover {
    border-color: #6B7280;
    background: #F3F4F6;
    color: #374151;
    transform: translateY(-2px);
  }
}

/* Selected states — shown briefly before advancing */
.answer-btn.yes-btn.selected {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
  transform: scale(1.03);
}
.answer-btn.no-btn.selected {
  border-color: #4B5563;
  background: #4B5563;
  color: #fff;
  transform: scale(1.03);
}

/* Show emoji in answer buttons */
.answer-icon { font-size: 1.15em; }

/* Quiz nav */
.quiz-nav {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}
.btn-back { font-size: 0.88rem; padding: 9px 15px; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}
.required { color: var(--error); margin-right: 2px; }
.optional  { font-size: 0.79rem; font-weight: 400; color: var(--text-muted); }

.form-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: border-color var(--ease), box-shadow var(--ease);
  direction: rtl;
  text-align: right;
}
.form-input:focus {
  outline: none;
  border-color: var(--gov-blue);
  box-shadow: 0 0 0 3px rgba(0,56,168,0.10);
}
.form-input.error { border-color: var(--error); }
.form-input::placeholder { color: #9CA3AF; }

.field-error {
  font-size: 0.79rem;
  color: var(--error);
  font-weight: 600;
  min-height: 16px;
  display: block;
}

/* Consent */
.consent-group { display: flex; flex-direction: column; gap: 10px; }

/* White official-looking consent text box */
.consent-box {
  background: #fff;
  border: 2px solid var(--gov-blue);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  max-height: 130px;
  overflow-y: auto;
}

.consent-label { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.consent-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--gov-blue);
  margin-top: 1px;
  cursor: pointer;
  border: 2px solid var(--gov-blue);
}
.consent-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.consent-confirm-text {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.consent-link { color: var(--gov-blue); text-decoration: underline; }

/* Submit */
.btn-submit {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.btn-submit:disabled { opacity: 0.62; cursor: not-allowed; }

/* Trust row */
.form-trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: -4px;
}
.trust-item {
  font-size: 0.79rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

/* ============================================================
   THANK YOU
   ============================================================ */
.thankyou-card { text-align: center; }
.thankyou-icon {
  font-size: 3.2rem;
  margin-bottom: 11px;
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.thankyou-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gov-blue);
  margin-bottom: 11px;
}
.thankyou-text {
  font-size: 0.96rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.thankyou-info-box {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gov-blue-light);
  border: 1px solid rgba(0,56,168,0.2);
  border-radius: var(--radius-md);
  padding: 10px 17px;
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--gov-blue);
  margin-bottom: 14px;
}
.thankyou-info-box--instant {
  background: #edfff3;
  border-color: #22c55e;
  color: #15803d;
}
.thankyou-small { font-size: 0.83rem; color: var(--text-muted); }

/* Free badge line in form-step header */
.free-badge-line { margin-top: 6px; margin-bottom: 6px; }
.free-badge {
  display: inline-block;
  background: #edfff3;
  color: #15803d;
  border: 1.5px solid #22c55e;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Trust list below form-step header */
.form-trust-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-trust-list li {
  font-size: 0.87rem;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--bg-white);
  padding: 52px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.section-header { text-align: center; margin-bottom: 34px; }
.section-title {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gov-blue);
  margin-bottom: 7px;
  line-height: 1.3;
}
.section-subtitle { font-size: 0.95rem; color: var(--text-muted); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.stat-big-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gov-blue);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-big-card.highlight-card {
  background: linear-gradient(135deg, var(--gov-blue-light) 0%, var(--gov-purple-light) 100%);
  border-top-color: var(--gov-purple-soft);
}
.stat-big-icon { font-size: 2rem; margin-bottom: 7px; }
.stat-big-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gov-blue);
  margin-bottom: 5px;
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-purple-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-big-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.stats-cta { text-align: center; }

/* ============================================================
   REFUND SECTION
   ============================================================ */
.refund-section {
  padding: 52px 0;
  background: var(--bg-light);
}
.refund-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.refund-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-right: 3px solid var(--gov-blue);
  border-radius: var(--radius);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: background var(--ease);
}
.refund-item:hover { background: var(--gov-blue-light); }
.refund-icon { font-size: 1.25em; flex-shrink: 0; }
.refund-label { flex: 1; }

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  background: var(--bg-white);
  padding: 52px 0;
  border-top: 1px solid var(--border-light);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.why-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border-top: 3px solid transparent;
  transition: border-top-color var(--ease), background var(--ease);
}
.why-card:hover {
  border-top-color: var(--gov-blue);
  background: var(--gov-blue-light);
}
.why-icon { font-size: 1.75rem; margin-bottom: 7px; }
.why-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.why-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Bonuses */
.bonuses-section {
  background: var(--gov-blue-light);
  border: 1px solid rgba(0,56,168,0.15);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.bonuses-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--gov-blue);
  margin-bottom: 16px;
  text-align: center;
}
.bonuses-grid { display: flex; flex-direction: column; gap: 10px; }
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 13px 15px;
  border: 1px solid var(--border-light);
}
.bonus-icon { font-size: 1.4em; flex-shrink: 0; margin-top: 1px; }
.bonus-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.94rem;
  margin-bottom: 2px;
}
.bonus-item p { font-size: 0.83rem; color: var(--text-secondary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-light);
  padding: 52px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item:hover { border-color: var(--gov-blue); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  text-align: right;
  transition: background var(--ease);
}
.faq-question:hover,
.faq-question:focus-visible { background: var(--bg-light); }
.faq-question[aria-expanded="true"] {
  color: var(--gov-blue);
  background: var(--gov-blue-light);
}
.faq-arrow {
  font-size: 0.7rem;
  color: var(--gov-blue);
  transition: transform var(--ease);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 12px 20px 16px;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.65;
  border-top: 1px solid var(--border-light);
}
.faq-answer[hidden] { display: none; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: linear-gradient(135deg, #003F8C 0%, #002D6B 60%, #001A47 100%);
  padding: 52px 0;
}
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  border-top: 5px solid var(--gov-blue);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.pricing-badge {
  display: inline-block;
  background: var(--gov-blue-light);
  color: var(--gov-blue);
  font-size: 0.81rem;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: var(--radius);
  margin-bottom: 9px;
  border: 1px solid rgba(0,56,168,0.18);
}
.pricing-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gov-blue);
  margin-bottom: 16px;
}
.pricing-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.pricing-percent {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--gov-blue);
  line-height: 1;
}
.pricing-plus {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: right;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.pricing-features li span { color: var(--success); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gov-blue-dark);
  color: rgba(255,255,255,0.68);
  padding: 30px 0;
  border-top: 2px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.footer-disclaimer {
  font-size: 0.77rem;
  line-height: 1.55;
  max-width: 580px;
  color: rgba(255,255,255,0.48);
}
.footer-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-link {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  transition: color var(--ease);
}
.footer-link:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.32); }


/* ============================================================
   RESPONSIVE — Tablet (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
    margin: 0 auto;
  }
  .stat-num { font-size: 1.3rem; }
}

/* ≤768px: hero stats switch to 1 column to avoid cramping */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 320px; }
  .stat-num   { font-size: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --font-base: 15px; }

  .announce-bar { font-size: 0.78rem; padding: 8px 12px; }
  .social-proof-popup { right: 10px; left: 10px; max-width: none; }

  .header-badge { display: none; }
  .header-gif-desktop { display: none; }

  .bullet-check { color: var(--gov-accent-sky) !important; }

  .hero-section  { padding: 36px 0 30px; }
  .hero-title    { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }
  .btn-hero      { padding: 14px 26px; font-size: 1rem; }
  .hero-stats    { grid-template-columns: 1fr; max-width: 300px; }

  .logo-icon-wrap .logo-img { width: 32px; height: 32px; }
  .quiz-gov-header { padding: 12px 15px; }
  .quiz-gov-logo   { width: 36px; height: 36px; }
  .quiz-gov-title-main { font-size: 0.88rem; }
  .quiz-card     { padding: 20px 15px; border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .quiz-title    { font-size: 1.12rem; }
  .question-text { font-size: 0.98rem; }
  .answer-btns   { grid-template-columns: 1fr; gap: 9px; }
  .answer-btn    { padding: 15px 12px; font-size: 1rem; }

  .refund-grid   { grid-template-columns: 1fr; }

  .pricing-card    { padding: 26px 16px; }
  .pricing-percent { font-size: 2.2rem; }

  .a11y-fab    { bottom: 16px; left: 16px; padding: 8px 14px 8px 12px; font-size: 0.82rem; }
  .a11y-panel  { left: 16px; bottom: 66px; width: 220px; }

  .faq-question { font-size: 0.9rem; padding: 13px 15px; }
  .faq-answer   { padding: 10px 15px 14px; }

  .btn-large { padding: 13px 24px; font-size: 0.97rem; }

  .why-grid   { max-width: 100%; }
  .stats-grid { max-width: 100%; }
  .hero-stats { max-width: 100%; }

  .logo-main { font-size: 1.1rem; }
  .logo-sub  { font-size: 0.62rem; }
  .header-badge { font-size: 0.7rem; padding: 3px 7px; }
  .logo-img  { width: 32px; height: 32px; }

  .footer-contact { flex-direction: column; gap: 6px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ---- Hero entrance ---- */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title    { animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.hero-subtitle { animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.12s both; }
.hero-bullets  { animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
/* btn-hero animation declared in the shimmer block above */
.hero-stats    { animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.44s both; }
.hero-disclaimer { animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.52s both; }

/* ---- Stat counter number pulse ---- */
@keyframes countPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.stat-num-animated { animation: countPulse 0.5s ease; }

/* ---- Card lift on hover ---- */
.why-card, .stat-big-card, .refund-item, .faq-item {
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), box-shadow 0.28s ease, border-color var(--ease), background var(--ease);
}
.why-card:hover, .stat-big-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,63,140,0.13);
}
.refund-item:hover {
  transform: translateX(-4px);
}

/* ---- Shimmer on submit button ---- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn-submit:not(:disabled) {
  background: linear-gradient(90deg, #003F8C 35%, #0056B3 50%, #003F8C 65%);
  background-size: 250% auto;
  animation: shimmer 3s linear infinite;
}
.btn-submit:not(:disabled):hover {
  animation-duration: 1.2s;
}

/* ---- Hero CTA pulse ring ---- */
@keyframes heroCtaPulse {
  0%   { box-shadow: 0 3px 14px rgba(0,0,0,0.22), 0 0 0 0 rgba(255,255,255,0.45); }
  70%  { box-shadow: 0 3px 14px rgba(0,0,0,0.22), 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 3px 14px rgba(0,0,0,0.22), 0 0 0 0 rgba(255,255,255,0); }
}
.btn-hero {
  animation: heroSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.32s both, heroCtaPulse 2.5s ease-out 1.5s infinite;
}

/* ---- Progress bar glow ---- */
.progress-bar-fill {
  box-shadow: 0 0 8px rgba(0,56,168,0.45);
}

/* ---- Logo entrance ---- */
@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.logo-group {
  animation: logoEntrance 0.55s cubic-bezier(0.16,1,0.3,1) both;
}

/* ---- Quiz card entrance ---- */
@keyframes quizCardIn {
  from { opacity: 0; transform: scale(0.97) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.quiz-card {
  animation: quizCardIn 0.55s cubic-bezier(0.16,1,0.3,1) both;
}

/* ---- Respect prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { transition: none; }
  .hero-title, .hero-subtitle, .hero-bullets, .btn-hero, .hero-stats, .hero-disclaimer, .hero-live-badge { animation: none; opacity: 1; transform: none; }
  .logo-group { animation: none; }
  .quiz-card { animation: none; }
  .btn-submit:not(:disabled) { animation: none; background: var(--gov-blue); }
  .announce-bar { animation: none; }
  .hero-live-dot { animation: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .a11y-fab, .a11y-panel, .site-header, .announce-bar, .social-proof-popup { display: none; }
}
