/* ============================================================
   ГРУЗ.kg — чистая, профессиональная вёрстка
   ============================================================ */

:root {
  /* цвета */
  --bg: #ffffff;
  --paper: #f6f4ef;
  --dark: #0f0f10;
  --dark-2: #1a1a1c;
  --ink: #0f0f10;
  --ink-2: #4a4a4c;
  --ink-3: #8a8a8d;
  --line: #e8e6e1;
  --line-2: #2a2a2c;
  --accent: #ff5a1f;
  --accent-2: #ffe1d3;
  --yellow: #ffc220;
  --green-wa: #25D366;
  --blue-tg: #229ED9;

  /* типографика */
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;

  /* размеры */
  --container: 1320px;
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(80px, 11vw, 140px);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------- reset ----------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--ink); color: #fff; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; }

.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* skip-to-content для клавиатурной навигации */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--ink); color: #fff;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--accent); outline-offset: 2px; }

/* фокус-стиль для всех интерактивных */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,.55); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.0);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav__logo {
  font-weight: 800; font-size: 20px; letter-spacing: -.02em;
}
.nav__logo em { color: var(--accent); font-style: normal; }

.nav__links {
  display: flex; gap: 28px;
  margin-left: 16px; flex: 1;
}
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 6px 0; position: relative;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.nav__cta:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.nav__cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

.nav__burger { display: none; }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 24px; justify-content: center; align-items: flex-end;
    margin-left: auto;
  }
  .nav__burger span {
    display: block; width: 24px; height: 2px; background: var(--ink);
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
  }
  .nav__burger span:nth-child(2) { width: 18px; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }
}

/* мобильное меню */
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  padding-top: 100px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
}
.menu.is-open { transform: translateY(0); }
.menu__inner {
  display: flex; flex-direction: column; gap: 4px;
}
.menu__inner a {
  font-size: 28px; font-weight: 700; letter-spacing: -.02em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.menu__phone {
  margin-top: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-sm);
  font-size: 18px !important; border: 0 !important;
}

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--full { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(72px + clamp(40px, 7vw, 70px)) 0 clamp(60px, 9vw, 110px);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255,90,31,.08), transparent 60%),
    radial-gradient(600px 400px at 10% 110%, rgba(255,90,31,.05), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }

.hero__accent {
  color: var(--accent);
  background: none;
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
}

/* eyebrow в pill-форме */
.eyebrow--pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* price chips */
.hero__chips {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 130px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.chip:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.chip b {
  font-size: 26px; font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
}
.chip b em {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-3);
  margin-left: 2px;
}
.chip span {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

/* CTA-блок */
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}

/* строка-звонок снизу */
.hero__call-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(15,15,16,.04);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  transition: background .2s ease;
}
.hero__call-link b {
  color: var(--ink); font-weight: 700;
  margin-left: 2px;
  letter-spacing: -.01em;
}
.hero__call-link:hover { background: rgba(15,15,16,.08); }
.hero__call-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2bd47d;
  box-shadow: 0 0 0 4px rgba(43,212,125,.18);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* медиа-колонка с фото */
.hero__media { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow:
    0 30px 60px -30px rgba(15,15,16,.35),
    0 12px 24px -12px rgba(15,15,16,.18);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 1.2s var(--ease);
}
.hero__photo:hover img { transform: scale(1.03); }

/* badge снизу слева */
.hero__photo-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(15,15,16,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.hero__photo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2bd47d;
  box-shadow: 0 0 0 4px rgba(43,212,125,.25);
  animation: pulse 2s ease-in-out infinite;
}

