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

:root {
  --ink: #071a33;
  --ink-soft: #455267;
  --blue: #1f62e6;
  --blue-deep: #0e49c8;
  --sky: #edf7ff;
  --sky-strong: #dceeff;
  --yellow: #ffd629;
  --yellow-bright: #ffe76a;
  --white: #ffffff;
  --line: rgba(7, 26, 51, 0.14);
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  border: 0;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #ff9d00;
  outline-offset: 3px;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  padding-top: env(safe-area-inset-top);
  background: rgba(237, 247, 255, 0.86);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 850;
  font-size: 21px;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--blue);
  transform: rotate(-7deg);
  box-shadow: 0 7px 18px rgba(31, 98, 230, 0.25);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--yellow);
  border-radius: 2px;
}

.brand-mark::before {
  width: 5px;
  height: 14px;
  left: 10px;
  top: 11px;
  transform: rotate(-38deg);
}

.brand-mark::after {
  width: 5px;
  height: 20px;
  right: 10px;
  top: 7px;
  transform: rotate(38deg);
}

.brand-mark span {
  width: 18px;
  height: 5px;
  left: 8px;
  top: 17px;
  transform: rotate(-1deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  margin-inline-start: auto;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.language-control select {
  max-width: 135px;
  min-height: 44px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  min-height: min(820px, 100dvh);
  display: flex;
  align-items: center;
  padding: 72px 0 94px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 58%),
    var(--sky);
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -130px;
  top: -110px;
  background: radial-gradient(circle, rgba(255, 214, 41, 0.35), transparent 68%);
}

.hero-glow-two {
  width: 480px;
  height: 480px;
  left: -240px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(31, 98, 230, 0.22), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  grid-template-areas:
    "copy card"
    "proof card";
  column-gap: clamp(48px, 6vw, 84px);
  row-gap: 26px;
  align-items: center;
}

.hero-copy,
.valuation-card,
.why-intro,
.benefit-grid {
  min-width: 0;
}

.hero-copy {
  grid-area: copy;
}

.valuation-card {
  grid-area: card;
  scroll-margin-top: 96px;
}

.hero-proof-block {
  grid-area: proof;
  align-self: start;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6.1vw, 86px);
  line-height: 0.98;
  font-weight: 860;
}

h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 2%;
  bottom: -5px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-1.4deg);
}

.hero-body {
  max-width: 600px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
}

.proof-line {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 560px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.proof-seal {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(255, 185, 0, 0.2);
  font-size: 16px;
  font-weight: 900;
}

.valuation-card {
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.journey-progress {
  margin-bottom: 24px;
}

.journey-progress > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.journey-progress span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-progress strong {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ecf2;
}

.progress-track > span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #4d86f3);
  transition: width 220ms ease;
}

.journey-progress.step-2 .progress-track > span {
  width: 66.666%;
}

.journey-progress.step-3 .progress-track > span {
  width: 100%;
}

.journey-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 11px 0 0;
}

.journey-promise span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #35506e;
  background: #eef3f8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.resume-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(31, 98, 230, 0.18);
  border-radius: 15px;
  background: #eef5ff;
}

.resume-banner > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.resume-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.resume-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.resume-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.resume-actions button {
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 850;
}

.resume-actions button:first-child {
  color: var(--white);
  background: var(--blue);
}

