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

:root {
  --accent:   #2563eb;
  --accent-h: #1d4ed8;
  --accent-l: #3b82f6;
  --text:     #0f172a;
  --text-2:   #475569;
  --bg:       #ffffff;
  --bg-2:     #f8fafc;
  --border:   #e2e8f0;
  --radius:   12px;
  --shadow:   0 2px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(37,99,235,.15);
  --font:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
}
.logo:hover .logo-icon { transform: rotate(-5deg) scale(1.05); }
.logo-icon svg { width: 20px; height: 20px; fill: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
}
.logo-name span { color: var(--accent); }
.logo-desc {
  font-size: .68rem;
  color: var(--text-2);
  font-weight: 400;
  letter-spacing: .01em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.header-phone:hover { background: #eff6ff; color: var(--accent); text-decoration: none; }
.header-phone-icon { font-size: .85rem; }

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s, box-shadow .2s, transform .1s;
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  text-decoration: none; color: #fff;
}
.btn-primary:disabled { opacity: .6; cursor: not-allowed; box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; text-decoration: none; }

.btn-sm  { padding: 9px 18px; font-size: .88rem; min-height: 38px; }
.btn-lg  { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  text-align: center;
  background: #f0f6ff;
}
/* animated gradient background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 20% 40%, rgba(37,99,235,.12) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at 80% 70%, rgba(16,185,129,.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 60% 10%, rgba(139,92,246,.07) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlow {
  0%   { opacity: .7; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: .8; transform: scale(1.02) translateX(20px); }
}

/* floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: var(--accent);
  animation: floatShape 10s ease-in-out infinite;
}
.hero-shape:nth-child(1) { width: 320px; height: 320px; top: -80px; left: -80px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 200px; height: 200px; top: 60%; right: -60px; animation-delay: 3s; animation-duration: 13s; background: #10b981; }
.hero-shape:nth-child(3) { width: 140px; height: 140px; bottom: -40px; left: 30%; animation-delay: 6s; animation-duration: 9s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(10deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,.1);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
  animation: fadeDown .6s ease both;
}
.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.02em;
  animation: fadeDown .6s .1s ease both;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeDown .6s .2s ease both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeDown .6s .3s ease both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.badge-icon { font-size: .85rem; }
.hero-cta-wrap {
  animation: fadeDown .6s .4s ease both;
}
.hero-hint {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--text-2);
}

/* ─── Warning block ─── */
.warning-block {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .8rem;
  color: #78350f;
  line-height: 1.6;
  margin-top: 20px;
}

/* ════════════════════════════════════
   SECTIONS — общий стиль + reveal
════════════════════════════════════ */
section { padding: 72px 0; }
.section-alt { background: var(--bg-2); }

/* subtle diagonal bg for steps section */
.section-steps {
  background: linear-gradient(170deg, #fff 60%, #f0f6ff 100%);
}

/* quiz standalone section */
.quiz-section {
  background: linear-gradient(160deg, #1e3a8a 0%, #2563eb 60%, #0ea5e9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quiz-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, rgba(255,255,255,.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(14,165,233,.2) 0%, transparent 70%);
  pointer-events: none;
}
.quiz-section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quiz-section-text { color: #fff; }
.quiz-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.quiz-section-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.quiz-section-sub {
  font-size: .95rem;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 24px;
}
.quiz-section-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  opacity: .9;
}
.quiz-bullet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  flex-shrink: 0;
}

/* quiz section warning override */
.quiz-section .warning-block {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  margin-top: 24px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 40px;
}
.text-center { text-align: center; }

/* ════════════════════════════════════
   QUIZ CARD
════════════════════════════════════ */
.quiz-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.3);
}
.quiz-header { margin-bottom: 24px; }
.quiz-progress-label {
  font-size: .78rem;
  color: var(--text-2);
  margin-bottom: 8px;
}
.quiz-progress-bar {
  width: 100%; height: 5px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.quiz-question {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.quiz-hint {
  font-size: .8rem;
  color: var(--text-2);
  margin-bottom: 16px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s;
  font-size: .93rem;
  user-select: none;
  min-height: 48px;
}
.quiz-option:hover { border-color: var(--accent); background: #eff6ff; transform: translateX(2px); }
.quiz-option.selected { border-color: var(--accent); background: #eff6ff; }
.quiz-option input[type=checkbox],
.quiz-option input[type=radio] {
  width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0;
}
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.quiz-back-btn {
  background: none; border: none;
  color: var(--text-2); cursor: pointer;
  font-size: .88rem; padding: 8px 0;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s;
}
.quiz-back-btn:hover { color: var(--accent); }

/* ─── Contact step ─── */
.contact-title  { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.contact-sub    { font-size: .86rem; color: var(--text-2); margin-bottom: 18px; }
.form-group     { margin-bottom: 13px; }
.form-label     { display: block; font-size: .83rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-label .opt { font-weight: 400; color: var(--text-2); }
.form-control {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .97rem; font-family: var(--font);
  color: var(--text); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  min-height: 48px;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-control.error { border-color: #ef4444; }
.contact-methods { display: flex; gap: 8px; margin-bottom: 13px; flex-wrap: wrap; }
.contact-method-btn {
  padding: 9px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer; font-size: .85rem; font-weight: 600;
  background: var(--bg); color: var(--text);
  transition: border-color .2s, background .2s;
  min-height: 42px;
}
.contact-method-btn.active { border-color: var(--accent); background: #eff6ff; color: var(--accent); }
.consent-group {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px;
}
.consent-group input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--accent);
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
}
.consent-text { font-size: .76rem; color: var(--text-2); line-height: 1.5; }
.field-error  { font-size: .76rem; color: #ef4444; margin-top: 4px; }
.hp-field { display: none !important; }

/* spinner */
.btn-spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn-spinner.active { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Pre-contact / Success ─── */
.precontact { text-align: center; padding: 8px 0 20px; }
.precontact-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.precontact-text  { font-size: .9rem; color: var(--text-2); margin-bottom: 20px; line-height: 1.6; }
.success-screen { display: none; text-align: center; padding: 16px 0; }
.success-icon  { font-size: 2.8rem; margin-bottom: 12px; }
.success-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.success-text  { font-size: .88rem; color: var(--text-2); }

/* ════════════════════════════════════
   PAIN CARDS
════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: .9rem;
  line-height: 1.55;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  border-color: #bfdbfe;
}
.pain-icon { font-size: 1.5rem; margin-bottom: 8px; }

/* ════════════════════════════════════
   STEPS
════════════════════════════════════ */
.steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px; margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; left: 19px; top: 20px;
  width: 2px;
  bottom: 20px;
  background: linear-gradient(180deg, var(--accent) 0%, #bfdbfe 100%);
  z-index: 0;
}
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 0 0 28px;
  position: relative; z-index: 1;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px #bfdbfe;
  transition: background .3s, box-shadow .3s;
}
.step:hover .step-num { background: var(--accent-h); box-shadow: 0 0 0 4px #fff, 0 0 0 6px #2563eb; }
.step-body { flex: 1; padding-top: 10px; }
.step-title { font-weight: 700; margin-bottom: 4px; }
.step-desc  { font-size: .87rem; color: var(--text-2); }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  cursor: pointer; padding: 18px 0;
  font-size: .93rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; line-height: 1.4;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow { font-size: .68rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 0 18px;
  font-size: .88rem; color: var(--text-2); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════
   FINAL CTA
════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
  color: #fff; text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 110%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .section-title { color: #fff; position: relative; }
.final-cta .section-sub   { color: rgba(255,255,255,.8); position: relative; }
.final-cta .btn-primary {
  background: #fff; color: var(--accent);
  font-size: 1.1rem; padding: 18px 44px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.final-cta .btn-primary:hover { background: #eff6ff; box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.final-cta .warning-block {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); max-width: 640px; margin: 20px auto 0;
  position: relative;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
  background: #0f172a; color: rgba(255,255,255,.7);
  padding: 48px 0 28px; font-size: .82rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
.footer-title {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 18px; }
.footer-bottom { color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-disclaimer { font-size: .73rem; color: rgba(255,255,255,.3); margin-top: 10px; line-height: 1.65; }

/* ════════════════════════════════════
   STICKY CTA (mobile)
════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent);
  padding: 12px 16px; z-index: 200;
  display: none; justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-cta .btn-primary {
  background: #fff; color: var(--accent);
  width: 100%; max-width: 480px;
  box-shadow: none;
}
.sticky-cta .btn-primary:hover { background: #eff6ff; }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }
.reveal-stagger.is-visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:.54s; }

/* step reveal with slide */
.step {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .4s ease, transform .4s ease;
}
.steps.is-visible .step:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.steps.is-visible .step:nth-child(2) { opacity:1; transform:none; transition-delay:.15s; }
.steps.is-visible .step:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }
.steps.is-visible .step:nth-child(4) { opacity:1; transform:none; transition-delay:.35s; }
.steps.is-visible .step:nth-child(5) { opacity:1; transform:none; transition-delay:.45s; }

/* ════════════════════════════════════
   HERO ANIMATIONS
════════════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 900px) {
  .quiz-section-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .quiz-section-text { text-align: center; }
  .quiz-section-bullets { align-items: center; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.9rem; }
  .hero { padding: 60px 0 52px; }

  .quiz-card { padding: 24px 18px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-title { font-size: 1.4rem; }

  .header-right .btn-primary { display: none; }
  .sticky-cta { display: flex; }

  .steps::before { left: 19px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.55rem; }
  .hero-sub   { font-size: 1rem; }
  .contact-methods { flex-direction: column; }
  .contact-method-btn { width: 100%; }
  .hero-badges { gap: 8px; }
}
