/* ================================================================
   HOME — Industrial Premium redesign
   Scope: только главная (body.home). Не влияет на другие страницы.
   ================================================================ */

body.home {
  --ink: #0b0b0c;
  --ink-2: #141416;
  --ink-3: #1c1c1f;
  --paper: #f7f5f1;
  --paper-2: #efece6;
  --line-d: rgba(255, 255, 255, 0.08);
  --line-d-strong: rgba(255, 255, 255, 0.16);
  --text-d: rgba(255, 255, 255, 0.72);
  --text-d-muted: rgba(255, 255, 255, 0.5);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--paper);
}

body.home h1, body.home h2, body.home h3, body.home h4,
body.home .h-display {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

body.home {
  font-family: 'Inter', system-ui, sans-serif;
  color: #18181b;
}

/* ===== Container variants ===== */
body.home .container { max-width: 1320px; padding: 0 32px; }
@media (max-width: 720px) { body.home .container { padding: 0 20px; } }

/* ===== Reset some inherited section styles for home ===== */
body.home .section { padding: 120px 0; }
@media (max-width: 960px) { body.home .section { padding: 80px 0; } }

/* ================================================================
   TOPBAR — home premium: чёрный, тонкая граница
   (Header — общий Apple glass из style.css, без переопределений)
   ================================================================ */
body.home .topbar {
  background: #000;
  border-bottom: 1px solid var(--line-d);
}

/* ================================================================
   HERO — фуллскрин, премиум, с боковым нумератором и формой
   ================================================================ */
.h-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.h-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.85);
  animation: hero-zoom 22s var(--ease-out) infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.h-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.15) 40%, rgba(11,11,12,0.95) 100%),
    radial-gradient(60% 60% at 15% 30%, rgba(11,11,12,0.5) 0%, transparent 70%);
  z-index: 1;
}
.h-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.045 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

.h-hero__inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}

.h-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 32px;
}
.h-hero__kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.h-hero h1 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 28px;
  max-width: 14ch;
}
.h-hero h1 .h-accent {
  color: var(--red);
  font-style: normal;
}

.h-hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 0 44px;
}

.h-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.h-btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 36px rgba(227, 6, 19, 0.35);
}
.h-btn--primary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.25);
}
.h-btn--ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.h-btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}
.h-btn--dark {
  background: var(--ink);
  color: #fff;
}
.h-btn--dark:hover {
  background: var(--red);
  transform: translateY(-2px);
  color: #fff;
}
.h-btn--lg { padding: 22px 40px; font-size: 1.02rem; }
.h-btn__arrow {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform 0.25s var(--ease-out);
}
.h-btn:hover .h-btn__arrow { transform: translateX(4px); }
.h-btn--primary .h-btn__arrow { background: rgba(0,0,0,0.18); }

/* Hero meta strip — снизу: годы, машины, города */
.h-hero__meta {
  border-top: 1px solid var(--line-d);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
.h-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-hero__meta-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.h-hero__meta-num span { color: var(--red); }
.h-hero__meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Hero form — стеклянная карточка справа */
.h-hero__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative;
}
.h-hero__form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.h-hero__form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.h-hero__form-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.h-hero__form label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-weight: 600;
}
.h-hero__form .form-row { margin-bottom: 16px; }
.h-hero__form input,
.h-hero__form select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.h-hero__form input::placeholder { color: rgba(255,255,255,0.4); }
.h-hero__form input:focus,
.h-hero__form select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.1);
}
.h-hero__form select option { background: var(--ink); color: #fff; }
.h-hero__form-foot {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.4;
}
.h-hero__form .form__success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #d6f4e1;
}

