:root {
  --bg: #08110e;
  --bg-soft: #0d1713;
  --surface: rgba(13, 23, 19, 0.58);
  --surface-strong: rgba(19, 33, 28, 0.82);
  --text: #edf5f0;
  --muted: #b4c7bc;
  --line: rgba(210, 233, 221, 0.14);
  --accent: #2ab673;
  --accent-dark: #178f56;
  --accent-soft: #88e0b0;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #050c09;
  overflow-x: hidden;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding-bottom: 0;
}

.section-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: none;
  min-height: 100svh;
  display: grid;
  align-items: center;
  --section-opacity: 0.58;
  --section-position: center center;
  --section-zoom: scale(1.06);
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.72) 0%, rgba(6, 12, 10, 0.5) 42%, rgba(6, 12, 10, 0.82) 100%);
}

.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 10, 8, 0.08), rgba(5, 10, 8, 0.24)),
    var(--section-image) var(--section-position) / cover no-repeat;
  opacity: var(--section-opacity);
  transform: var(--section-zoom);
  filter: saturate(1.02) contrast(1.1);
}

.section-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(42, 182, 115, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(4, 10, 8, 0.22), rgba(7, 15, 12, 0.68)),
    var(--section-tint);
}

.section-block + .section-block {
  margin-top: 0;
}

.section-hero {
  --section-image: url("assets/images/hero-bg.jpg");
  --section-position: 78% center;
  --section-opacity: 0.72;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.86) 0%, rgba(5, 11, 9, 0.54) 42%, rgba(4, 10, 8, 0.32) 100%);
}

.section-metrics {
  --section-image: url("assets/images/metrics-bg.jpg");
  --section-position: center 60%;
  --section-opacity: 0.62;
  --section-tint:
    linear-gradient(90deg, rgba(4, 10, 8, 0.76) 0%, rgba(4, 10, 8, 0.42) 50%, rgba(4, 10, 8, 0.76) 100%);
}

.section-advantages {
  --section-image: url("assets/images/advantages-bg.jpg");
  --section-position: 72% center;
  --section-opacity: 0.68;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.82) 0%, rgba(5, 11, 9, 0.44) 48%, rgba(5, 11, 9, 0.68) 100%);
}

.section-journey {
  --section-image: url("assets/images/journey-bg.jpg");
  --section-position: center 68%;
  --section-opacity: 0.66;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.78) 0%, rgba(5, 11, 9, 0.36) 40%, rgba(5, 11, 9, 0.8) 100%);
}

.section-fleet {
  --section-image: url("assets/images/fleet-bg.jpg");
  --section-position: 50% 62%;
  --section-opacity: 0.64;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.7) 0%, rgba(5, 11, 9, 0.34) 46%, rgba(5, 11, 9, 0.84) 100%);
}

.section-catalog {
  --section-image: url("assets/images/catalog-bg.jpg");
  --section-position: 72% center;
  --section-opacity: 0.7;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.84) 0%, rgba(5, 11, 9, 0.5) 38%, rgba(5, 11, 9, 0.42) 100%);
}

.section-testimonial {
  --section-image: url("assets/images/testimonial-bg.jpg");
  --section-position: center 44%;
  --section-opacity: 0.66;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.76) 0%, rgba(5, 11, 9, 0.34) 48%, rgba(5, 11, 9, 0.76) 100%);
}

.section-reviews {
  --section-image: url("assets/images/reviews-bg.jpg");
  --section-position: center 54%;
  --section-opacity: 0.68;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.82) 0%, rgba(5, 11, 9, 0.46) 42%, rgba(5, 11, 9, 0.72) 100%);
}

.section-contact {
  --section-image: url("assets/images/contact-bg.jpg");
  --section-position: 68% center;
  --section-opacity: 0.74;
  --section-tint:
    linear-gradient(90deg, rgba(5, 11, 9, 0.84) 0%, rgba(5, 11, 9, 0.54) 42%, rgba(5, 11, 9, 0.4) 100%);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 20;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(12, 21, 17, 0.64);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-nav-label {
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.site-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: auto;
  padding: 0;
  color: var(--text);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
  opacity: 0.86;
}

.site-nav a:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.site-nav a small {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
}

.site-nav a + a::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-right: 8px;
  background: linear-gradient(90deg, rgba(115, 243, 179, 0.12), rgba(115, 243, 179, 0.62));
}

.site-nav a span,
.header-phone,
.header-messenger,
.header-button {
  color: var(--text);
  font-size: 0.96rem;
}

