/* ==========================================================================
   STOPP OÜ — stopp.ee
   Liikluskorraldus & ajutised liikluslahendused
   Light theme. Signage palette on white.
   ========================================================================== */

:root {
  /* Surfaces (light) */
  --bg:         #FFFFFF;
  --surface:    #FFFFFF;
  --surface-2:  #F6F7F8;
  --surface-3:  #EEF0F2;

  /* Ink / text */
  --text:       #0E0E0E;
  --muted:      #666666;
  --muted-2:    #3A3A3A;

  /* Hairlines */
  --line:       rgba(0, 0, 0, 0.09);
  --line-2:     rgba(0, 0, 0, 0.15);

  /* Signage accents */
  --red:        #E63946;
  --red-deep:   #B91D2C;
  --yellow:     #F5C518;

  /* Radii */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  14px;

  /* Rhythm */
  --pad:        clamp(20px, 4vw, 64px);
  --maxw:       1320px;

  /* Motion */
  --t-fast: 180ms cubic-bezier(.2, .7, .2, 1);
  --t-mid:  360ms cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
               'Archivo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: #0E0E0E; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
img, svg { display: block; }

/* --- Type utilities ------------------------------------------------------ */
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: "ss01";
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

/* --- Page container ------------------------------------------------------ */
.page { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #FFFFFF; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }

/* --- Reveal-on-scroll ---------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .9s cubic-bezier(.2, .7, .2, 1) forwards; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; animation: none !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: relative; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-word {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-word .name { font-weight: 800; letter-spacing: 0.04em; font-size: 24px; }
.logo-word .sub {
  font-size: 11px; color: var(--muted-2); letter-spacing: 0.18em; margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--muted-2); border-radius: 6px; transition: color var(--t-fast);
}
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-pill {
  font-size: 13px; color: var(--text); letter-spacing: 0.04em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line-2);
  padding: 10px 16px; border-radius: var(--radius);
  transition: border-color var(--t-fast);
}
.phone-pill:hover { border-color: var(--red); }
.phone-pill .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--red); flex-shrink: 0;
}

@media (max-width: 880px) {
  .hide-mobile { display: none !important; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(40px, 7vw, 96px);
  padding-bottom: clamp(28px, 4vw, 56px);
  overflow: hidden;
}
.blueprint-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 70% 40%, #000 30%, transparent 80%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.8vw, 66px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--red); position: relative; display: inline-block; }
.hero h1 .accent .ul {
  position: absolute; bottom: -4px; left: 0; right: 0; height: 4px; background: var(--text);
}
.hero-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}
.cta-pulse { animation: ctaPulse 1.9s cubic-bezier(.2, .7, .2, 1) infinite; }
@media (prefers-reduced-motion: reduce) { .cta-pulse { animation: none; } }

.hero-cta-row .btn-primary { padding: 20px 36px; font-size: 18px; }

.hero-figure {
  position: relative; align-self: start;
  margin-top: clamp(-16px, -2vw, -8px);
  width: 100%; max-width: 640px;
  margin-left: auto; margin-right: clamp(0px, -4vw, -90px);
}
.schematic-frame { position: relative; width: 100%; }
.schematic-frame svg {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { margin-right: auto; max-width: 520px; }
}

/* ==========================================================================
   Section header
   ========================================================================== */
.section-header { max-width: 720px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section-header p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted-2);
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

/* ==========================================================================
   Teenused (services / product grid)
   ========================================================================== */
.services {
  padding: clamp(20px, 2vw, 32px) 0 clamp(44px, 5vw, 72px);
  background: var(--bg);
}
.svc-cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-card {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.2vw, 30px);
  color: inherit;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.2, .7, .2, 1),
              transform .55s cubic-bezier(.2, .7, .2, 1),
              border-color var(--t-fast), box-shadow var(--t-fast);
}
.svc-card.in { opacity: 1; transform: translateY(0); }
.svc-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: top; transition: transform var(--t-mid);
}
.svc-card:hover {
  border-color: var(--red);
  box-shadow: 0 16px 36px -24px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}