/* Scroll cue */
.h-hero__scroll {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.h-hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.h-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 30%;
  background: var(--red);
  animation: scroll-dot 2.4s var(--ease-out) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

/* ================================================================
   MARQUEE — бегущая строка городов
   ================================================================ */
.h-marquee {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.h-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 45s linear infinite;
  white-space: nowrap;
}
.h-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.h-marquee__dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   STATS — большие цифры со счётчиком
   ================================================================ */
.h-stats {
  background: var(--paper);
  padding: 100px 0;
}
.h-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.h-stats__item {
  padding: 48px 32px;
  position: relative;
}
.h-stats__item + .h-stats__item { border-left: 1px solid rgba(0,0,0,0.08); }
.h-stats__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.h-stats__num-suffix { color: var(--red); font-size: 0.7em; }
.h-stats__label {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #5a5f66;
  line-height: 1.4;
  max-width: 24ch;
}

/* ================================================================
   SECTION HEADER (used across home sections)
   ================================================================ */
.h-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.h-section-head__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-section-head__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}
.h-section-head h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.h-section-head__lead {
  color: #5a5f66;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

/* ================================================================
   BENTO services grid (asymmetric)
   ================================================================ */
.h-services {
  background: var(--paper);
}
.h-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}
.h-bento__cell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: pointer;
  isolation: isolate;
}
.h-bento__cell:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
}
.h-bento__cell--wide { grid-column: span 2; }
.h-bento__cell--tall { grid-row: span 2; }
.h-bento__cell--dark { background-color: var(--ink); color: #fff; }
.h-bento__cell--paper { background-color: #fff; border: 1px solid rgba(0,0,0,0.06); }
.h-bento__cell--red {
  background-color: var(--red);
  color: #fff;
  background-image: linear-gradient(135deg, #e30613 0%, #b80510 100%);
}

.h-bento__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.h-bento__cell--paper .h-bento__icon {
  background: rgba(227,6,19,0.08);
  border-color: rgba(227,6,19,0.15);
  color: var(--red);
}
.h-bento__icon .icon { width: 26px; height: 26px; }

.h-bento__body { margin-top: auto; }
.h-bento__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.h-bento__cell--wide .h-bento__title { font-size: 1.7rem; }
.h-bento__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.75;
  margin: 0 0 18px;
}
.h-bento__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h-bento__price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.h-bento__cell--paper .h-bento__price { color: var(--red); }
.h-bento__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease);
}
.h-bento__cell--paper .h-bento__arrow { background: var(--ink); color: #fff; }
.h-bento__cell:hover .h-bento__arrow { transform: translate(4px, -4px) rotate(-15deg); }
.h-bento__cell--paper:hover .h-bento__arrow { background: var(--red); }
.h-bento__arrow svg { width: 18px; height: 18px; }

.h-bento__bg-icon {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 240px;
  height: 240px;
  opacity: 0.08;
  z-index: -1;
}
.h-bento__cell--paper .h-bento__bg-icon { opacity: 0.05; color: var(--ink); }

@media (max-width: 960px) {
  .h-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .h-bento__cell--wide { grid-column: span 2; }
  .h-bento__cell--tall { grid-row: span 1; }
}
@media (max-width: 600px) {
  .h-bento { grid-template-columns: 1fr; }
  .h-bento__cell--wide { grid-column: span 1; }
}

/* ================================================================
   MAP / GEOGRAPHY — тёмная секция с маршрутами
   ================================================================ */
.h-geo {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.h-geo--bg-map {
  min-height: 760px;
  display: flex;
  align-items: stretch;
}
.h-geo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(227,6,19,0.12) 0%, transparent 70%),
    radial-gradient(40% 40% at 90% 20%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.h-geo .h-section-head h2 { color: #fff; }
.h-geo .h-section-head__lead { color: rgba(255,255,255,0.65); }

.h-geo__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

/* === Map-as-background layout === */
.h-geo .h-map--bg {
  position: absolute;
  inset: 60px 24px;
  aspect-ratio: auto;
  padding: 0;
  border-radius: 28px;
  z-index: 0;
}
.h-geo__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 380px);
  column-gap: 64px;
  row-gap: 40px;
  align-items: start;
  width: 100%;
}
.h-geo__content .h-section-head {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.38) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px 32px;
  margin: 0;
  max-width: none;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.h-geo__content .h-section-head > div { min-width: 0; }
.h-geo__content .h-section-head h2 {
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}
.h-geo__content .h-section-head__lead {
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  max-width: 44ch;
}
.h-geo__panel--card {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: rgba(15,15,15,0.55);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 14px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.h-geo__panel--card .h-geo__row { padding: 14px 0; }

.h-map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%);
  border-radius: 24px;
  border: 1px solid var(--line-d);
  overflow: hidden;
  padding: 24px;
}
.h-map svg { width: 100%; height: 100%; display: block; position: relative; z-index: 2; pointer-events: none; }

/* Real-map tile layer (Leaflet + CartoDB Dark Matter) */
.h-map__tiles {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}
.h-map__tiles .leaflet-tile-pane {
  filter: saturate(0.55) brightness(1.05) contrast(1.05);
}
.h-map__tiles .leaflet-container {
  background: var(--ink);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.h-map__tiles .leaflet-control-attribution {
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 6px 0 0 0;
}
.h-map__tiles .leaflet-control-attribution a {
  color: rgba(255,255,255,0.7);
}
/* Soft radial vignette over the tiles so the SVG markers pop */
.h-map--tiled .h-map__tiles::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  z-index: 1;
}
/* When real tiles are on — hide the hand-drawn duplicates */
.h-map--tiled .h-map__grid,
.h-map--tiled .h-map__country,
.h-map--tiled .h-map__sea,
.h-map--tiled .h-map__graticule {
  display: none;
}