.resume-actions button:last-child {
  border: 1px solid #cbd6e2;
  color: var(--ink);
  background: var(--white);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.mini-badge {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.card-top h2 {
  margin-bottom: 4px;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.1;
}

.card-top p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.intent-selector {
  padding: 0;
  margin: 0 0 22px;
  border: 0;
}

.intent-selector legend {
  padding: 0;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 800;
}

.intent-selector > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.intent-selector button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #cbd3dc;
  border-radius: 13px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.intent-selector button span {
  color: var(--blue);
  font-size: 16px;
}

.intent-selector button[aria-pressed="true"] {
  border-color: var(--blue);
  color: var(--ink);
  background: #edf4ff;
  box-shadow: 0 0 0 3px rgba(31, 98, 230, 0.09);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: #edf1f5;
}

.tabs button {
  min-height: 46px;
  padding: 8px 9px;
  border-radius: 11px;
  color: #5d6675;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(7, 26, 51, 0.09);
}

.selected-vehicle-preview {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  overflow: hidden;
  margin: -8px 0 18px;
  border: 1px solid #dce4ec;
  border-radius: 14px;
  background: #f7f9fb;
}

.selected-vehicle-image {
  width: 88px;
  aspect-ratio: 1;
  background-image: url("./assets/vehicle-types-v1.webp");
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

.selected-vehicle-preview > span:last-child {
  min-width: 0;
  padding-inline-end: 12px;
}

.selected-vehicle-preview strong,
.selected-vehicle-preview small {
  display: block;
}

.selected-vehicle-preview strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.selected-vehicle-preview small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

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

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid #cbd3dc;
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 98, 230, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #c72d31;
}

.field-error,
.form-error {
  min-height: 17px;
  margin: 5px 0 0;
  color: #a51f27;
  font-size: 12px;
  font-weight: 700;
}

.form-error {
  margin: 8px 0 0;
}

.primary-button,
.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
}

.primary-button {
  width: 100%;
  margin-top: 8px;
  padding: 13px 20px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
  box-shadow:
    0 12px 24px rgba(255, 185, 0, 0.25),
    inset 0 -1px rgba(166, 119, 0, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(255, 185, 0, 0.32),
    inset 0 -1px rgba(166, 119, 0, 0.18);
}

.primary-button span:last-child {
  font-size: 20px;
}

.form-note {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin: 13px 0 0;
  color: #6b7482;
  font-size: 11px;
  text-align: center;
}

.form-note span {
  color: var(--blue);
  font-size: 8px;
  transform: translateY(4px);
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 18px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(31, 98, 230, 0.25);
  font-size: 27px;
  font-weight: 900;
}

.secondary-button {
  width: 100%;
  padding: 11px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 10px;
  margin-top: 8px;
}

.form-actions .primary-button {
  margin-top: 0;
}

.review-panel {
  outline: 0;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.review-summary > div {
  min-width: 0;
  padding: 13px;
  border: 1px solid #dce3ea;
  border-radius: 13px;
  background: #f7f9fb;
}

.review-summary span,
.review-summary strong {
  display: block;
}

.review-summary span {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-summary strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.valuation-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 12px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #4f5967;
  background: #eef3f8;
  font-size: 11px;
  line-height: 1.5;
}

.valuation-notice span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.next-step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px 14px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(31, 98, 230, 0.16);
  border-radius: 17px;
  background: #f3f7ff;
}

.next-step-card .success-icon {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 13px;
  font-size: 20px;
}

.next-step-card h3 {
  margin: 1px 0 5px;
  font-size: 18px;
}

.next-step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.next-step-card ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  padding: 12px 0 0;
  margin: 0;
  border-top: 1px solid rgba(31, 98, 230, 0.14);
  list-style: none;
}

.next-step-card li {
  position: relative;
  padding-inline-start: 18px;
  color: #435065;
  font-size: 11px;
  font-weight: 700;
}

.next-step-card li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--blue);
  font-weight: 900;
}

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

.result-actions .primary-button {
  grid-column: 1 / -1;
  margin-top: 0;
}

.result-actions .secondary-button {
  min-height: 48px;
  font-size: 12px;
}

.text-button {
  grid-column: 1 / -1;
  min-height: 44px;
  padding: 8px;
  color: var(--blue);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.saved-notice {
  padding: 10px 12px;
  margin: 10px 0 0;
  border-radius: 11px;
  color: #145035;
  background: #e4f8ec;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.options-section,
.vehicles-section,
.how-section,
.faq-section {
  padding: 112px 0;
  background: var(--white);
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}

.split-heading > p {
  max-width: 500px;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.option-card {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.option-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(31, 98, 230, 0.8), transparent 35%),
    var(--ink);
}

.option-card-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 214, 41, 0.8), transparent 34%),
    var(--sky-strong);
}

