/* ============================================================
   АбсолютАвто импорт — «Абсолютный маршрут»
   Static layout styles. Token system from design/design.md.
   ============================================================ */

:root {
  /* Palette */
  --route-black: #101815;
  --import-green: #0B6B45;
  --lime: #D7F05A;
  --lime-dark: #C4DE43;
  --paper: #F6F7F3;
  --white: #FFFFFF;
  --ink: #18251F;
  --muted: #4A5B54;
  --line: #CBD5CF;
  --soft: #E7ECE8;
  --critical: #B84A32;

  /* Type */
  --font: Arial, "Helvetica Neue", "Segoe UI", system-ui, sans-serif;

  /* Radius scale: 12 / 14 / 16 / 18 / 20 / 22 */
  --r-12: 12px;
  --r-14: 14px;
  --r-16: 16px;
  --r-18: 18px;
  --r-20: 20px;
  --r-22: 22px;

  /* Safe fields: desktop 72 / tablet 36 / mobile 20 */
  --safe: 72px;

  /* Layout */
  --content-max: 1296px;
  --nav-height: 92px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 1023px) {
  :root { --safe: 36px; --nav-height: 76px; }
}

@media (max-width: 639px) {
  :root { --safe: 20px; }
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

[hidden] {
  display: none !important;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--import-green);
  margin-bottom: 18px;
}

.section-eyebrow--dark {
  color: var(--lime);
}

.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ink);
  max-width: 22ch;
}

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

/* ---------- Buttons / component states ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: var(--r-14);
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.18s var(--ease),
    color 0.18s var(--ease),
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    transform 0.12s var(--ease);
}

.btn:focus-visible {
  outline: none;
}

.btn:disabled {
  cursor: not-allowed;
}

/* Primary CTA: lime */
.btn--primary {
  background: var(--lime);
  color: var(--route-black);
  border-color: var(--lime);
}

.btn--primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}

.btn--primary:active {
  box-shadow: inset 0 1px 3px rgba(16, 24, 21, 0.35);
  transform: translateY(1px);
}

.btn--primary:focus-visible {
  box-shadow:
    0 0 0 3px var(--white),
    0 0 0 6px var(--import-green);
}

.btn--primary:disabled {
  background: var(--soft);
  border-color: var(--soft);
  color: var(--muted);
  opacity: 0.7;
}

/* Secondary CTA: transparent, white border (used on dark surfaces) */
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.btn--secondary:active {
  box-shadow: inset 0 1px 3px rgba(16, 24, 21, 0.35);
  transform: translateY(1px);
}

.btn--secondary:focus-visible {
  box-shadow:
    0 0 0 3px var(--route-black),
    0 0 0 6px var(--lime);
}

.btn--secondary:disabled {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--safe);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand img {
  width: 209px;
  height: 42px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-12);
  padding: 0 4px;
}

.nav__link:hover {
  color: var(--import-green);
}

.nav__link:focus-visible {
  outline: 2px solid var(--import-green);
  outline-offset: 2px;
}

.nav__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.35;
}

.nav__phone-number {
  font-size: 17px;
  font-weight: 700;
  color: var(--import-green);
}

.nav__phone-hours {
  font-size: 12px;
  color: var(--muted);
}

.nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-12);
  cursor: pointer;
  padding: 0;
}

.nav__burger-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.18s var(--ease), opacity 0.18s var(--ease);
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero: dark route grid ---------- */

.hero {
  position: relative;
  background: var(--route-black);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 18% 30%, rgba(11, 107, 69, 0.28), transparent 55%),
    linear-gradient(115deg, rgba(16, 24, 21, 0.2) 0%, rgba(16, 24, 21, 0.85) 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 96px var(--safe) 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  grid-template-areas:
    "text dossier"
    "car car";
  gap: 40px 56px;
  align-items: start;
}

.hero__text {
  grid-area: text;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--white);
  max-width: 14ch;
}

.hero__lead {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(246, 247, 243, 0.78);
  max-width: 40ch;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__car {
  grid-area: car;
  margin: 0;
  position: relative;
}

.hero__car::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22%;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease) 0.15s;
}

body.route-revealed .hero__car::before {
  transform: scaleX(1);
}

.hero__car img {
  width: min(850px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--r-18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Order dossier card on hero */

.dossier {
  grid-area: dossier;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-22);
  padding: 30px 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.dossier__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--import-green);
  margin-bottom: 14px;
}

.dossier__model {
  font-size: 30px;
  margin-bottom: 18px;
}

.dossier__rows {
  margin: 0;
  display: grid;
  gap: 4px;
}