.h-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask: radial-gradient(70% 60% at center, #000 30%, transparent 100%);
  -webkit-mask: radial-gradient(70% 60% at center, #000 30%, transparent 100%);
}

/* Параллели / меридианы */
.h-map__graticule path {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 0.7;
  stroke-dasharray: 2 4;
}

/* Моря и водные акватории */
.h-map__sea {
  fill: url(#seaGrad);
  stroke: rgba(110,160,210,0.18);
  stroke-width: 0.8;
}

/* Города */
.h-map__city {
  fill: var(--red);
}
.h-map__city--hub {
  fill: var(--red);
  stroke: rgba(227,6,19,0.5);
  stroke-width: 2;
}
.h-map__city--mid {
  fill: #ff8a2a;
  opacity: 0.85;
}
.h-map__city--cis {
  fill: #f5d265;
  stroke: rgba(245,210,101,0.4);
  stroke-width: 1.5;
}

.h-map__city-glow {
  fill: var(--red);
  opacity: 0.3;
  animation: city-pulse 2.6s var(--ease-out) infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes city-pulse {
  0%   { opacity: 0.6; r: 5; }
  100% { opacity: 0; r: 20; }
}

/* Маршруты */
.h-map__route {
  stroke: var(--red);
  stroke-width: 1.6;
  fill: none;
  stroke-dasharray: 4 6;
  opacity: 0.78;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(227,6,19,0.35));
  animation: route-dash 12s linear infinite;
}
@keyframes route-dash {
  to { stroke-dashoffset: -200; }
}
.h-map__routes-thin path {
  stroke: rgba(255,255,255,0.18);
  stroke-width: 0.8;
  fill: none;
  stroke-dasharray: 1 3;
}

/* Анимированные «бегунки» по маршрутам — маленькие грузовики */
.h-map__truck {
  width: 18px;
  height: 11px;
  overflow: visible;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* Контуры стран */
.h-map__country {
  fill: rgba(255,255,255,0.04);
  stroke: rgba(255,255,255,0.12);
  stroke-width: 1;
  stroke-linejoin: round;
}
.h-map__country--ru {
  fill: url(#russiaGrad);
  stroke: rgba(227,6,19,0.35);
  stroke-width: 1.2;
}
.h-map__country--by { fill: rgba(120,160,220,0.10); stroke: rgba(120,160,220,0.35); }
.h-map__country--ua { fill: rgba(245,210,101,0.10); stroke: rgba(245,210,101,0.40); }
.h-map__country--md { fill: rgba(245,210,101,0.10); stroke: rgba(245,210,101,0.40); }
.h-map__country--ge { fill: rgba(170,210,140,0.10); stroke: rgba(170,210,140,0.40); }
.h-map__country--am { fill: rgba(255,140,140,0.10); stroke: rgba(255,140,140,0.40); }
.h-map__country--az { fill: rgba(140,200,220,0.10); stroke: rgba(140,200,220,0.40); }
.h-map__country--kz { fill: rgba(120,200,180,0.10); stroke: rgba(120,200,180,0.40); }
.h-map__country--uz { fill: rgba(150,220,180,0.10); stroke: rgba(150,220,180,0.40); }
.h-map__country--kg { fill: rgba(200,180,255,0.10); stroke: rgba(200,180,255,0.40); }
.h-map__country--tj { fill: rgba(220,170,140,0.10); stroke: rgba(220,170,140,0.40); }
.h-map__country--tm { fill: rgba(180,210,160,0.10); stroke: rgba(180,210,160,0.40); }

.h-map__label {
  fill: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.h-map__label--hub {
  fill: #fff;
  font-size: 11px;
  font-weight: 600;
}
.h-map__label--cis {
  fill: rgba(245,210,101,0.85);
  font-size: 10px;
}

/* Легенда */
.h-map__legend-bg {
  fill: rgba(0,0,0,0.45);
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1;
  backdrop-filter: blur(8px);
}
.h-map__legend-text {
  fill: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.h-geo__panel { display: flex; flex-direction: column; gap: 20px; }
.h-geo__row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-d);
  align-items: center;
  gap: 24px;
}
.h-geo__row:last-child { border-bottom: none; }
.h-geo__country {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-geo__country-flag {
  font-size: 1.5rem;
  line-height: 1;
}
.h-geo__row-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
  letter-spacing: 0.02em;
}
.h-geo__row-meta strong { color: var(--red); font-weight: 700; }

@media (max-width: 960px) {
  .h-geo__layout { grid-template-columns: 1fr; gap: 40px; }
  .h-geo--bg-map { min-height: 0; padding: 60px 0; }
  /* На мобильных карта полностью скрыта — секция становится обычным тёмным блоком */
  .h-geo .h-map--bg { display: none; }
  .h-geo__content {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .h-geo__content .h-section-head,
  .h-geo__panel--card { grid-column: 1; grid-row: auto; }
  .h-geo__content .h-section-head {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 24px 28px;
  }
}

/* ================================================================
   FLEET — горизонтальный скролл премиальных карточек
   ================================================================ */
.h-fleet {
  background: var(--paper);
  padding: 140px 0;
  overflow: hidden;
}
.h-fleet__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 32px 24px;
  margin: 0 -32px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(0,0,0,0.06);
}
.h-fleet__scroll::-webkit-scrollbar { height: 6px; }
.h-fleet__scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.06); border-radius: 3px; }
.h-fleet__scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

.h-fleet__card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--ink);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: transform 0.35s var(--ease-out);
}
.h-fleet__card:hover { transform: translateY(-6px); }
.h-fleet__card-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.h-fleet__card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px;
}
.h-fleet__card-art {
  margin: 8px 0 24px;
  color: rgba(255,255,255,0.85);
  flex-grow: 1;
  display: grid;
  place-items: center;
}
.h-fleet__card-art .icon {
  width: 140px;
  height: 140px;
  stroke-width: 1.2;
}
.h-fleet__card-art {
  background: radial-gradient(60% 60% at center, rgba(227,6,19,0.18) 0%, transparent 70%);
  border-radius: 18px;
  padding: 24px;
}
.h-fleet__card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-d);
}
.h-fleet__spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.h-fleet__spec-val {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

/* ================================================================
   WHY US — нумерованные преимущества
   ================================================================ */
.h-why {
  background: var(--paper);
  padding: 140px 0;
}
.h-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.h-why__item {
  padding: 40px 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background 0.3s var(--ease);
  position: relative;
}
.h-why__item:hover { background: #fff; }
.h-why__grid .h-why__item:nth-child(3n) { border-right: none; }
.h-why__grid .h-why__item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(0,0,0,0.1); }
.h-why__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.h-why__num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}
.h-why__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.h-why__desc {
  color: #5a5f66;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 960px) {
  .h-why__grid { grid-template-columns: repeat(2, 1fr); }
  .h-why__grid .h-why__item:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.1); }
  .h-why__grid .h-why__item:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .h-why__grid { grid-template-columns: 1fr; }
  .h-why__grid .h-why__item { border-right: none !important; }
}

