:root {
  --bg: #071326;
  --bg-2: #0b1c35;
  --bg-3: #10233f;
  --graphite: #202733;
  --graphite-2: #3a4452;
  --text: #0b1220;
  --muted: #667487;
  --muted-2: #93a3b7;
  --white: #ffffff;
  --off-white: #f6f9fc;
  --silver: #d9e3ee;
  --silver-2: #b8c7d9;
  --electric: #36a3ff;
  --electric-2: #7fd0ff;
  --electric-3: #0c78d7;
  --line: rgba(148, 163, 184, 0.22);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(4, 16, 34, 0.18);
  --shadow-strong: 0 36px 120px rgba(1, 10, 25, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1220px;
  --header-h: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --hero-shift: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(54, 163, 255, .24); color: var(--bg); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: hidden; }
.section--dark {
  background:
    radial-gradient(circle at 78% 10%, rgba(54, 163, 255, .18), transparent 34%),
    linear-gradient(135deg, #071326 0%, #0b1c35 55%, #061122 100%);
  color: var(--white);
}
.section--light { background: var(--white); }
.section--soft { background: linear-gradient(180deg, #f6f9fc 0%, #eef4fa 100%); }
.section__head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, .52fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.section__head--center {
  display: block;
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}
.section__head--center .section__text { margin-inline: auto; }
.section__kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--electric-3);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.section--dark .section__kicker,
.section--dark .eyebrow { color: var(--electric-2); }
.section__kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .82;
}
.section__title,
h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: .96;
}
h1 { font-size: clamp(46px, 7.2vw, 96px); color: var(--white); max-width: 980px; }
h2, .section__title { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(24px, 3.1vw, 38px); }
h4 { font-size: 20px; }
p { margin: 0; line-height: 1.72; }
.section__text {
  color: var(--muted);
  font-size: 18px;
  max-width: 610px;
}
.section--dark .section__text { color: rgba(255,255,255,.72); }
.lead { font-size: 20px; line-height: 1.72; color: rgba(255,255,255,.76); max-width: 820px; }

.btn {
  --btn-bg: var(--electric);
  --btn-color: var(--white);
  --btn-border: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 16px 38px rgba(54, 163, 255, .28);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.btn::after {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10h10.2l-4.1-4.1L11.5 4.5 18 11l-6.5 6.5-1.4-1.4 4.1-4.1H4v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10h10.2l-4.1-4.1L11.5 4.5 18 11l-6.5 6.5-1.4-1.4 4.1-4.1H4v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .28s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 52px rgba(54, 163, 255, .34); }
.btn:hover::after { transform: translateX(4px); }
.btn--ghost {
  --btn-bg: rgba(255,255,255,.07);
  --btn-color: var(--white);
  --btn-border: rgba(255,255,255,.22);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.4); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.btn--light {
  --btn-bg: #ffffff;
  --btn-color: #071326;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .18);
}
.btn--small { min-height: 46px; padding: 0 18px; font-size: 14px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  min-height: var(--header-h);
  color: var(--white);
  transition: background .28s var(--ease), border-color .28s var(--ease), min-height .28s var(--ease), box-shadow .28s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 25, .72) 0%, rgba(4, 12, 25, .22) 80%, transparent 100%);
  pointer-events: none;
  transition: opacity .28s var(--ease);
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(7, 19, 38, .82);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .24);
}
.site-header.is-scrolled::before { opacity: 0; }
.header__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
}
.logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #071326 0%, #102a4e 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 16px 40px rgba(0,0,0,.22);
}
.logo__mark svg { width: 30px; }
.logo__text { display: grid; gap: 2px; }
.logo__name { font-size: 18px; font-weight: 900; letter-spacing: -.03em; }
.logo__caption { font-size: 11px; color: rgba(255,255,255,.62); letter-spacing: .08em; text-transform: uppercase; }
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.76);
  transition: color .2s ease, background .2s ease;
}
.nav a:hover,
.nav a.is-active { color: var(--white); background: rgba(255,255,255,.1); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
.header__mail::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ef3c4;
  box-shadow: 0 0 18px rgba(78, 243, 196, .8);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
  background: #071326;
  display: flex;
  align-items: stretch;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -60px 0 0 0;
  background-image:
    linear-gradient(90deg, rgba(7,19,38,.98) 0%, rgba(7,19,38,.86) 36%, rgba(7,19,38,.42) 68%, rgba(7,19,38,.78) 100%),
    linear-gradient(180deg, rgba(7,19,38,.2) 0%, rgba(7,19,38,.92) 100%),
    url("../img/hero-logistics.webp");
  background-size: cover;
  background-position: center;
  transform: translateY(var(--hero-shift)) scale(1.04);
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/route-lines.svg"), radial-gradient(circle at 78% 26%, rgba(54,163,255,.42), transparent 30%), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 1200px 800px, auto, 88px 88px, 88px 88px;
  background-position: right 4% top 8%, center, center, center;
  opacity: .7;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 78px);
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 56px;
  align-items: end;
}
.hero__main { align-self: center; padding-top: 38px; }
.hero .eyebrow { color: var(--electric-2); }
.hero__main h1 { margin-bottom: 28px; }
.hero__main .lead { margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero__indicators {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
  max-width: 970px;
}
.indicator {
  min-height: 116px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.085);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.indicator:hover { transform: translateY(-6px); border-color: rgba(127,208,255,.48); background: rgba(255,255,255,.11); }
.indicator strong { display: block; font-size: 30px; line-height: 1; letter-spacing: -.04em; margin-bottom: 12px; }
.indicator span { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.45; }
.hero__panel {
  align-self: end;
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54,163,255,.14), transparent 34%), url("../img/logistics-card.webp") center / cover;
  opacity: .52;
  mix-blend-mode: screen;
}
.hero__panel > * { position: relative; z-index: 1; }
.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 130px;
}
.panel__label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.72); font-weight: 900; }
.panel__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(5, 238, 196, .11);
  border: 1px solid rgba(78, 243, 196, .28);
  color: #bffdec;
  font-size: 12px;
  font-weight: 900;
}
.panel__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ef3c4; }
.panel__title { font-size: 32px; line-height: 1.02; letter-spacing: -.045em; margin-bottom: 18px; }
.panel__text { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.68; margin-bottom: 26px; }
.panel__grid { display: grid; gap: 10px; }
.panel__row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(2, 9, 21, .32);
  border: 1px solid rgba(255,255,255,.12);
}
.panel__row span { color: rgba(255,255,255,.56); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.panel__row strong { font-size: 14px; }

.marquee {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  overflow: hidden;
  background: #071326;
  color: rgba(255,255,255,.82);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  white-space: nowrap;
}
.marquee__item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--electric); box-shadow: 0 0 18px rgba(54,163,255,.8); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(350px, .62fr);
  gap: 56px;
  align-items: center;
}
.about-copy { display: grid; gap: 22px; }
.about-copy p { color: var(--muted); font-size: 18px; }
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #f4f8fc;
  border: 1px solid rgba(15, 35, 65, .08);
}
.about-point::before {
  content: "";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(54,163,255,.12);
  border: 1px solid rgba(54,163,255,.22);
  box-shadow: inset 0 0 0 7px rgba(54,163,255,.08);
}
.about-point strong { display: block; line-height: 1.3; margin-bottom: 4px; }
.about-point span { display: block; color: var(--muted); font-size: 14px; line-height: 1.5; }
.about-visual {
  position: relative;
  min-height: 630px;
}
.about-photo {
  position: absolute;
  inset: 0 0 100px 36px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 19, 38, .08);
  background: #dfe8f2;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(7,19,38,.72) 100%);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.timeline-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 430px);
  padding: 30px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #071326 0%, #10233f 100%);
  box-shadow: 0 26px 80px rgba(7,19,38,.28);
  border: 1px solid rgba(255,255,255,.12);
}
.timeline-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -24px;
  top: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,163,255,.42), transparent 70%);
}
.timeline-card h3 { font-size: 34px; margin-bottom: 14px; }
.timeline-card p { color: rgba(255,255,255,.72); font-size: 15px; }
.timeline-list { display: grid; gap: 12px; margin-top: 24px; }
.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: start;
}
.timeline-item strong { color: var(--electric-2); font-size: 15px; }
.timeline-item span { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.5; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(150deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .32s var(--ease), border-color .32s var(--ease), background .32s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--x, 80%) var(--y, 18%), rgba(54,163,255,.28), transparent 35%);
  opacity: .92;
  transition: opacity .32s var(--ease);
}
.service-card::after {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  bottom: 16px;
  font-size: 84px;
  font-weight: 950;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.045);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(127,208,255,.42); background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.045)); }
