:root {
  --graphite: #1a1a1a;
  --graphite-2: #242424;
  --ink: #242424;
  --muted: #686868;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #dedbd4;
  --red: #b51f2c;
  --red-dark: #8f1620;
  --gold: #c9902f;
  --gold-soft: #f3dfb9;
  --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 {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  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;
  gap: 9px;
  min-width: 0;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(104px, 34vw, 140px);
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  line-height: 1;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: none;
}

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

.section {
  padding: 64px 0;
}

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

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

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

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

.eyebrow {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

.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.78);
}

.hero {
  overflow: hidden;
  padding: 42px 0 56px;
  background:
    radial-gradient(circle at 90% 10%, rgba(181, 31, 44, 0.18), transparent 32%),
    var(--graphite);
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "copy"
    "media"
    "benefits"
    "form";
  gap: 22px;
}

.hero-copy {
  grid-area: copy;
  max-width: 740px;
}

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

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

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

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

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

.check-list li::before {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 144, 47, 0.18);
  color: var(--gold);
  font-weight: 900;
}

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

.proof-row span {
  min-height: 36px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  grid-area: media;
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #202020;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

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

.lead-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.form-grid {
  display: grid;
  gap: 10px;
}

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfbf8;
  color: var(--ink);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 31, 44, 0.12);
}

.bitrix-form {
  min-height: 300px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.bitrix-form .b24-form,
.bitrix-form .b24-form-wrapper {
  max-width: none;
  margin: 0;
  background: transparent;
  font-family: inherit;
  box-shadow: none;
}

.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;
  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 {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-status:not(:empty) {
  color: var(--green);
  font-weight: 800;
}

.vehicle-layout,
.vehicle-comparison {
  display: grid;
  gap: 18px;
}

.vehicle-card,
.vehicle-compare-card,
.media-card,
.info-panel,
.route,
.calculator,
.step-detail,
.manager-copy,
.legal,
.map-panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.vehicle-card,
.vehicle-compare-card,
.media-card,
.info-panel,
.route,
.calculator,
.step-detail,
.manager-copy,
.legal,
.map-panel,
.card-padding {
  padding: 18px;
}

.status-badge {
  display: inline-flex;
  margin: 0 0 16px;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(201, 144, 47, 0.18);
  color: #744d12;
  font-weight: 900;
  line-height: 1.3;
}

.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: var(--white);
}

.dealer-price-proof img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

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

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

.comparison-price strong b {
  color: inherit;
  font: inherit;
}

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

.comparison-saving {
  display: grid;
  gap: 12px;
  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(42px, 10vw, 64px);
  line-height: 1;
  overflow-wrap: anywhere;
}

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

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

.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: 800;
}

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

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

.muted {
  color: #878787;
}

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

.saving {
  border-bottom: 0;
}

.saving strong {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--gold-soft);
  color: #734b0f;
}

.media-card {
  display: grid;
  gap: 10px;
}

.gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d8d2;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gallery-slide.is-active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.58);
  color: var(--white);
  transform: translateY(-50%);
}

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

.gallery-control--prev {
  left: 12px;
}

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

.gallery-control--next {
  right: 12px;
}

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

.play-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  max-width: calc(100% - 28px);
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(26, 26, 26, 0.72);
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
}

.play-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
}

.media-caption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.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: 850;
  text-transform: uppercase;
}

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

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

.info-panel h3,
.route h3,
.manager-copy h3,
.legal h3,
.map-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.15;
}

.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-accent {
  border-color: rgba(181, 31, 44, 0.35);
}

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

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

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

.route-total {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.calculator {
  margin-top: 16px;
}

.calculator summary {
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

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

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

.breakdown-row span {
  color: var(--muted);
  line-height: 1.35;
}

.breakdown-row strong {
  font-size: 19px;
}

.breakdown-row.total {
  border-bottom: 0;
  color: var(--red);
  font-weight: 900;
}

.important-note {
  margin: 14px 0 0;
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  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;
}

.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: 920px;
  border-collapse: collapse;
}

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

.compare-table thead th {
  background: var(--graphite);
  color: var(--white);
  font-size: 14px;
}

.compare-table tbody th {
  color: var(--red);
}

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

.manager-grid {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.manager-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

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

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

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

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

.legal dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: break-word;
}

.map-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

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

.map-frame,
.map-frame iframe {
  width: 100%;
  height: 100%;
}

.map-frame iframe {
  min-height: 300px;
  border: 0;
}

.yandex-reviews-proof {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.yandex-reviews-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.yandex-reviews-media img {
  width: 100%;
  height: auto;
}

.yandex-reviews-summary {
  display: grid;
  gap: 10px;
  align-content: start;
}

.yandex-reviews-summary strong {
  color: var(--graphite);
  font-size: 26px;
  line-height: 1.1;
}

.yandex-reviews-summary span {
  color: var(--muted);
  line-height: 1.5;
}

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

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

.accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.08);
}

.accordion summary {
  padding: 16px;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
}

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

.final-cta {
  padding: 56px 0 62px;
}

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

.final-cta .eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
}

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

.final-cta .final-cta__copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

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

.footer-phone {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 20px;
  color: var(--white);
  font-size: clamp(18px, 5vw, 25px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

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

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

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

.final-form {
  align-self: start;
  width: 100%;
  min-height: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(26, 26, 26, 0.72);
}

.modal[hidden] {
  display: none;
}

.modal-dialog {
  position: relative;
  width: min(100%, 520px);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.modal-dialog h2 {
  margin: 0 0 10px;
}

.modal-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #eeeeea;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 9px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

@media (min-width: 640px) {
  .form-grid,
  .equipment-layout,
  .legal-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .breakdown-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

@media (min-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 12px 22px;
  }

  .brand-text {
    display: inline;
  }

  .brand-logo {
    width: 156px;
  }

  .nav {
    display: flex;
    min-width: 0;
    justify-content: center;
    gap: 18px;
  }

  .nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }

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

  .header-phone {
    max-width: none;
  }

  .hero {
    min-height: min(760px, calc(100svh - 55px));
    padding: 44px 0 52px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.9fr);
    grid-template-areas:
      "copy media"
      "benefits media"
      "form media";
    align-items: start;
    gap: 24px 34px;
  }

  .hero-form {
    max-width: 720px;
  }

  .lead-form,
  .bitrix-form {
    padding: 14px;
  }

  .lead-form input,
  .button {
    min-height: 50px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .hero-media {
    align-self: start;
  }

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

  .hero-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
    gap: 14px;
    align-items: start;
  }

  .proof-row {
    margin-top: 22px;
  }

  .hero-benefits .proof-row {
    display: grid;
    margin-top: 0;
  }

  .vehicle-layout,
  .routes {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .final-cta {
    padding: 64px 0 68px;
  }

  .final-grid {
    grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(34px, 4vw, 56px);
    align-items: center;
  }

  .final-form {
    justify-self: end;
    max-width: 580px;
  }

  .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;
  }

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

  .yandex-reviews-proof {
    grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
    align-items: start;
  }

  .faq-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .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);
  }
}

@media (min-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.95fr);
  }

}
