/* ==========================================================================
   Sell Your Caravan Today — stylesheet
   Brand: signal red / near-black / white. Display: Anton. UI: Inter.
   Built for Google Ads traffic. Single conversion goal: the offer form.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Brand */
  --red: #ee1015;         /* brand red — graphics, accents, text on dark */
  --red-cta: #e60e13;     /* button fills: white text hits 4.73:1 (AA), brand red is 4.45:1 */
  --red-text: #cc0b10;    /* red type on white/mist: 5.80:1 (AA); brand red is 4.45:1 */
  --red-deep: #c40a10;
  --red-dark: #8f070c;
  --red-soft: #fff1f1;
  --red-line: #ffd4d5;

  --ink: #0b0b0c;
  --ink-2: #16171a;
  --ink-3: #24262b;

  --white: #ffffff;
  --mist: #f4f6f8;
  --mist-2: #e9edf1;
  --line: #dfe4ea;
  --line-dark: rgba(255, 255, 255, 0.14);

  --body: #454a53;
  --body-light: rgba(255, 255, 255, 0.76);
  --muted: #6b717c;

  --green: #12854a;
  --green-soft: #eaf7f0;
  --amber: #b26a00;

  /* Type */
  --f-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --f-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale (8pt) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radius */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(11, 11, 12, 0.06), 0 2px 6px rgba(11, 11, 12, 0.05);
  --sh-2: 0 4px 12px rgba(11, 11, 12, 0.08), 0 12px 28px rgba(11, 11, 12, 0.08);
  --sh-3: 0 10px 24px rgba(11, 11, 12, 0.1), 0 30px 60px rgba(11, 11, 12, 0.14);
  --sh-red: 0 6px 18px rgba(238, 16, 21, 0.28);

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 880px;
  --header-h: 74px;

  /* Motion */
  --t-fast: 140ms cubic-bezier(0.2, 0, 0, 1);
  --t: 220ms cubic-bezier(0.2, 0, 0, 1);
  --t-slow: 420ms cubic-bezier(0.2, 0, 0, 1);

  /* Z scale */
  --z-sticky: 40;
  --z-header: 60;
  --z-bar: 70;
  --z-modal: 100;
}

/* ---------- 2. Reset ----------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--f-ui);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg,
video { display: block; max-width: 100%; height: auto; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

button { cursor: pointer; }

a { color: var(--red-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}

::selection { background: var(--red-cta); color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: var(--z-modal);
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout helpers -------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: var(--s-9); }
.section--tight { padding-block: var(--s-8); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--body-light); }
.section--ink h2,
.section--ink h3 { color: var(--white); }

.section__head { max-width: 760px; margin-bottom: var(--s-7); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 var(--s-3);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-text);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--red);
  transform: skewX(-20deg);
}
.eyebrow--light { color: #ff5a5e; }
.eyebrow--light::before { background: #ff5a5e; }

h1 { font-size: clamp(2.5rem, 6.4vw, 4.35rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.lede {
  font-size: clamp(1.03rem, 1.4vw, 1.15rem);
  line-height: 1.62;
  color: var(--body);
}
.section--ink .lede,
.final .lede,
.page-head .lede { color: var(--body-light); }

/* Brand device: skewed red slab, echoing the "TODAY" lockup */
.slab {
  position: relative;
  display: inline-block;
  padding: 0 0.24em;
  color: var(--white);
  isolation: isolate;
}
.slab::before {
  content: "";
  position: absolute;
  inset: 0.06em -0.02em 0.04em;
  background: var(--red);
  transform: skewX(-11deg);
  z-index: -1;
}
.hl { color: var(--red-text); }

/* Slash motif */
.slashes {
  display: inline-flex;
  gap: 5px;
  vertical-align: 0.14em;
}
.slashes i {
  display: block;
  width: 6px;
  height: 22px;
  background: var(--red);
  transform: skewX(-16deg);
}
.slashes i:nth-child(2) { opacity: 0.72; }
.slashes i:nth-child(3) { opacity: 0.44; }

/* ---------- 4. Buttons --------------------------------------------------- */

.btn {
  --btn-bg: var(--red-cta);
  --btn-fg: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-ui);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.005em;
  text-decoration: none;
  text-align: center;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t-fast), box-shadow var(--t);
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: var(--sh-red); }
.btn--primary:hover { --btn-bg: var(--red-deep); box-shadow: 0 8px 24px rgba(238, 16, 21, 0.34); }

.btn--ink { --btn-bg: var(--ink); }
.btn--ink:hover { --btn-bg: var(--ink-3); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--ink); background: var(--ink); --btn-fg: var(--white); }