.option-number {
  position: absolute;
  top: 30px;
  left: 32px;
  color: currentColor;
  opacity: 0.58;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

[dir="rtl"] .option-number {
  left: auto;
  right: 32px;
}

.option-card h3 {
  max-width: 440px;
  margin-bottom: 10px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.02;
}

.option-card p {
  max-width: 440px;
  margin-bottom: 24px;
  opacity: 0.78;
}

.option-card a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
}

.car-lines {
  position: absolute;
  width: 230px;
  height: 105px;
  right: 30px;
  top: 70px;
  opacity: 0.78;
  transform: rotate(-3deg);
}

.car-lines::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 8px;
  bottom: 24px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-top-left-radius: 60px;
  border-top-right-radius: 75px;
  border-bottom: 0;
}

.car-lines::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 45px;
  right: 48px;
  top: 8px;
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  border-radius: 0 60px 0 0;
  transform: skewX(21deg);
}

.car-lines b {
  position: absolute;
  bottom: 7px;
  width: 40px;
  height: 40px;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.car-lines b:first-of-type {
  left: 42px;
}

.car-lines b:last-child {
  right: 26px;
}

.trade-symbol {
  position: absolute;
  top: 60px;
  right: 42px;
  color: rgba(7, 26, 51, 0.65);
  font-size: 100px;
  line-height: 1;
  font-weight: 300;
}

[dir="rtl"] .car-lines,
[dir="rtl"] .trade-symbol {
  right: auto;
  left: 32px;
  transform: scaleX(-1);
}

.path-comparison {
  max-width: 980px;
  margin-inline: auto;
}

.compare-toggle {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: #edf1f5;
}

.compare-toggle button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
}

.compare-toggle button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(7, 26, 51, 0.09);
}

.compare-toggle button span {
  color: var(--blue);
  font-size: 17px;
}

.comparison-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 20px 34px;
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 98, 230, 0.76), transparent 38%),
    var(--ink);
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.18);
}

.comparison-card.is-trade {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 214, 41, 0.72), transparent 38%),
    var(--sky-strong);
}

.comparison-copy {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.comparison-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

.comparison-copy h3 {
  margin: 2px 0 9px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.comparison-copy p {
  max-width: 520px;
  margin: 0;
  opacity: 0.72;
}

.comparison-checklist {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.is-trade .comparison-checklist {
  border-color: rgba(7, 26, 51, 0.1);
  background: rgba(255, 255, 255, 0.52);
}

.comparison-checklist > strong {
  display: block;
  margin-bottom: 11px;
  font-size: 12px;
}

.comparison-checklist ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-checklist li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 12px;
  font-weight: 700;
}

.comparison-checklist li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--yellow);
  font-weight: 900;
}

.is-trade .comparison-checklist li::before {
  color: var(--blue);
}

.comparison-card > .primary-button {
  width: min(100%, 360px);
  grid-column: 1 / -1;
  margin-top: 0;
}

.vehicles-section {
  background: #f5f8fb;
}

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

