:root {
  --ink: #0f172a;
  --muted: #526079;
  --line: #dbe2ea;
  --line-strong: #c3ceda;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --cyan: #0891b2;
  --success: #166534;
  --success-soft: #f0fdf4;
  --warning: #9a3412;
  --warning-soft: #fff7ed;
  --radius: 8px;
  --shadow: 0 18px 48px rgb(15 23 42 / 9%);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font: 500 16px/1.6 Manrope, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgb(37 99 235 / 28%); outline-offset: 3px; }

h1, h2, h3, legend {
  margin: 0;
  font-family: Geologica, Manrope, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 { max-width: 760px; font-size: clamp(2.6rem, 5.3vw, 5rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.3rem); }
h3 { font-size: 1.1rem; }
p { margin: 0; }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 40px), var(--content));
  min-height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.site-header-simple { border-bottom: 0; }
.brand { display: inline-flex; gap: 11px; align-items: center; text-decoration: none; }
.brand > span:last-child { display: grid; line-height: 1.15; }
.brand strong { font: 800 1.05rem/1.1 Geologica, sans-serif; letter-spacing: -0.03em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 0.7rem; }
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font: 800 1.15rem/1 Geologica, sans-serif;
}
.top-nav { display: flex; gap: 28px; justify-content: center; }
.top-nav a, .header-phone { font-size: 0.86rem; font-weight: 700; text-decoration: none; }
.top-nav a:hover, .header-phone:hover, .footer-column a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { filter: brightness(0.98); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--ink); border-color: var(--line-strong); background: #fff; }
.button-secondary:hover { color: var(--blue); border-color: var(--blue); }
.button-small { min-height: 40px; padding-inline: 15px; font-size: 0.82rem; }