.svc-card:hover .svc-accent { transform: scaleY(1); }
.svc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.svc-ico { flex-shrink: 0; display: inline-flex; transition: transform var(--t-fast); transform-origin: left center; }
.svc-card:hover .svc-ico { transform: scale(1.08); }
.svc-arrow { font-size: 16px; color: var(--muted); transition: transform var(--t-fast), color var(--t-fast); }
.svc-card:hover .svc-arrow { transform: translateX(4px); color: var(--red); }
.svc-card h3 {
  font-size: clamp(17px, 1.5vw, 20px); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.2; margin: 0; text-wrap: balance;
}
.svc-card p {
  font-size: 14px; line-height: 1.55; color: var(--muted-2); margin: 0; text-wrap: pretty;
}
@media (prefers-reduced-motion: reduce) {
  .svc-card { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 900px) { .svc-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .svc-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   Kontakt / Päring (quiz)
   ========================================================================== */
.paring {
  padding: clamp(40px, 5vw, 72px) 0 clamp(28px, 3vw, 48px);
  background: var(--bg);
  position: relative;
}
.road-divider { width: 100%; margin: 0 0 clamp(32px, 4vw, 56px); }
.road-divider svg { display: block; width: 100%; height: auto; }

.paring-wrap { max-width: 820px; margin: 0 auto; }
.paring-head { text-align: center; max-width: 600px; margin: 0 auto clamp(28px, 4vw, 44px); }
.paring-head h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.04; margin: 0 0 16px; text-wrap: balance;
}
.paring-head p {
  font-size: clamp(15px, 1.2vw, 18px); color: var(--muted-2); line-height: 1.6;
  margin: 0; text-wrap: pretty;
}

.quiz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 3.6vw, 48px);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.22);
}

.quiz-progress { margin-bottom: 28px; }
.quiz-progress-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px;
}
.quiz-progress-label { font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.quiz-progress-pct { font-size: 12px; letter-spacing: 0.14em; color: var(--red); }
.quiz-progress-track { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--red); border-radius: 999px; transition: width var(--t-mid); }

.quiz-body { min-height: 300px; }

