:root {
  --graphite: #1a1a1a;
  --ink: #242424;
  --muted: #686868;
  --line: #dedbd4;
  --paper: #f7f7f4;
  --white: #ffffff;
  --red: #b51f2c;
  --red-dark: #8f1620;
  --gold: #c9902f;
  --green: #2f6b57;
  --blue: #2f5f7d;
  --shadow: 0 18px 45px rgba(26, 26, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: rgba(181, 31, 44, 0.2);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(26, 26, 26, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 148px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: none;
}

.header-phone {
  justify-self: end;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 164px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section {
  padding: 64px 0;
}

.section-dark {
  background: var(--graphite);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.02;
}

.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-dark .section-heading p,
.section-dark .final-cta p,
.hero-subline {
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100svh - 50px));
  padding: 74px 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 26, 26, 0.76);
}

.hero-grid,
.hero-media-stack,
.hero-media {
  position: relative;
  z-index: 2;
}

.hero-media-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #242424;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.hero-media--main,
.hero-media--secondary {
  aspect-ratio: 16 / 9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  display: none;
}

.hero-content {
  max-width: 710px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(33px, 8.8vw, 78px);
  line-height: 0.98;
  font-weight: 850;
  overflow-wrap: break-word;
}

.hero-subline {
  margin: 18px 0 0;
  max-width: 690px;
  font-size: clamp(17px, 4.2vw, 23px);
  line-height: 1.36;
  overflow-wrap: break-word;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.42;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.hero-cta {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

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

.button-ghost {
  background: transparent;
  border-color: rgba(26, 26, 26, 0.24);
  color: var(--ink);
}

.section-dark .button-ghost,
.hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.proof-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.vehicle-comparison {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.vehicle-card,
.vehicle-compare-card,
.info-panel,
.route,
.calculator,
.price-cta-panel,
.step-detail,
.trust-card,
.legal,
.map-panel,
.promo-video-panel,
.review-proof-card,
.video-review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.vehicle-card,
.vehicle-compare-card {
  padding: 18px;
}

.status-badge {
  display: inline-flex;
  margin: 0 0 16px;
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(201, 144, 47, 0.16);
  color: #7b5213;
  font-weight: 850;
}

.vehicle-compare-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  min-width: 0;
}

.comparison-media {
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #ffffff;
}

.price-stack {
  display: grid;
  gap: 12px;
}

.price-stack > div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-stack span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-stack strong {
  font-size: 22px;
}

.dealer-price-proof {
  margin: 0;
}

.dealer-price-proof img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  object-fit: contain;
}

.price-stack .price-main strong {
  color: var(--graphite);
  font-size: clamp(36px, 9vw, 54px);
  line-height: 1;
}

.muted {
  color: #8a8a8a;
}

.strike {
  text-decoration: line-through;
}

.saving strong {
  color: var(--gold);
}

.comparison-price {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 104px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.comparison-price span,
.comparison-saving span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.comparison-price strong {
  color: var(--graphite);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.comparison-price--accent strong {
  color: var(--red);
}

.comparison-saving {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  border: 1px solid rgba(201, 144, 47, 0.38);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(201, 144, 47, 0.1);
}

.comparison-saving__content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.comparison-saving strong {
  color: var(--gold);
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.comparison-saving__button {
  display: none;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.vehicle-actions {
  max-width: 520px;
}

.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d8d3;
  box-shadow: var(--shadow);
}

.vehicle-compare-card .gallery {
  box-shadow: none;
}

.vehicle-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.comparison-media .vehicle-carousel__viewport {
  width: 100%;
  height: 100%;
  border-radius: 0;
  aspect-ratio: auto;
}

.vehicle-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.vehicle-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.vehicle-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.58);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.vehicle-carousel__control:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: rgba(255, 255, 255, 0.66);
}

.vehicle-carousel__control::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.vehicle-carousel__control--prev {
  left: 12px;
}

.vehicle-carousel__control--prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.vehicle-carousel__control--next {
  right: 12px;
}

.vehicle-carousel__control--next::before {
  transform: translateX(-2px) rotate(135deg);
}

.vehicle-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 7px;
  justify-content: center;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.52);
  transform: translateX(-50%);
}