/* ================================================================
   PROCESS — горизонтальный степпер
   ================================================================ */
.h-process {
  background: var(--ink);
  color: #fff;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.h-process .h-section-head h2 { color: #fff; }
.h-process .h-section-head__lead { color: rgba(255,255,255,0.65); }

.h-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.h-process__track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, var(--red) 50%, rgba(255,255,255,0.06) 100%);
}
.h-process__step {
  position: relative;
  padding-top: 80px;
}
.h-process__step::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--red);
  z-index: 1;
}
.h-process__step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.h-process__step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.h-process__step-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.h-process__step-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 960px) {
  .h-process__track { grid-template-columns: repeat(2, 1fr); }
  .h-process__track::before { display: none; }
}
@media (max-width: 600px) {
  .h-process__track { grid-template-columns: 1fr; }
}

/* ================================================================
   CASES — кейсы вместо отзывов
   ================================================================ */
.h-cases { background: var(--paper); padding: 140px 0; }
.h-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.h-case {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.h-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.1);
}
.h-case__industry {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.h-case__industry::before {
  content: '';
  width: 24px; height: 1px; background: var(--red);
}
.h-case__route {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.h-case__route-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, var(--red) 100%);
  position: relative;
}
.h-case__route-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--red);
}
.h-case__desc {
  color: #5a5f66;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 24px;
  flex-grow: 1;
}
.h-case__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.h-case__metric-val {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.h-case__metric-val span { color: var(--red); }
.h-case__metric-label {
  font-size: 0.78rem;
  color: #5a5f66;
  margin-top: 2px;
}
@media (max-width: 960px) {
  .h-cases__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CTA SPLIT — финальный блок
   ================================================================ */
.h-cta {
  background: var(--paper);
  padding: 0 0 120px;
}
.h-include + .h-cta { padding-top: 100px; }
.h-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 32px;
  overflow: hidden;
  background: var(--ink);
  min-height: 520px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
.h-cta__left {
  padding: 64px 56px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(135deg, rgba(29, 29, 27, 0.95) 0%, rgba(29, 29, 27, 0.6) 100%), url('../assets/img/banner_cta.png');
}
.h-cta__left::before {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(227,6,19,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.h-cta__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
}
.h-cta__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.h-cta__lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 38ch;
  margin: 0 0 32px;
}
.h-cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.h-cta__contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.h-cta__contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: var(--red);
}
.h-cta__contact-icon .icon { width: 22px; height: 22px; }
.h-cta__contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.h-cta__contact-val {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.h-cta__right {
  background: #fff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h-cta__form-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.h-cta__form-sub {
  color: #5a5f66;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.h-cta__form label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5a5f66;
  font-weight: 600;
  margin-bottom: 8px;
}
.h-cta__form .form-row { margin-bottom: 18px; }
.h-cta__form input,
.h-cta__form select,
.h-cta__form textarea {
  width: 100%;
  background: #f7f5f1;
  border: 1px solid transparent;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.h-cta__form input:focus,
.h-cta__form select:focus,
.h-cta__form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227,6,19,0.1);
}
.h-cta__form textarea { resize: vertical; min-height: 90px; }
.h-cta__form-foot {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.5;
}
.h-cta__form-foot a { color: var(--red); text-decoration: underline; }
.h-cta__form .form__success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: none;
  font-size: 0.92rem;
}
.h-cta__form .form__success.show { display: block; }