.service-card__icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(54,163,255,.13);
  border: 1px solid rgba(127,208,255,.26);
}
.service-card__icon svg { width: 28px; height: 28px; stroke: var(--electric-2); }
.service-card h3 { position: relative; z-index: 1; font-size: 27px; line-height: 1.08; margin-bottom: 18px; }
.service-card p { position: relative; z-index: 1; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.68; }
.service-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.service-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat-card {
  position: relative;
  padding: 34px 26px;
  min-height: 220px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15, 35, 65, .08);
  box-shadow: 0 22px 70px rgba(7,19,38,.08);
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,163,255,.18), transparent 70%);
}
.stat-card strong {
  position: relative;
  display: block;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: .9;
  letter-spacing: -.06em;
  color: var(--bg);
  margin-bottom: 18px;
}
.stat-card p { position: relative; color: var(--muted); font-size: 15px; }
.stat-card span { color: var(--electric-3); }

.why-layout {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.why-card {
  position: sticky;
  top: 104px;
  padding: 36px;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(145deg, #071326, #10233f);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/route-lines.svg") center/cover no-repeat;
  opacity: .22;
}
.why-card > * { position: relative; z-index: 1; }
.why-card h3 { margin-bottom: 18px; }
.why-card p { color: rgba(255,255,255,.72); }
.why-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.why-card__meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.why-item {
  padding: 24px;
  min-height: 150px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(15, 35, 65, .08);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.why-item:hover { transform: translateY(-5px); border-color: rgba(54,163,255,.24); box-shadow: 0 20px 62px rgba(7,19,38,.08); }
.why-item span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: rgba(54,163,255,.1);
  color: var(--electric-3);
  font-weight: 950;
}
.why-item strong { display: block; margin-bottom: 8px; font-size: 18px; }
.why-item p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}
.process__item {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
}
.process__item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--electric-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  margin-bottom: 54px;
}
.process__item::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 64px;
  width: 42px;
  height: 1px;
  background: var(--electric-2);
}
.process__item strong { display: block; font-size: 18px; margin-bottom: 12px; }
.process__item p { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.58; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-radius: 32px;
  color: var(--white);
  background: #071326;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(7,19,38,.12), rgba(7,19,38,.86)), var(--industry-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform .48s var(--ease), opacity .48s var(--ease);
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(54,163,255,.28), transparent 42%);
  opacity: .85;
}
.industry-card:hover::before { transform: scale(1.08); opacity: .92; }
.industry-card > * { position: relative; z-index: 1; }
.industry-card__label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.76);
  margin-bottom: 140px;
}
.industry-card h3 { font-size: 30px; margin-bottom: 14px; }
.industry-card p { color: rgba(255,255,255,.73); font-size: 15px; }