.dossier__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--soft);
}

.dossier__label {
  font-size: 14px;
  color: var(--muted);
}

.dossier__value {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.dossier__status {
  margin-top: 18px;
  background: var(--soft);
  border-radius: var(--r-12);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--import-green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dossier__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(215, 240, 90, 0.35);
  flex: none;
}

.dossier--mobile {
  display: none;
}

/* ---------- Three-field selection brief ---------- */

.brief {
  background: var(--paper);
}

.brief__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 96px var(--safe);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 64px;
  align-items: start;
}

.brief__note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 34ch;
}

.brief__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-18);
  padding: 34px 32px;
}

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

.brief__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.brief__consent {
  font-size: 12px;
  color: var(--muted);
  max-width: 26ch;
  line-height: 1.45;
}

.brief__feedback {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  min-height: 0;
}

.brief__feedback--loading {
  color: var(--import-green);
}

.brief__feedback--success {
  color: var(--import-green);
  background: var(--soft);
  border-radius: var(--r-14);
  padding: 16px 18px;
}

.brief__feedback--error {
  color: var(--critical);
}

/* Fields */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.field__input {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-12);
  padding: 14px 16px;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

/* Field hint: real element standing in for the native hint text,
   shown while the input is empty */
.field__wrap {
  position: relative;
}

.field__hint {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--muted);
  opacity: 0.85;
  pointer-events: none;
}

.field__wrap.has-value .field__hint {
  display: none;
}

.field__input:hover {
  border-color: var(--muted);
}

.field__input:focus-visible {
  outline: none;
  border-color: var(--import-green);
  box-shadow: 0 0 0 2px var(--import-green);
}

.field__input:disabled {
  background: var(--soft);
  color: var(--muted);
  cursor: not-allowed;
}

.field__input.is-invalid {
  border-color: var(--critical);
  box-shadow: none;
}

.field__error {
  font-size: 12px;
  color: var(--critical);
  line-height: 1.35;
}

/* ---------- Five-stage route ---------- */

.route {
  position: relative;
  background: var(--route-black);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  overflow: hidden;
}

.route__inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 96px var(--safe);
}

.route__steps {
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.route__steps::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 23px;
  height: 3px;
  background: rgba(215, 240, 90, 0.35);
  border-radius: 2px;
  z-index: 0;
}

.route__step {
  position: relative;
  padding-top: 56px;
}

.route__marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--route-black);
  border: 3px solid var(--lime);
  color: var(--lime);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

body.route-revealed .route__step:nth-child(1) .route__marker { background: var(--lime); color: var(--route-black); }
body.route-revealed .route__step:nth-child(2) .route__marker { background: var(--lime); color: var(--route-black); transition-delay: 0.18s; }
body.route-revealed .route__step:nth-child(3) .route__marker { background: var(--lime); color: var(--route-black); transition-delay: 0.36s; }
body.route-revealed .route__step:nth-child(4) .route__marker { background: var(--lime); color: var(--route-black); transition-delay: 0.54s; }
body.route-revealed .route__step:nth-child(5) .route__marker { background: var(--lime); color: var(--route-black); transition-delay: 0.72s; }

.route__card {
  background: rgba(246, 247, 243, 0.055);
  border: 1px solid rgba(246, 247, 243, 0.14);
  border-radius: var(--r-16);
  padding: 20px 18px;
  min-height: 128px;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease);
}

.route__card:hover {
  transform: translateY(-2px);
  background: rgba(246, 247, 243, 0.09);
}

.route__name {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 8px;
}

.route__desc {
  font-size: 14px;
  color: rgba(246, 247, 243, 0.7);
}

.route__note {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(246, 247, 243, 0.6);
}

/* Viewport-variant content: hidden on desktop, shown on mobile */
.hero__lead--mobile {
  display: none;
}

.hero__cta-mobile {
  display: none;
}

.route__desc--m,
.financing__title--m,
.fin-card__title--m,
.fin-card__note--m {
  display: none;
}

.route__status {
  display: none;
  margin-top: 32px;
  background: var(--import-green);
  border-radius: var(--r-18);
  padding: 24px 22px;
}

.route__status-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}

.route__status-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
}

/* ---------- Financing ---------- */

.financing {
  background: var(--white);
}

.financing__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 96px var(--safe);
}

.financing__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.financing__cta {
  margin-top: 26px;
  display: none;
}

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

.fin-card {
  background: var(--paper);
  border-radius: var(--r-18);
  padding: 28px 24px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.fin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(24, 37, 31, 0.1);
}

.fin-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--import-green);
  margin-bottom: 14px;
}