/* Step transition */
@keyframes paringInFwd  { from { opacity: 0; transform: translateX(24px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes paringInBack { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
.paring-step { animation: paringInFwd .32s cubic-bezier(.2, .7, .2, 1) both; }
.paring-step[data-dir="-1"] { animation-name: paringInBack; }
@media (prefers-reduced-motion: reduce) { .paring-step { animation: none; } }

.step-title {
  font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin: 0 0 10px; text-wrap: balance;
}
.step-sub { color: var(--muted-2); font-size: 16px; margin: 0 0 26px; line-height: 1.5; }

.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt {
  display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 20px;
  text-align: left; width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  color: inherit; border-radius: 12px;
  padding: 22px 26px; cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}
.quiz-opt:hover {
  border-color: var(--muted);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -16px rgba(0, 0, 0, 0.45);
}
.quiz-opt.selected {
  background: var(--surface-3); border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}
.quiz-opt-ico {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 28px;
  color: var(--muted); transition: color var(--t-fast), transform var(--t-fast);
}
.quiz-opt-ico svg { width: 40px; height: 40px; }
.quiz-opt:hover .quiz-opt-ico { transform: scale(1.06); }
.quiz-opt.selected .quiz-opt-ico,
.quiz-opt.urgent .quiz-opt-ico { color: var(--red); }
.quiz-opt-label { display: block; font-size: 18.5px; font-weight: 600; line-height: 1.25; }
.quiz-opt-desc { display: block; font-size: 14.5px; color: var(--muted); margin-top: 5px; line-height: 1.45; }

/* Contact form */
.paring-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 11.5px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.field input, .field textarea {
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t-fast);
  width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--red); }
.field textarea { resize: vertical; min-height: 84px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 460px) { .paring-row2 { grid-template-columns: 1fr; } }

/* Quiz footer nav */
.quiz-nav {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.quiz-back {
  background: transparent; border: none; color: var(--muted-2);
  font-size: 15px; font-weight: 500; padding: 10px 0; cursor: pointer;
}
.quiz-back:disabled { color: var(--muted); cursor: not-allowed; opacity: 0.4; }
.quiz-hint { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.quiz-submit.btn-primary { padding: 16px 32px; font-size: 16px; }
.quiz-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.gdpr-note { margin: 16px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.55; text-wrap: pretty; }

/* Live summary */
.summary { margin-top: 32px; }
.summary-empty {
  padding: 18px; border: 1px dashed var(--line-2); border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
}
.summary-empty .diamond { color: var(--yellow); font-size: 18px; }
.summary-empty span:last-child { font-size: 13px; color: var(--muted); line-height: 1.4; }
.summary-box { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.summary-title {
  font-size: 10px; letter-spacing: 0.16em; color: var(--muted);
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--surface-2);
}
.summary-row {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 12px;
  width: 100%; text-align: left; background: transparent; border: none;
  border-top: 1px solid var(--line); padding: 12px 16px; cursor: pointer; color: inherit;
}
.summary-row:first-of-type { border-top: none; }
.summary-key { font-size: 10px; letter-spacing: 0.1em; color: var(--muted); }
.summary-val { font-size: 14px; font-weight: 600; }
.summary-edit { font-size: 11px; color: var(--muted); }

/* Contact rows */
.paring-contact {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 40px);
}
.contact-row { display: inline-flex; align-items: center; gap: 14px; }
.contact-row .ico {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 30px; line-height: 1;
}
.contact-row .rk { display: block; font-size: 10px; color: var(--muted); letter-spacing: 0.14em; margin-bottom: 3px; }
.contact-row .rv { display: block; font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
@media (max-width: 520px) { .paring-contact { grid-template-columns: 1fr; } }

/* Success state */
.quiz-success {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; min-height: 400px;
}
.quiz-success .check {
  width: 64px; height: 64px; border-radius: 999px; background: var(--yellow); color: #0E0E0E;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; margin-bottom: 24px;
}
.quiz-success h3 { font-size: 26px; font-weight: 700; margin: 0 0 12px; }
.quiz-success p { color: var(--muted-2); max-width: 400px; margin: 0 0 24px; line-height: 1.5; }
.quiz-success .pid { font-size: 11px; color: var(--muted); letter-spacing: 0.14em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg);
  padding-top: clamp(20px, 2.5vw, 40px);
  padding-bottom: 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .name { font-weight: 800; letter-spacing: 0.04em; font-size: 20px; }
.footer-brand .sub { font-size: 10px; color: var(--muted-2); letter-spacing: 0.18em; margin-top: 4px; }
.footer-col-title {
  font-size: 11px; color: var(--muted); letter-spacing: 0.14em; margin-bottom: 16px; text-transform: uppercase;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: var(--muted-2); transition: color var(--t-fast); }
.footer-col-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 32px; }
.footer-bottom .copy { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Road CTA banner ----------------------------------------------------- */
.road-cta {
  position: relative;
  margin-bottom: clamp(60px, 7vw, 100px);
  border-radius: 22px;
  background: var(--red);
  overflow: hidden;
  min-height: 300px;
  display: flex; align-items: center;
  padding: clamp(32px, 5vw, 72px);
}
.road-cta .road-svg {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 100%; width: min(40%, 460px);
}
.road-cta .road-carve { stroke: var(--red); }
.road-cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 48px); width: 100%; flex-wrap: wrap;
}
.road-cta-text { max-width: min(44%, 400px); }
.road-cta-text h2 {
  font-size: clamp(36px, 4.8vw, 62px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.0; margin: 0; color: #fff; text-wrap: balance;
}
.road-cta-text p {
  margin: 16px 0 0; color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.4vw, 19px); line-height: 1.5; max-width: 460px; text-wrap: pretty;
}
.road-cta-btn {
  flex-shrink: 0; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: #fff; font-size: 16px; font-weight: 700; background: transparent;
  transition: background var(--t-fast), color var(--t-fast);
}
.road-cta-btn:hover { background: #fff; color: var(--red); }
@media (prefers-reduced-motion: reduce) {
  .road-cta .road-svg animateMotion,
  .road-divider animateMotion { display: none; }
}
@media (max-width: 720px) {
  .road-cta .road-svg { opacity: 0.3; width: 78%; }
  .road-cta-text { max-width: 100%; }
}

/* ==========================================================================
   Large / ultrawide screens — scale up so the site fills big monitors
   ========================================================================== */
@media (min-width: 1600px) {
  :root { --maxw: 1560px; }
  body { font-size: 17px; }

  .logo-word .name { font-size: 26px; }
  .main-nav a { font-size: 15px; }
  .phone-pill { font-size: 14px; }
  .btn { font-size: 15px; }

  .hero h1 { font-size: clamp(66px, 5vw, 80px); }
  .hero-lede { font-size: 21px; max-width: 580px; }
  .hero-figure { max-width: 720px; }
  .hero-cta-row .btn-primary { padding: 22px 42px; font-size: 20px; }

  .section-header h2 { font-size: clamp(60px, 4.4vw, 72px); }
  .svc-card h3 { font-size: 22px; }
  .svc-card p { font-size: 15.5px; }

  .paring-head h2 { font-size: clamp(52px, 4vw, 62px); }
  .paring-head p { font-size: 20px; }
  .step-title { font-size: clamp(30px, 2.6vw, 36px); }
  .step-sub { font-size: 16.5px; }
  .quiz-opt { padding: 24px 28px; grid-template-columns: 60px 1fr; }
  .quiz-opt-label { font-size: 20px; }
  .quiz-opt-desc { font-size: 15.5px; }
  .quiz-opt-ico svg { width: 42px; height: 42px; }
  .field input, .field textarea { font-size: 16.5px; }
  .quiz-submit.btn-primary { padding: 17px 34px; font-size: 17px; }
  .contact-row .rv { font-size: 23px; }

  .road-cta-text { max-width: min(46%, 460px); }
  .road-cta-text h2 { font-size: clamp(62px, 3.6vw, 70px); }
  .road-cta-text p { font-size: 20px; }
  .road-cta-btn { font-size: 18px; padding: 20px 34px; }
  .footer-col-links a { font-size: 15px; }
}

@media (min-width: 2200px) {
  :root { --maxw: 1840px; --pad: clamp(56px, 4vw, 112px); }
  body { font-size: 19px; }

  .logo-word .name { font-size: 30px; }
  .logo-word .sub { font-size: 12px; }
  .main-nav a { font-size: 17px; padding: 12px 18px; }
  .phone-pill { font-size: 16px; padding: 12px 20px; }
  .btn { font-size: 17px; padding: 16px 26px; }

  .hero h1 { font-size: clamp(80px, 4vw, 90px); }
  .hero-lede { font-size: 24px; max-width: 640px; }
  .hero-figure { max-width: 860px; }
  .hero-cta-row .btn-primary { padding: 26px 50px; font-size: 23px; }

  .section-header h2 { font-size: clamp(72px, 4.2vw, 86px); }
  .svc-cards { gap: 20px; }
  .svc-card { padding: 40px; }
  .svc-card h3 { font-size: 26px; }
  .svc-card p { font-size: 17px; }
  .svc-ico svg { width: 54px; height: 54px; }

  .paring-head h2 { font-size: clamp(62px, 4vw, 72px); }
  .paring-head p { font-size: 23px; }
  .quiz-card { padding: 56px; }
  .quiz-opt { padding: 26px 32px; grid-template-columns: 64px 1fr; gap: 22px; }
  .quiz-opt-ico { font-size: 32px; }
  .quiz-opt-ico svg { width: 46px; height: 46px; }
  .quiz-opt-label { font-size: 22px; }
  .quiz-opt-desc { font-size: 16.5px; }
  .step-title { font-size: clamp(36px, 2.4vw, 42px); }
  .step-sub { font-size: 18px; }
  .field input, .field textarea { font-size: 17px; }
  .quiz-submit.btn-primary { padding: 18px 38px; font-size: 18px; }
  .contact-row .rv { font-size: 26px; }
  .contact-row .ico { font-size: 36px; }

  .road-cta { min-height: 360px; }
  .road-cta-text { max-width: min(48%, 560px); }
  .road-cta-text h2 { font-size: clamp(70px, 3.4vw, 80px); }
  .road-cta-text p { font-size: 23px; }
  .road-cta-btn { font-size: 21px; padding: 24px 42px; }
  .footer-col-links a { font-size: 17px; }
  .copy { font-size: 13px; }
}