.site-nav a span {
  font-size: 0.88rem;
  font-weight: 600;
}

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

.header-phone {
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.header-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(115, 243, 179, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-messenger:hover {
  transform: translateY(-1px);
  border-color: rgba(115, 243, 179, 0.46);
  background: rgba(115, 243, 179, 0.08);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #178f56, #2ab673);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 120px max(28px, calc((100vw - var(--container)) / 2)) 48px;
  min-height: 100svh;
  align-items: start;
  align-content: start;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

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

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 15ch;
}

.hero-lead,
.section-heading p:last-child,
.contact-copy p:last-child,
.estimate-copy p:last-child,
.advantage-card p,
.journey-timeline p,
.fleet-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-lead {
  max-width: 62ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #73f3b3);
  box-shadow: 0 16px 30px rgba(42, 182, 115, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.button-full {
  width: 100%;
}

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

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.hero-notes li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 6px rgba(136, 224, 176, 0.18);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.panel-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(20, 35, 29, 0.76), rgba(11, 21, 17, 0.84)),
    rgba(13, 23, 19, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-display {
  position: relative;
  overflow: hidden;
  min-height: 344px;
  background:
    linear-gradient(145deg, rgba(10, 21, 17, 0.92), rgba(7, 15, 12, 0.88)),
    radial-gradient(circle at top right, rgba(42, 182, 115, 0.18), transparent 34%);
}

.panel-display::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -14%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 243, 179, 0.22), transparent 66%);
  pointer-events: none;
}

.panel-display-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.panel-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-title {
  display: block;
  max-width: 12ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.status-chip {
  flex-shrink: 0;
  align-self: start;
  padding: 10px 14px;
  border: 1px solid rgba(115, 243, 179, 0.2);
  border-radius: 999px;
  background: rgba(42, 182, 115, 0.1);
  color: #aef7cb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.company-story {
  gap: 18px;
}

.signal-card {
  max-width: 320px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.company-card {
  max-width: 100%;
}

.signal-card span,
.panel-card small {
  display: block;
  margin-bottom: 10px;
  color: #90d7af;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-card strong,
.panel-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.signal-card p,
.panel-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.company-points {
  display: grid;
  gap: 14px;
}

.company-points div {
  padding: 16px 18px;
  border-left: 1px solid rgba(115, 243, 179, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.company-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.company-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.country-flags {
  display: flex;
  gap: 10px;
  margin: 4px 0 2px;
}

.country-flags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.35rem;
}

.panel-card.accent {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(24, 120, 74, 0.96), rgba(42, 182, 115, 0.9));
}

.panel-card.accent strong,
.panel-card.accent span {
  color: #fff;
}

.hero-accent-card {
  max-width: 520px;
  margin-top: 24px;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  width: 100%;
  padding: 120px max(28px, calc((100vw - var(--container)) / 2)) 72px;
  align-self: stretch;
  align-content: center;
  background: transparent;
}

.stats-intro {
  max-width: 34rem;
}

.stats-intro h2 {
  max-width: 13ch;
  margin-bottom: 18px;
}

.stats-intro p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.stats-grid div {
  position: relative;
  padding: 0 24px 0 0;
  background: transparent;
}

.stats-grid div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(115, 243, 179, 0.32), transparent);
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.stats-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.stats-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.stats-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7f5e5;
  font-size: 0.92rem;
}

.legal-footer {
  padding: 24px 20px 30px;
  background: #050c09;
}

.legal-footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(10, 18, 15, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.legal-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-primary strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.legal-primary span,
.legal-secondary p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-secondary {
  display: grid;
  gap: 6px;
  padding-top: 16px;
}

.legal-secondary p {
  margin: 0;
}

.section {
  padding: 120px max(28px, calc((100vw - var(--container)) / 2)) 56px;
}

.section-split,
.contact,
.catalog {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.section-heading.narrow h2 {
  max-width: 18ch;
}

.advantages-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.advantage-card,
.fleet-card,
.estimate-card,
.contact-form,
.quote-card {
  padding: 28px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(13, 24, 19, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.advantage-card span {
  display: inline-flex;
  min-width: 52px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 800;
  border: 1px solid rgba(115, 243, 179, 0.22);
}

.advantage-card h3,
.journey-timeline h3,
.fleet-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.journey-timeline {
  display: grid;
  gap: 18px;
}

.advantage-card {
  position: relative;
  padding: 22px 0 24px 96px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.advantage-card:last-child {
  border-bottom: 1px solid var(--line);
}

.advantage-card span {
  position: absolute;
  left: 0;
  top: 20px;
}

.journey-timeline article {
  position: relative;
  padding: 24px 24px 24px 84px;
  border-top: 1px solid var(--line);
}

.journey-timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-timeline strong {
  position: absolute;
  left: 20px;
  top: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: rgba(115, 243, 179, 0.85);
}

.fleet-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(10, 19, 15, 0.34), rgba(10, 19, 15, 0.88) 48%, rgba(10, 19, 15, 0.96)),
    radial-gradient(circle at top right, rgba(42, 182, 115, 0.2), transparent 35%);
}

.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.54;
  background: var(--card-image) center / cover no-repeat;
  transform: scale(1.04);
}

.fleet-card h3,
.fleet-card p {
  max-width: 24rem;
}

.fleet-card:nth-child(even) {
  align-items: end;
  text-align: right;
}

.fleet-card:nth-child(even) h3,
.fleet-card:nth-child(even) p {
  margin-left: auto;
}

.fleet-card:nth-child(1) {
  --card-image: url("assets/images/fleet-crossover.jpg");
}

.fleet-card:nth-child(2) {
  --card-image: url("assets/images/fleet-sedan.jpg");
}

.fleet-card:nth-child(3) {
  --card-image: url("assets/images/fleet-ev.jpg");
}

.fleet-card:nth-child(4) {
  --card-image: url("assets/images/fleet-minivan.jpg");
}

.estimate-card,
.contact-form {
  display: grid;
  gap: 18px;
}

.estimate-card label,
.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.estimate-card select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  color: #f2fbf6;
  outline: none;
}

.estimate-card select option {
  color: #0d1713;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(237, 245, 240, 0.46);
}

.estimate-card select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(42, 182, 115, 0.5);
  box-shadow: 0 0 0 4px rgba(42, 182, 115, 0.1);
}

.estimate-result {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f1c17, #09110d);
}

.estimate-result span {
  color: rgba(255, 255, 255, 0.72);
}

.estimate-result strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.testimonial {
  padding-top: 64px;
}

.quote-card {
  max-width: 760px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(14, 26, 21, 0.92), rgba(9, 18, 14, 0.9)),
    radial-gradient(circle at top right, rgba(42, 182, 115, 0.18), transparent 35%);
}

.estimate-card,
.contact-form {
  border-radius: 28px;
}

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

.catalog-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 16, 13, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.catalog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.catalog-card-body {
  padding: 20px 20px 22px;
}

.catalog-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 182, 115, 0.12);
  color: #aef7cb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.catalog-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog-price s {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.96rem;
}