@media (max-width: 960px) {
  .h-cta__inner { grid-template-columns: 1fr; }
  .h-cta__left, .h-cta__right { padding: 48px 32px; }
}

/* ================================================================
   FOOTER override (премиум-стайл)
   ================================================================ */
body.home .footer { background: #050505; border-top: none; padding-top: 80px; }
body.home .footer__grid { gap: 56px; }
body.home .footer h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 22px;
}
body.home .footer__about p { font-size: 0.92rem; color: rgba(255,255,255,0.6); }

/* ================================================================
   ANIMATIONS — appear on scroll
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE — hero
   ================================================================ */
@media (max-width: 1100px) {
  .h-hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 100px 0 64px; }
  .h-hero__form { max-width: 460px; }
  .h-hero__scroll { display: none; }
}
@media (max-width: 720px) {
  .h-hero { min-height: auto; }
  .h-hero__inner { padding: 80px 0 56px; }
  .h-hero__meta { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .h-hero__cta { margin-bottom: 40px; }
  .h-hero__form { padding: 28px 22px; border-radius: 18px; }
  .h-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .h-stats__item { padding: 32px 20px; }
  .h-stats__grid .h-stats__item:nth-child(2) { border-left: 1px solid rgba(0,0,0,0.08); }
  .h-stats__grid .h-stats__item:nth-child(3) { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); }
  .h-stats__grid .h-stats__item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.08); }
  .h-section-head { grid-template-columns: 1fr; gap: 24px; }
  .h-fleet__card { flex: 0 0 280px; min-height: 400px; padding: 24px; }
}

/* ================================================================
   PAGE HERO — премиум-hero для подстраниц (без фото)
   ================================================================ */
.h-page-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 200px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.h-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(227,6,19,0.15) 0%, transparent 60%),
    radial-gradient(50% 50% at 15% 80%, rgba(227,6,19,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.h-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask: radial-gradient(80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask: radial-gradient(80% 70% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.h-page-hero > .container { position: relative; z-index: 3; }
/* Опциональный фон-баннер: положите файл в assets/img/ и раскомментируйте <img> */
.h-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.h-page-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: contrast(1.05) saturate(0.85);
}
.h-page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.6) 0%, rgba(11,11,12,0.25) 40%, rgba(11,11,12,0.95) 100%),
    radial-gradient(60% 60% at 15% 30%, rgba(11,11,12,0.45) 0%, transparent 70%);
  z-index: 2;
}
.h-page-hero__crumbs {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.h-page-hero__crumbs a { color: rgba(255,255,255,0.5); }
.h-page-hero__crumbs a:hover { color: var(--red); }
.h-page-hero__crumbs span.h-crumb-sep { opacity: 0.4; }
.h-page-hero__crumbs span.h-crumb-cur { color: var(--red); }
.h-page-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.h-page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 16ch;
}
.h-page-hero h1 .h-accent { color: var(--red); font-style: normal; }
.h-page-hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 50ch;
  margin: 0;
}
.h-page-hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line-d);
}
.h-page-hero__meta-item .h-page-hero__meta-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  display: block;
}
.h-page-hero__meta-item .h-page-hero__meta-num span { color: var(--red); }
.h-page-hero__meta-label {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 960px) {
  .h-page-hero { padding: 160px 0 80px; }
  .h-page-hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================================
   FILTERS — премиум-пилюли
   ================================================================ */
.h-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}
.h-filter-btn {
  background: transparent;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  letter-spacing: 0.01em;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.h-filter-btn:hover { background: rgba(0,0,0,0.04); }
.h-filter-btn.active {
  background: var(--ink);
  color: #fff;
}
.h-filter-btn__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: rgba(0,0,0,0.06);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
}
.h-filter-btn.active .h-filter-btn__count {
  background: var(--red);
  color: #fff;
}
@media (max-width: 720px) {
  .h-filters { overflow-x: auto; flex-wrap: nowrap; width: 100%; border-radius: 16px; padding: 6px; }
  .h-filter-btn { flex-shrink: 0; }
}