.vehicle-type-card {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d5dde6;
  border-radius: 22px;
  color: var(--ink);
  background: var(--white);
  text-align: start;
  box-shadow: 0 10px 28px rgba(7, 26, 51, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.vehicle-type-card:hover {
  border-color: rgba(31, 98, 230, 0.42);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.11);
  transform: translateY(-5px);
}

.vehicle-type-card:focus-visible {
  outline: 3px solid rgba(31, 98, 230, 0.24);
  outline-offset: 3px;
}

.vehicle-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-image: url("./assets/vehicle-types-v1.webp");
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

.vehicle-photo-suv {
  background-position: 0 0;
}

.vehicle-photo-pickup {
  background-position: 100% 0;
}

.vehicle-photo-sedan {
  background-position: 0 100%;
}

.vehicle-photo-coupe {
  background-position: 100% 100%;
}

.vehicle-card-copy {
  display: block;
  padding: 18px 19px 20px;
  border-top: 1px solid #e3e8ee;
}

.vehicle-card-copy strong {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.vehicle-card-copy > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.vehicle-card-copy i {
  font-size: 17px;
  font-style: normal;
}

.how-section {
  background: var(--sky);
}

.centered {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2 {
  margin-inline: auto;
}

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

.step-card {
  min-height: 295px;
  padding: 30px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.step-featured {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 22px 55px rgba(31, 98, 230, 0.24);
  transform: translateY(-14px);
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid rgba(7, 26, 51, 0.14);
  border-radius: 18px;
  background: var(--white);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.step-featured .step-icon {
  color: var(--ink);
  background: var(--yellow);
  border-color: transparent;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.1;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.step-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.why-section {
  padding: 112px 0;
  color: var(--white);
  background: var(--ink);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.eyebrow-light {
  color: var(--yellow);
}

.why-intro h2 {
  max-width: 520px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
}

.trust-orbit {
  position: relative;
  width: 260px;
  height: 180px;
  margin-top: 36px;
}

.trust-orbit span {
  position: absolute;
  inset: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.trust-orbit .orbit-two {
  inset: 0 30px;
  border-color: rgba(255, 214, 41, 0.38);
  transform: rotate(45deg);
}

.trust-orbit b {
  position: absolute;
  left: 92px;
  top: 50px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-6deg);
}

.trust-orbit i {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid article {
  min-height: 220px;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

[dir="rtl"] .benefit-grid article {
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.benefit-grid article > span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 54px 0 9px;
  font-size: 22px;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.factors-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 214, 41, 0.3), transparent 27%),
    var(--sky-strong);
}

.factors-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.factors-intro h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
}

.factors-intro > p:last-child {
  max-width: 540px;
  color: var(--ink-soft);
}

.factor-list {
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.factor-list details + details {
  border-top: 1px solid rgba(7, 26, 51, 0.09);
}

.factor-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.factor-list summary::-webkit-details-marker {
  display: none;
}

.factor-list summary span {
  display: flex;
  align-items: center;
  gap: 15px;
}

.factor-list summary i {
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.factor-list summary b {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 18px;
  transition: transform 160ms ease;
}

.factor-list details[open] summary b {
  transform: rotate(45deg);
}

.factor-list details p {
  padding: 0 70px 22px 59px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

[dir="rtl"] .factor-list details p {
  padding: 0 59px 22px 70px;
}

.sticky-action {
  display: none;
}

.faq-section {
  padding-top: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 20px;
  font-style: normal;
  transition: transform 160ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 48px 24px 0;
  margin: 0;
  color: var(--ink-soft);
}

[dir="rtl"] .faq-list details p {
  padding: 0 0 24px 48px;
}

.legal-section {
  padding: 24px 0 112px;
  background: var(--white);
}

.legal-shell {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: var(--radius-xl);
  background: #f5f8fb;
}

.legal-shell > .section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.legal-shell > .section-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
}

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

.legal-grid article {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 20px;
  background: var(--white);
  scroll-margin-top: 24px;
}

.legal-grid article > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.legal-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.legal-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-section {
  padding: 30px 0 96px;
  background: var(--white);
}

.final-card {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: 48px;
  align-items: center;
  padding: clamp(38px, 7vw, 80px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(31, 98, 230, 0.9), transparent 33%),
    var(--ink);
}

.final-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.final-card > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-card .primary-button {
  margin: 0;
}

.site-footer {
  padding: 80px 0 max(28px, env(safe-area-inset-bottom));
  color: var(--white);
  background: #041225;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-light {
  color: var(--white);
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-language {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.footer-language select {
  color: var(--white);
}

.footer-language option {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 13px;
    border-radius: 11px;
  }

  .mobile-nav a:hover {
    background: var(--sky);
  }

  .mobile-more {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .mobile-more summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    border-radius: 11px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
    list-style: none;
    cursor: pointer;
  }

  .mobile-more summary::-webkit-details-marker {
    display: none;
  }

  .mobile-more summary span {
    color: var(--blue);
    font-size: 20px;
    transition: transform 180ms ease;
  }

  .mobile-more[open] summary span {
    transform: rotate(45deg);
  }

  .mobile-more > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding-top: 4px;
  }

  .mobile-more > div a {
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "card"
      "proof";
  }

  .hero-copy {
    max-width: 760px;
  }

  .valuation-card {
    max-width: 720px;
  }

  .vehicle-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .faq-grid,
  .factors-grid {
    grid-template-columns: 1fr;
  }

  .trust-orbit {
    display: none;
  }

  .final-card {
    grid-template-columns: 1fr;
  }

  .final-card .primary-button {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .language-control {
    padding-inline: 9px 5px;
  }

  .language-control select {
    max-width: 92px;
  }

  .hero {
    padding: 38px 0 64px;
  }

  .hero-grid {
    gap: 30px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-body {
    margin-bottom: 20px;
  }

  .valuation-card {
    padding: 22px;
    border-radius: 25px;
  }

  .tabs {
    gap: 3px;
  }

  .tabs button {
    font-size: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .options-section,
  .vehicles-section,
  .how-section,
  .why-section,
  .factors-section,
  .faq-section {
    padding: 68px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .option-grid,
  .steps-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .comparison-card > .primary-button {
    grid-column: auto;
    width: 100%;
  }

  .comparison-checklist {
    padding: 15px;
  }

  .vehicle-type-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .vehicle-type-grid::-webkit-scrollbar {
    display: none;
  }

  .vehicle-type-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .option-card {
    min-height: 360px;
  }

  .step-featured {
    transform: none;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .benefit-grid h3 {
    margin-top: 28px;
  }

  .review-summary {
    grid-template-columns: 1fr;
  }

  .factors-grid {
    gap: 38px;
  }

  .factor-list summary {
    min-height: 72px;
    padding: 15px 17px;
    font-size: 16px;
  }

  .factor-list details p,
  [dir="rtl"] .factor-list details p {
    padding: 0 17px 20px 49px;
  }

  [dir="rtl"] .factor-list details p {
    padding: 0 49px 20px 17px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .sticky-action {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(7, 26, 51, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -12px 30px rgba(7, 26, 51, 0.1);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .sticky-action .primary-button {
    max-width: 520px;
    min-height: 54px;
    margin: 0 auto;
  }

  .faq-section {
    padding-top: 30px;
  }

  .legal-section {
    padding: 20px 0 80px;
  }

  .legal-shell {
    padding: 24px;
  }

  .final-section {
    padding-bottom: 70px;
  }

  .final-card {
    min-height: 390px;
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand > span:last-child {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .hero-body {
    font-size: 17px;
  }

  .proof-line {
    align-items: flex-start;
  }

  .valuation-card {
    padding: 18px;
  }

  .card-top {
    gap: 11px;
  }

  .mini-badge {
    width: 38px;
    height: 38px;
  }

  .tabs button {
    padding-inline: 5px;
  }

  .intent-selector > div {
    grid-template-columns: 1fr;
  }

  .next-step-card ul {
    grid-template-columns: 1fr;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }

  .result-actions .primary-button,
  .result-actions .text-button {
    grid-column: auto;
  }

  .resume-actions {
    grid-template-columns: 1fr;
  }

  .selected-vehicle-image {
    width: 78px;
    height: 78px;
  }

  .car-lines {
    right: 2px;
    opacity: 0.5;
    transform: scale(0.82);
  }

  .trade-symbol {
    right: 20px;
    opacity: 0.46;
  }

  .section-heading h2,
  .why-intro h2,
  .final-card h2 {
    font-size: 39px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 42px 0 60px;
  }

  .mobile-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-copy,
  .hero-proof-block,
  .options-section,
  .vehicles-section,
  .how-section,
  .why-section,
  .factors-section,
  .faq-section,
  .legal-section,
  .final-section,
  .site-footer,
  .sticky-action,
  .result-actions {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 0;
    background: #fff;
  }

  .hero-grid {
    display: block;
  }

  .valuation-card {
    max-width: none;
    border: 0;
    box-shadow: none;
  }
}
