:root {
  color-scheme: dark;
  --bg: #140307;
  --panel: rgba(20, 3, 7, 0.68);
  --panel-strong: rgba(70, 8, 24, 0.78);
  --text: #fff2f4;
  --muted: rgba(255, 235, 238, 0.78);
  --line: rgba(255, 225, 230, 0.24);
  --accent: #b8153b;
  --accent-2: #ffd1da;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 3vw, 34px);
  background-image:
    linear-gradient(90deg, var(--overlay-left), var(--overlay-mid), var(--overlay-right)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 19% 24%, var(--glow), transparent 32%),
    linear-gradient(0deg, rgba(8, 2, 4, 0.46), transparent 46%);
  pointer-events: none;
}

.topbar,
.content,
.bottom-line {
  width: min(1180px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
}

.brand img {
  width: clamp(118px, 13vw, 166px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  background: rgba(8, 2, 4, 0.34);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
}

.content {
  align-self: center;
  padding: clamp(48px, 8vh, 86px) 0 clamp(32px, 7vh, 68px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.15rem, 5.6vw, 5.25rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro {
  width: min(650px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.choice-grid {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 6vh, 52px);
}

.choice {
  min-height: 128px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(17px);
  position: relative;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.choice:hover,
.choice:focus-visible {
  outline: none;
  transform: translateY(-3px);
  background: var(--panel-strong);
  border-color: rgba(255, 240, 242, 0.48);
}

.choice--primary {
  background: linear-gradient(145deg, var(--primary-card), var(--panel));
}

.choice--certified {
  padding-left: clamp(18px, 2.5vw, 26px);
}

.certified-badge {
  position: absolute;
  left: -24px;
  top: -24px;
  width: clamp(50px, 5vw, 64px);
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 240, 242, 0.1);
  border: 1px solid rgba(255, 240, 242, 0.2);
}

.icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice strong {
  display: block;
  font-size: clamp(1.03rem, 2vw, 1.24rem);
  line-height: 1.25;
}

.choice small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.bottom-line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 240, 242, 0.24), transparent);
}

.white-suv {
  --bg: #21050b;
  --accent: #be183f;
  --accent-2: #ffe0b8;
  --hero-image: url("assets/hero-white-suv.png");
  --overlay-left: rgba(30, 4, 10, 0.84);
  --overlay-mid: rgba(55, 9, 17, 0.48);
  --overlay-right: rgba(25, 5, 8, 0.08);
  --glow: rgba(198, 42, 64, 0.22);
  --primary-card: rgba(113, 13, 36, 0.8);
}

.silver-sedan {
  --bg: #061119;
  --accent: #8f1730;
  --accent-2: #d6ecff;
  --hero-image: url("assets/hero-silver-sedan.png");
  --overlay-left: rgba(5, 14, 22, 0.86);
  --overlay-mid: rgba(22, 31, 42, 0.5);
  --overlay-right: rgba(6, 15, 23, 0.1);
  --glow: rgba(62, 117, 148, 0.28);
  --panel: rgba(5, 14, 22, 0.7);
  --panel-strong: rgba(21, 37, 50, 0.82);
  --primary-card: rgba(87, 18, 34, 0.78);
}

.red-coupe {
  --bg: #190206;
  --accent: #d41b41;
  --accent-2: #ffc8d2;
  --hero-image: url("assets/hero-red-coupe.png");
  --overlay-left: rgba(25, 2, 6, 0.84);
  --overlay-mid: rgba(72, 7, 20, 0.46);
  --overlay-right: rgba(24, 2, 6, 0.08);
  --glow: rgba(214, 27, 65, 0.28);
  --primary-card: rgba(125, 9, 31, 0.82);
}

.porter {
  --bg: #200408;
  --accent: #bd173d;
  --accent-2: #ffe1b9;
  --hero-image: url("assets/hero-porter.png");
  --overlay-left: rgba(29, 3, 8, 0.84);
  --overlay-mid: rgba(63, 9, 18, 0.44);
  --overlay-right: rgba(20, 3, 6, 0.08);
  --glow: rgba(203, 54, 54, 0.24);
  --primary-card: rgba(111, 12, 35, 0.82);
}

.grand-starex {
  --bg: #1b0308;
  --accent: #b9183c;
  --accent-2: #ffd6df;
  --hero-image: url("assets/hero-grand-starex.png");
  --overlay-left: rgba(24, 3, 8, 0.84);
  --overlay-mid: rgba(70, 10, 24, 0.42);
  --overlay-right: rgba(20, 3, 6, 0.08);
  --glow: rgba(185, 24, 60, 0.24);
  --primary-card: rgba(105, 10, 34, 0.82);
}

.color-wine {
  --variant-bg: url("assets/hero-porter-starex-wine.png");
  --accent: #bd173d;
  --accent-2: #ffd6df;
  --primary-card: rgba(113, 12, 35, 0.82);
  --panel-strong: rgba(77, 9, 25, 0.82);
}

.color-navy {
  --variant-bg: url("assets/hero-porter-starex-navy.png");
  --accent: #2f8ccf;
  --accent-2: #d6ecff;
  --primary-card: rgba(21, 50, 75, 0.82);
  --panel-strong: rgba(10, 25, 40, 0.82);
}

.color-bronze {
  --variant-bg: url("assets/hero-porter-starex-bronze.png");
  --accent: #d58a2c;
  --accent-2: #ffe0b8;
  --primary-card: rgba(105, 57, 18, 0.82);
  --panel-strong: rgba(57, 31, 14, 0.84);
}

.color-emerald {
  --variant-bg: url("assets/hero-porter-starex-emerald.png");
  --accent: #2ca77a;
  --accent-2: #c9ffe9;
  --primary-card: rgba(16, 82, 59, 0.82);
  --panel-strong: rgba(9, 43, 34, 0.84);
}

.color-natural {
  --variant-bg: url("assets/hero-porter-starex-natural.png?v=20260611-no-car-emblems");
  --accent: #8f1230;
  --accent-2: #fff0f2;
  --primary-card: rgba(97, 11, 32, 0.8);
  --panel-strong: rgba(42, 16, 18, 0.82);
}

.color-natural .choice-grid .choice:first-child {
  background: linear-gradient(145deg, rgba(97, 11, 32, 0.86), rgba(42, 7, 16, 0.82));
  border-color: rgba(255, 210, 220, 0.32);
}

.color-natural .choice-grid .choice:first-child .icon {
  background: rgba(255, 240, 242, 0.12);
  border-color: rgba(255, 240, 242, 0.24);
}

.color-natural .choice-grid .choice.choice--primary {
  background: linear-gradient(145deg, rgba(97, 11, 32, 0.86), rgba(42, 7, 16, 0.82));
  border-color: rgba(255, 210, 220, 0.32);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.28);
}

.color-natural .choice-grid .choice.choice--primary .icon {
  background: rgba(255, 240, 242, 0.12);
  border-color: rgba(255, 240, 242, 0.24);
}

.color-variant {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(20, 3, 7, 0.91) 0%, rgba(20, 3, 7, 0.58) 42%, rgba(20, 3, 7, 0.12) 100%),
    var(--variant-bg);
  background-size: cover;
  background-position: 58% center;
}

