:root {
  --bg: #120a0d;
  --bg-deep: #09090d;
  --panel: #0d0e13;
  --panel-soft: #15171d;
  --panel-muted: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f3edea;
  --muted: #9a9497;
  --accent: #c72016;
  --accent-soft: rgba(199, 32, 22, 0.18);
  --green: #6ba36c;
  --amber: #bc8b46;
  --blue: #7486bc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(103, 11, 17, 0.45), transparent 34%),
    linear-gradient(180deg, #2a0910 0%, #130a0f 28%, #0b0c10 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 18px;
}

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

.card {
  background: rgba(8, 9, 13, 0.92);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card-inset {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
}

.hero {
  padding: 18px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 30px;
  height: 14px;
  border-top: 2px solid var(--accent);
  border-radius: 50%;
  transform: skewX(-28deg);
  opacity: 0.85;
}

.brand-title,
.phone {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  margin-top: 2px;
  font-size: 10px;
  color: var(--muted);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  padding-top: 18px;
}

.eyebrow {
  color: #877e80;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

h1,
h2,
h3,
p,
blockquote,
ul {
  margin: 0;
}

h1 {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

h2 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

h3 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.2;
}

p,
li,
blockquote,
.featured-meta span,
.offer p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.hero-copy > p {
  margin-top: 14px;
  max-width: 290px;
}

.hero-actions,
.offer-bottom {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-actions {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button-primary {
  background: linear-gradient(180deg, #d1281c, #b31610);
  color: #fff4f1;
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.button.small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.stat {
  padding: 12px 10px;
}

.stat strong {
  display: block;
  font-size: 13px;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-car {
  position: relative;
  min-height: 258px;
  padding: 14px;
  overflow: hidden;
}

.image-note {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  color: #d2d0d0;
}

.fake-car {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.08), rgba(8, 9, 13, 0.28)),
    url("./1.1.webp") center 42% / cover no-repeat;
}

.featured-car .fake-car {
  height: 190px;
  margin-top: 12px;
}

.featured-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
}

.featured-meta strong,
.offer strong,
.route-step strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}

.featured-meta span {
  display: block;
  margin-top: 5px;
}

.quote {
  padding: 16px;
  font-style: italic;
}

.quote footer {
  margin-top: 12px;
  color: #d3c8c8;
  font-size: 12px;
}

.section-intro {
  padding: 34px 8px 18px;
}

.section-intro p {
  margin-top: 12px;
  max-width: 560px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 12px;
}

.route {
  position: relative;
  min-height: 738px;
  padding: 28px;
  overflow: hidden;
}

.route-road {
  position: absolute;
  inset: 24px 18px 24px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 48px);
  pointer-events: none;
  z-index: 0;
}

.route-road path {
  fill: none;
  stroke: rgba(166, 17, 17, 0.55);
  stroke-width: 2.5;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.route-step {
  position: absolute;
  width: 136px;
  padding: 14px;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.step-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.18), rgba(199, 32, 22, 0.2) 60%, rgba(199, 32, 22, 0.08) 100%);
  border: 1px solid rgba(199, 32, 22, 0.26);
}

.route-step p {
  margin-top: 8px;
}

.step-1 {
  left: 26px;
  top: 58px;
}

.step-2 {
  right: 22px;
  top: 204px;
}

.step-3 {
  left: 22px;
  top: 364px;
}

.step-4 {
  right: 34px;
  top: 514px;
}

.step-5 {
  left: 26px;
  bottom: 28px;
}

.offers {
  padding: 18px 14px 14px;
}

.offers-header {
  padding: 2px 4px 16px;
}

.offers-header h3 {
  font-size: 14px;
}

.offer {
  padding: 10px;
}

.offer + .offer {
  margin-top: 10px;
}

.offer-photo {
  height: 152px;
  margin-bottom: 10px;
}

.offer-status {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-green {
  color: #73a06c;
}

.status-amber {
  color: #bf8d4c;
}

.status-blue {
  color: #7085bb;
}

.offer p {
  margin-top: 5px;
}

.offer-bottom {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 14px;
  gap: 8px;
}

.offer-bottom .button {
  flex: 0 0 auto;
}

.price {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  white-space: nowrap;
  word-break: keep-all;
}

.lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 14px;
  padding: 18px;
}

.lead-copy p {
  margin-top: 12px;
}

.lead-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.lead-copy li + li {
  margin-top: 4px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  color: #d7d1d1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.checkbox input {
  width: 14px;
  height: 14px;
  accent-color: #2b69ff;
}

.checkbox span {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
}

.submit {
  width: 100%;
  margin-top: 2px;
}

@media (max-width: 680px) {
  .page-shell {
    padding: 12px;
  }

  .hero-grid,
  .content-grid,
  .lead {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .route {
    min-height: 820px;
  }

  .offers {
    order: 2;
  }
}