.btn--ghost-light {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost-light:hover { --btn-bg: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.5); }

.btn--lg { min-height: 58px; padding: 16px 32px; font-size: 17px; }
.btn--block { width: 100%; }
.btn[disabled],
.btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }

.btn .ico { width: 19px; height: 19px; flex: none; }

/* Nudge arrow */
.btn--primary .ico--arrow { transition: transform var(--t); }
.btn--primary:hover .ico--arrow { transform: translateX(3px); }

/* ---------- 5. Utility bar + header -------------------------------------- */

.util {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.util__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 40px;
  padding-block: 8px;
  flex-wrap: wrap;
  text-align: center;
}
.util__item { display: inline-flex; align-items: center; gap: 8px; }
.util__item svg { width: 15px; height: 15px; color: var(--red); flex: none; }
@media (max-width: 780px) {
  .util__item:nth-child(n + 3) { display: none; }
  .util__row { gap: 18px; }
}
/* One promise only on small screens — two wrap onto separate lines and push
   the form down the page. */
@media (max-width: 620px) {
  .util { font-size: 12.5px; }
  .util__item:nth-child(n + 2) { display: none; }
  .util__row { min-height: 34px; padding-block: 6px; }
}

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.header.is-stuck { box-shadow: var(--sh-2); }

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 38px; } }

/* Text fallback if the logo asset is missing */
.brand__text {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.01em;
  max-width: 9.2em;
}
.brand__text b { color: var(--red-text); font-weight: 400; }
@media (max-width: 560px) { .brand__text { font-size: 17px; max-width: 8.4em; } }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t);
}
.nav__link:hover { color: var(--red); }
@media (max-width: 1000px) { .nav { display: none; } }

.header__cta { flex: none; }
@media (max-width: 560px) {
  .header__cta { padding: 11px 16px; min-height: 44px; font-size: 14.5px; }
}

/* ---------- 6. Hero ------------------------------------------------------ */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--body-light);
  padding-block: var(--s-8) var(--s-9);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 12% 30%, rgba(11, 11, 12, 0.93) 0%, rgba(11, 11, 12, 0.78) 45%, rgba(11, 11, 12, 0.6) 100%),
    linear-gradient(180deg, rgba(11, 11, 12, 0.5) 0%, rgba(11, 11, 12, 0.86) 100%);
}
/* Brand red sweep, echoing the swoosh in the logo */
.hero__sweep {
  position: absolute;
  z-index: -1;
  top: -18%;
  right: -12%;
  width: 62%;
  aspect-ratio: 1.7;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(238, 16, 21, 0.34), rgba(238, 16, 21, 0) 72%);
  filter: blur(6px);
  pointer-events: none;
}

/* Desktop: headline and supporting copy stack in column one, form in column two.
   Mobile: the form jumps ahead of the supporting copy so it stays near the top —
   most of this traffic arrives from an ad and is ready to convert immediately. */
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-areas:
    "copy form"
    "more form";
  column-gap: var(--s-8);
  align-items: start;
}
.hero__copy { grid-area: copy; }
.hero__more { grid-area: more; }
.hero__form { grid-area: form; }

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "form" "more";
    row-gap: var(--s-5);
  }
  .hero__more { margin-top: var(--s-2); }
  /* Every pixel saved here is a pixel of form above the fold. */
  .hero { padding-block: var(--s-5) var(--s-8); }
  .offer__head { padding: var(--s-4) var(--s-5); }
  .offer__head h2 { margin-bottom: 5px; }
  .offer__sub { font-size: 14px; }
  /* The heading already says "free offer" — the kicker is just height here. */
  .hero__form .offer__kicker { display: none; }
  .hero__form .offer__body { padding-top: var(--s-4); }
  .hero__form .wiz__bar { margin-bottom: var(--s-4); }
}

.hero h1 { color: var(--white); margin-bottom: var(--s-5); }
@media (max-width: 1040px) { .hero h1 { margin-bottom: 0; } }
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34em;
  margin-bottom: var(--s-5);
}

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-5); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}
.badge svg { width: 14px; height: 14px; color: #ff5a5e; flex: none; }

.ticks { display: grid; gap: 11px; margin-bottom: var(--s-6); }
@media (min-width: 620px) { .ticks { grid-template-columns: 1fr 1fr; column-gap: 22px; } }
.ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red) 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.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.hero__stars { display: flex; gap: 2px; }
.hero__stars svg { width: 17px; height: 17px; color: #ffb400; }
.hero__proof p { font-size: 14px; color: rgba(255, 255, 255, 0.72); margin: 0; }
.hero__proof b { color: var(--white); }

/* ---------- 7. Offer form card ------------------------------------------- */

.offer {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.offer__head {
  padding: var(--s-5) var(--s-5) var(--s-4);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}
.offer__head::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(238, 16, 21, 0.4), transparent 70%);
}
.offer__kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6b6f;
}
.offer__head h2 {
  position: relative;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  margin-bottom: 8px;
}
.offer__sub { position: relative; font-size: 14.5px; line-height: 1.5; margin: 0; }

