/* Commercial-cleaning shell — shared design system.
   Tokens + layout primitives + components. Carries no business identity;
   identity arrives via the injector (build.mjs). Fonts/palette measured from
   the reference build: Bebas Neue (display) + Archivo (body),
   near-black/white with an amber accent and a red CTA. */

:root {
  --ink: #0d0d0d;
  --paper: #ffffff;
  --bg-alt: #f4f4f4;
  --text: #2e2e2e;
  --muted: #6c6c6c;
  --amber: #f5b400;
  --red: #b32626;
  --red-dark: #8f1e1e;
  --border: #e2e2e2;
  --radius-card: 4px;
  --shadow-card: 0 14px 34px rgba(13, 13, 13, 0.1);
  --container: 1240px;
  --header-h: 81px;
  --font-display: "Bebas Neue", Archivo, "Helvetica Neue", sans-serif;
  --font-body: "Archivo", -apple-system, "Segoe UI", sans-serif;
  --hero-img: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
}
h1 { font-size: 40px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }
p { margin: 0 0 14px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #d8d8d8; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--red);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--amber); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-card);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
/* Fill-sweep hover for outline buttons: a pseudo layer slides up under the label. */
.btn-secondary, .btn-onbrand { position: relative; overflow: hidden; z-index: 0; }
.btn-secondary::before, .btn-onbrand::before { content: ''; position: absolute; inset: 0; z-index: -1; transform: translateY(101%); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.btn-secondary::before { background: var(--ink); }
.btn-onbrand::before { background: #fff; }
.btn-secondary:hover::before, .btn-onbrand:hover::before { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.15s ease, box-shadow 0.3s cubic-bezier(0.22,1,0.36,1); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -8px color-mix(in srgb, var(--red) 55%, transparent); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { color: #fff; }
.btn-onbrand { background: transparent; color: #fff; border-color: #fff; }
.btn-onbrand:hover { color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* Notice banner */
.notice {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 44px 10px 16px;
  position: relative;
}
.notice a { color: var(--amber); text-decoration: underline; }
.notice__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.brand-icon { flex-shrink: 0; }
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em; color: var(--ink); }
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark strong { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em; color: var(--ink); }
.wordmark span { font-family: var(--font-body); font-size: 9px; font-weight: 800; letter-spacing: 0.01em; color: var(--red); }
.wordmark--light strong { color: #fff; }
.wordmark--light span { color: var(--amber); }
.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a, .main-nav button {
  position: relative;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.main-nav a:hover, .main-nav button:hover { color: var(--red); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%; bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: left 0.3s cubic-bezier(0.22,1,0.36,1), right 0.3s cubic-bezier(0.22,1,0.36,1);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 11px 16px; font-size: 12px; white-space: nowrap; }
.header-actions .btn-secondary { display: none; }
@media (min-width: 1100px) { .header-actions .btn-secondary { display: inline-flex; } }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--paper);
}
@media (min-width: 960px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
}

/* Mega menu */
.main-nav li { position: relative; }
.mega { display: none; position: absolute; top: calc(100% + 10px); left: 0; background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow-card); padding: 20px; gap: 28px; min-width: 240px; z-index: 50; }
.mega.is-open { display: flex; }
.mega__col { display: flex; flex-direction: column; gap: 2px; min-width: 190px; }
.mega__col a { padding: 8px; font-size: 13px; font-weight: 600; color: var(--ink); text-transform: none; letter-spacing: 0; }
.mega__col a:hover { background: var(--bg-alt); color: var(--red); }
.mega__label { font-size: 11px; font-weight: 800; letter-spacing: 0.01em; color: var(--red); margin: 4px 8px 6px; }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 0; background: rgba(13,13,13,0.6); z-index: 200; display: none; }
.mobile-nav.is-open { display: block; }
.mobile-nav__panel { position: absolute; top: 0; right: 0; width: min(320px, 86vw); height: 100%; background: var(--paper); padding: 20px; overflow-y: auto; }
.mobile-nav__panel a, .mobile-nav__panel button { display: block; width: 100%; text-align: left; font-family: var(--font-display); font-size: 20px; padding: 14px 4px; border-bottom: 1px solid var(--border); background: none; border-left: none; border-right: none; border-top: none; color: var(--ink); }
.mobile-nav__close { float: right; background: none; border: none; font-size: 22px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: var(--ink);
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; border: 0; opacity: 0; transition: opacity 1s cubic-bezier(0.22,1,0.36,1); }
.hero__video.is-ready { opacity: 1; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(13,13,13,0.5); }
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: 44px; max-width: 720px; margin: 0 auto 18px; }
.hero p { font-size: 16px; max-width: 520px; margin: 0 auto 18px; color: rgba(255,255,255,0.85); }
.hero--sub { min-height: 340px; }
.hero--sub h1 { font-size: 36px; }
.breadcrumbs { font-size: 12px; letter-spacing: 0.01em; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.breadcrumbs a { color: rgba(255,255,255,0.9); }
.breadcrumbs a:hover { text-decoration: underline; }

/* Grid / cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-5 { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.grid-5 .card--icon { padding: 16px; gap: 8px; }
.grid-5 .card--icon img { height: 100px !important; }
.grid-5 .card--icon h3 { font-size: 18px; margin-bottom: 4px; }
.grid-5 .card--icon p { font-size: 13px; margin-bottom: 6px; }

/* Hover-reveal card — a photo by default; hovering wipes up a color panel with the
   description and CTA (clip-path reveal, cubic-bezier(0.22,1,0.36,1) house curve).
   Reduced-motion users still get the full content, just without the wipe animation. */
.pest-card { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden; }
.pest-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.pest-card:hover .pest-card__img { transform: scale(1.07); }
.pest-card__base {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
}
.pest-card__base h3 { color: #fff; margin: 0; font-size: 20px; }
.pest-card__reveal {
  position: absolute; inset: 0;
  background: var(--panel, var(--ink));
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.pest-card__reveal h3 { color: #fff; margin: 0 0 8px; font-size: 21px; }
.pest-card__reveal p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0 0 12px; }
.pest-card__reveal span { font-size: 13px; font-weight: 700; color: var(--amber); }
@media (prefers-reduced-motion: no-preference) {
  .pest-card__reveal { clip-path: inset(100% 0 0 0); transition: clip-path 0.6s cubic-bezier(0.22,1,0.36,1); }
  .pest-card:hover .pest-card__reveal, .pest-card:focus-visible .pest-card__reveal { clip-path: inset(0 0 0 0); }
}
.card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px -26px rgba(13,13,13,0.28); border-color: color-mix(in srgb, var(--red) 35%, var(--border)); }
a.card:hover { text-decoration: none; }
.card--icon { display: flex; flex-direction: column; gap: 12px; }
.icon-badge { width: 48px; height: 48px; border-radius: var(--radius-card); background: var(--ink); color: var(--amber); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; font-family: var(--font-display); }

/* Split */
.split { display: grid; gap: 36px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 60px; } .split--reverse { direction: rtl; } .split--reverse > * { direction: ltr; } }
.split img, .split .media-frame { border-radius: var(--radius-card); overflow: hidden; }

/* Stat row */
.stat-row { display: grid; gap: 24px; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat { border-left: 3px solid var(--amber); padding-left: 16px; text-align: left; }
.stat__num { font-family: var(--font-display); font-size: clamp(44px, 4.5vw, 64px); color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.section--dark .stat__num { color: var(--amber); }
.stat__label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--muted); }

/* Testimonials */
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-card); padding: 24px; }
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 10px; }

/* Chips (service areas) */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--text); }
.chip:hover { border-color: var(--red); color: var(--red); }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; padding: 56px 40px; text-align: center; }
.cta-band h2 { color: #fff; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 60px 0 24px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 13px; margin-bottom: 14px; font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em; }
.footer-grid a { display: block; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,0.78); }
.footer-grid a:hover { color: var(--amber); }
.footer-grid span { display: none; } /* pruned dead links: drop, don't show as dimmed text */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.55); }
.credit { letter-spacing: 0.06em; font-size: 11px; color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px; }
.credit:hover { color: var(--amber); }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-copy { max-width: 640px; }
.mt-0 { margin-top: 0; }
.small-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 26px; text-align: center; }