/* ================================================================
   SERVICE CARDS — премиум-сетка карточек услуг
   ================================================================ */
.h-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.h-svc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  text-decoration: none;
  color: inherit;
  min-height: 360px;
}
.h-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  border-color: rgba(227,6,19,0.4);
}
.h-svc-card--dark {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.h-svc-card--dark:hover { border-color: rgba(227,6,19,0.5); box-shadow: 0 32px 80px rgba(0,0,0,0.35); }
.h-svc-card--accent {
  background: linear-gradient(135deg, #e30613 0%, #b80510 100%);
  color: #fff;
  border-color: transparent;
}
.h-svc-card--accent:hover { box-shadow: 0 32px 80px rgba(227,6,19,0.35); }

.h-svc-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.h-svc-card__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.h-svc-card__num::after {
  content: '';
  width: 20px;
  height: 1px;
  background: currentColor;
}
.h-svc-card--accent .h-svc-card__num { color: rgba(255,255,255,0.7); }
.h-svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(227,6,19,0.08);
  border: 1px solid rgba(227,6,19,0.15);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.h-svc-card__icon .icon { width: 26px; height: 26px; }
.h-svc-card--dark .h-svc-card__icon {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--red);
}
.h-svc-card--accent .h-svc-card__icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.h-svc-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: inherit;
}
.h-svc-card__desc {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #5a5f66;
  margin: 0 0 24px;
  flex-grow: 1;
}
.h-svc-card--dark .h-svc-card__desc { color: rgba(255,255,255,0.65); }
.h-svc-card--accent .h-svc-card__desc { color: rgba(255,255,255,0.85); }

.h-svc-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.h-svc-card--dark .h-svc-card__foot { border-top-color: rgba(255,255,255,0.08); }
.h-svc-card--accent .h-svc-card__foot { border-top-color: rgba(255,255,255,0.2); }