.offer__body { padding: var(--s-5); }
@media (min-width: 520px) { .offer__body { padding: var(--s-6) var(--s-6) var(--s-5); } }

/* Progress */
.wiz__bar { margin-bottom: var(--s-5); }
.wiz__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.wiz__meta b { color: var(--ink); }
.wiz__track {
  height: 7px;
  border-radius: 999px;
  background: var(--mist-2);
  overflow: hidden;
}
.wiz__fill {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  transition: width var(--t-slow);
}

/* Steps */
.wstep {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.js .wstep { display: none; }
.js .wstep.is-active { display: block; animation: stepIn 280ms cubic-bezier(0.2, 0, 0, 1) both; }
.js .wstep + .wstep { margin-top: 0; }
.wstep + .wstep { margin-top: var(--s-6); }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.wstep__title {
  display: block;
  padding: 0;
  margin-bottom: 4px;
  font-family: var(--f-display);
  font-size: 1.28rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}
.wstep__hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--s-4);
}

/* Fields */
.field { margin-bottom: var(--s-4); }
.field:last-of-type { margin-bottom: 0; }

.grid-2 { display: grid; gap: 0 var(--s-4); }
@media (min-width: 520px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.lbl {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.005em;
}
.lbl .req { color: var(--red-text); margin-left: 2px; }
.lbl .opt-note { font-weight: 500; color: var(--muted); }

.ctrl {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  font-size: 16px; /* keeps iOS from zooming */
  line-height: 1.4;
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.ctrl::placeholder { color: #a6acb6; }
.ctrl:hover { border-color: #c3cad3; }
.ctrl:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 16, 21, 0.14);
}
textarea.ctrl { min-height: 118px; resize: vertical; line-height: 1.55; }

select.ctrl {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324262b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  cursor: pointer;
}

/* Prefixed input (asking price) */
.ctrl-wrap { position: relative; }
.ctrl-wrap__prefix {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-3);
  pointer-events: none;
}
.ctrl-wrap--prefixed .ctrl { padding-left: 32px; }

.help { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Validation */
.err {
  display: none;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red-deep);
  line-height: 1.4;
}
.err::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  vertical-align: -3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c40a10' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9.2'/%3E%3Cpath d='M12 7.6v5.2M12 16.4h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}
.err.is-shown { display: block; }

.field.is-invalid .ctrl {
  border-color: var(--red-deep);
  background: var(--red-soft);
}
.field.is-invalid .ctrl:focus { box-shadow: 0 0 0 4px rgba(196, 10, 16, 0.16); }

.field.is-valid .ctrl { border-color: #b8ddc8; }

/* Condition radio cards */
.opts { display: grid; gap: 10px; }
@media (min-width: 460px) { .opts--2 { grid-template-columns: 1fr 1fr; } }

.opt { position: relative; display: block; cursor: pointer; }
.opt input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.opt__box {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.opt:hover .opt__box { border-color: #c3cad3; }
.opt input:focus-visible + .opt__box {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.opt input:checked + .opt__box {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: 0 0 0 3px rgba(238, 16, 21, 0.12);
}
.opt__dot {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #c3cad3;
  border-radius: 50%;
  background: var(--white);
  transition: border-color var(--t), background var(--t);
  position: relative;
}
.opt input:checked + .opt__box .opt__dot {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3.5px var(--white);
}
.opt__t { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.opt__d { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; margin-top: 2px; }

.fieldset-block { border: 0; margin: 0 0 var(--s-4); padding: 0; min-width: 0; }
.fieldset-block > legend {
  padding: 0;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}
.fieldset-block > legend .req { color: var(--red-text); margin-left: 2px; }

/* Step nav */
.wiz__nav { display: flex; gap: 10px; margin-top: var(--s-5); }
.wiz__nav .btn--primary { flex: 1; }
.wiz__back {
  flex: none;
  min-height: 50px;
  padding: 13px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  transition: border-color var(--t), background var(--t);
}
.wiz__back:hover { border-color: var(--ink); background: var(--mist); }

.offer__foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: 12.8px;
  line-height: 1.45;
  color: var(--muted);
}
.offer__foot svg { width: 16px; height: 16px; flex: none; color: var(--green); }

/* Submit + status */
.form-status {
  display: none;
  margin-top: var(--s-4);
  padding: 13px 15px;
  border-radius: var(--r);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}
.form-status.is-shown { display: block; }
.form-status--error {
  background: var(--red-soft);
  border: 1.5px solid var(--red-line);
  color: var(--red-dark);
}
.form-status--ok {
  background: var(--green-soft);
  border: 1.5px solid #bfe3d0;
  color: #0d6b3c;
}

.is-busy { position: relative; color: transparent !important; }
.is-busy::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 620ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success panel */
.offer__done { display: none; padding: var(--s-7) var(--s-5); text-align: center; }
.offer__done.is-shown { display: block; }
.offer__done .tick-ring {
  width: 66px;
  height: 66px;
  margin: 0 auto var(--s-4);
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
}
.offer__done .tick-ring svg { width: 32px; height: 32px; color: var(--green); }
.offer__done h3 { margin-bottom: 10px; font-size: 1.5rem; }

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- 8. Trust ticker ---------------------------------------------- */

.ticker {
  background: var(--red-cta);
  color: var(--white);
  padding-block: 14px;
  overflow: hidden;
  border-block: 3px solid var(--ink);
}
.ticker__track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin-left: 33px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Split / reasons ------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }

/* Photo placeholders: if an image is missing, the frame still reads as a
   branded block rather than a broken-image icon. */
.split__media > img,
.float-card img,
.coverage__media img {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 60%, var(--red-dark) 100%);
}
.hero__bg img { background: var(--ink); }

.split__media { position: relative; }
.split__media > img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.float-card {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 46%;
  margin: 0;
  border: 5px solid var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.float-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 560px) { .float-card { display: none; } }

.reasons { display: grid; gap: var(--s-5); margin-block: var(--s-5) var(--s-6); }
.reasons li { display: flex; gap: var(--s-4); }
.reasons__n {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 17px;
  transform: skewX(-8deg);
}
.reasons__n span { transform: skewX(8deg); display: block; }
.reasons strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.reasons p { font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ---------- 10. Comparison ------------------------------------------------ */

.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 860px) { .versus { grid-template-columns: 1fr; } }

.vs {
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: var(--white);
  border: 1.5px solid var(--line);
}
.vs--good {
  border: 0;
  background: var(--ink);
  color: var(--body-light);
  box-shadow: var(--sh-3);
  position: relative;
  overflow: hidden;
}
.vs--good::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red);
}
.vs__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--mist-2);
  color: #545a65;
}
.vs--good .vs__tag { background: var(--red-cta); color: var(--white); }
.vs h3 { margin-bottom: 8px; }
.vs--good h3 { color: var(--white); }
.vs__head p { font-size: 15px; margin-bottom: var(--s-5); }
.vs__list { display: grid; gap: 12px; }
.vs__list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.3px;
  line-height: 1.55;
}
.vs__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.vs--bad .vs__list li::before {
  background: var(--mist-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b717c' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.vs--good .vs__list li::before {
  background: var(--red) 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.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1.5px solid var(--line);
}
.cta-inline p {
  margin: 0;
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
}
.section--mist .cta-inline { background: var(--white); }

/* ---------- 11. Steps ----------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
}
.step__n {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: var(--s-4);
  border-radius: var(--r);
  background: var(--red);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 24px;
  transform: skewX(-9deg);
  box-shadow: var(--sh-red);
}
.step__n span { transform: skewX(9deg); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ---------- 12. What we buy ---------------------------------------------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: var(--s-5);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.tile:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh-2); }
.tile__ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--s-4);
  border-radius: var(--r-sm);
  background: var(--red-soft);
  color: var(--red-deep);
}
.tile__ico svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.12rem; margin-bottom: 7px; }
.tile p { font-size: 14.8px; line-height: 1.58; margin: 0; }

/* ---------- 13. Coverage -------------------------------------------------- */

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 940px) { .coverage { grid-template-columns: 1fr; gap: var(--s-6); } }

.regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px var(--s-5);
  margin-top: var(--s-5);
}
@media (min-width: 620px) { .regions { grid-template-columns: repeat(3, 1fr); } }
.regions li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
}
.regions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: skewX(-16deg);
}
.section--ink .regions li { color: rgba(255, 255, 255, 0.86); }

.coverage__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- 14. Reviews --------------------------------------------------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

.review {
  display: flex;
  flex-direction: column;
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1.5px solid var(--line);
}
.review__stars { display: flex; gap: 2px; margin-bottom: var(--s-4); }
.review__stars svg { width: 17px; height: 17px; color: #ffb400; }
.review blockquote {
  margin: 0 0 var(--s-5);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-2);
}
.review__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.review__av {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 15px;
}
.review__who b { display: block; font-size: 14.5px; color: var(--ink); }
.review__who div span { display: block; font-size: 13px; color: var(--muted); }

/* ---------- 15. FAQ ------------------------------------------------------- */

.faq { max-width: var(--wrap-narrow); margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: var(--s-5) 0;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--f-ui);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  transition: color var(--t);
}
.faq__q:hover { color: var(--red); }
.faq__sign {
  flex: none;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  transition: background var(--t), color var(--t), transform var(--t);
}
.faq__sign svg { width: 15px; height: 15px; }
.faq__q[aria-expanded="true"] .faq__sign {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  font-size: 15.8px;
  line-height: 1.65;
  padding-bottom: var(--s-5);
  max-width: 66ch;
}

