:root {
  --black: #090909;
  --ink: #111111;
  --red: #ed1c24;
  --paper: #ffffff;
  --mist: #f2f2ef;
  --line: #d8d8d3;
  --mid: #686864;
  --green: #18a66f;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 16px max(24px, calc((100vw - 1440px) / 2));
  background: var(--black);
  color: white;
  border-bottom: 1px solid #262626;
}
.brand {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}
.brand img {
  width: 207px;
  height: 50px;
  object-fit: contain;
}
.brand .product-name img {
  width: 184px;
  height: auto;
}
.product-name {
  display: grid;
  gap: 3px;
  padding-left: 24px;
  border-left: 1px solid #3a3a3a;
}
.product-name strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.07em;
}
.product-name strong span { color: var(--red); }
.product-name small {
  color: #858585;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b8b8b8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-meta a { color: white; text-decoration: none; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.13);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  grid-template-rows: auto 1fr;
  min-height: 650px;
  background: var(--black);
  color: white;
  overflow: hidden;
}
.hero-banner {
  grid-column: 1 / -1;
  background: var(--black);
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 120px) max(32px, calc((100vw - 1440px) / 2));
  padding-right: clamp(42px, 7vw, 110px);
}
.eyebrow, .section-number {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero h1 {
  margin: 30px 0 28px;
  font-size: clamp(66px, 9vw, 148px);
  line-height: 0.79;
  letter-spacing: -0.085em;
}
.hero h1 span, .section-heading h2 span { color: var(--red); }
.hero-copy {
  max-width: 600px;
  margin: 0 0 32px;
  color: #b7b7b7;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 16px 20px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.button-primary { width: fit-content; background: var(--red); color: white; }
.button-secondary { width: fit-content; border: 1px solid var(--line); background: white; color: var(--ink); }
.button:disabled { opacity: 0.42; cursor: not-allowed; }
.button:hover:not(:disabled), .button:focus-visible:not(:disabled) { filter: brightness(0.92); }
.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
  padding: clamp(48px, 7vw, 100px);
  background: var(--red);
  overflow: hidden;
}
.hero-panel::before {
  content: "WS";
  position: absolute;
  right: -0.12em;
  bottom: -0.22em;
  color: rgba(0, 0, 0, 0.12);
  font-size: clamp(220px, 36vw, 560px);
  font-weight: 900;
  letter-spacing: -0.13em;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero-route {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.45);
}
.hero-route div {
  min-height: 140px;
  padding: 22px;
  background: var(--red);
}
.hero-route span {
  display: block;
  margin-bottom: 46px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 900;
}
.hero-route strong { font-size: 17px; }
.hero-panel-message {
  position: relative;
  margin-top: 40px;
}
.hero-panel-logos {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 0 24px;
}
.hero-panel-message p {
  position: relative;
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.builder-shell { background: white; }
.progress-wrap {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1440px) / 2));
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.progress-copy { display: grid; gap: 4px; }
.progress-copy span { color: var(--red); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.progress-copy strong { font-size: 13px; }
.progress-track { height: 3px; background: #e8e8e5; overflow: hidden; }
.progress-track span { display: block; width: 20%; height: 100%; background: var(--red); transition: width .28s ease; }
.step-nav { display: flex; align-items: center; gap: 3px; }
.step-link {
  display: grid;
  gap: 2px;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: #858580;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.step-link span { font-size: 8px; }
.step-link.active { background: var(--black); color: white; }

.form-section {
  scroll-margin-top: 82px;
  padding: clamp(70px, 9vw, 132px) max(28px, calc((100vw - 1440px) / 2));
}
.muted-section { background: var(--mist); }
.section-heading { max-width: 820px; margin-bottom: 50px; }
.section-heading h2 {
  margin: 20px 0 24px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}
.section-heading > p:last-child, .split-heading > p {
  max-width: 690px;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.7;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: end;
  gap: 55px;
  max-width: none;
}
.split-heading h2 { margin-bottom: 0; }
.compact-heading h2 { font-size: clamp(48px, 6vw, 86px); }
.centred-heading { margin-left: auto; margin-right: auto; text-align: center; }
.section-help {
  margin: 26px 0 0;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.65;
}

.type-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  border: 1px solid var(--black);
  background: var(--black);
  gap: 1px;
}
.type-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
  padding: 16px 20px;
  border: 0;
  background: white;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.type-tab span { color: var(--red); font-size: 9px; letter-spacing: .11em; }
.type-tab.active { background: var(--black); color: white; }

.vehicle-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.vehicle-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: visible;
  transition: transform .18s ease, box-shadow .18s ease;
}
.vehicle-type-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.vehicle-type-card:focus-visible { outline: 3px solid rgba(237,28,36,.25); outline-offset: 3px; }
.vehicle-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 17px 20px;
  border: 1px solid var(--black);
  background: white;
  text-transform: uppercase;
}
.vehicle-type-header strong { font-size: 17px; line-height: 1; font-weight: 900; }
.vehicle-type-header em { color: var(--red); font-size: 9px; line-height: 1; font-style: normal; font-weight: 900; letter-spacing: .11em; white-space: nowrap; }
.vehicle-type-card.selected .vehicle-type-header { background: var(--black); color: white; }
.vehicle-type-body {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 360px;
  border: 1px solid #cfcfca;
  background: white;
  overflow: hidden;
  transition: border-color .18s ease;
}
.vehicle-type-card:hover .vehicle-type-body { border-color: var(--black); }
.vehicle-type-card.selected .vehicle-type-body { border: 3px solid var(--red); }
.vehicle-type-visual {
  position: absolute;
  inset: 0 0 104px;
  display: grid;
  place-items: center;
  background: #f6f6f3;
  overflow: hidden;
}
.vehicle-type-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(0,0,0,.06));
  pointer-events: none;
}
.vehicle-type-visual img { position: relative; z-index: 1; width: 94%; height: 100%; object-fit: contain; }
.vehicle-type-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 18px;
  width: 100%;
  min-height: 104px;
  margin-top: auto;
  padding: 20px 22px 22px;
  background: white;
}
.vehicle-type-copy small { grid-column: 1 / -1; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.vehicle-type-copy strong { font-size: clamp(28px, 3vw, 42px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.vehicle-type-copy em { color: var(--mid); font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.vehicle-size-panel { scroll-margin-top: 92px; margin-top: 54px; padding-top: 42px; border-top: 1px solid var(--line); }
.vehicle-size-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.vehicle-size-heading .section-number { margin: 0 0 10px; }
.vehicle-size-heading h3 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.vehicle-size-heading > span { color: var(--mid); font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.image-fallback {
  position: relative;
  z-index: 1;
  display: none;
  place-items: center;
  width: 72%;
  min-height: 116px;
  border: 3px solid #dadad5;
  color: #c5c5bf;
  font-size: clamp(28px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -.06em;
  text-align: center;
}
.image-fallback.visible { display: grid; }
.vehicle-type-card.image-missing .vehicle-type-visual { background: linear-gradient(145deg, #f8f8f5, #ecece8); }

.selection-grid { display: grid; gap: 18px; }
.vehicle-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.coverage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.selection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border: 1px solid #cfcfca;
  background: white;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.selection-card:hover:not(:disabled), .selection-card:focus-visible:not(:disabled) { transform: translateY(-3px); border-color: var(--black); box-shadow: var(--shadow); }
.selection-card.selected { border: 3px solid var(--red); }
.selection-card:disabled { cursor: not-allowed; opacity: .47; }
.check {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #bdbdb8;
  background: white;
  color: transparent;
  font-size: 18px;
  font-weight: 900;
}
.selected .check { border-color: var(--red); background: var(--red); color: white; }
.vehicle-visual, .coverage-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  background: #f6f6f3;
  overflow: hidden;
}
.vehicle-visual::before {
  content: attr(data-code);
  position: absolute;
  right: 12px;
  top: 8px;
  color: #e0e0dc;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.vehicle-visual img { position: relative; width: 94%; max-height: 205px; object-fit: contain; }
.card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 190px;
  padding: 28px 28px 30px;
  background: white;
}
.card-copy p { margin: 0 0 14px; color: var(--red); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.card-copy h3 { margin: 0 0 15px; font-size: 23px; line-height: 1.08; letter-spacing: -.04em; }
.card-copy small { color: var(--mid); font-size: 13px; line-height: 1.58; }

.shape {
  position: relative;
  display: block;
  width: 78%;
  height: 76px;
  border: 5px solid #4e4e4e;
  border-radius: 46px 60px 10px 10px;
  background: #d8d8d8;
  overflow: visible;
}
.shape::before {
  content: "";
  position: absolute;
  left: 18%;
  top: -42px;
  width: 52%;
  height: 46px;
  border: 5px solid #4e4e4e;
  border-bottom: 0;
  border-radius: 32px 50px 0 0;
  background: #d8d8d8;
}
.shape.van { height: 106px; border-radius: 16px 30px 8px 8px; }
.shape.van::before { left: 43%; top: -24px; width: 35%; height: 28px; border-radius: 10px 28px 0 0; }
.shape.ute { width: 82%; height: 72px; border-radius: 8px 40px 9px 9px; }
.shape.ute::before { left: 51%; top: -39px; width: 30%; height: 43px; border-radius: 10px 35px 0 0; }
.shape.ute::after { content: ""; position: absolute; left: -4px; top: -20px; width: 46%; height: 26px; border: 4px solid #4e4e4e; border-bottom: 0; background: #d8d8d8; }
.wheel { position: absolute; bottom: -18px; z-index: 3; width: 31px; height: 31px; border: 8px solid #252525; border-radius: 50%; background: #bdbdbd; }
.wheel-one { left: 14%; }
.wheel-two { right: 14%; }

.coverage-visual {
  min-height: 250px;
  background-color: var(--black);
  background-image: linear-gradient(#222 1px, transparent 1px), linear-gradient(90deg, #222 1px, transparent 1px);
  background-size: 28px 28px;
}
.coverage-visual.has-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  background: #f4f2ee;
}
.coverage-visual.has-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.coverage-visual.has-image .impact-number {
  left: 12px;
  top: 12px;
  z-index: 3;
  padding: 8px 10px;
  background: var(--black);
  color: white;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.coverage-visual .shape { z-index: 2; width: 82%; height: 58px; border-color: #666; background: #141414; }
.coverage-visual .shape::before { border-color: #666; background: #141414; }
.coverage-visual .shape.ute::after { border-color: #666; background: #141414; }
.coverage-visual .wheel { bottom: -16px; width: 27px; height: 27px; border-width: 7px; }
.coverage-fill { position: absolute; inset: 0 auto 0 0; z-index: 2; background: var(--red); border-radius: inherit; overflow: hidden; }
.impact-number { position: absolute; left: 22px; top: 8px; color: #292929; font-size: 92px; font-weight: 900; letter-spacing: -.09em; }
.popular-badge { position: absolute; z-index: 5; right: 12px; top: 12px; max-width: 150px; padding: 8px 10px; background: var(--green); color: white; font-size: 8px; font-weight: 900; line-height: 1.25; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.coverage-price { display: block; margin-top: auto; padding-top: 20px; color: var(--red); font-size: 24px; font-weight: 900; letter-spacing: -.05em; }
.coverage-price span { font-size: 10px; letter-spacing: 0; }
.addons-section { margin-top: clamp(72px, 9vw, 120px); padding-top: clamp(58px, 7vw, 92px); border-top: 1px solid var(--line); scroll-margin-top: 86px; }
.addons-heading { margin-bottom: 52px; }
.coverage-addon { margin-top: 0; }
.coverage-addon:empty { display: none; }
.coverage-addon-card { width: auto; }
.coverage-price.price-pending { font-size: 18px; line-height: 1.2; letter-spacing: -.02em; }
.coverage-coming-soon {
  grid-column: 1 / -1;
  min-height: clamp(360px, 48vw, 610px);
  border: 1px solid var(--black);
  background: var(--black);
  color: white;
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
}
.coverage-coming-soon-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: clamp(24px, 4vw, 54px);
  background: #f6f6f3;
  overflow: hidden;
}
.coverage-coming-soon-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
}
.coverage-coming-soon-visual .image-fallback.visible { display: grid; }
.coverage-coming-soon-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 70px);
}
.coverage-coming-soon-copy p {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.coverage-coming-soon-copy h3 {
  max-width: 1050px;
  margin: 42px 0;
  font-size: clamp(42px, 5.5vw, 86px);
  line-height: .84;
  letter-spacing: -.07em;
}
.coverage-coming-soon-copy h3 span { color: var(--red); }
.coverage-coming-soon-copy .button { align-self: flex-start; }
.rear-window-placeholder strong { position: relative; z-index: 2; color: white; font-size: clamp(32px, 5vw, 64px); line-height: .82; letter-spacing: -.07em; }
.addon-actions { display: flex; justify-content: flex-end; margin-top: 22px; }
.addon-actions .button { min-width: min(100%, 340px); }
.addon-actions .button:disabled { cursor: not-allowed; opacity: .45; }
.disabled-grid { filter: grayscale(.25); }

.estimate-section { background: var(--black); color: white; }
.central-estimate {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid #303030;
  background: #111;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
}
.estimate-empty span { display: block; color: #262626; font-size: 140px; font-weight: 900; line-height: 1; letter-spacing: -.09em; }
.estimate-empty p { margin: -22px auto 35px; max-width: 360px; color: #8f8f8f; line-height: 1.6; }
.estimate-kicker { margin: 0; color: #a0a0a0; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.estimate-total { margin: 20px 0 2px; color: var(--red); font-size: clamp(58px, 10vw, 110px); line-height: .85; font-weight: 900; letter-spacing: -.075em; }
.estimate-total.pending-price { font-size: clamp(38px, 7vw, 70px); line-height: .9; }
.estimate-tax { margin: 10px 0 38px; color: #858585; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.estimate-breakdown { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #323232; text-align: left; }
.estimate-breakdown div { min-height: 100px; padding: 20px; border-right: 1px solid #323232; }
.estimate-breakdown div:last-child { border-right: 0; }
.estimate-breakdown span { display: block; margin-bottom: 10px; color: #777; font-size: 9px; text-transform: uppercase; }
.estimate-breakdown strong { font-size: 14px; line-height: 1.4; }
.coverage-meter { height: 6px; margin: 28px 0 20px; background: #292929; }
.coverage-meter span { display: block; width: 0; height: 100%; background: var(--red); transition: width .3s ease; }
.estimate-description { margin: 0 auto 28px; max-width: 540px; color: #a0a0a0; font-size: 13px; line-height: 1.65; }
.central-estimate .button { margin: 0 auto; }
.estimate-disclaimer { margin-top: 30px; padding-top: 22px; border-top: 1px solid #2e2e2e; color: #737373; font-size: 10px; line-height: 1.65; }
.guide-assurance { width: min(1080px, 100%); margin: 42px auto 0; padding: clamp(28px, 4vw, 44px); border: 1px solid #303030; background: #111; }
.guide-assurance h3 { margin: 8px 0 28px; max-width: 760px; font-size: clamp(28px, 4vw, 48px); line-height: .94; letter-spacing: -.055em; }
.guide-assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #303030; }
.guide-assurance-grid p { margin: 0; padding: 24px 24px 0 0; color: #aaa; font-size: 13px; line-height: 1.65; }
.guide-assurance-grid p + p { padding-left: 24px; border-left: 1px solid #303030; }
.guide-assurance-grid strong { display: block; margin-bottom: 8px; color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }

.choice-group, .field-group {
  min-width: 0;
  margin: 0 0 28px;
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
}
.choice-group legend, .field-group legend {
  padding: 0 12px 0 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.choice-group legend span, .field-group label > span { color: var(--red); }
.service-grid { display: grid; gap: 16px; }
.service-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 32px;
  border: 1px solid #bdbdb8;
  background: white;
  cursor: pointer;
}
.service-card:hover { border-color: var(--black); }
.service-card.artwork-unavailable { opacity: .48; cursor: default; }
.service-card.artwork-unavailable:hover { border-color: #bdbdb8; }
.service-card.artwork-match::after {
  content: "Matched to your coverage";
  position: absolute;
  top: 23px;
  right: 66px;
  padding: 7px 9px;
  background: var(--black);
  color: white;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-card.selected { border: 3px solid var(--red); padding: 30px; }
.service-card > input { position: absolute; opacity: 0; pointer-events: none; }
.radio-ui { position: absolute; top: 24px; right: 24px; width: 25px; height: 25px; border: 2px solid #aaa; border-radius: 50%; background: white; }
.service-card input:checked + .radio-ui { border: 7px solid var(--red); }
.service-number { color: #d8d8d3; font-size: 56px; line-height: 1; font-weight: 900; letter-spacing: -.08em; }
.service-card strong { max-width: 90%; margin: 25px 0 12px; font-size: 20px; line-height: 1.15; letter-spacing: -.03em; }
.service-card small { color: var(--mid); font-size: 13px; line-height: 1.55; }
.service-card em { margin-top: auto; padding-top: 24px; color: var(--red); font-size: 24px; font-style: normal; font-weight: 900; letter-spacing: -.04em; }
.service-card em span { font-size: 10px; letter-spacing: 0; }
.artwork-match-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: #f3f3f0;
  color: var(--mid);
  font-size: 12px;
  line-height: 1.55;
}
.inline-upload {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
  border: 2px dashed #aaa;
  background: #fafafa;
  cursor: pointer;
}
.inline-upload > span { display: grid; gap: 5px; }
.inline-upload small { color: var(--mid); font-size: 11px; line-height: 1.5; }
.inline-upload input { position: absolute; opacity: 0; pointer-events: none; }
.inline-upload em { padding: 14px 16px; background: var(--black); color: white; font-size: 10px; font-style: normal; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.design-total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
  padding: 34px;
  background: var(--black);
  color: white;
}
.design-total div { padding: 5px 28px; border-right: 1px solid #363636; }
.design-total div:first-child { padding-left: 0; }
.design-total div:nth-child(2) { border-right: 0; }
.design-total span { display: block; margin-bottom: 10px; color: #888; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.design-total strong { color: var(--red); font-size: clamp(28px, 4vw, 48px); letter-spacing: -.05em; }
.design-total p { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 20px; border-top: 1px solid #363636; color: #989898; font-size: 12px; }
.section-actions { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 25px; }
.section-actions p { max-width: 580px; color: var(--mid); font-size: 12px; line-height: 1.6; }

.field-grid { display: grid; gap: 20px; }
.field-grid.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field-grid label { display: grid; gap: 8px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.field-grid input, .field-grid textarea, .field-grid select {
  width: 100%;
  min-height: 52px;
  padding: 14px;
  border: 1px solid #bcbcb7;
  border-radius: 0;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.field-grid textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field-grid input:focus, .field-grid textarea:focus, .field-grid select:focus { outline: 3px solid rgba(237,28,36,.13); border-color: var(--red); }
.field-grid [aria-invalid="true"] { border-color: var(--red); background: #fff5f5; }
.field-grid .field-help { color: var(--mid); font-size: 11px; font-weight: 500; line-height: 1.55; text-transform: none; letter-spacing: 0; }
.full-width { grid-column: 1 / -1; }
.quote-request-row { display: grid; grid-template-columns: 25px 1fr; align-items: start; gap: 16px; margin-top: 22px; padding: 22px; border: 1px solid var(--line); background: #f7f7f4; color: var(--ink); cursor: pointer; }
.quote-request-row input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--red); }
.quote-request-copy { display: grid; gap: 6px; color: var(--ink) !important; text-transform: none; letter-spacing: 0; }
.quote-request-copy strong { font-size: 13px; line-height: 1.45; }
.quote-request-copy small { color: var(--mid); font-size: 11px; font-weight: 500; line-height: 1.55; }
.stage-summary { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0; border: 1px solid var(--line); }
.stage-summary div { padding: 24px; border-right: 1px solid var(--line); }
.stage-summary div:last-child { border-right: 0; }
.stage-summary span { display: block; margin-bottom: 8px; color: var(--mid); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.stage-summary strong { font-size: 18px; }
.button-submit { width: 100%; min-height: 68px; background: var(--red); color: white; font-size: 13px; }
.submit-note { margin: 16px 0 0; color: var(--mid); font-size: 11px; line-height: 1.6; text-align: center; }
.form-errors { margin: 18px 0; padding: 20px; border-left: 5px solid var(--red); background: #fff0f0; color: #7d1116; font-size: 13px; line-height: 1.55; }
.form-errors ul { margin-bottom: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }

.aftercare-strip { padding: 55px max(28px, calc((100vw - 1440px) / 2)); background: var(--red); color: white; }
.aftercare-strip > p { margin: 0 0 25px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.aftercare-strip ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 0; list-style: none; background: rgba(255,255,255,.35); }
.aftercare-strip li { min-height: 115px; padding: 22px; background: var(--red); }
.aftercare-strip li span { display: block; margin-bottom: 30px; color: rgba(255,255,255,.6); font-size: 10px; }
.aftercare-strip li strong { font-size: 17px; }
.site-footer { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 28px; padding: 38px max(28px, calc((100vw - 1440px) / 2)); background: var(--black); color: #888; font-size: 10px; }
.footer-brand { display: block; width: 207px; text-decoration: none; }
.footer-brand img { display: block; width: 100%; height: auto; }
.site-footer a { color: white; }
.noscript { position: fixed; inset: auto 0 0; z-index: 99; padding: 16px; background: #ffefbf; text-align: center; font-weight: 700; }

/* Shared Stage 2 form styles */
.page-shell { min-height: 100vh; background: var(--mist); }
.page-top { padding: 22px max(24px, calc((100vw - 1180px) / 2)); background: var(--black); color: white; }
.page-brand-suite { display: flex; align-items: center; gap: 26px; }
.page-brand-suite > a { display: block; line-height: 0; }
.page-brand-suite img { display: block; width: auto; max-width: 220px; height: 44px; object-fit: contain; }
.page-brand-suite > * + * { padding-left: 26px; border-left: 1px solid #343434; }
.page-top small { display: block; margin-top: 9px; color: #888; font-size: 8px; letter-spacing: .14em; }
.red-brand-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.red-brand-band .wrapquotex-mark { display: block; width: 190px; max-width: 38%; height: auto; }
.confirmation-actions { display: grid; gap: 10px; margin-top: 24px; }
.confirmation-actions .button { width: 100%; }
.page-wrap { max-width: 1180px; margin: auto; padding: 55px 24px 90px; }
.page-hero { margin-bottom: 24px; padding: clamp(30px, 6vw, 65px); background: white; border-top: 7px solid var(--red); }
.page-hero h1 { margin: 22px 0 18px; font-size: clamp(48px, 8vw, 92px); line-height: .82; letter-spacing: -.075em; }
.page-hero h1 span { color: var(--red); }
.page-hero p { max-width: 760px; color: var(--mid); line-height: 1.65; }
.reference-chip { display: inline-block; margin-top: 8px; padding: 9px 11px; background: var(--mist); font: 700 13px ui-monospace, monospace; }
.brand-goal-group { border-left: 5px solid var(--red); }
.field-help { margin: 0 0 22px; color: var(--mid); font-size: 11px; line-height: 1.6; }
.upload-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.upload-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 215px;
  padding: 24px;
  border: 2px dashed #c0c0bc;
  background: #fafafa;
  cursor: pointer;
}
.upload-card input { position: absolute; opacity: 0; pointer-events: none; }
.upload-icon { color: #cececa; font-size: 32px; font-weight: 900; }
.upload-card strong { margin-top: auto; font-size: 15px; }
.upload-card small { margin: 7px 0 18px; color: var(--mid); font-size: 10px; line-height: 1.5; }
.upload-card em { color: var(--red); font-size: 9px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.upload-card.wide { grid-column: 1 / -1; min-height: 160px; }
.consent-row { display: grid; grid-template-columns: 25px 1fr; align-items: start; gap: 16px; margin: 28px 0; padding: 24px; border: 1px solid var(--line); background: white; color: #4f4f4b; font-size: 12px; line-height: 1.65; cursor: pointer; }
.consent-row input { width: 22px; height: 22px; margin: 0; accent-color: var(--red); }

@media (max-width: 1120px) {
  .vehicle-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-grid, .coverage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .progress-wrap { grid-template-columns: 220px 1fr; }
  .step-nav { display: none; }
  .service-grid.three-up { grid-template-columns: 1fr 1fr; }
  .service-grid.three-up .service-card:last-child { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; padding: 12px 16px; }
  .brand { gap: 12px; }
  .brand img { width: 145px; height: 35px; }
  .product-name { display: none; }
  .header-meta > span:not(.status-dot) { display: none; }
  .header-meta { font-size: 9px; }
  .page-brand-suite { gap: 15px; }
  .page-brand-suite img { max-width: 145px; height: 32px; }
  .page-brand-suite > * + * { padding-left: 15px; }
  .red-brand-band { align-items: flex-start; flex-direction: column; }
  .red-brand-band .wrapquotex-mark { width: 170px; max-width: 70%; align-self: flex-end; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-banner { grid-column: 1; }
  .hero-inner { padding: 75px 20px; }
  .hero h1 { font-size: clamp(58px, 19vw, 92px); }
  .hero-panel { min-height: 500px; padding: 36px 20px; }
  .hero-route div { min-height: 110px; padding: 18px; }
  .hero-route span { margin-bottom: 30px; }
  .progress-wrap { grid-template-columns: 1fr 110px; min-height: 70px; padding: 10px 16px; }
  .progress-copy strong { font-size: 11px; }
  .form-section { scroll-margin-top: 70px; padding: 72px 16px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: clamp(51px, 16vw, 78px); }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .vehicle-type-grid { grid-template-columns: 1fr; }
  .vehicle-type-card { min-height: 0; }
  .vehicle-type-body { min-height: 330px; }
  .vehicle-size-heading { align-items: start; flex-direction: column; }
  .vehicle-grid, .coverage-grid { grid-template-columns: 1fr; }
  .coverage-coming-soon { grid-template-columns: 1fr; }
  .coverage-coming-soon-visual { min-height: 210px; padding: 20px; }
  .coverage-coming-soon-visual img { height: 210px; }
  .coverage-coming-soon-copy { min-height: 480px; }
  .addon-actions .button { width: 100%; }
  .vehicle-visual, .coverage-visual { min-height: 230px; }
  .card-copy { min-height: 0; padding: 28px 26px 32px; }
  .estimate-breakdown { grid-template-columns: 1fr; }
  .estimate-breakdown div { min-height: 0; border-right: 0; border-bottom: 1px solid #323232; }
  .estimate-breakdown div:last-child { border-bottom: 0; }
  .guide-assurance-grid { grid-template-columns: 1fr; }
  .guide-assurance-grid p { padding: 22px 0; border-bottom: 1px solid #303030; }
  .guide-assurance-grid p + p { padding-left: 0; border-left: 0; }
  .guide-assurance-grid p:last-child { border-bottom: 0; }
  .choice-group, .field-group { padding: 22px 16px; }
  .service-grid.three-up, .service-grid.two-up { grid-template-columns: 1fr; }
  .service-grid.three-up .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 260px; padding: 26px; }
  .service-card.selected { padding: 24px; }
  .inline-upload { grid-template-columns: 1fr; }
  .inline-upload em { text-align: center; }
  .design-total, .stage-summary { grid-template-columns: 1fr; }
  .design-total div, .design-total div:first-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid #363636; }
  .stage-summary div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stage-summary div:last-child { border-bottom: 0; }
  .section-actions { align-items: stretch; flex-direction: column; }
  .section-actions .button { width: 100%; }
  .field-grid.two-columns, .field-grid.three-columns { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .aftercare-strip ol { grid-template-columns: 1fr; }
  .aftercare-strip li { min-height: 95px; }
  .upload-grid { grid-template-columns: 1fr 1fr; }
  .upload-card.wide { grid-column: 1 / -1; }
  .page-wrap { padding: 28px 14px 70px; }
}

@media (max-width: 460px) {
  .coverage-price { font-size: 22px; }
  .upload-grid { grid-template-columns: 1fr; }
  .upload-card.wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