.h-svc-card__price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
}
.h-svc-card--dark .h-svc-card__price { color: var(--red); }
.h-svc-card--accent .h-svc-card__price { color: #fff; }
.h-svc-card__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease);
}
.h-svc-card__arrow svg { width: 16px; height: 16px; }
.h-svc-card:hover .h-svc-card__arrow { transform: translate(4px, -4px) rotate(-15deg); background: var(--red); }
.h-svc-card--dark .h-svc-card__arrow { background: var(--red); }
.h-svc-card--accent .h-svc-card__arrow { background: rgba(0,0,0,0.25); }
.h-svc-card--accent:hover .h-svc-card__arrow { background: #fff; color: var(--red); }

.h-svc-card__category {
  display: none;
}

@media (max-width: 1100px) {
  .h-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .h-svc-grid { grid-template-columns: 1fr; }
  .h-svc-card { min-height: auto; }
}

/* ================================================================
   INCLUDE — "Включено в каждую услугу"
   ================================================================ */
.h-include {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.h-include::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 20% 50%, rgba(227,6,19,0.12) 0%, transparent 70%),
    radial-gradient(50% 50% at 80% 50%, rgba(227,6,19,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.h-include > .container { position: relative; z-index: 1; }
.h-include .h-section-head h2 { color: #fff; }
.h-include .h-section-head__lead { color: rgba(255,255,255,0.7); }

.h-include__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.h-include__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-d);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.h-include__item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(227,6,19,0.4);
  transform: translateY(-4px);
}
.h-include__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(227,6,19,0.12);
  border: 1px solid rgba(227,6,19,0.25);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.h-include__icon .icon { width: 28px; height: 28px; }
.h-include__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.h-include__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 960px) { .h-include__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .h-include__grid { grid-template-columns: 1fr; } }
@media (min-width: 961px) {
  .h-include__grid--3cols {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ================================================================
   COMPARE — сравнительная таблица услуг
   ================================================================ */
.h-compare {
  background: var(--paper);
  padding: 140px 0;
}
.h-compare__wrap {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.h-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
}
.h-compare__table thead th {
  background: var(--ink);
  color: #fff;
  padding: 28px 24px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.h-compare__table thead th:last-child { border-right: none; }
.h-compare__table thead th.is-highlight {
  background: linear-gradient(135deg, #e30613 0%, #b80510 100%);
}
.h-compare__table thead th .h-compare__head-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 8px;
}
.h-compare__table thead th.is-highlight .h-compare__head-sub { color: rgba(255,255,255,0.85); }

.h-compare__table tbody td {
  padding: 22px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-right: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--ink);
  vertical-align: top;
}
.h-compare__table tbody td:last-child { border-right: none; }
.h-compare__table tbody td:first-child {
  background: rgba(0,0,0,0.02);
  font-weight: 600;
  color: #5a5f66;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 22%;
}
.h-compare__table tbody td.is-highlight {
  background: rgba(227,6,19,0.04);
}
.h-compare__cell-val {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.h-compare__cell-sub {
  font-size: 0.85rem;
  color: #5a5f66;
}
.h-compare__check {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.h-compare__cross {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: #999;
}
.h-compare__check svg, .h-compare__cross svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .h-compare__wrap { overflow-x: auto; }
  .h-compare__table { min-width: 720px; }
}

/* ================================================================
   FLEET GRID — premium dark карточки техники в сетке
   ================================================================ */
.h-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.h-fleet-item {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  text-decoration: none;
  color: #fff;
}
.h-fleet-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  border-color: rgba(227, 6, 19, 0.5);
}
.h-fleet-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.h-fleet-item__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.h-fleet-item__num::after {
  content: '';
  width: 20px;
  height: 1px;
  background: currentColor;
}
.h-fleet-item__type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}
.h-fleet-item__art {
  height: 130px;
  margin-bottom: 22px;
  background: radial-gradient(60% 60% at center, rgba(227, 6, 19, 0.22) 0%, transparent 70%);
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.h-fleet-item__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.h-fleet-item__art .icon {
  width: 80px;
  height: 80px;
  stroke-width: 1.3;
  position: relative;
  z-index: 1;
}
.h-fleet-item__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.h-fleet-item__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
  margin-bottom: 20px;
}
.h-fleet-item__spec-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
  font-weight: 600;
}
.h-fleet-item__spec-val {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
.h-fleet-item__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-d);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.h-fleet-item__price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--red);
  font-size: 1.05rem;
  line-height: 1.15;
}
.h-fleet-item__price-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0;
}
.h-fleet-item__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.h-fleet-item__arrow svg { width: 16px; height: 16px; }
.h-fleet-item:hover .h-fleet-item__arrow {
  transform: translate(4px, -4px) rotate(-15deg);
}

@media (max-width: 1200px) {
  .h-fleet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .h-fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .h-fleet-item { min-height: auto; padding: 24px; }
}
@media (max-width: 540px) {
  .h-fleet-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Reduced motion
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .h-hero__bg-img,
  .h-marquee__track,
  .h-map__city-glow,
  .h-map__route,
  .h-hero__scroll-line::after {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------- Пользовательские фоны для бэнто-плиток (ПРИОРИТЕТ) ------------- */
body.home .h-bento .h-bento__cell.h-bento__cell--with-bg {
  background-image: none !important;
  background-color: transparent !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.home .h-bento .h-bento__cell.h-bento__cell--with-bg::before {
  content: '';
  position: absolute;
  inset: -6px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: -2;
  pointer-events: none;
}

/* Специфические фоны на псевдоэлементах с компенсацией рамок */
body.home .h-bento .h-bento__cell--ftl::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/ftl.png') !important;
}

body.home .h-bento .h-bento__cell--ltl::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/ltl.png') !important;
}

body.home .h-bento .h-bento__cell--container::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/container.png') !important;
}

body.home .h-bento .h-bento__cell--cis::before {
  background-image: linear-gradient(135deg, rgba(227,6,19,0.95) 0%, rgba(227,6,19,0.5) 100%), url('../assets/img/cis.png') !important;
}

body.home .h-bento .h-bento__cell--oversized::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/oversized.png') !important;
}

body.home .h-bento .h-bento__cell--adr::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/adr.png') !important;
}

body.home .h-bento .h-bento__cell.h-bento__cell--with-bg .h-bento__icon, 
body.home .h-bento .h-bento__cell.h-bento__cell--with-bg .h-bento__body {
  position: relative;
  z-index: 1;
}