.catalog-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}

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

.review-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 13, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.review-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.review-top strong {
  font-size: 1.08rem;
}

.review-top span {
  color: #9fe9bf;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

blockquote {
  max-width: 24ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.quote-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-note.success {
  color: #176c3f;
}

@media (max-width: 1100px) {
  .hero,
  .section-split,
  .contact,
  .catalog {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: 120px;
  }

  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    left: 12px;
    right: 12px;
    width: auto;
    border-radius: 24px;
    padding: 14px;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-nav-label {
    width: 100%;
    padding: 0;
  }

  .site-nav a {
    min-width: auto;
    flex: 0 1 auto;
  }

  .site-nav a + a::before {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .panel-grid,
  .catalog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .panel-card.accent {
    grid-column: auto;
  }

  .stats-ribbon,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div:not(:last-child)::after {
    display: none;
  }

  .legal-footer-inner {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
  }

  .brand {
    width: 100%;
  }

  .header-cta {
    width: 100%;
    justify-content: space-between;
  }

  .header-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .header-messenger {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-ribbon {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(2.3rem, 14vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 10vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-nav a {
    min-width: 100%;
    flex-basis: 100%;
  }

  .panel-display-top {
    flex-direction: column;
  }

  .status-chip {
    align-self: start;
  }

  .journey-timeline article {
    padding: 72px 18px 18px;
  }

  .journey-timeline strong {
    left: 18px;
    top: 16px;
  }

  .advantage-card {
    padding: 68px 0 18px;
  }

  .advantage-card span {
    top: 16px;
  }

  .fleet-card,
  .fleet-card:nth-child(even) {
    align-items: start;
    text-align: left;
  }

  .fleet-card:nth-child(even) h3,
  .fleet-card:nth-child(even) p {
    margin-left: 0;
  }

  .estimate-result {
    flex-direction: column;
    align-items: start;
  }
}