/* Shell law: an unfilled slot renders visibly, never as a wrong or blank value */
.slot-missing { display: inline-block; background: #ffe8e8; color: #b00020; border: 1px dashed #b00020; border-radius: 6px; padding: 0 6px; font-family: ui-monospace, monospace; font-size: 0.8em; font-weight: 600; text-transform: none; }

@media (min-width: 900px) {
  h1 { font-size: clamp(48px, 4.6vw, 62px); }
  h2 { font-size: clamp(38px, 3.6vw, 52px); }
  .section { padding: clamp(80px, 8vw, 112px) 0; }
  .section--tight { padding: clamp(48px, 5vw, 64px) 0; }
}

/* ---- Facelift components ---- */
.media-frame--tall { aspect-ratio: 4 / 3; }
.media-frame--tall img { width: 100%; height: 100%; object-fit: cover; }
.card--raised { box-shadow: var(--shadow-card); border-color: transparent; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.check-list li { position: relative; padding-left: 30px; font-size: 16px; line-height: 1.5; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--red); }
.check-list li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* Full-bleed photo statement with copy overlaid (offer / big-moment section). */
.statement { position: relative; min-height: 68vh; display: flex; align-items: center; color: #fff; background: var(--ink) var(--statement-img, none) center / cover no-repeat; overflow: hidden; }
.statement::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%); }
.statement__inner { position: relative; z-index: 1; max-width: 640px; padding-top: 72px; padding-bottom: 72px; }
.statement .eyebrow { color: var(--amber); }
.statement h2 { color: #fff; }
.statement p { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 46ch; }

/* Accordion (uses main.js [data-accordion-trigger]). */
.acc { border-top: 1px solid var(--border); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; color: var(--ink); }
.acc__trigger:hover { color: var(--red); }
.acc__icon { position: relative; flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid currentColor; }
.acc__icon::before, .acc__icon::after { content: ''; position: absolute; left: 50%; top: 50%; background: currentColor; transform: translate(-50%, -50%); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.acc__icon::before { width: 10px; height: 1.5px; }
.acc__icon::after { width: 1.5px; height: 10px; }
.acc__trigger[aria-expanded="true"] .acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__panel { display: none; padding: 0 0 20px; color: var(--text); }
.acc__panel p { margin: 0; max-width: 56ch; }

/* Photo band — three images in a row. */
.photo-band { display: grid; grid-template-columns: 1fr; gap: 14px; }
.photo-band__item { aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; background: var(--bg-alt); }
.photo-band__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.photo-band__item:hover img { transform: scale(1.05); }
@media (min-width: 700px) { .photo-band { grid-template-columns: repeat(3, 1fr); } .photo-band__item:nth-child(2) { transform: translateY(24px); } }

/* Hero as a true editorial split — copy over the video on the left, a full-height
   opaque panel owning the entire right side on the right. Opt-in via .hero--split
   (the reference All City hero stays centered/untouched — base .hero never edited). */
.hero--split { display: grid; grid-template-columns: 1fr; text-align: left; }
.hero--split > .hero__copy,
.hero--split > .hero__lead { position: relative; z-index: 2; }
.hero--split > .hero__copy { padding: 128px 24px 56px; display: flex; align-items: flex-end; min-height: 46vh; }
.hero__copy-inner { max-width: 620px; margin: 0 auto; }
.hero--split .hero__copy h1 { text-align: left; margin: 0 0 18px; }
.hero--split .hero__copy p { text-align: left; margin: 0 0 18px; }
.hero--split .hero__copy .btn-row { justify-content: flex-start; }

/* Bold caption bars over the hero photo/video — solid color blocks, not a scrim+text
   treatment. Stacked bottom-left, matching a punchy pest-control-ad read. */
.hero__chips { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; max-width: 92%; }
.chip-bar { display: inline-block; padding: 12px 18px; font-family: var(--font-body); font-weight: 800; font-size: clamp(15px, 2vw, 19px); line-height: 1.35; }
.chip-bar--accent { background: var(--amber); color: var(--ink); }
.chip-bar--dark { background: var(--ink); color: #fff; }

.hero__lead {
  width: 100%;
  background: var(--panel, var(--ink));
  padding: 44px 24px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
}
.hero__lead .quiz { width: 100%; max-width: 440px; margin: 0 auto; }
.hero__lead .eyebrow { color: var(--amber); margin-bottom: 10px; font-size: 13px; }
.hero__lead h3 { color: #fff; font-size: 26px; margin-bottom: 8px; letter-spacing: 0.01em; }
.hero__lead p { color: rgba(255, 255, 255, 0.65); font-size: 14px; margin-bottom: 20px; }
.hero__lead form { display: flex; flex-direction: column; gap: 4px; }

.quiz__headline { color: #fff; font-size: clamp(26px, 2.4vw, 32px); margin-bottom: 8px; }
.quiz__cta-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.quiz__cta-stack .btn { width: 100%; padding: 18px 20px; font-size: 15px; }

/* Underline-only fields — label above, no boxy border, brand-color focus rule. */
.field-label {
  display: block;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.hero__lead input, .hero__lead select {
  width: 100%;
  padding: 13px 2px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 0;
  transition: border-color 0.25s ease;
  margin-bottom: 14px;
}
.hero__lead input:focus, .hero__lead select:focus { outline: none; border-color: var(--amber); }
.hero__lead input::placeholder { color: rgba(255, 255, 255, 0.4); }
.hero__lead select { color: rgba(255, 255, 255, 0.85); }
.hero__lead select option { color: #000; }
.hero__lead .btn { width: 100%; padding: 17px 18px; margin-top: 8px; font-size: 14px; }
.hero__lead small { display: block; margin-top: 14px; font-size: 11px; color: rgba(255, 255, 255, 0.45); line-height: 1.4; }

@media (min-width: 900px) {
  .hero--split { grid-template-columns: 1.6fr 1fr; min-height: 92svh; }
  .hero--split > .hero__copy { display: flex; align-items: flex-end; padding: 150px clamp(32px, 5vw, 72px) 64px clamp(24px, 6vw, 80px); }
  .hero--split .hero__copy-inner { margin: 0; }
  .hero__lead { min-height: 92svh; display: flex; align-items: center; padding: 56px clamp(32px, 3vw, 52px); border-top: none; border-left: 1px solid rgba(255, 255, 255, 0.1); box-shadow: -30px 0 70px rgba(0, 0, 0, 0.3); }
  .hero__lead .quiz { max-width: 420px; }
}

/* Multi-step lead quiz — generic engine (main.js), content supplied per-page. */
.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: quizStepIn 0.35s cubic-bezier(0.22,1,0.36,1); }
@keyframes quizStepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.quiz__progress { font-size: 11px; font-weight: 700; letter-spacing: 0.01em; color: var(--amber); margin-bottom: 10px; min-height: 14px; }
.quiz__options { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.chip-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.chip-btn:hover, .chip-btn:focus-visible { border-color: var(--amber); background: rgba(255, 255, 255, 0.12); transform: translateY(-1px); }
.quiz__step[data-step="3"] input { margin-top: 4px; margin-bottom: 12px; }
.quiz__back {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}
.quiz__back:hover { color: #fff; }
.quiz__step[data-step="done"] .btn { margin-top: 6px; width: 100%; }

/* ---- Quiz v2: glow/dot panel texture, segmented track, icon tiles, summary chips, drawn check ---- */
.hero__lead::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: none; }
.hero__lead .quiz { position: relative; z-index: 1; }
.quiz__q { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; color: #fff; margin: 0 0 14px; }
.quiz__track { display: flex; gap: 6px; margin: 20px 0 8px; }
.quiz__track i { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.18); transition: background 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s; }
.quiz__track i.is-done { background: var(--amber); }
.quiz__track i.is-active { background: var(--amber); box-shadow: 0 0 0 3px color-mix(in srgb, var(--amber) 28%, transparent); }
.quiz__summary { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }
.quiz__summary:empty { display: none; }
.quiz__summary button { border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); color: #fff; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 6px 11px; border-radius: 999px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.quiz__summary button::after { content: ' ✎'; opacity: 0.6; }
.quiz__summary button:hover { background: rgba(255,255,255,0.16); border-color: var(--amber); }
.quiz-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 4px 0 6px; }
.quiz-tiles--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 440px) { .quiz-tiles { grid-template-columns: repeat(3, 1fr); } .quiz-tiles--4 { grid-template-columns: repeat(2, 1fr); } }
.tile { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; padding: 15px 6px 13px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); color: #fff; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; line-height: 1.15; text-align: center; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.25s, border-color 0.25s, box-shadow 0.35s cubic-bezier(0.22,1,0.36,1), color 0.25s; }
.tile svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; color: var(--amber); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), color 0.25s; }
.tile:hover, .tile:focus-visible { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: var(--amber); box-shadow: 0 16px 30px -16px rgba(0,0,0,0.65); outline: none; }
.tile:hover svg { transform: scale(1.14) rotate(-5deg); }
.tile:active { transform: translateY(0) scale(0.97); }
.tile.is-selected { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.tile.is-selected svg { color: var(--ink); transform: scale(1.08); }
.tile.is-selected::after { content: ''; position: absolute; top: 7px; right: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--ink); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E"); background-size: 9px; background-position: center; background-repeat: no-repeat; }
.quiz__check svg { width: 64px; height: 64px; fill: none; stroke: var(--amber); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
@media (prefers-reduced-motion: no-preference) {
  .quiz__step.is-active { animation: quizStepIn 0.4s cubic-bezier(0.22,1,0.36,1); }
  @keyframes quizStepIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
  .quiz__check circle { stroke-dasharray: 160; stroke-dashoffset: 160; animation: drawStroke 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
  .quiz__check path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawStroke 0.5s 0.45s cubic-bezier(0.22,1,0.36,1) forwards; }
  @keyframes drawStroke { to { stroke-dashoffset: 0; } }
}

/* ---- Hero copy v2: display headline over the video, no boxed captions ---- */
.hero__text { max-width: 640px; color: #fff; }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; color: var(--amber); margin-bottom: 18px; }
.hero__kicker::before { content: ''; width: 28px; height: 2px; background: var(--amber); }
.hero__text .hero__title { font-family: var(--font-display); font-size: clamp(46px, 5.6vw, 78px); line-height: 0.94; letter-spacing: 0.01em; color: #fff; max-width: none; margin: 0 0 18px; text-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.hero__text .hero__title em { font-style: normal; color: var(--amber); }
.hero__text .hero__sub { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.88); max-width: 46ch; margin: 0 0 22px; text-shadow: 0 2px 14px rgba(0,0,0,0.35); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.28); font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.78); }
.hero__trust span::before { content: '✓'; color: var(--amber); margin-right: 6px; }
@media (prefers-reduced-motion: no-preference) {
  .hero__text > * { opacity: 0; transform: translateY(16px); animation: heroIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards; }
  .hero__text > :nth-child(2) { animation-delay: 0.1s; }
  .hero__text > :nth-child(3) { animation-delay: 0.2s; }
  .hero__text > :nth-child(4) { animation-delay: 0.3s; }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
}

/* Process steps */
.steps { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; margin-bottom: 14px; }
.section--dark .step__num { background: var(--amber); color: var(--ink); }

/* Offer / promo card */
.offer-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 56px 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 480px;
  height: 480px;
  background: none;
  pointer-events: none;
}
.offer-card__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--amber);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.offer-card__badge span { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.offer-card h2 { color: #fff; font-size: 42px; }
.offer-card p { color: rgba(255,255,255,0.72); max-width: 520px; }

/* Scroll-reveal — progressive enhancement only; content is fully visible with
   no JS (or JS-disabled/failed) since the hidden state is scoped under .js-motion,
   set by main.js. Reduced-motion users keep the same end state, just no animation. */
@media (prefers-reduced-motion: no-preference) {
  .js-motion .split > div,
  .js-motion .grid > .card,
  .js-motion .grid > a.card,
  .js-motion .offer-card,
  .js-motion .step,
  .js-motion .stat,
  .js-motion .testi-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .js-motion .split > div.is-visible,
  .js-motion .grid > .card.is-visible,
  .js-motion .grid > a.card.is-visible,
  .js-motion .offer-card.is-visible,
  .js-motion .step.is-visible,
  .js-motion .stat.is-visible,
  .js-motion .testi-card.is-visible {
    opacity: 1;
    transform: none;
  }
  .grid > .card:nth-child(2), .grid > a.card:nth-child(2), .steps .step:nth-child(2) { transition-delay: 0.08s; }
  .grid > .card:nth-child(3), .grid > a.card:nth-child(3), .steps .step:nth-child(3) { transition-delay: 0.16s; }
  .grid > .card:nth-child(4), .grid > a.card:nth-child(4) { transition-delay: 0.24s; }
  .grid > .card:nth-child(5), .grid > a.card:nth-child(5) { transition-delay: 0.32s; }
}

/* Sticky mobile call bar — the highest-converting single mobile CTA for a local
   service business. Desktop already has the header call button, so hide it there. */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--ink);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.sticky-cta .btn { width: 100%; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 66px; } }

/* ---- Lead capture v3: real backend, consent, nav row, bigger hero type, mobile pass ---- */
.hero__text .hero__title { font-size: clamp(54px, 6.6vw, 96px); line-height: 0.92; }
.hero__text .hero__sub { font-size: clamp(17px, 1.45vw, 21px); }
.quiz__nav { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quiz__nav .btn { flex: 1; margin-top: 0; width: auto; }
.quiz__back { display: inline-flex; align-items: center; gap: 6px; min-height: 48px; padding: 0 18px 0 12px; margin-top: 0; border: 1px solid rgba(255,255,255,0.28); border-radius: 6px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; background: rgba(255,255,255,0.05); transition: background 0.2s, border-color 0.2s, transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.quiz__back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.quiz__back:hover, .quiz__back:focus-visible { background: rgba(255,255,255,0.14); border-color: #fff; color: #fff; outline: none; }
.quiz__back:hover svg { transform: translateX(-3px); }
.quiz__nav:has(.quiz__back:only-child) { margin-top: 18px; }
.hero__lead .quiz__nav .btn { margin-top: 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 6px; font-size: 11.5px; line-height: 1.45; color: rgba(255,255,255,0.7); cursor: pointer; }
.consent input { width: 18px !important; height: 18px; flex: 0 0 18px; margin: 1px 0 0 !important; padding: 0 !important; accent-color: var(--amber); border-bottom: 0 !important; }
.consent--light { color: var(--muted); }
.form-error { margin: 10px 0 0; padding: 10px 12px; border-radius: 6px; background: rgba(179,38,38,0.14); border: 1px solid rgba(255,120,120,0.5); color: #fff; font-size: 13px; font-weight: 600; }
.form-error[hidden] { display: none; }
.lead-form .form-error { background: #fdecec; border-color: #f0b4b4; color: var(--red-dark); }
.lead-form { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.lead-form input:not([type=checkbox]), .lead-form select, .lead-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 6px; font-family: var(--font-body); font-size: 16px; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 18%, transparent); }
.lead-form textarea { resize: vertical; }
.form-done { padding: 32px; border-radius: 8px; background: var(--ink); color: #fff; }
.form-done h3 { color: #fff; margin-bottom: 8px; }
.form-done p { color: rgba(255,255,255,0.75); margin: 0; }
.quiz__step[data-step="4"] .hero__lead input, .quiz__step[data-step="4"] input { margin-bottom: 10px; }

/* Site-wide polish */
.step { padding: 28px 26px; border: 1px solid var(--border); border-radius: 10px; background: var(--paper); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.25); border-color: color-mix(in srgb, var(--red) 40%, var(--border)); }
.step__num { font-size: 22px; box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--red) 70%, transparent); }
.stat { padding: 8px 0 8px 20px; }
.acc__item { transition: padding 0.3s; }
.acc__trigger:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.pest-card { border-radius: 10px; box-shadow: 0 20px 40px -28px rgba(0,0,0,0.5); }
.card { border-radius: 10px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); }
.section--dark .eyebrow::before, .statement .eyebrow::before, .hero__lead .eyebrow::before { background: var(--amber); }
.hero__lead .eyebrow::before { display: none; }
.text-center .eyebrow::before { display: none; }

/* Mobile pass — TRUE 375 */
@media (max-width: 899px) {
  .hero--split > .hero__copy { padding: 112px 20px 40px; min-height: 0; }
  .hero__text .hero__title { font-size: clamp(46px, 13.5vw, 60px); }
  .hero__text .hero__sub { font-size: 16px; margin-bottom: 16px; }
  .hero__trust { gap: 6px 14px; font-size: 11px; }
  .hero__lead { padding: 34px 20px 40px; }
  .hero__lead .quiz { max-width: none; }
  .quiz__headline { font-size: 28px; }
  .quiz__q { font-size: 20px; }
  .tile { padding: 14px 4px 12px; font-size: 11.5px; min-height: 84px; }
  .tile svg { width: 26px; height: 26px; }
  .quiz__nav { flex-wrap: wrap; }
  .quiz__nav .quiz__back { flex: 0 0 auto; }
  .quiz__nav .btn { flex: 1 1 160px; }
  .hero__lead input:not([type=checkbox]) { font-size: 16px; padding: 14px 2px; }
  .btn { min-height: 48px; }
  .acc__trigger { font-size: 18px; padding: 16px 0; }
  .step { padding: 22px 20px; }
  .section { padding: 56px 0; }
  .grid-5 { gap: 10px; }
  .pest-card { aspect-ratio: 4 / 5; }
}
@media (max-width: 899px) {
  .hero--split > .hero__copy { background: linear-gradient(to top, color-mix(in srgb, var(--ink) 92%, transparent) 0%, color-mix(in srgb, var(--ink) 55%, transparent) 55%, transparent 100%); }
}

/* ---- Offer page: full-length conversion page ---- */
.offer-hero { position: relative; color: #fff; background: var(--ink); padding: 140px 0 72px; overflow: hidden; }
.offer-hero::before { content: ''; position: absolute; inset: 0; background: var(--offer-img) center/cover no-repeat; opacity: 0.35; }
.offer-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, color-mix(in srgb, var(--ink) 96%, transparent) 30%, color-mix(in srgb, var(--ink) 55%, transparent) 100%); }
.offer-hero__grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
.offer-hero .breadcrumbs { margin-bottom: 22px; }
.offer-hero__title { font-family: var(--font-display); font-size: clamp(44px, 5.4vw, 80px); line-height: 0.94; letter-spacing: 0.01em; margin: 0 0 18px; color: #fff; }
.offer-hero__title em { font-style: normal; color: var(--amber); }
.offer-hero__sub { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 0 24px; }
.offer-hero .hero__trust { margin-top: 24px; }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.price-card { position: relative; background: var(--panel, var(--ink)); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 32px 30px; box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7); overflow: hidden; }
.price-card::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: none; }
.price-card > * { position: relative; }
.price-card__eyebrow { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 0.01em; color: var(--amber); margin-bottom: 10px; }
.price-card__price { font-family: var(--font-display); font-size: 96px; line-height: 0.9; color: #fff; letter-spacing: 0.01em; display: flex; align-items: flex-start; gap: 4px; }
.price-card__price sup { font-size: 36px; margin-top: 12px; color: var(--amber); }
.price-card__price small { font-family: var(--font-body); font-size: 15px; font-weight: 800; letter-spacing: 0.01em; color: rgba(255,255,255,0.6); align-self: flex-end; margin: 0 0 12px 6px; }
.price-card__price--inline { justify-content: center; margin-bottom: 8px; }
.price-card__per { color: rgba(255,255,255,0.75); font-size: 14px; margin: 10px 0 18px; }
.price-card__per strong { color: #fff; }
.check-list--light li { color: rgba(255,255,255,0.88); }
.check-list--light li::before { color: var(--amber); border-color: var(--amber); }
.price-card .btn { width: 100%; margin-top: 18px; }
.price-card small { display: block; margin-top: 14px; font-size: 11.5px; line-height: 1.45; color: rgba(255,255,255,0.5); }
.offer-strip { background: var(--amber); color: var(--ink); padding: 18px 0; }
.offer-strip__row { display: grid; gap: 10px 32px; font-family: var(--font-body); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; }
.offer-strip__row strong { font-family: var(--font-display); font-size: 22px; margin-right: 8px; }
.compare { display: grid; gap: 20px; }
.compare__col { border-radius: 12px; padding: 32px 30px; }
.compare__col--muted { background: var(--bg-alt); border: 1px solid var(--border); color: var(--muted); }
.compare__col--brand { background: var(--ink); color: #fff; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.compare__label { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 0.01em; padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.compare__col--muted .compare__label { background: #fff; border: 1px solid var(--border); }
.compare__col--brand .compare__label { background: var(--amber); color: var(--ink); }
.compare ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; line-height: 1.5; }
.compare__col--muted li::before { content: '–'; margin-right: 10px; opacity: 0.6; }
.compare__col--brand li::before { content: '✓'; color: var(--amber); margin-right: 10px; font-weight: 800; }
.compare__col--brand .btn { margin-top: 24px; }
.price-explain { display: flex; flex-direction: column; margin: 20px 0 26px; border-top: 1px solid var(--border); }
.price-explain__row { display: grid; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.55; color: var(--text); }
.price-explain__k { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em; color: var(--ink); }
.offer-final .price-card__price { font-size: 72px; }
@media (min-width: 700px) { .offer-strip__row { grid-template-columns: repeat(3, 1fr); } .compare { grid-template-columns: 1fr 1.15fr; align-items: start; } .price-explain__row { grid-template-columns: 170px 1fr; gap: 20px; } }
@media (min-width: 960px) { .offer-hero { padding: 170px 0 96px; min-height: 88svh; display: flex; align-items: center; } .offer-hero__grid { grid-template-columns: 1.35fr 1fr; gap: 64px; } }
@media (max-width: 699px) { .offer-hero { padding: 120px 0 56px; } .offer-hero__title { font-size: clamp(40px, 12vw, 54px); } .price-card { padding: 26px 22px; } .price-card__price { font-size: 78px; } .btn-lg { width: 100%; text-align: center; } }
.check-list--light li::before { background: var(--amber); }
.check-list--light li::after { border-color: var(--ink); }

/* anti-slop: sentence-case labels, no decorative glows, CTA = brand teal not filled purple */
.eyebrow, .hero__kicker, .price-card__eyebrow, .compare__label, .field-label, .quiz__progress { font-weight: 700; letter-spacing: 0; }
.eyebrow { font-size: 14px; }
.hero__trust { font-size: 13px; font-weight: 600; letter-spacing: 0; }
.offer-strip__row { font-size: 15px; letter-spacing: 0; }
.hero__lead .btn-primary, .quiz__nav .btn-primary { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.hero__lead .btn-primary:hover { background: #fff; border-color: #fff; }
