:root {
  --reference-orange: #f3652a;
  --reference-orange-dark: #d84b16;
  --reference-canvas: #f5f6f6;
}

body {
  background: var(--reference-canvas);
}

.site-header {
  height: 60px;
  padding-inline: 32px;
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--reference-orange);
}

.brand .brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  color: var(--reference-orange);
  font-family: Manrope, Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.brand .brand-hound {
  color: var(--reference-orange-dark);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.brand img {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.quote-shell {
  max-width: none;
  min-height: calc(100vh - 60px);
  margin: 0;
  padding: 0;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 0;
}

.quote-intro {
  position: sticky;
  top: 60px;
  align-self: start;
  min-height: calc(100vh - 60px);
  padding: 42px 30px;
  border-right: 1px solid #dce1e3;
  background: #fff;
}

.quote-intro h1 {
  max-width: 10ch;
  margin-bottom: 14px;
  font-size: 32px;
}

.quote-intro > p:not(.eyebrow) {
  max-width: 25ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.quote-mascot {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 20px 0 0;
}

.quote-mascot img {
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(21, 56, 50, 0.16);
}

.quote-mascot figcaption,
.quote-mascot strong,
.quote-mascot span {
  display: block;
}

.quote-mascot strong {
  color: var(--ink);
  font-size: 12px;
}

.quote-mascot span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.journey-rail {
  margin-top: 30px;
}

.journey-rail ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-rail li {
  position: relative;
  min-height: 58px;
  color: #85908c;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  width: 100%;
  min-height: 58px;
  padding: 0;
  column-gap: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.journey-step:disabled { cursor: not-allowed; }
.journey-step:not(:disabled):hover b,
.journey-step:not(:disabled):focus-visible b { color: var(--reference-orange-dark); }
.journey-step:focus-visible { outline: 2px solid var(--reference-orange); outline-offset: 3px; border-radius: 6px; }

.journey-rail li::after {
  position: absolute;
  top: 27px;
  bottom: 0;
  left: 13px;
  width: 2px;
  background: #dbe1df;
  content: "";
}

.journey-rail li:last-child::after {
  display: none;
}

.journey-rail .journey-step > span {
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #d5ddda;
  border-radius: 50%;
  background: #fff;
  font: 700 11px "DM Mono", monospace;
}

.journey-rail .journey-step b,
.journey-rail .journey-step small {
  grid-column: 2;
}

.journey-rail .journey-step b {
  align-self: end;
  color: inherit;
  font-size: 13px;
}

.journey-rail .journey-step small {
  margin-top: -6px;
  font-size: 10px;
}

.journey-rail li.active,
.journey-rail li.complete {
  color: var(--ink);
}

.journey-rail li.active .journey-step > span,
.journey-rail li.complete .journey-step > span {
  border-color: var(--reference-orange);
  background: var(--reference-orange);
  color: #fff;
}

.journey-rail li.complete .journey-step > span::before {
  content: "✓";
}

.journey-rail li.complete .journey-step > span {
  font-size: 0;
}

.journey-rail li.complete .journey-step > span::before {
  font-size: 12px;
}

.journey-rail li.finish .finish-star {
  border-color: #ef9b3f;
  background: #fff7ef;
  color: var(--reference-orange-dark);
  box-shadow: 0 3px 10px rgba(243, 101, 42, .12);
  font: 700 14px/1 sans-serif;
}

.journey-rail li.finish.active .finish-star {
  background: linear-gradient(145deg, #ff773d, #ee9a38);
  color: #fff;
  box-shadow: 0 4px 12px rgba(243, 101, 42, .22);
}

.trust-row {
  gap: 7px;
  margin-top: 24px;
}

.trust-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef2ef;
}

.quote-card {
  width: min(760px, calc(100% - 48px));
  margin: 48px auto 80px;
  padding: 34px 40px;
  border-color: #d9dfe1;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(24, 43, 39, 0.08);
}

.stepper {
  justify-content: space-between;
  color: #909b97;
}

.stepper span {
  display: none;
}

.stepper span.active {
  display: inline;
  color: var(--reference-orange-dark);
}

.live-price {
  position: relative;
  margin: 24px 0 20px;
  padding: 14px 15px;
  overflow: hidden;
  border: 1px solid #d7dfdc;
  border-radius: 13px;
  background: linear-gradient(135deg, #fff9f3, #f2f5ed);
  box-shadow: 0 7px 18px rgba(21, 56, 50, .07);
}

.live-price::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #a8b6b8;
  content: "";
}

.live-price[data-state="available"]::before,
.live-price[data-state="loading-with-price"]::before { background: var(--reference-orange); }
.live-price[data-state="unavailable"]::before,
.live-price[data-state="error"]::before { background: #b86c59; }

.live-price-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.live-price .eyebrow { margin: 0; font-size: 8px; }

.live-price-status {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e7ece9;
  color: #687873;
  font: 700 11px "DM Mono", monospace;
  letter-spacing: .07em;
}

.live-price[data-state="available"] .live-price-status { background: #e9f0dc; color: #486b30; }
.live-price[data-state="loading"] .live-price-status,
.live-price[data-state="loading-with-price"] .live-price-status { animation: price-pulse 1.1s ease-in-out infinite; }
.live-price[data-state="unavailable"] .live-price-status,
.live-price[data-state="error"] .live-price-status { background: #f4e3de; color: #8c4334; }

.live-price-waiting { padding-top: 10px; }
.live-price-waiting strong { font-size: 12px; }
.live-price-waiting p { margin: 2px 0 0; color: var(--muted); font-size: 9px; line-height: 1.4; }

.live-price-range,
.live-price-result { padding-top: 9px; }
.live-price [hidden] { display: none; }
.live-price-range strong,
.live-price-result > strong { display: block; font: 700 25px/1 "Playfair Display", serif; letter-spacing: -.03em; white-space: nowrap; }
.live-price-range span,
.live-price-result span { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; }
.live-price-range b,
.live-price-result b { display: block; margin-top: 7px; font-size: 10px; }
.live-price-change { margin: 9px 0 0; padding: 7px 9px; border: 1px solid transparent; border-radius: 8px; background: #f3eee8; color: #5e655f; font-size: 12px; font-weight: 800; line-height: 1.35; }
.live-price-change[data-price-tone="saving"] { border-color: #b9d9be; background: #e8f4e9; color: #246039; }
.live-price-change[data-price-tone="increase"] { border-color: #efc1b8; background: #fbe9e5; color: #9b3026; }
.live-price-note { margin: 8px 0 0; color: var(--muted); font-size: 7px; line-height: 1.4; }

@keyframes price-pulse { 50% { opacity: .5; } }

fieldset {
  padding-top: 8px;
  border-bottom: 0;
}

fieldset[hidden],
.consent[hidden],
[data-excluded-driver-name][hidden] {
  display: none;
}

legend {
  margin-bottom: 4px;
  font-size: 24px;
}

input,
select,
textarea {
  min-height: 45px;
  border-color: #d5dcde;
  border-radius: 11px;
  background: #fff;
}

select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='m5 7 4 4 4-4' fill='none' stroke='%23153832' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.typeahead { position: relative; }
.typeahead input { padding-right: 44px; }
.typeahead-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 43px;
  height: 45px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.typeahead-toggle span {
  width: 9px;
  height: 9px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.typeahead-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 20;
  max-height: min(320px, 45vh);
  padding: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ccd6d3;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(21,56,50,.16);
}
.typeahead-menu[hidden] { display: none; }
.typeahead-menu button {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font: 600 12px Manrope, sans-serif;
  text-align: left;
  cursor: pointer;
}
.typeahead-menu button:hover,
.typeahead-menu button.active { background: #fff0e7; color: var(--reference-orange-dark); }
.typeahead-menu p { margin: 5px; color: var(--muted); font-size: 11px; }

.vehicle-entry-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.vehicle-entry-choice button {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #d5dcde;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.vehicle-entry-choice button b { font-size: 13px; }
.vehicle-entry-choice button span { color: var(--muted); font-size: 10px; line-height: 1.4; }
.vehicle-entry-choice button:hover { border-color: #ef9b73; background: #fffaf7; }
.vehicle-entry-choice button.selected {
  border-color: var(--reference-orange);
  background: #fff5ee;
  box-shadow: inset 0 0 0 1px var(--reference-orange);
}
.vehicle-entry-choice button.selected::after {
  justify-self: end;
  color: var(--reference-orange-dark);
  font: 800 10px "DM Mono", monospace;
  content: "SELECTED";
}
.vehicle-entry-body { display: flex; flex-direction: column; gap: 14px; }
.vehicle-entry-body[data-mode="manual"] .vehicle-manual-card { order: 1; }
.vehicle-entry-body[data-mode="manual"] .vehicle-vin-card { order: 2; }
.vehicle-entry-body[data-mode="vin"] .vehicle-vin-card { order: 1; }
.vehicle-entry-body[data-mode="vin"] .vehicle-manual-card { order: 2; }
.vehicle-vin-card,
.vehicle-manual-card {
  padding: 18px;
  border: 1px solid #d9e0df;
  border-radius: 13px;
  background: #fff;
}
.vehicle-vin-card { background: linear-gradient(135deg, #fff9f4, #f7f7f1); }
.vehicle-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}
.vehicle-section-heading .eyebrow { margin-bottom: 5px; font-size: 8px; }
.vehicle-section-heading h2 { margin: 0; font-size: 17px; }
.vehicle-section-heading > p { max-width: 310px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; text-align: right; }
.vehicle-manual-card > .grid { margin-top: 0; }

.vin-input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.vin-input-row button {
  min-width: 108px;
  padding: 0 13px;
  border: 1px solid var(--reference-orange);
  border-radius: 10px;
  background: #fff5ee;
  color: var(--reference-orange-dark);
  font: 800 11px Manrope, sans-serif;
  cursor: pointer;
}
.vin-input-row button:hover { background: #ffe8d9; }
.vin-input-row button:disabled { cursor: wait; opacity: .65; }
.vin-status { margin: 7px 0 0; font-size: 11px; font-weight: 700; line-height: 1.45; }
.vin-status[data-state="loading"] { color: var(--muted); }
.vin-status[data-state="success"] { color: #187052; }
.vin-status[data-state="error"] { color: #a53825; }

.field-label { font-size: 12px; font-weight: 700; }
.driver-count { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.driver-count button {
  min-height: 45px;
  border: 1px solid #d5dcde;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: 800 13px Manrope, sans-serif;
  cursor: pointer;
}
.driver-count button:hover { border-color: var(--reference-orange); }
.driver-count button.selected {
  border-color: var(--reference-orange);
  background: var(--reference-orange);
  color: #fff;
  box-shadow: 0 3px 0 var(--reference-orange-dark);
}

.toggle input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  min-height: 17px;
  padding: 0;
  cursor: pointer;
}

.toggle,
.toggle span { cursor: pointer; }

.quote-engineering {
  margin: 0 0 22px;
  padding: 17px 18px;
  border: 1px solid #c9ded7;
  border-radius: 13px;
  background: linear-gradient(135deg, #103a33, #184b42);
  color: #f8fbf7;
  box-shadow: 0 9px 22px rgba(15, 51, 44, 0.12);
}

.quote-engineering-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.quote-engineering .eyebrow { margin-bottom: 4px; color: #e7b362; }
.quote-engineering h2 { margin: 0; font: 700 17px/1.15 Manrope, sans-serif; }

.engineering-step-count {
  flex: 0 0 auto;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #dcece4;
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .06em;
}

.engineering-summary { margin: 10px 0 14px; color: #dce8e1; font-size: 12px; line-height: 1.45; }
.engineering-details { display: grid; grid-template-columns: 1fr 1.35fr; gap: 14px; padding-top: 11px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.quote-engineering h3 { margin: 0 0 6px; color: #9dc6b7; font: 700 9px "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.quote-engineering dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 8px; margin: 0; font: 10px/1.35 "DM Mono", monospace; }
.quote-engineering dt { color: #9dc6b7; }
.quote-engineering dd { margin: 0; color: #f6faf7; overflow-wrap: anywhere; }
.quote-engineering ul { margin: 0; padding-left: 15px; color: #e6f0eb; font-size: 10px; line-height: 1.55; }
.engineering-boundary { margin: 12px 0 0; color: #b9d4c8; font-size: 10px; }

.demo-paths button,
.packages button {
  min-height: 84px;
  border-color: #d9dfe1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 0 rgba(21, 56, 50, 0.08);
}

.demo-paths button:hover,
.packages button:hover,
.demo-paths button.selected,
.packages button.selected {
  border-color: var(--reference-orange);
  background: #fff7f2;
  color: var(--ink);
  box-shadow: 0 3px 0 var(--reference-orange);
}

.packages button {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
}

.packages button::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: #e6c57a;
  content: "";
}

.packages button[data-package="silver"]::before {
  background: #a8b6b8;
}

.packages button[data-package="gold"]::before {
  background: var(--reference-orange);
}

.button.primary {
  background: var(--reference-orange);
}

.button.primary:hover {
  background: var(--reference-orange-dark);
}

.wizard-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.wizard-controls .button {
  min-width: 112px;
}

.wizard-controls .button[hidden] {
  display: none;
}

.wizard-next,
.wizard-controls button[type="submit"] {
  margin-left: auto;
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
}

.support-launcher {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--reference-orange);
  border-radius: 50%;
  background: #fffdf8 url("mascot/alley-hound-header-icon-144.a7c56df1b07f.png") center / 102% auto no-repeat;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(21, 56, 50, 0.26);
  cursor: pointer;
}

.support-launcher svg {
  display: none;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid #d7dddf;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(21, 56, 50, 0.2);
}

.support-panel[hidden] {
  display: none;
}

.support-panel::after {
  position: absolute;
  right: 20px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-right: 1px solid #d7dddf;
  border-bottom: 1px solid #d7dddf;
  background: #fff;
  content: "";
}

.support-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.support-head h2 {
  margin: 0;
  font: 700 18px Manrope, sans-serif;
}

.support-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
}

.support-intro,
.support-note,
.support-phone-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.support-phone-label {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.support-phone-input {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #cfd7d9;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

.support-phone-input:focus {
  border-color: var(--reference-orange);
  outline: 3px solid rgba(244, 111, 58, 0.2);
  outline-offset: 1px;
}

.support-phone-input[aria-invalid="true"] {
  border-color: #b42318;
}

.support-phone-help {
  margin: 6px 0 12px;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.support-choice {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd7d9;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.support-choice:hover {
  border-color: var(--reference-orange);
  background: #fff7f2;
}

.support-choice svg {
  width: 20px;
  height: 20px;
}

.support-choice strong {
  font-size: 14px;
}

.support-status {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #edf3ed;
  color: var(--ink);
  font-size: 12px;
}

.support-status[data-state="error"] {
  background: #fff0ed;
  color: #8a1c14;
}

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

@media (max-width: 900px) {
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
    min-height: 0;
    padding: 28px 24px 18px;
    border-right: 0;
    border-bottom: 1px solid #dce1e3;
  }

  .quote-intro h1 {
    max-width: none;
  }

  .quote-intro > p:not(.eyebrow) {
    max-width: 56ch;
  }

  .journey-rail {
    overflow-x: auto;
    margin-top: 20px;
  }

  .journey-rail ol {
    display: flex;
    min-width: 680px;
  }

  .journey-rail li {
    width: 116px;
  }

  .journey-rail li::after {
    top: 13px;
    right: 0;
    bottom: auto;
    left: 27px;
    width: calc(100% - 27px);
    height: 2px;
  }

  .quote-card {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .engineering-details { grid-template-columns: 1fr; gap: 11px; }
  .quote-engineering { padding: 15px; }

  .site-header {
    padding-inline: 18px;
  }

  .quote-card {
    width: calc(100% - 24px);
    margin-top: 16px;
    padding: 24px 18px;
  }

  .support-widget {
    right: 14px;
    bottom: 14px;
  }
}

/* Quote flow cleanup */
.quote-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: calc(100vh - 60px);
}

.quote-customer-shell,
.result-customer-shell {
  min-width: 0;
}

.quote-price-dock {
  position: sticky;
  top: 60px;
  z-index: 4;
  display: grid;
  min-height: 64px;
  align-items: center;
  grid-template-columns: minmax(112px, auto) minmax(250px, 1fr) minmax(190px, auto);
  gap: 6px 22px;
  margin: 0;
  padding: 8px 28px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(255, 252, 247, .97);
  box-shadow: 0 6px 16px rgba(21, 56, 50, .09);
  backdrop-filter: blur(10px);
}

.quote-price-dock::before { width: 4px; }
.quote-price-dock .live-price-heading { justify-content: flex-start; gap: 9px; }
.quote-price-dock .live-price-heading .eyebrow { display: none; }
.quote-price-dock .live-price-waiting,
.quote-price-dock .live-price-range,
.quote-price-dock .live-price-result { padding-top: 0; }
.quote-price-dock .live-price-waiting { display: flex; align-items: baseline; gap: 10px; }
.quote-price-dock .live-price-waiting strong { flex: 0 0 auto; font-size: 13px; }
.quote-price-dock .live-price-waiting p { margin: 0; font-size: 11px; }
.quote-price-dock .live-price-range,
.quote-price-dock .live-price-result { display: grid; align-items: baseline; grid-template-columns: auto auto minmax(0, 1fr); gap: 0 10px; }
.quote-price-dock .live-price-range strong,
.quote-price-dock .live-price-result > strong { font-size: 23px; }
.quote-price-dock .live-price-range span,
.quote-price-dock .live-price-result span,
.quote-price-dock .live-price-range b,
.quote-price-dock .live-price-result b { display: inline; margin: 0; font-size: 12px; }
.quote-price-dock .live-price-range span,
.quote-price-dock .live-price-result span { font-size: 11px; }
.quote-price-dock .live-price-change { max-width: 370px; margin: 0; padding: 7px 10px; }
.quote-price-dock .live-price-note { display: none; }
.quote-price-dock [hidden] { display: none; }

.quote-customer-shell .quote-intro,
.result-customer-shell .result-sidebar {
  top: 124px;
  min-height: calc(100vh - 124px - 52px);
}

.result-customer-shell .result-sidebar {
  min-height: calc(100vh - 124px - 52px - 56px);
}

.quote-shell {
  grid-template-columns: 270px minmax(0, 1fr);
}

.quote-page-shell > .engineering-sidebar {
  top: 60px;
  height: calc(100vh - 60px);
}

.drawer-engineering {
  width: 410px;
  margin: 0;
  padding: 16px 20px 45px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.drawer-engineering .engineering-details { grid-template-columns: 1fr; }
.drawer-engineering .engineering-details section + section { margin-top: 8px; }

.engineering-locked .engineering-only-header {
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: #123c35;
  cursor: default;
}

.engineering-only-note {
  margin: 0 0 18px;
  padding: 10px 11px;
  border: 1px solid rgba(231,179,98,.38);
  border-radius: 8px;
  background: rgba(231,179,98,.1);
  color: #f2d28f;
  font: 700 9px/1.5 "DM Mono", monospace;
  letter-spacing: .02em;
}

.consent-box a {
  color: var(--reference-orange-dark);
  font-weight: 800;
  text-underline-offset: 2px;
}

.engineering-api-contract {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.engineering-api-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.engineering-api-heading h3 { margin: 0; color: #fff; font-size: 13px; }
.engineering-api-heading span {
  padding: 4px 6px;
  border: 1px solid rgba(242,210,143,.36);
  border-radius: 5px;
  color: #f2d28f;
  font: 700 7px "DM Mono", monospace;
  letter-spacing: .06em;
}
.engineering-api-contract > p { margin: 10px 0; color: #c3d1ca; font-size: 10px; line-height: 1.55; }
.engineering-api-contract > p strong { color: #fff; }
.engineering-api-contract h4 { margin: 16px 0 7px; color: #f2d28f; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.engineering-endpoints { display: grid; gap: 7px; margin: 9px 0 0; padding: 0; list-style: none; }
.engineering-endpoints li { display: grid; gap: 2px; padding: 8px; border-radius: 7px; background: rgba(255,255,255,.055); }
.engineering-endpoints code { color: #fff; font: 700 8px/1.4 "DM Mono", monospace; overflow-wrap: anywhere; }
.engineering-endpoints span { color: #aebeb6; font-size: 9px; line-height: 1.4; }
.engineering-field-list { display: flex; flex-wrap: wrap; gap: 5px; }
.engineering-field-list code { padding: 4px 5px; border-radius: 4px; background: #19453d; color: #e8f0eb; font: 8px "DM Mono", monospace; }
.engineering-api-contract .engineering-field-note { color: #f2d28f; }
.engineering-field-map { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6px 9px; margin: 0; font-size: 9px; }
.engineering-field-map dt { color: #9fb1a8; }
.engineering-field-map dd { margin: 0; color: #eef4f0; }
.engineering-doc-link { display: inline-flex; margin-top: 16px; color: #f2d28f; font-size: 9px; font-weight: 800; text-underline-offset: 3px; }

.quote-intro {
  padding-inline: 28px;
}

.quote-intro h1 {
  max-width: 9ch;
  font-size: 30px;
  line-height: 1.08;
}

.journey-rail li,
.journey-step {
  min-height: 62px;
}

.journey-rail .journey-step b {
  align-self: center;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 1.3;
}

.quote-card {
  width: min(900px, calc(100% - 48px));
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.currency-input {
  position: relative;
}

.currency-input > span {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: var(--reference-green);
  font-size: 15px;
  font-weight: 800;
  transform: translateY(-50%);
  pointer-events: none;
}

.currency-input input {
  padding-left: 31px;
  font-variant-numeric: tabular-nums;
}

[data-rebuilt-evidence][hidden] {
  display: none !important;
}

.address-field {
  position: relative;
}

.address-field input {
  padding-right: 44px;
  background-image: radial-gradient(circle, var(--reference-orange) 2px, transparent 3px);
  background-position: right 17px center;
  background-repeat: no-repeat;
}

.engineering-outcome {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  margin: 14px 0 4px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.engineering-outcome > span {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: #b8c4bf;
  box-shadow: 0 0 0 4px rgba(184, 196, 191, 0.12);
}

.engineering-outcome[data-state="bind"] > span { background: #7fd18a; box-shadow: 0 0 0 4px rgba(127, 209, 138, 0.14); }
.engineering-outcome[data-state="refer"] > span,
.engineering-outcome[data-state="hold"] > span { background: #efc86f; box-shadow: 0 0 0 4px rgba(239, 200, 111, 0.14); }
.engineering-outcome[data-state="out"] > span { background: #ff8b78; box-shadow: 0 0 0 4px rgba(255, 139, 120, 0.14); }
.engineering-outcome small { display: block; color: #9dc6b7; font: 700 8px "DM Mono", monospace; letter-spacing: .08em; }
.engineering-outcome strong { display: block; margin-top: 2px; font-size: 15px; }
.engineering-outcome p { margin: 3px 0 0; color: #dce8e1; font-size: 10px; line-height: 1.45; }

.packages {
  gap: 13px;
  margin-top: 18px;
}

.packages button {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  gap: 13px;
  padding: 29px 18px 20px;
}

.packages button::after {
  position: absolute;
  top: 17px;
  right: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid #cdd5d2;
  border-radius: 50%;
  content: "";
}

.packages button.selected::after {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  background: var(--reference-orange);
  color: #fff;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--reference-orange);
}

.packages button.selected {
  border: 2px solid var(--reference-orange);
  background: #fff2e9;
  box-shadow: 0 5px 0 var(--reference-orange), 0 12px 26px rgba(243, 101, 42, .12);
}

.package-error { margin: 10px 0 0; color: #a33d33; font-size: 11px; font-weight: 700; }

.packages .package-name {
  display: block;
  padding-right: 22px;
}

.packages .package-name b {
  font-size: 21px;
}

.packages .package-name small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.packages button > strong {
  font-size: 15px;
  color: var(--reference-orange-dark);
}

.packages button > span:last-child {
  margin-top: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  opacity: 1;
}

.packages button > ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  list-style: none;
}

.packages button > ul li {
  position: relative;
  padding-left: 14px;
}

.packages button > ul li::before {
  position: absolute;
  left: 0;
  color: var(--reference-orange);
  content: "✓";
  font-weight: 800;
}

.sr22-choice {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #d9dfe1;
  border-radius: 12px;
  background: #f8f9f7;
}

.sr22-question {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.sr22-choice > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.uninsured-operation-choice > div {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sr22-choice > div > div label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d4dbdd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.sr22-choice > div > div label:has(input:checked) {
  border-color: var(--reference-orange);
  background: #fff7f1;
  box-shadow: inset 0 0 0 1px var(--reference-orange), 0 3px 10px rgba(243, 101, 42, .08);
}

.sr22-choice input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
  width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--reference-orange);
}

.sr22-choice > small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 500;
}

.coverage-elections-inline {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.coverage-elections-inline h2 { margin: 0 0 5px; font-size: 20px; }

.mvr-verification {
  padding: 13px;
  border: 1px solid rgba(231, 179, 98, 0.35);
  border-radius: 10px;
  background: #19453d;
}

.mvr-verification-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mvr-verification-head span {
  color: #efc86f;
  font: 700 8px "DM Mono", monospace;
  text-align: right;
}

.mvr-verification > p {
  margin: 8px 0 11px;
  color: #b9d4c8;
  font-size: 10px;
}

.engine-content .mvr-verification dl {
  grid-template-columns: 1.25fr 1fr;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.consent {
  margin: 0;
  padding: 8px 0 0;
  background: transparent;
}

.review-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.review-heading h2 {
  margin: 0;
  font-size: 25px;
}

.review-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.review-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review-card {
  padding: 16px;
  border: 1px solid #d9dfe1;
  border-radius: 13px;
  background: #fff;
}

.review-card:last-child { grid-column: 1 / -1; }

.review-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0ef;
}

.review-card h3 {
  margin: 0;
  font-size: 15px;
}

.review-card button {
  border: 0;
  background: transparent;
  color: var(--reference-orange-dark);
  font: 700 11px Manrope, sans-serif;
  cursor: pointer;
}

.review-card dl {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  font-size: 10px;
}

.review-item {
  display: grid;
  grid-template-columns: minmax(90px, .75fr) 1.25fr;
  gap: 10px;
  min-width: 0;
}

.review-card:last-child dl {
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  column-gap: 30px;
}

.review-card dt { color: var(--muted); }
.review-card dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }

.signature-ceremony {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #d8e2db;
  border-radius: 14px;
  background: linear-gradient(135deg, #f2f6ef, #fbfaf5);
}

.signature-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.signature-heading h3 { margin: 1px 0 0; font-size: 19px; }
.signature-heading > p { margin: 0; color: var(--muted); font-size: 11px; }

.signature-records {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.signature-records article {
  display: flex;
  min-width: 0;
  min-height: 76px;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dbe3de;
  border-radius: 10px;
  background: rgba(255,255,255,.82);
}

.signature-records article div { display: grid; gap: 3px; }
.signature-records span { color: var(--muted); font-size: 10px; font-weight: 700; }
.signature-records strong { color: var(--reference-green); font-size: 12px; line-height: 1.35; }
.signature-records small { color: var(--muted); font-size: 9px; line-height: 1.35; }

.signature-acceptance {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(19, 62, 54, .18);
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  line-height: 1.45;
}

.signature-note { margin: 9px 0 0 29px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.signature-note a { color: var(--reference-orange-dark); font-weight: 700; }

@media (max-width: 760px) {
  .signature-heading { display: block; }
  .signature-heading > p { margin-top: 5px; }
  .signature-records { grid-template-columns: 1fr; }
}

/* Quote result: preserve the quote-builder shell and tighten the landing page. */
.result-workspace {
  display: grid;
  width: 100%;
  min-height: calc(100vh - 124px);
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}

.result-sidebar {
  position: sticky;
  top: 124px;
  align-self: start;
  min-height: calc(100vh - 124px);
  padding: 42px 28px;
}

.result-sidebar > p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.result-price-dock .live-price-result { padding-top: 0; }
.result-journey-rail { margin-top: 30px; }
.result-journey-rail .journey-step { color: inherit; text-decoration: none; }
.result-journey-rail a.journey-step { border-radius: 9px; transition: background .15s ease, transform .15s ease; }
.result-journey-rail a.journey-step:hover { background: #fff7ef; transform: translateX(2px); }
.result-journey-rail a.journey-step:hover b { color: var(--reference-orange-dark); }
.result-journey-rail .journey-step small { color: var(--reference-orange-dark); font-weight: 700; }

.result-landing {
  width: 100%;
  max-width: 948px;
  margin: 0 auto;
  padding: 26px 24px 56px;
}

.result-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  padding: 0 4px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--reference-orange-dark);
  font: 700 10px "DM Mono", monospace;
}
.result-toolbar .button { margin: 0; font-family: Manrope, sans-serif; }

.result-landing .result-card { padding: 22px 26px; }
.result-landing .result-card h1 { margin-bottom: 8px; font-size: 36px; }
.result-landing .result-card .lede { margin: 0; font-size: 14px; line-height: 1.55; }
.result-landing .reason-row { margin-top: 14px; }
.result-landing .status-strip { margin: 12px 0; }
.result-landing .status-strip > div { padding: 8px 10px; }

.result-landing .price-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 12px 0;
  padding: 20px 24px;
}
.result-landing .consumer-price-summary {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(205px, auto) minmax(0, 1fr);
  gap: 2px 22px;
}
.result-landing .consumer-price-summary > .eyebrow { grid-column: 1; }
.result-landing .price-card h2 { font-size: 43px; }
.result-landing .monthly-price { display: flex; align-items: baseline; gap: 8px; }
.result-landing .monthly-price span { color: var(--muted); font-size: 10px; white-space: nowrap; }
.result-landing .term-price { grid-column: 2; grid-row: 2; margin: 0 0 5px; color: var(--ink); font-size: 12px; }
.result-landing .term-price strong { font-size: 14px; }
.result-landing .consumer-price-summary > p:last-child { grid-column: 1 / -1; margin-top: 5px; }
.result-landing .price-card ul {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}
.result-landing .price-card li { align-items: baseline; gap: 12px; padding: 6px 0; line-height: 1.35; }
.result-landing .price-card li span { max-width: 78%; }
.result-landing .price-card li b { flex: 0 0 auto; }

.result-landing .action-card,
.result-landing .issued-card { margin: 12px 0; padding: 19px 24px; }

.adjustment-reset-note {
  display: grid;
  gap: 3px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #e9c47c;
  border-radius: 10px;
  background: #fff8e9;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}
.adjustment-reset-note span { color: var(--muted); }
.evidence-refresh-note { border-color: #b8d0b3; background: #eef5e9; }
.result-landing .action-card:has(form) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 20px;
}
.result-landing .action-card:has(form) form { grid-column: 2; grid-row: 1 / span 3; }
.result-landing .action-card:has(form) p { margin: 2px 0 0; }

.quote-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.quote-snapshot article {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #d9dfe1;
  border-radius: 12px;
  background: var(--paper);
}
.quote-snapshot small { display: block; color: var(--muted); font: 700 8px "DM Mono", monospace; letter-spacing: .08em; }
.quote-snapshot strong { display: block; margin-top: 5px; font-size: 13px; overflow-wrap: anywhere; }
.quote-snapshot span { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; overflow-wrap: anywhere; }

.result-more {
  margin-top: 12px;
  border: 1px solid #d9dfe1;
  border-radius: 12px;
  background: var(--paper);
}
.result-more summary { padding: 14px 16px; font-size: 12px; font-weight: 800; cursor: pointer; }
.result-more .details-grid { margin: 0; padding: 0 14px 14px; }
.result-more .details-grid article { box-shadow: none; }

@media (max-width: 900px) {
  .quote-page-shell { display: block; padding-top: 0; }
  .quote-page-shell > .engineering-sidebar { top: auto; z-index: 45; height: 54px; }
  .quote-page-shell > .engineering-sidebar.open { height: min(80vh, 700px); }
  .engineering-sidebar.engineering-locked.open,
  .quote-page-shell > .engineering-sidebar.engineering-locked.open {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: none;
  }
  .engineering-sidebar.engineering-locked .engine-content {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .result-workspace { display: block; width: 100%; min-height: 0; padding: 0; }
  .result-sidebar { position: static; min-height: 0; }
  .result-sidebar h1 { max-width: none; }
  .result-landing { margin-top: 0; padding: 18px 16px 48px; }
  .quote-shell { width: 100%; grid-template-columns: minmax(0, 1fr); }
  .quote-intro,
  .quote-customer-shell .quote-intro,
  .result-customer-shell .result-sidebar { min-width: 0; min-height: 0; padding: 22px 24px 14px; }
  .quote-intro h1 { max-width: none; margin-bottom: 7px; font-size: 25px; }
  .quote-intro > p:not(.eyebrow) { margin: 0; font-size: 12px; }
  .quote-mascot { display: none; }
  .journey-rail { width: 100%; max-width: 100%; margin-top: 16px; padding-bottom: 4px; }
  .journey-rail ol { min-width: 610px; }
  .journey-rail li { width: 122px; }
  .journey-rail .journey-step b { padding: 29px 8px 0 0; align-self: start; font-size: 11px; }
  .quote-card { min-width: 0; width: min(900px, calc(100% - 32px)); }
  .quote-price-dock {
    position: sticky;
    top: 60px;
    z-index: 4;
    display: grid;
    min-height: 64px;
    align-items: center;
    grid-template-columns: 135px minmax(0, 1fr) minmax(0, auto);
    gap: 5px 14px;
    margin: 0;
    padding: 8px 20px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: 0 7px 18px rgba(21,56,50,.12);
  }
  .quote-price-dock .live-price-heading { display: flex; }
  .quote-price-dock .live-price-status { display: inline-block; margin-top: 0; }
  .quote-price-dock .live-price-range strong,
  .quote-price-dock .live-price-result > strong { font-size: 21px; }
  .quote-price-dock .live-price-change { margin: 0; }
}

@media (max-width: 700px) {
  .packages,
  .review-summary { grid-template-columns: 1fr; }
  .packages button { min-height: 0; }
  .review-heading { display: block; }
  .review-heading > p { margin-top: 6px; }
  .result-landing .price-card { grid-template-columns: 1fr; gap: 14px; }
  .quote-snapshot { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { height: 56px; }
  .brand { font-size: 14px; }
  .brand img { width: 36px; height: 36px; }
  .texas-badge { display: none; }
  .quote-intro { padding-inline: 18px; }
  .quote-card { width: calc(100% - 16px); margin: 10px 8px 72px; padding: 20px 16px; }
  .quote-engineering,
  .engineering-outcome,
  .engineering-details { min-width: 0; }
  .quote-engineering dd,
  .quote-engineering p { overflow-wrap: anywhere; }
  .stepper { margin-bottom: 14px; padding-bottom: 13px; }
  .quote-page-shell { padding-top: 0; }
  .quote-price-dock { top: 56px; min-height: 58px; padding: 7px 14px; grid-template-columns: minmax(96px, auto) minmax(0, 1fr); gap: 3px 10px; }
  .quote-price-dock .live-price-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .quote-price-dock .live-price-waiting { display: block; }
  .quote-price-dock .live-price-waiting p { display: none; }
  .quote-price-dock .live-price-range,
  .quote-price-dock .live-price-result { grid-template-columns: auto minmax(0, 1fr); gap: 2px 7px; }
  .quote-price-dock .live-price-range strong,
  .quote-price-dock .live-price-result > strong { font-size: 19px; }
  .quote-price-dock .live-price-range b,
  .quote-price-dock .live-price-result b { grid-column: 1 / -1; }
  .quote-price-dock .live-price-change { display: none; }
  .quote-engineering { border-radius: 11px; }
  .engineering-step-count { display: none; }
  .review-card:last-child dl { grid-template: none; grid-auto-flow: row; gap: 7px; }
  .review-item { grid-template-columns: 1fr; gap: 2px; }
  .review-card dd { margin-bottom: 8px; }
  .wizard-controls { position: sticky; bottom: 0; z-index: 4; margin-inline: -16px; padding: 14px 16px; background: rgba(255,255,255,.96); box-shadow: 0 -8px 20px rgba(21,56,50,.08); }
  .result-landing { padding-inline: 12px; }
  .result-landing .result-card { padding: 23px 20px; }
  .result-landing .result-card h1 { font-size: 34px; }
  .result-landing .price-card ul { grid-template-columns: 1fr; }
  .result-landing .consumer-price-summary { display: block; }
  .result-landing .term-price { margin-top: 8px; }
  .result-landing .action-card:has(form) { display: block; }
  .result-landing .action-card:has(form) form { margin-top: 12px; }
  .vin-input-row { grid-template-columns: 1fr; }
  .vin-input-row button { min-height: 42px; }
  .vehicle-entry-choice { grid-template-columns: 1fr; }
  .uninsured-operation-choice > div { grid-template-columns: 1fr; }
  .vehicle-section-heading { display: block; }
  .vehicle-section-heading > p { margin-top: 7px; text-align: left; }
  .vehicle-vin-card, .vehicle-manual-card { padding: 14px; }
  footer { padding-bottom: 82px; }
}