.color-variant::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, color-mix(in srgb, var(--accent), transparent 72%), transparent 32%),
    linear-gradient(0deg, rgba(20, 3, 7, 0.5), transparent 45%);
  pointer-events: none;
}

.brand-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.brand-combo-logo {
  display: block;
  width: clamp(210px, 18vw, 292px);
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.color-variant .topbar,
.color-variant .combined-layout,
.color-variant .bottom-line {
  width: min(1540px, calc(100% - clamp(32px, 6vw, 96px)));
}

.flow-page {
  min-height: 100vh;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(20, 3, 7, 0.92) 0%, rgba(20, 3, 7, 0.72) 48%, rgba(20, 3, 7, 0.26) 100%),
    var(--variant-bg);
  background-size: cover;
  background-position: 58% center;
  background-attachment: fixed;
}

.flow-hero,
.flow-section,
.info-band {
  width: min(1180px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.flow-hero {
  padding: clamp(52px, 8vh, 86px) 0 28px;
}

.flow-copy {
  width: min(780px, 100%);
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.62);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.action-button--primary {
  background: linear-gradient(145deg, var(--primary-card), rgba(20, 3, 7, 0.72));
  border-color: rgba(255, 240, 242, 0.32);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.step-card {
  min-height: 230px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.24);
}

.step-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent-2);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-card h2,
.info-band h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.step-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 18px;
  margin-bottom: 28px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.72);
  backdrop-filter: blur(16px);
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.form-page {
  min-height: 100vh;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(20, 3, 7, 0.94) 0%, rgba(20, 3, 7, 0.78) 52%, rgba(20, 3, 7, 0.38) 100%),
    var(--variant-bg);
  background-size: cover;
  background-position: 58% center;
}

.form-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 78px) 0 34px;
}