body.home .h-bento .h-bento__cell.h-bento__cell--with-bg .h-bento__bg-icon {
  display: none !important;
}

/* ------------- Фоновые изображения для карточек каталога (services.html) ------------- */
.h-svc-card.h-svc-card--with-bg {
  background-image: none !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.h-svc-card.h-svc-card--with-bg::before {
  content: '';
  position: absolute;
  inset: -6px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: -2;
  pointer-events: none;
}

.h-svc-card.h-svc-card--with-bg > * {
  position: relative;
  z-index: 1;
}

/* Специфические фоны на псевдоэлементах для каталога услуг */
.h-svc-card--ftl::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/ftl.png') !important;
}

.h-svc-card--ltl::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/ltl.png') !important;
}

.h-svc-card--container::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/container.png') !important;
}

.h-svc-card--oversized::before {
  background-image: linear-gradient(135deg, rgba(227,6,19,0.95) 0%, rgba(227,6,19,0.5) 100%), url('../assets/img/oversized.png') !important;
}

.h-svc-card--adr::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/adr.png') !important;
}

.h-svc-card--cis::before {
  background-image: linear-gradient(135deg, rgba(227,6,19,0.95) 0%, rgba(227,6,19,0.5) 100%), url('../assets/img/cis.png') !important;
}

.h-svc-card--ved::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/ved.png') !important;
}

.h-svc-card--warehouse::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/warehouse.png') !important;
}

.h-svc-card--construction::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/construction.png') !important;
}

.h-svc-card--timber::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/timber.png') !important;
}

.h-svc-card--metal::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/metal.png') !important;
}

.h-svc-card--machinery::before {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 100%), url('../assets/img/machinery.png') !important;
}

.h-svc-card--special::before {
  background-image: linear-gradient(135deg, rgba(227,6,19,0.95) 0%, rgba(227,6,19,0.5) 100%), url('../assets/img/special.png') !important;
}

/* ------------- Фоновые изображения для карточек автопарка (fleet.html) ------------- */
.h-fleet-item.h-fleet-item--with-bg {
  background-image: none !important;
  background-color: transparent !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.h-fleet-item.h-fleet-item--with-bg::before {
  content: '';
  position: absolute;
  inset: -6px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: -2;
  pointer-events: none;
}

.h-fleet-item.h-fleet-item--with-bg > * {
  position: relative;
  z-index: 1;
}

.h-fleet-item.h-fleet-item--with-bg .h-fleet-item__art {
  display: none !important;
}

/* Специфические фоны на псевдоэлементах для автопарка */
.h-fleet-item--10t::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/fleet_10t.png') !important;
}

.h-fleet-item--ftl::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/ftl.png') !important;
}

.h-fleet-item--isotherm::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/fleet_isotherm.png') !important;
}

.h-fleet-item--flatbed::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/fleet_flatbed.png') !important;
}

.h-fleet-item--container40::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/container.png') !important;
}

.h-fleet-item--container20::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/container.png') !important;
}

.h-fleet-item--tral::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/oversized.png') !important;
}

.h-fleet-item--manipulator::before {
  background-image: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.4) 100%), url('../assets/img/fleet_manipulator.png') !important;
}

/* ------------- Фоновые изображения для карточек автопарка на главной (index.html) ------------- */
.h-fleet__card.h-fleet__card--with-bg {
  background-image: none !important;
  background-color: transparent !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.h-fleet__card.h-fleet__card--with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: -2;
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}

.h-fleet__card.h-fleet__card--with-bg:hover::before {
  transform: scale(1.06);
}

.h-fleet__card.h-fleet__card--with-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 80%, rgba(227,6,19,0.15) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.4) 40%, rgba(15,15,15,0.85) 100%);
  z-index: -1;
  pointer-events: none;
}

.h-fleet__card.h-fleet__card--with-bg .h-fleet__card-art {
  background: none !important;
  opacity: 0.15;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.h-fleet__card.h-fleet__card--with-bg:hover .h-fleet__card-art {
  opacity: 0.3;
  transform: scale(1.05);
}

.h-fleet__card--tent::before {
  background-image: url('../assets/img/fleet_card_tent.png') !important;
}

.h-fleet__card--isotherm::before {
  background-image: url('../assets/img/fleet_card_isotherm.png') !important;
}

.h-fleet__card--container::before {
  background-image: url('../assets/img/fleet_card_container.png') !important;
}

.h-fleet__card--tral::before {
  background-image: url('../assets/img/fleet_card_tral.png') !important;
}

.h-fleet__card--manipulator::before {
  background-image: url('../assets/img/fleet_card_manipulator.png') !important;
}