.cases {
  display: grid;
  gap: 20px;
}
.case-card {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
  gap: 0;
  min-height: 440px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid rgba(15,35,65,.08);
  box-shadow: 0 24px 78px rgba(7,19,38,.08);
  overflow: hidden;
}
.case-card__image { position: relative; min-height: 340px; background: #dce8f3; overflow: hidden; }
.case-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(7,19,38,.7) 100%);
}
.case-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.case-card:hover .case-card__image img { transform: scale(1.05); }
.case-card__tag {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7,19,38,.62);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
}
.case-card__content { padding: 42px; }
.case-card__content h3 { color: var(--bg); margin-bottom: 28px; }
.case-details { display: grid; gap: 18px; }
.case-detail {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,35,65,.1);
}
.case-detail strong { color: var(--electric-3); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; padding-top: 6px; }
.case-detail p { color: var(--muted); font-size: 15px; line-height: 1.62; }
.case-card__result {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.case-card__result span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf7ff;
  color: #0b579a;
  font-size: 12px;
  font-weight: 900;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  position: relative;
  min-height: 400px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  color: var(--white);
  overflow: hidden;
}
.review-card::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: -22px;
  font-size: 128px;
  line-height: 1;
  font-weight: 950;
  color: rgba(54,163,255,.16);
}
.review-card__rating { display: flex; gap: 4px; color: var(--electric-2); letter-spacing: .12em; margin-bottom: 28px; }
.review-card p { position: relative; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.72; margin-bottom: 32px; }
.review-card__author {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(54,163,255,.13);
  border: 1px solid rgba(127,208,255,.24);
  color: var(--electric-2);
  font-weight: 950;
}
.review-card__author strong { display: block; margin-bottom: 4px; }
.review-card__author span { color: rgba(255,255,255,.58); font-size: 13px; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .55fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 104px;
  padding: 34px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(15,35,65,.08);
  box-shadow: 0 22px 70px rgba(7,19,38,.08);
}
.faq-aside h3 { margin-bottom: 16px; color: var(--bg); }
.faq-aside p { color: var(--muted); }
.faq-aside .btn { margin-top: 24px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(15,35,65,.08);
  overflow: hidden;
  box-shadow: 0 12px 42px rgba(7,19,38,.04);
}
.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--bg);
  font-weight: 900;
}
.faq-question::after {
  content: "+";
  flex: 0 0 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf7ff;
  color: var(--electric-3);
  transition: transform .24s var(--ease), background .24s var(--ease);
}
.faq-question[aria-expanded="true"]::after { content: "−"; transform: rotate(180deg); background: var(--electric); color: #fff; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}
.faq-answer > div { overflow: hidden; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

.cta-band {
  position: relative;
  padding: 68px;
  border-radius: 42px;
  background:
    linear-gradient(120deg, rgba(7,19,38,.95), rgba(11,39,73,.9)),
    url("../img/passenger-transport.webp") center / cover;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/route-lines.svg") right center / 980px no-repeat;
  opacity: .36;
}
.cta-band__content { position: relative; z-index: 1; max-width: 780px; }
.cta-band h2 { margin-bottom: 22px; }
.cta-band p { color: rgba(255,255,255,.74); font-size: 18px; margin-bottom: 30px; }

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(320px, .58fr) minmax(0, .82fr);
  gap: 44px;
  align-items: start;
}
.contact-card {
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(145deg, #071326, #10233f);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.contact-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(54,163,255,.3), transparent 70%);
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h3 { margin-bottom: 18px; }
.contact-card p { color: rgba(255,255,255,.72); margin-bottom: 30px; }
.contact-list { display: grid; gap: 14px; }
.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(54,163,255,.13);
  color: var(--electric-2);
  font-weight: 950;
}
.contact-list strong { display: block; margin-bottom: 3px; }
.contact-list span { color: rgba(255,255,255,.62); font-size: 13px; }
.form-card {
  padding: 36px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid rgba(15,35,65,.08);
  box-shadow: 0 22px 72px rgba(7,19,38,.08);
}
.form-card h3 { color: var(--bg); margin-bottom: 12px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #243044; font-size: 13px; font-weight: 900; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(15,35,65,.14);
  border-radius: 17px;
  background: #f6f9fc;
  color: var(--bg);
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(54,163,255,.65);
  box-shadow: 0 0 0 4px rgba(54,163,255,.12);
  background: var(--white);
}
.field.is-error input,
.field.is-error textarea,
.field.is-error select { border-color: #e15353; box-shadow: 0 0 0 4px rgba(225, 83, 83, .1); }
.field__error { min-height: 16px; color: #bd3333; font-size: 12px; font-weight: 800; }
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--electric-3); }
.form-consent a { color: var(--electric-3); font-weight: 900; }
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.form-status { color: var(--muted); font-size: 14px; line-height: 1.45; }
.form-status.is-success { color: #06754f; font-weight: 800; }
.form-status.is-error { color: #bd3333; font-weight: 800; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.site-footer {
  background: #061122;
  color: var(--white);
  padding: 54px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) repeat(2, minmax(160px, .28fr));
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { color: rgba(255,255,255,.62); margin-top: 18px; max-width: 520px; }
.footer-title { font-weight: 950; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.72); }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade-left"] { transform: translateX(-32px); }
[data-reveal="fade-right"] { transform: translateX(32px); }
[data-reveal="fade-left"].is-visible,
[data-reveal="fade-right"].is-visible { transform: translateX(0); }

@media (max-width: 1160px) {
  .nav { position: fixed; right: 20px; top: 82px; width: min(360px, calc(100vw - 40px)); display: grid; border-radius: 24px; padding: 12px; background: rgba(7,19,38,.96); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-strong); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s var(--ease); }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { min-height: 48px; padding: 0 16px; font-size: 15px; }
  .menu-toggle { display: block; }
  .header__mail { display: none; }
  .hero__content { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 56px); }
  .hero__panel { min-height: auto; }
  .panel__top { margin-bottom: 90px; }
  .hero__indicators { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid, .industries-grid, .testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .section { padding: 84px 0; }
  .section__head, .about-grid, .why-layout, .faq-layout, .contacts-grid, .case-card { grid-template-columns: 1fr; }
  .section__head { gap: 20px; }
  .about-visual { min-height: 560px; }
  .about-photo { inset: 0 0 96px 0; }
  .why-card, .faq-aside { position: relative; top: auto; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-card__image { min-height: 300px; }
  .case-card__content { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-h: 74px; }
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero__content { padding-top: calc(var(--header-h) + 38px); gap: 28px; }
  .lead { font-size: 17px; }
  .hero__actions, .form-actions { align-items: stretch; }
  .btn { width: 100%; }
  .hero__indicators, .about-points, .services-grid, .stats-grid, .why-list, .industries-grid, .testimonials, .process, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .indicator { min-height: auto; }
  .hero__panel { padding: 22px; border-radius: 28px; }
  .panel__row { grid-template-columns: 1fr; gap: 6px; }
  .section__text { font-size: 16px; }
  .about-visual { min-height: 520px; }
  .timeline-card { padding: 24px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .service-card { min-height: auto; }
  .process__item { min-height: auto; }
  .industry-card { min-height: 280px; }
  .industry-card__label { margin-bottom: 102px; }
  .case-detail { grid-template-columns: 1fr; gap: 6px; }
  .review-card { min-height: 430px; }
  .cta-band { padding: 38px 24px; border-radius: 30px; }
  .contact-card, .form-card, .faq-aside { padding: 26px; border-radius: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .logo__caption { display: none; }
  .header__actions .btn { display: none; }
  .hero::after { opacity: .42; }
  .panel__top { margin-bottom: 60px; }
  .about-visual { min-height: 480px; }
  .review-card { min-height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero::before { transform: none; }
}
.industry-card--construction { --industry-img: url("../img/special-machinery.webp"); }
.industry-card--industry { --industry-img: url("../img/industrial-site.webp"); }
.industry-card--agriculture { --industry-img: url("../img/agro-logistics.webp"); }
.industry-card--municipal { --industry-img: url("../img/logistics-card.webp"); }
.industry-card--logistics { --industry-img: url("../img/hero-logistics.webp"); }
.industry-card--private { --industry-img: url("../img/passenger-transport.webp"); }