.form-copy {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.request-form {
  width: min(920px, 100%);
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field span,
.fieldset legend {
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.field select option {
  color: #16070a;
}

.field input::placeholder {
  color: rgba(255, 235, 238, 0.52);
}

.fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  gap: 8px;
}

.fieldset legend {
  display: block;
  margin-bottom: 8px;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.radio-row label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.radio-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.service-options {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: grid;
  gap: 10px;
}

.checkbox-row label {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.checkbox-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.checkbox-row span {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0;
}

.checkbox-row a {
  justify-self: end;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  pointer-events: auto;
}

.money-field {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.money-field span {
  min-width: 44px;
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--accent-2);
  font-weight: 900;
}

.money-field input {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-step,
.success-panel {
  margin-top: 18px;
}

.form-copy--compact {
  margin-bottom: 18px;
}

.form-copy--compact h2,
.success-panel h2,
.admin-results h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.form-copy--compact p,
.success-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.success-panel {
  width: min(720px, 100%);
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.72);
  backdrop-filter: blur(18px);
}

.admin-page {
  min-height: 100vh;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(20, 3, 7, 0.94) 0%, rgba(20, 3, 7, 0.82) 56%, rgba(20, 3, 7, 0.48) 100%),
    var(--variant-bg);
  background-size: cover;
  background-position: 58% center;
}

.admin-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 78px) 0 34px;
}

.admin-login {
  width: min(520px, 100%);
}

.admin-results {
  margin-top: 24px;
}

.admin-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.request-list {
  display: grid;
  gap: 14px;
}

.admin-card {
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.72);
  backdrop-filter: blur(18px);
}

.admin-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.admin-card dt {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-card dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.empty-state {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 3, 7, 0.72);
  color: var(--muted);
}

.gallery {
  min-height: 100vh;
  padding: clamp(22px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(97, 11, 32, 0.36), transparent 42%),
    #130306;
}

.gallery__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.gallery h1 {
  max-width: 780px;
  margin-top: 38px;
}

.gallery p {
  color: var(--muted);
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.preview-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #1a070b;
  display: grid;
  grid-template-rows: 210px 1fr;
}

.preview-card__image {
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
}

.preview-card__body {
  padding: 18px;
}

.preview-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.combined-page {
  --bg: #1d0308;
  --accent: #bd173d;
  --accent-2: #ffe0d0;
  --panel: rgba(20, 3, 7, 0.7);
  --panel-strong: rgba(77, 9, 25, 0.82);
  --primary-card: rgba(113, 12, 35, 0.82);
  background:
    radial-gradient(circle at 72% 30%, rgba(188, 28, 59, 0.22), transparent 32%),
    linear-gradient(135deg, #300713 0%, #140307 48%, #070205 100%);
}

.combined-hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(20, 3, 7, 0.92) 0%, rgba(45, 6, 15, 0.62) 42%, rgba(20, 3, 7, 0.12) 100%),
    url("assets/hero-porter-grand-starex.png");
  background-size: cover;
  background-position: 58% center;
}

.combined-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(188, 28, 59, 0.26), transparent 32%),
    linear-gradient(0deg, rgba(20, 3, 7, 0.52), transparent 45%);
  pointer-events: none;
}

.combined-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  align-self: center;
  position: relative;
  z-index: 1;
  display: block;
  padding: clamp(42px, 7vh, 78px) 0 clamp(32px, 6vh, 62px);
}

.combined-copy {
  width: min(720px, 100%);
  min-width: 0;
}

.combined-visuals {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.vehicle-panel {
  min-height: 255px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(20, 3, 7, 0.35), rgba(20, 3, 7, 0.02)),
    var(--vehicle-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.vehicle-panel--porter {
  --vehicle-image: url("assets/hero-porter.png");
}

.vehicle-panel--starex {
  --vehicle-image: url("assets/hero-grand-starex.png");
}

.vehicle-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 232, 236, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 3, 7, 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 800;
}

.preview-card--wide {
  grid-column: 1 / -1;
  grid-template-rows: 280px 1fr;
}

.preview-card--wide .preview-card__image {
  background-image:
    linear-gradient(90deg, rgba(20, 3, 7, 0.12), rgba(20, 3, 7, 0.12)),
    var(--thumb);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 860px) {
  .choice-grid,
  .gallery-grid,
  .step-list,
  .info-band,
  .form-grid,
  .radio-row,
  .admin-card dl {
    grid-template-columns: 1fr;
  }

  .admin-results__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 16px;
    background-image:
      linear-gradient(180deg, var(--overlay-left), var(--overlay-mid), rgba(10, 2, 5, 0.62)),
      var(--hero-image);
    background-position: 62% center;
  }

  .brand img {
    width: clamp(104px, 32vw, 138px);
  }

  .pill {
    max-width: 150px;
    text-align: right;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(2.05rem, 11.5vw, 3.55rem);
    line-height: 1.14;
  }

  .choice {
    min-height: 118px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .icon {
    width: 48px;
    height: 48px;
  }

  .combined-hero {
    padding: 16px;
  }

  .brand-badges {
    width: min(48vw, 230px);
    margin-left: auto;
  }

  .brand-combo-logo {
    width: 100%;
  }

  .combined-layout {
    padding-top: 42px;
  }

  .vehicle-panel {
    min-height: 190px;
  }

  .preview-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .pill {
    display: none;
  }
}