.vehicle-carousel__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.vehicle-carousel__dot.is-active {
  width: 22px;
  background: var(--white);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.spec-item {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: var(--white);
}

.spec-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-item strong {
  display: block;
  font-size: clamp(15px, 3.5vw, 18px);
  line-height: 1.25;
}

.equipment-layout {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.info-panel {
  padding: 18px;
}

.info-panel h3,
.route h3,
.legal h3,
.map-panel h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.info-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  line-height: 1.42;
}

.info-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.price-section {
  background: #eeeeea;
}

.routes {
  display: grid;
  gap: 14px;
}

.route {
  padding: 18px;
}

.route-accent {
  border-color: rgba(181, 31, 44, 0.35);
}

.chain {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chain span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 8px 10px;
  background: #efeee9;
  color: var(--ink);
  font-weight: 750;
}

.route-accent .chain span {
  background: rgba(181, 31, 44, 0.08);
}

.chain span:not(:last-child)::after {
  content: "→";
  margin-left: 8px;
  color: var(--gold);
}

.route-total {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 850;
}

.calculator {
  margin-top: 14px;
  padding: 6px 18px 18px;
}

.calculator summary {
  cursor: pointer;
  padding: 15px 0;
  font-size: 19px;
  font-weight: 850;
}

.breakdown {
  display: grid;
  gap: 8px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.breakdown-row strong {
  text-align: right;
}

.breakdown-row.total {
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.important-note {
  margin: 18px 0 0;
  border-left: 4px solid var(--gold);
  padding: 10px 0 10px 12px;
  color: var(--ink);
  font-weight: 750;
}

.price-cta-panel {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
}

.price-cta-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

.price-cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.steps-layout {
  display: grid;
  gap: 14px;
}

.step-tabs {
  display: grid;
  gap: 8px;
  position: relative;
}

.step-tab {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.step-tab[aria-selected="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 31, 44, 0.08);
}

.step-tab span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  font-weight: 850;
}

.step-tab strong {
  display: block;
  margin-bottom: 3px;
}

.step-tab small {
  color: var(--muted);
  font-weight: 700;
}

.step-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.step-detail__number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.step-detail h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.step-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.compare {
  background: #f3f4f4;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--graphite);
  color: var(--white);
}

.compare-table th:first-child {
  width: 20%;
}

.compare-table td:first-child {
  color: var(--muted);
  font-weight: 850;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-card {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.08;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.trust-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.trust-card li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.trust-card .button {
  min-height: 58px;
}

.legal-layout {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.legal,
.map-panel {
  padding: 18px;
}

.legal dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal div {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.legal dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal dd {
  margin: 0;
  line-height: 1.45;
}

.map-panel p {
  color: var(--muted);
}

.map-shell {
  display: grid;
  place-items: center;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e6e9e8;
}

.map-shell iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-attribution {
  position: absolute;
  left: 0;
  z-index: 1;
  color: #eeeeee;
  font-size: 12px;
}

.promo-video-panel {
  margin-top: 14px;
  padding: 10px;
  background: var(--graphite);
}

.promo-video-panel video {
  display: block;
  width: 100%;
  max-height: 560px;
  border-radius: 6px;
  background: #000000;
  object-fit: contain;
}

.reviews {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 247, 244, 0.92)),
    var(--paper);
}

.ev-reviews-host {
  display: grid;
  gap: 18px;
}

.ev-reviews-summary {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.ev-yandex-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(201, 144, 47, 0.34);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.ev-yandex-rating:focus-visible,
.ev-review-card--link:focus-visible {
  outline: 3px solid rgba(181, 31, 44, 0.34);
  outline-offset: 4px;
}

.ev-yandex-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #ffdb4d;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.ev-yandex-rating__content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ev-yandex-rating__score {
  color: var(--graphite);
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 900;
  line-height: 0.9;
}

.ev-yandex-stars {
  color: var(--gold);
  font-size: clamp(18px, 3vw, 25px);
  letter-spacing: 0;
  line-height: 1;
}

.ev-yandex-caption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.ev-reviews-copy {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.ev-reviews-copy strong {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.05;
}

.ev-reviews-copy span {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.ev-reviews-scroll-hint {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 -4px auto;
  padding: 8px 12px;
  border: 1px solid rgba(181, 31, 44, 0.2);
  border-radius: 999px;
  background: rgba(181, 31, 44, 0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.ev-reviews-scroll-hint b {
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
  animation: ev-reviews-swipe-hint 1.4s ease-in-out infinite;
}

@keyframes ev-reviews-swipe-hint {
  50% {
    transform: translateX(5px);
  }
}

.ev-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(276px, 1fr));
  gap: 14px;
  align-items: start;
  width: 100%;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(181, 31, 44, 0.54) rgba(26, 26, 26, 0.08);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.ev-reviews-grid::-webkit-scrollbar {
  height: 8px;
}

.ev-reviews-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.08);
}

.ev-reviews-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(181, 31, 44, 0.54);
}

.ev-reviews-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
}

.ev-review-card {
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 219, 212, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.08);
  line-height: 0;
}

.ev-review-card--link {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ev-review-card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 31, 44, 0.35);
  box-shadow: 0 18px 36px rgba(26, 26, 26, 0.12);
}

.ev-review-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.faq-layout {
  display: grid;
  gap: 10px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.accordion summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 850;
}

.accordion p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.58;
}

.final-cta {
  padding: clamp(44px, 5vw, 64px) 0;
  background: #171717;
}

.final-cta__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.final-cta__content {
  max-width: 620px;
}

.final-cta .final-cta__eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
}