/* штамп справа сверху */
.hero__photo-stamp {
  position: absolute;
  top: 18px; right: 18px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  transform: rotate(3deg);
  box-shadow: 0 10px 24px -8px rgba(255,90,31,.5);
}
.hero__photo-stamp b {
  font-size: 32px; font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.hero__photo-stamp em {
  font-style: normal;
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  opacity: .95;
}

@media (max-width: 920px) {
  .hero__media { order: -1; }
  .hero__photo { aspect-ratio: 16 / 10; }
  .hero__photo-stamp { transform: rotate(3deg) scale(.9); top: 12px; right: 12px; }
  .hero__photo-badge { bottom: 12px; left: 12px; }
}
.hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero__col { display: flex; flex-direction: column; }

.hero__title {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  max-width: 18ch;
}
.hero__accent {
  color: var(--accent);
  background: linear-gradient(180deg, transparent 65%, var(--accent-2) 65%);
  padding: 0 4px;
  border-radius: 4px;
}

.hero__sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 32px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43,212,125,.18); }
  50% { box-shadow: 0 0 0 8px rgba(43,212,125,.06); }
}

/* ============================================================
   TRUST + MARQUEE
   ============================================================ */
.trust {
  padding: 60px 0 0;
  background: var(--bg);
}
.trust__inner {
  text-align: center;
  padding-bottom: 36px;
}
.trust__inner p {
  font-size: 16px; color: var(--ink-2);
  max-width: 640px; margin: 0 auto;
}

.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.marquee__track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track span {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.marquee__track span:nth-child(even) {
  color: var(--accent);
  font-weight: 400;
}

/* ============================================================
   SECTION (общая обёртка)
   ============================================================ */
.section {
  padding: var(--pad-y) 0;
}
.section--paper { background: var(--paper); }
.section--dark {
  background: var(--dark);
  color: #fff;
}
.section--dark .section__sub { color: rgba(255,255,255,.55); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.section__head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
.section__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-2);
}

/* ============================================================
   УСЛУГИ
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

.srv {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.srv:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px -20px rgba(15,15,16,.12);
}
.srv__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
}
.srv__title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.srv__desc {
  color: var(--ink-2);
  font-size: 15px;
  flex: 1;
}
.srv__list {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.srv__list li b { color: var(--ink); font-weight: 700; }
.srv__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px;
  color: var(--ink);
  align-self: flex-start;
  padding: 8px 0;
  border-bottom: 2px solid var(--ink);
  transition: gap .25s ease, color .25s ease, border-color .25s ease;
}
.srv__link:hover { gap: 12px; color: var(--accent); border-color: var(--accent); }

.srv--accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.srv--accent .srv__num { color: rgba(255,255,255,.5); }
.srv--accent .srv__desc { color: rgba(255,255,255,.7); }
.srv--accent .srv__list { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.12); }
.srv--accent .srv__list li b { color: #fff; }
.srv--accent .srv__link { color: var(--accent); border-color: var(--accent); }
.srv--accent .srv__link:hover { color: #fff; border-color: #fff; }
.srv--accent:hover { border-color: var(--accent); }

/* ============================================================
   КАЛЬКУЛЯТОР
   ============================================================ */
.calc {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }

.calc__form {
  padding: clamp(24px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 28px;
}

.calc__row { display: flex; flex-direction: column; gap: 10px; }
.calc__row-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.calc__row-head label {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: .06em;
}
.calc__row-val {
  font-size: 15px; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
}

.calc__tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.calc__tabs button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  transition: all .2s ease;
}
.calc__tabs button:hover { border-color: var(--ink); color: var(--ink); }
.calc__tabs button.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

/* slider */
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--line); border-radius: 999px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  background: var(--ink);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { background: var(--accent); transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--ink);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.calc__scale {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
}