/* ---------- 16. Final CTA ------------------------------------------------- */

.final {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--body-light);
  padding-block: var(--s-9);
  overflow: hidden;
}
.final__sweep {
  position: absolute;
  z-index: -1;
  left: -10%;
  bottom: -30%;
  width: 60%;
  aspect-ratio: 1.8;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(238, 16, 21, 0.3), transparent 72%);
}
.final__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 1040px) { .final__grid { grid-template-columns: 1fr; gap: var(--s-6); } }
.final h2 { color: var(--white); margin-bottom: var(--s-4); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1;
  color: var(--red);
  margin-bottom: 5px;
}
.stat span { font-size: 13.5px; line-height: 1.4; color: rgba(255, 255, 255, 0.7); }

/* ---------- 17. Footer ---------------------------------------------------- */

.footer {
  background: #060607;
  color: rgba(255, 255, 255, 0.6);
  padding-block: var(--s-8) var(--s-6);
  font-size: 14.5px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr; gap: var(--s-5); } }
.footer img { height: 44px; width: auto; margin-bottom: var(--s-4); }
.footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: var(--s-3);
  letter-spacing: 0.05em;
}
.footer ul { display: grid; gap: 2px; }
/* Comfortable tap height on touch screens without visually loosening the list. */
.footer ul a { display: inline-block; padding-block: 12px; line-height: 1.15; }
.footer a { color: rgba(255, 255, 255, 0.66); text-decoration: none; transition: color var(--t); }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-5);
  font-size: 13.2px;
  color: rgba(255, 255, 255, 0.44);
}
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.footer__bottom ul a { padding-block: 13px; }

/* ---------- 18. Sticky mobile CTA ---------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-bar);
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(110%);
  transition: transform var(--t-slow);
}
.sticky-cta.is-shown { transform: none; }
@media (max-width: 1040px) { .sticky-cta { display: block; } }
body.has-sticky { padding-bottom: 74px; }
@media (min-width: 1041px) { body.has-sticky { padding-bottom: 0; } }

/* ---------- 19. Reveal animation ------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms cubic-bezier(0.2, 0, 0, 1), transform 560ms cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .sticky-cta { transition: none; }
}

/* ---------- 20. Legal / thank-you pages ---------------------------------- */

.page-head {
  background: var(--ink);
  color: var(--body-light);
  padding-block: var(--s-8);
}
.page-head h1 { color: var(--white); font-size: clamp(2rem, 4.6vw, 3rem); }

.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-block: var(--s-7) var(--s-3); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-block: var(--s-5) var(--s-2); }
.prose p, .prose li { font-size: 16px; line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; display: grid; gap: 8px; }
.prose ul li { padding-left: 4px; }

.thanks { text-align: center; max-width: 640px; margin-inline: auto; }
.thanks .tick-ring {
  width: 84px;
  height: 84px;
  margin: 0 auto var(--s-5);
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
}
.thanks .tick-ring svg { width: 42px; height: 42px; color: var(--green); }
.thanks ol {
  counter-reset: t;
  display: grid;
  gap: var(--s-4);
  margin-block: var(--s-6);
  text-align: left;
}
.thanks ol li {
  counter-increment: t;
  position: relative;
  padding: var(--s-4) var(--s-5) var(--s-4) 64px;
  border-radius: var(--r);
  background: var(--mist);
  font-size: 15.5px;
  line-height: 1.6;
}
.thanks ol li::before {
  content: counter(t);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--red-cta);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 16px;
  transform: skewX(-8deg);
}
.thanks ol li b { color: var(--ink); }

/* ---------- 21. Print ----------------------------------------------------- */

@media print {
  .header, .util, .sticky-cta, .ticker, .offer { display: none !important; }
  body { color: #000; }
}