.final-cta .final-cta__copy {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 1.55;
}

.final-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.final-phone:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.final-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bitrix-form-shell {
  max-width: 820px;
}

.final-cta__form {
  width: 100%;
  max-width: none;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.final-cta__form .b24-form-header {
  display: none !important;
}

.final-cta__form .b24-form-content {
  padding-top: 24px !important;
}

.social-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.social-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.social-link--max img {
  width: 30px;
  height: 30px;
}

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 28px;
  }

  .nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 700;
  }

  .nav a:hover {
    color: var(--white);
  }

  .hero {
    padding: 92px 0 56px;
  }

  .hero::before {
    background: rgba(26, 26, 26, 0.68);
  }

  .hero-grid {
    width: min(100% - 48px, 1380px);
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
  }

  .hero-media-stack {
    margin: 22px 0 0;
    align-self: start;
  }

  .hero-media {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .hero-content {
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
  }

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

  .comparison-saving {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
    gap: 24px;
    align-items: center;
    padding: 20px 28px;
  }

  .comparison-saving__button {
    display: inline-flex;
    width: 100%;
  }

  .vehicle-actions--mobile {
    display: none;
  }

  .equipment-layout,
  .routes,
  .trust-grid,
  .legal-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ev-reviews-summary {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  }

  .final-cta__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(28px, 4vw, 52px);
  }

}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-phone {
    display: grid;
    place-items: center;
    width: 42px;
    height: 38px;
    padding: 0;
    font-size: 0;
  }

  .header-phone::before {
    content: "☎";
    font-size: 18px;
    line-height: 1;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-content {
    max-width: min(100%, 360px);
  }

  .hero h1 {
    font-size: clamp(30px, 8.1vw, 42px);
  }

  .hero-subline {
    font-size: 16px;
  }

  .check-list li {
    font-size: 15px;
  }

  .ev-reviews-copy {
    padding: 16px;
  }

  .ev-yandex-rating {
    grid-template-columns: auto 1fr;
    min-height: 112px;
    padding: 14px;
  }

  .ev-yandex-mark {
    width: 52px;
    height: 52px;
    font-size: 34px;
  }

  .ev-reviews-grid {
    grid-template-columns: repeat(4, minmax(252px, 82vw));
    gap: 12px;
  }

  .ev-reviews-column {
    gap: 12px;
  }

  .ev-review-card {
    border-radius: 7px;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .ev-reviews-scroll-hint {
    display: none;
  }

  .spec-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .step-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .step-tab {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 148px;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .step-tab:last-child {
    border-right: 0;
  }

  .step-tab[aria-selected="true"] {
    background: var(--graphite);
    color: var(--white);
    box-shadow: none;
  }

  .step-tab[aria-selected="true"] small {
    color: rgba(255, 255, 255, 0.72);
  }

  .step-tab[aria-selected="true"] span {
    background: var(--red);
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
    padding: 28px;
  }

}

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