.hero-section { padding: 48px 20px 0; overflow: clip; }
.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: center;
  width: min(100%, var(--content));
  min-height: 410px;
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 1; }
.section-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-text { max-width: 700px; margin-top: 22px; color: var(--muted); font-size: 1.14rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; color: #334155; font-size: 0.8rem; font-weight: 700; }
.hero-facts span { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); content: ""; }
.hero-visual { height: 390px; overflow: hidden; border-radius: 8px; background: var(--surface-soft); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-mobile { display: none; }

.selector-card {
  position: relative;
  z-index: 4;
  width: min(100%, var(--content));
  margin: -36px auto 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.selector-card-head { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.selector-tab {
  min-height: 58px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.selector-tab:first-child { border-right: 1px solid var(--line); }
.selector-tab.is-active { border-bottom-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.vin-tab-short { display: none; }
.selector-progress {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 22px 32px 0;
  color: #7b879a;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 800;
}
.selector-progress li { display: flex; flex: 1; gap: 8px; align-items: center; }
.selector-progress li:not(:last-child)::after { flex: 1; height: 1px; margin-left: 4px; background: var(--line); content: ""; }
.selector-progress span { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; }
.selector-progress li.is-active { color: var(--blue); }
.selector-progress li.is-active span { color: #fff; border-color: var(--blue); background: var(--blue); }
.selector-panel, .vin-panel { padding: 24px 32px 30px; }
.selector-choice { min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
.selector-choice legend, .field > span { display: block; margin-bottom: 7px; font-family: Manrope, sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0; }
.field b { color: var(--blue); }
.segmented { display: grid; gap: 6px; }
.segmented-glass, .segmented-category { grid-template-columns: repeat(3, 1fr); }
.segmented label { position: relative; cursor: pointer; }
.segmented input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.segmented label span {
  display: grid;
  min-height: 44px;
  padding: 8px 14px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: #344054;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}
.segmented input:checked + span { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--blue); }
.segmented input:focus-visible + span { outline: 3px solid rgb(37 99 235 / 24%); outline-offset: 2px; }
.form-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.field { display: block; min-width: 0; }
.field select, .field input:not([type="checkbox"]), .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}
.field textarea { min-height: 100px; padding-block: 11px; resize: vertical; }
.field select { padding-right: 12px; }
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(37 99 235 / 12%); }
.field select:disabled, .field input:disabled { color: #8a94a5; background-color: #f4f6f8; cursor: not-allowed; }
.field small { display: block; margin-top: 6px; color: #b42318; font-size: 0.75rem; }
.field-error input, .field-error textarea { border-color: #b42318; }
.native-select-enhanced { display: none; }
.advanced-fields { margin-top: 14px; }
.advanced-fields summary { width: fit-content; cursor: pointer; color: var(--blue); font-size: 0.8rem; font-weight: 800; }
.advanced-fields summary span { margin-left: 6px; color: var(--muted); font-weight: 600; }
.advanced-fields .field { max-width: calc(25% - 10px); margin-top: 12px; }
.selector-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 22px; }
.selector-help { flex-basis: 100%; color: var(--muted); font-size: 0.74rem; }
.vin-panel { max-width: 760px; margin: 0 auto; }
.vin-panel > p { margin-top: 12px; color: var(--muted); }
.vin-panel .selector-actions { justify-content: flex-start; }
.is-refreshing { pointer-events: none; opacity: 0.65; }

.searchable-select { position: relative; }
.searchable-select input { padding-right: 42px !important; }
.searchable-select-toggle { position: absolute; right: 1px; bottom: 1px; width: 42px; height: 46px; border: 0; color: var(--muted); background: transparent; cursor: pointer; }
.searchable-select-toggle::after { display: inline-block; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); content: ""; }
.searchable-select-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 260px;
  margin: 0;
  padding: 5px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 36px rgb(15 23 42 / 14%);
  list-style: none;
}
.searchable-select-option { padding: 9px 10px; border-radius: 5px; cursor: pointer; font-size: 0.82rem; }
.searchable-select-option:hover, .searchable-select-option.is-active { color: var(--blue); background: var(--blue-soft); }
.searchable-select-empty { padding: 10px; color: var(--muted); font-size: 0.8rem; }

.result-zone { width: min(100%, var(--content)); margin: 28px auto 0; }
.workspace, .lead-panel:not(:empty) { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.workspace.is-loading, .lead-panel.is-loading { opacity: 0.6; }
.empty-state { padding: 42px; text-align: center; }
.empty-state h2 { font-size: 1.35rem; }
.empty-state p { max-width: 620px; margin: 10px auto 0; color: var(--muted); }
.empty-state .button { margin-top: 20px; }
.result-shell { padding: 28px; }
.result-header { display: flex; gap: 24px; align-items: flex-start; justify-content: space-between; }
.result-header h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.result-header p:not(.section-label), .selection-summary { margin-top: 8px; color: var(--muted); }
.notice { margin-top: 18px; padding: 12px 14px; border: 1px solid #fed7aa; border-radius: 7px; color: var(--warning); background: var(--warning-soft); font-size: 0.84rem; }
.result-list { margin-top: 22px; border-top: 1px solid var(--line); }
.result-row { display: grid; grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1fr) minmax(190px, 0.55fr); gap: 24px; padding: 22px 0; align-items: center; border-bottom: 1px solid var(--line); }
.result-main h3 { margin-top: 9px; font-size: 1.12rem; }
.result-subtitle { margin-top: 5px; color: var(--muted); font-size: 0.78rem; }
.status-pill { display: inline-flex; padding: 4px 8px; border-radius: 999px; color: var(--success); background: var(--success-soft); font-size: 0.67rem; font-weight: 800; }
.status-pill.is-possible { color: var(--warning); background: var(--warning-soft); }
.sku { margin-top: 5px; color: var(--muted); font-size: 0.76rem; }
.option-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.option-tags span { padding: 4px 7px; border: 1px solid var(--line); border-radius: 5px; color: #334155; background: var(--surface-soft); font-size: 0.68rem; font-weight: 700; }
.result-differences-label { margin-bottom: 5px; color: var(--ink); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.difference-list { margin: 0; }
.difference-list div { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 12px; padding: 4px 0; font-size: 0.76rem; }
.difference-list dt { color: var(--muted); }
.difference-list dd { margin: 0; font-weight: 800; text-align: right; }
.result-buy { display: grid; gap: 5px; justify-items: stretch; }
.result-buy strong { font: 800 1.03rem/1.2 Geologica, sans-serif; }
.result-buy > span { margin-bottom: 8px; color: var(--muted); font-size: 0.74rem; }
.availability-available { color: var(--success) !important; font-weight: 800; }
.availability-unavailable { color: var(--warning) !important; font-weight: 800; }
.result-buy .button { min-height: 44px; padding-inline: 12px; font-size: 0.74rem; }
.manager-strip { display: flex; gap: 20px; align-items: center; justify-content: space-between; margin-top: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface-soft); }
.manager-strip p { color: var(--muted); font-size: 0.83rem; }

.quiz-form { max-width: 760px; margin-top: 24px; }
.quiz-progress { display: flex; justify-content: space-between; margin-bottom: 18px; color: var(--muted); font-size: 0.74rem; }
.quiz-progress span:first-child { color: var(--blue); font-weight: 800; }
.quiz-question { margin: 0; padding: 24px; border: 1px solid var(--line); border-radius: 7px; }
.quiz-question legend { max-width: 680px; padding: 0 6px; font-size: 1.2rem; }
.quiz-question p { margin: 8px 0 18px; color: var(--muted); font-size: 0.82rem; }
.segmented-answers { grid-template-columns: repeat(3, 1fr); }
.quiz-actions { justify-content: flex-end; }

.lead-panel:not(:empty) { margin-top: 18px; }
.lead-card { padding: 28px; }
.lead-card .result-header { margin-bottom: 20px; }
.lead-card .result-header h3 { font-size: 1.45rem; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .field-comment, .lead-form .field-consent, .lead-form > .button { grid-column: 1 / -1; }
.field-checkbox { display: flex; gap: 10px; align-items: flex-start; }
.field-checkbox input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--blue); }
.field-checkbox-text { font-size: 0.78rem; }
.field-checkbox-text a { color: var(--blue); }
.lead-form > .button { justify-self: start; }
.success-card { border-left: 4px solid var(--success); }

.content-section, .final-cta, .site-footer {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}
.content-section { padding-block: 112px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading > p:not(.section-label) { margin-top: 18px; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-grid article { padding: 28px 28px 0 0; }
.process-grid article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.process-grid article > span { color: var(--blue); font-size: 0.76rem; font-weight: 800; }
.process-grid h3 { margin-top: 24px; font-size: 1.15rem; }
.process-grid p { margin-top: 10px; color: var(--muted); font-size: 0.86rem; }
.editorial-section, .delivery-section { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.section-media, .delivery-visual { overflow: hidden; border-radius: var(--radius); background: var(--surface-soft); }
.section-media img, .delivery-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.editorial-copy > p:not(.section-label), .delivery-copy > p:not(.section-label) { margin-top: 20px; color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; font-size: 0.86rem; }
.check-list li::before { position: absolute; left: 0; color: var(--cyan); font-weight: 900; content: "✓"; }
.delivery-section { border-block: 1px solid var(--line); }
.contact-facts { display: grid; gap: 12px; margin: 24px 0 0; }
.contact-facts div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; }
.contact-facts dt { color: var(--muted); }
.contact-facts dd { margin: 0; font-weight: 700; }
.faq-section { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 72px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 36px 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { float: right; color: var(--blue); content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { padding: 0 44px 22px 0; color: var(--muted); font-size: 0.86rem; }
.final-cta { display: flex; gap: 40px; align-items: center; justify-content: space-between; margin-bottom: 96px; padding: 44px; border-radius: var(--radius); color: #fff; background: var(--ink); }
.final-cta h2 { max-width: 680px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.final-cta .section-label { color: #7dd3fc; }

.site-footer { display: grid; grid-template-columns: 1.2fr repeat(3, 0.8fr); gap: 44px; padding: 50px 0 24px; border-top: 1px solid var(--line); }
.footer-brand p { max-width: 320px; margin-top: 16px; color: var(--muted); font-size: 0.8rem; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h2 { margin-bottom: 5px; font: 800 0.76rem/1.2 Manrope, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-column a, .footer-column p { color: var(--muted); font-size: 0.78rem; text-decoration: none; }
.footer-bottom { display: flex; grid-column: 1 / -1; gap: 20px; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.7rem; }

.legal-page { width: min(calc(100% - 40px), 800px); margin: 80px auto 120px; }
.legal-page h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.legal-page h2 { margin-top: 36px; font-size: 1.4rem; }
.legal-page p { margin-top: 14px; color: var(--muted); }
.legal-page a { color: var(--blue); }
.legal-note { padding: 14px; border: 1px solid #fed7aa; border-radius: 7px; background: var(--warning-soft); }

@media (max-width: 900px) {
  .top-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-intro { grid-template-columns: 1fr 300px; gap: 28px; }
  .hero-facts { display: none; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .advanced-fields .field { max-width: calc(50% - 7px); }
  .result-row { grid-template-columns: 1fr 1fr; }
  .result-buy { grid-column: 1 / -1; grid-template-columns: 1fr 1fr auto; align-items: center; }
  .result-buy > span { margin: 0; }
  .editorial-section, .delivery-section, .faq-section { gap: 40px; }
  .site-footer { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .site-header { width: calc(100% - 28px); min-height: 62px; }
  .brand small { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .header-cta { min-height: 36px; padding-inline: 12px; font-size: 0.72rem; }
  .header-phone { font-size: 0.75rem; }
  .hero-section { padding: 28px 14px 0; }
  .hero-intro { display: block; min-height: 0; }
  .hero-copy .section-label { margin-bottom: 8px; }
  h1 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .hero-text { margin-top: 14px; font-size: 0.94rem; }
  .hero-facts { display: none; }
  .hero-visual { display: none; }
  .hero-visual-mobile { display: block; height: 220px; margin: 14px 0 0; overflow: hidden; border-radius: var(--radius); background: var(--surface-soft); }
  .hero-visual-mobile img { width: 100%; height: 100%; object-fit: cover; }
  .vin-tab-long { display: none; }
  .vin-tab-short { display: inline; }
  .selector-card { margin-top: 26px; }
  .selector-tab { min-height: 50px; padding: 0 8px; font-size: 0.75rem; }
  .selector-progress { padding: 15px 14px 0; font-size: 0.64rem; }
  .selector-progress li { gap: 5px; }
  .selector-progress li:not(:last-child)::after { display: none; }
  .selector-progress span { width: 21px; height: 21px; }
  .selector-panel, .vin-panel { padding: 18px 14px 20px; }
  .selector-choice { margin-bottom: 14px; }
  .segmented label span { min-height: 40px; padding: 6px; font-size: 0.72rem; }
  .form-grid { grid-template-columns: 1fr; gap: 11px; }
  .field select, .field input:not([type="checkbox"]) { min-height: 46px; }
  .advanced-fields .field { max-width: none; }
  .selector-actions { display: grid; grid-template-columns: 1fr; margin-top: 18px; }
  .selector-actions .button { width: 100%; }
  .selector-help { text-align: center; }
  .result-zone { margin-top: 14px; }
  .empty-state, .result-shell, .lead-card { padding: 22px 16px; }
  .result-header { display: grid; }
  .result-header .button { width: 100%; }
  .result-row { grid-template-columns: 1fr; gap: 16px; padding: 18px 0; }
  .result-buy { display: grid; grid-column: auto; grid-template-columns: 1fr; }
  .result-buy .button { width: 100%; margin-top: 5px; }
  .result-main { order: 1; }
  .result-buy { order: 2; }
  .result-differences { order: 3; }
  .manager-strip { display: grid; }
  .manager-strip .button { width: 100%; }
  .quiz-progress { gap: 14px; }
  .quiz-progress span:last-child { text-align: right; }
  .quiz-question { padding: 18px 12px; }
  .segmented-answers { grid-template-columns: repeat(3, 1fr); }
  .quiz-actions { grid-template-columns: 1fr 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .lead-form > * { grid-column: 1 !important; }
  .content-section, .final-cta, .site-footer { width: calc(100% - 28px); }
  .content-section { padding-block: 72px; }
  .section-heading { margin-bottom: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article + article { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0; }
  .process-grid h3 { margin-top: 10px; }
  .editorial-section, .delivery-section, .faq-section { grid-template-columns: 1fr; gap: 28px; }
  .delivery-copy { order: 1; }
  .delivery-visual { order: 2; }
  .faq-section .section-heading { margin-bottom: 0; }
  .final-cta { display: grid; margin-bottom: 64px; padding: 28px 20px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: grid; grid-column: 1; }
  .site-header-simple { padding-top: 10px; }
  .legal-page { margin-top: 48px; }
}

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

/* Accepted redesign fidelity: docs/design/redesign-*-concept.png */
:root { --content: 1440px; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  width: min(calc(100% - 48px), var(--content));
  min-height: 88px;
}
.brand-mark { width: 48px; height: 48px; font-size: 1.4rem; }
.brand strong { font-size: 1.25rem; }
.brand small { font-size: 0.75rem; }
.top-nav { gap: 40px; }
.top-nav a, .header-phone { font-size: 0.94rem; }

.hero-section { padding: 0 24px; overflow: visible; }
.hero-intro {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  min-height: 360px;
  align-items: stretch;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px 64px 48px 0; }
.hero-copy h1 { max-width: 800px; font-size: clamp(3.1rem, 4.1vw, 3.9rem); }
.hero-text { max-width: 720px; margin-top: 24px; font-size: 1.08rem; }
.hero-visual { height: 360px; border-radius: 0; }
.hero-visual img { object-position: center 54%; }

.selector-card { margin-top: 0; box-shadow: 0 20px 56px rgb(15 23 42 / 10%); }
.selector-card-head { border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); overflow: hidden; }
.selector-tab { min-height: 56px; font-size: 0.96rem; }
.selector-tab.is-active { background: #fff; }
.selector-progress-mobile { display: none; }
.selector-progress { padding: 32px 52px 0; font-size: 0.82rem; }
.selector-progress span { width: 36px; height: 36px; }
.selector-panel, .vin-panel { padding: 32px 52px 40px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.selector-choice { margin: 0; }
.segmented { gap: 0; }
.segmented label + label span { border-left-width: 0; }
.segmented label:first-child span { border-radius: 8px 0 0 8px; }
.segmented label:last-child span { border-radius: 0 8px 8px 0; }
.segmented label span {
  display: flex;
  min-height: 68px;
  gap: 12px;
  padding: 12px 16px;
  justify-content: center;
  color: var(--ink);
  border-radius: 0;
  font-size: 0.96rem;
}
.choice-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(26%) saturate(1657%) hue-rotate(190deg) brightness(91%) contrast(104%);
}
.segmented input:checked + span {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: none;
}
.segmented input:checked + span .choice-icon { filter: brightness(0) invert(1); }
.form-grid { gap: 24px; }
.field select, .field input:not([type="checkbox"]), .field textarea { min-height: 56px; padding-left: 16px; }
.searchable-select-toggle { height: 54px; }
.advanced-fields { margin-top: 20px; }
.advanced-fields .field { margin-top: 16px; }
.selector-footer { display: flex; gap: 32px; align-items: center; justify-content: space-between; margin-top: 28px; }
.selector-footer .selector-actions { flex: 0 0 auto; margin: 0; }
.selector-footer .selector-help { max-width: 600px; flex-basis: auto; font-size: 0.8rem; }
.selector-footer .button { min-width: 216px; }
.button { min-height: 52px; }

.result-zone { margin-top: 32px; }
.workspace { border: 0; }
.empty-state-initial { display: none; }
.workspace > .empty-state:not(.empty-state-initial) { border: 1px solid var(--line); border-radius: var(--radius); }
.result-shell { border: 1px solid var(--line); border-radius: var(--radius); }
.result-list { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.result-row {
  grid-template-columns: minmax(240px, 1.05fr) minmax(320px, 1.25fr) minmax(220px, 0.7fr);
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.result-row:last-child { border-bottom: 0; }
.result-main h3 { font-size: 1.16rem; }
.quiz-form { max-width: none; }
.quiz-question { padding: 32px; }

.content-section, .final-cta, .site-footer { width: min(calc(100% - 48px), var(--content)); }
.content-section { padding-block: 64px; }
.process-section { padding-block: 48px; }
.process-section .section-heading { margin-bottom: 28px; }
.process-section .section-heading h2, .faq-section .section-heading h2 { font-size: 1.5rem; letter-spacing: -0.02em; }
.process-grid { border-top: 0; }
.process-grid article,
.process-grid article + article {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 0 40px 0 0;
  border-left: 0;
}
.process-grid article + article { padding-left: 40px; border-left: 1px solid var(--line); }
.process-grid article > span {
  display: grid;
  width: 32px;
  height: 32px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
}
.process-grid h3 { margin-top: 0; font-size: 1rem; letter-spacing: -0.01em; }
.process-grid p { margin-top: 0; font-size: 0.82rem; line-height: 1.45; }

.editorial-section, .delivery-section { grid-template-columns: 1fr 1fr; gap: 0; padding-block: 0; }
.editorial-section { border-block: 1px solid var(--line); }
.section-media, .delivery-visual { height: 320px; border-radius: 0; }
.section-media img, .delivery-visual img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.editorial-copy, .delivery-copy { display: flex; min-height: 320px; flex-direction: column; justify-content: center; padding: 48px 56px; }
.editorial-copy h2, .delivery-copy h2 { font-size: 1.8rem; letter-spacing: -0.025em; }
.editorial-copy > p:not(.section-label), .delivery-copy > p:not(.section-label) { margin-top: 16px; font-size: 0.9rem; }
.delivery-section { border-top: 0; }
.delivery-options { display: grid; gap: 20px; margin-top: 28px; }
.delivery-options article { position: relative; padding-left: 56px; }
.delivery-options article::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff center / 24px 24px no-repeat;
  content: "";
}
.delivery-options article:first-child::before { background-image: url("../icons/vehicle-truck.e8fa4e0bec62.svg"); }
.delivery-options article:last-child::before { background-image: url("../icons/glass-front.4ec788b0879a.svg"); }
.delivery-options strong { font-size: 0.92rem; }
.delivery-options p { margin-top: 4px; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.service-area { margin-top: 24px !important; font-weight: 700; }
.contact-facts { margin-top: 20px; font-size: 0.82rem; }

.faq-section { display: block; padding-block: 48px; }
.faq-section .section-heading { max-width: none; margin-bottom: 20px; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; border-top: 0; }
.faq-list details { border: 1px solid var(--line); border-radius: 6px; }
.faq-list summary { padding: 14px 40px 14px 16px; font-size: 0.84rem; }
.faq-list p { padding: 0 16px 16px; font-size: 0.8rem; }

.final-cta {
  display: grid;
  gap: 20px;
  justify-items: center;
  margin-bottom: 0;
  padding: 44px 24px;
  border-block: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  text-align: center;
}
.final-cta h2 { font-size: 1.8rem; }
.site-footer { padding-top: 40px; }

@media (max-width: 1100px) {
  .hero-copy { padding-right: 40px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 5vw, 3.6rem); }
  .selector-panel, .vin-panel { padding-inline: 32px; }
  .choice-grid { gap: 24px; }
  .segmented label span { min-height: 60px; gap: 8px; padding-inline: 12px; font-size: 0.84rem; }
  .choice-icon { width: 24px; height: 24px; flex-basis: 24px; }
  .selector-footer .button { min-width: 180px; }
  .editorial-copy, .delivery-copy { padding: 40px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 72px; }
  .brand-mark { width: 40px; height: 40px; font-size: 1.2rem; }
  .brand strong { font-size: 1.1rem; }
  .hero-intro { grid-template-columns: 1.1fr 0.9fr; min-height: 320px; }
  .hero-copy h1 { font-size: clamp(2.6rem, 6vw, 3.25rem); }
  .hero-visual { height: 320px; }
  .choice-grid { grid-template-columns: 1fr; gap: 16px; }
  .selector-footer { align-items: flex-end; }
  .selector-footer .selector-help { max-width: 320px; }
  .result-row { grid-template-columns: 1fr 1fr; }
  .editorial-copy, .delivery-copy { padding: 32px; }
  .editorial-copy h2, .delivery-copy h2 { font-size: 1.55rem; }
}

@media (max-width: 680px) {
  .site-header { width: calc(100% - 32px); min-height: 72px; }
  .brand { gap: 12px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 1.16rem; }
  .header-cta { min-height: 40px; }
  .hero-section { padding: 0 16px; }
  .selector-progress-mobile {
    display: flex;
    width: 100%;
    padding: 24px 0 0;
    font-size: 0.76rem;
  }
  .selector-progress-mobile li { justify-content: center; }
  .selector-progress-mobile span { width: 32px; height: 32px; }
  .selector-progress-mobile li:not(:last-child)::after { display: none; }
  .selector-progress-desktop { display: none; }
  .hero-intro { display: block; min-height: 0; }
  .hero-copy { padding: 40px 0 28px; }
  .hero-copy h1 { max-width: 360px; font-size: 2rem; letter-spacing: -0.045em; }
  .hero-text { max-width: 360px; margin-top: 16px; font-size: 1rem; line-height: 1.55; }
  .selector-card { margin-top: 0; box-shadow: none; }
  .selector-tab { min-height: 56px; font-size: 0.82rem; }
  .selector-panel, .vin-panel { padding: 24px 16px 28px; }
  .choice-grid { gap: 12px; margin-bottom: 24px; }
  .segmented label span { min-height: 60px; gap: 8px; padding: 8px; font-size: 0.8rem; }
  .choice-icon { width: 24px; height: 24px; flex-basis: 24px; }
  .segmented-category label span { gap: 4px; padding-inline: 4px; font-size: 0.7rem; }
  .segmented-category .choice-icon { width: 20px; height: 20px; flex-basis: 20px; }
  .form-grid { gap: 16px; }
  .field select, .field input:not([type="checkbox"]) { min-height: 56px; }
  .searchable-select-toggle { height: 54px; }
  .selector-footer { display: grid; gap: 20px; margin-top: 24px; }
  .selector-footer .selector-help { display: none; }
  .selector-footer .selector-actions { grid-template-columns: 1fr 1fr; }
  .selector-footer .button { min-width: 0; min-height: 52px; padding-inline: 10px; font-size: 0.78rem; }
  .hero-visual-mobile { height: 220px; margin-top: 24px; }
  .result-zone { margin-top: 24px; }
  .result-shell { padding: 24px 16px; }
  .result-list { border: 0; border-radius: 0; }
  .result-row { margin-top: 12px; padding: 20px 16px; border: 1px solid var(--line); border-radius: 8px; }
  .result-row:last-child { border-bottom: 1px solid var(--line); }
  .result-buy .button { position: sticky; bottom: 12px; z-index: 4; }
  .content-section, .final-cta, .site-footer { width: calc(100% - 32px); }
  .content-section { padding-block: 48px; }
  .process-section { padding-block: 40px; }
  .process-grid article,
  .process-grid article + article { padding: 20px 0; }
  .process-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .editorial-section, .delivery-section { grid-template-columns: 1fr; padding-block: 0; }
  .section-media, .delivery-visual { height: 220px; }
  .editorial-copy, .delivery-copy { min-height: 0; padding: 32px 24px; }
  .editorial-copy h2, .delivery-copy h2 { font-size: 1.55rem; }
  .delivery-copy { order: 1; }
  .delivery-visual { order: 2; }
  .faq-section { padding-block: 40px; }
  .faq-list { grid-template-columns: 1fr; }
  .final-cta { padding: 40px 20px; }
  .final-cta h2 { font-size: 1.55rem; }
}