.fin-card__title {
  font-size: 19px;
  margin-bottom: 10px;
}

.fin-card__note {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Review ---------- */

.review {
  background: var(--paper);
}

.review__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 96px var(--safe);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}

.review__card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-18);
  padding: 32px 30px;
}

.review__who {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review__avatar {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--import-green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review__name {
  font-size: 16px;
  font-weight: 700;
}

.review__date {
  font-size: 13px;
  color: var(--muted);
}

.review__text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

.review__source {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contact ---------- */

.contact {
  background: var(--paper);
}

.contact__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--safe) 96px;
}

.contact__box {
  background: var(--import-green);
  border-radius: var(--r-20);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.contact__title {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--white);
}

.contact__line {
  margin-top: 12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.contact__phone {
  font-weight: 700;
  color: var(--white);
}

.contact__cta {
  white-space: nowrap;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--route-black);
  color: var(--white);
}

.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 56px var(--safe);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__logo-back {
  background: var(--white);
  border-radius: var(--r-12);
  padding: 10px 14px;
  display: inline-flex;
}

.footer__logo-back img {
  width: 180px;
  height: auto;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-left: auto;
  font-size: 14px;
  color: rgba(246, 247, 243, 0.75);
}

.footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer__links a:hover {
  color: var(--lime);
}

.footer__contact {
  font-size: 13px;
  color: rgba(246, 247, 243, 0.72);
}

.footer__contact a {
  font-weight: 700;
  color: var(--white);
}

.footer__legal {
  font-size: 12px;
  color: rgba(246, 247, 243, 0.5);
}

.footer__sign {
  font-size: 12px;
  color: rgba(246, 247, 243, 0.5);
}

/* ---------- Responsive: tablet ---------- */

@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "car"
      "dossier";
    padding: 64px var(--safe);
    gap: 40px;
  }

  .dossier {
    max-width: 460px;
  }

  .brief__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px var(--safe);
  }

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

  .route__inner,
  .financing__inner,
  .review__inner {
    padding: 72px var(--safe);
  }

  .route__line {
    display: none;
  }

  .route__steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .route__steps::before {
    left: 23px;
    right: auto;
    top: 23px;
    bottom: 23px;
    width: 3px;
    height: auto;
  }

  .route__step {
    padding-top: 0;
    padding-left: 68px;
    display: block;
  }

  .route__marker {
    top: 2px;
    left: 0;
  }

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

  .review__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Responsive: mobile ---------- */

@media (max-width: 639px) {
  .nav__inner {
    gap: 12px;
  }

  .nav__brand img {
    width: 150px;
    height: auto;
  }

  .nav__phone {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }

  .nav__phone-number {
    font-size: 13px;
  }

  .nav__phone-hours {
    font-size: 11px;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--safe) 16px;
    box-shadow: 0 18px 30px rgba(24, 37, 31, 0.14);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    min-height: 48px;
    font-size: 16px;
  }

  .hero__inner {
    padding: 48px var(--safe) 56px;
    gap: 28px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__lead {
    display: none;
  }

  .hero__lead--mobile {
    display: block;
  }

  .hero__cta-mobile {
    display: inline-flex;
  }

  .route__status {
    display: block;
  }

  .route__desc {
    display: none;
  }

  .route__desc--m {
    display: block;
  }

  .route__note {
    display: none;
  }

  #fin-title {
    display: none;
  }

  .financing__title--m {
    display: block;
  }

  .fin-card__title:not(.fin-card__title--m) {
    display: none;
  }

  .fin-card__title--m {
    display: block;
  }

  .fin-card__note:not(.fin-card__note--m) {
    display: none;
  }

  .fin-card__note--m {
    display: block;
  }

  .financing__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 28px;
  }

  .dossier {
    display: none;
  }

  .dossier--mobile {
    display: block;
  }

  .hero__car img {
    width: 100%;
    border-radius: var(--r-16);
  }

  .dossier {
    max-width: none;
    padding: 24px 22px;
  }

  .brief__inner,
  .route__inner,
  .financing__inner,
  .review__inner {
    padding: 56px var(--safe);
  }

  .brief__form {
    padding: 24px 20px;
  }

  .brief__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brief__actions .btn {
    width: 100%;
  }

  .route__step {
    padding-left: 58px;
  }

  .contact__box {
    padding: 32px 26px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 44px var(--safe);
  }

  .footer__links {
    margin-left: 0;
  }
}

/* ---------- Reduced motion ---------- */

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .route__steps::before,
  .hero__car::before {
    transform: none;
    transition: none;
  }
}