/* checkbox */
.calc__check {
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer;
  font-size: 14px; color: var(--ink-2);
  user-select: none;
  margin-top: 4px;
}
.calc__check small {
  color: var(--ink-3);
  font-size: 12px;
  margin-left: 4px;
}
.calc__check input { display: none; }
.calc__box {
  width: 22px; height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.calc__check input:checked + .calc__box {
  background: var(--ink); border-color: var(--ink);
}
.calc__check input:checked + .calc__box::after {
  content: ""; position: absolute;
  top: 4px; left: 7px;
  width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* output */
.calc__out {
  background: var(--ink); color: #fff;
  padding: clamp(24px, 3.5vw, 40px);
  display: flex; flex-direction: column; gap: 20px;
}
.calc__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.calc__price b {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.calc__price em {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-mono);
}

.calc__break {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.calc__break > div {
  display: flex; justify-content: space-between;
  font-size: 14px;
}
.calc__break span { color: rgba(255,255,255,.6); }
.calc__break b { font-weight: 600; }

.calc__note {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: -8px;
}

/* ============================================================
   ТРАНСПОРТ
   ============================================================ */
.fleet {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.fleet--2 { grid-template-columns: repeat(2, 1fr); max-width: 980px; }
@media (max-width: 960px) {
  .fleet { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .fleet, .fleet--2 { grid-template-columns: 1fr; }
}

.veh {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.veh:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(15,15,16,.12);
}

.veh__photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--paper) 0%, #ebe7df 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* плейсхолдер показывается только если внутри нет <img> */
.veh__photo[data-photo]:not(:has(img))::before {
  content: "Фото: " attr(data-photo);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.veh__photo[data-photo]:not(:has(img))::after {
  content: ""; position: absolute; inset: 16px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.veh__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.veh:hover .veh__photo img { transform: scale(1.04); }

/* штамп «до 700 кг» */
.veh__photo-stamp {
  position: absolute;
  top: 12px; right: 12px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 8px 20px -6px rgba(255,90,31,.5);
}

.veh__body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.veh__body h3 {
  font-size: 24px; font-weight: 700;
  letter-spacing: -.02em;
}
.veh__desc {
  font-size: 14px; color: var(--ink-2);
  flex: 1;
}
.veh__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.veh__specs > div { display: flex; flex-direction: column; gap: 2px; }
.veh__specs dt {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-mono);
}
.veh__specs dd {
  font-size: 16px; font-weight: 700;
  letter-spacing: -.01em;
}

/* ============================================================
   ПРОЦЕСС
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

.process__step {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}
.process__step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: #202023;
}
.process__num {
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: .05em;
}
.process__step h3 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}
.process__step p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contact {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .contact { grid-template-columns: 1fr; } }

.ct {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; align-items: center; gap: 16px;
  transition: transform .3s var(--ease), border-color .3s ease, color .3s ease, background .3s ease;
}
.ct:hover { transform: translateY(-4px); }
.ct svg { width: 32px; height: 32px; flex-shrink: 0; transition: transform .3s var(--ease); }
.ct:hover svg { transform: scale(1.1); }
.ct div { display: flex; flex-direction: column; gap: 2px; }
.ct small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2px;
}
.ct b { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.ct span { font-size: 13px; color: var(--ink-3); }
.ct--wa:hover small, .ct--tg:hover small, .ct--ig:hover small, .ct--ph:hover small {
  color: rgba(255,255,255,.65);
}

.ct--wa:hover { background: var(--green-wa); color: #fff; border-color: var(--green-wa); }
.ct--wa:hover span { color: rgba(255,255,255,.8); }
.ct--tg:hover { background: var(--blue-tg); color: #fff; border-color: var(--blue-tg); }
.ct--tg:hover span { color: rgba(255,255,255,.8); }
.ct--ig:hover {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: #fff; border-color: transparent;
}
.ct--ig:hover span { color: rgba(255,255,255,.85); }
.ct--ph:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.ct--ph:hover span { color: rgba(255,255,255,.7); }

/* ============================================================
   ФУТЕР
   ============================================================ */
.ft {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.ft__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .ft__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ft__top { grid-template-columns: 1fr; gap: 30px; } }

.ft__col p { font-size: 14px; line-height: 1.6; }
.ft__col a { color: rgba(255,255,255,.7); transition: color .2s ease; }
.ft__col a:hover { color: var(--accent); }

.ft__logo {
  font-size: 24px; font-weight: 800;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.ft__logo em { color: var(--accent); font-style: normal; }

.ft__lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}

.ft__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 58px; height: 58px;
  background: var(--green-wa);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37,211,102,.5);
}
.float svg { width: 30px; height: 30px; }

@media (max-width: 640px) {
  .float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .float svg { width: 26px; height: 26px; }
}

/* ============================================================
   ANIMATION HELPERS
   ============================================================ */
[data-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-fade] { opacity: 1; transform: none; }
}
