:root {
  --navy: #0b2344;
  --navy-2: #123966;
  --ink: #122033;
  --graphite: #2a3342;
  --muted: #66758a;
  --line: #dbe4ef;
  --soft: #f5f8fc;
  --blue: #1f6feb;
  --orange: #d89422;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 35, 68, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,228,239,.78);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { box-shadow: 0 12px 40px rgba(13,35,68,.08); }
.brand {
  position: relative;
  width: 270px;
  height: 72px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 258px;
  height: auto;
  filter: drop-shadow(0 3px 7px rgba(13,35,68,.16));
}
.brand::after {
  content: "";
  position: absolute;
  left: 86px;
  right: 12px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}
.nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 800; color: var(--graphite); }
.nav a { opacity: .78; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { font-weight: 800; color: var(--navy); white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 5px auto; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 32px rgba(31,111,235,.24); }
.btn-dark { color: #fff; background: var(--navy); }
.btn-ghost { color: var(--navy); background: #fff; border-color: var(--line); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 13px; }

.hero {
  position: relative;
  padding: 142px 0 78px;
  min-height: 760px;
  background: linear-gradient(110deg, #fff 0%, #fff 48%, #f5f8fc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(31,111,235,.12), transparent 32%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 16px;
}
h3 { color: var(--navy); font-size: 19px; line-height: 1.25; margin-bottom: 8px; }
.lead { max-width: 670px; margin-bottom: 34px; color: #536276; font-size: 19px; }
.hero-actions, .contact-buttons, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-facts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 24px rgba(13,35,68,.06);
  font-size: 14px;
  font-weight: 800;
}

.visual-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.visual-top, .visual-stats { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.visual-top { margin-bottom: 14px; color: var(--muted); }
.visual-top strong { color: var(--navy); }
.route-map { min-height: 310px; }
.map-shape { fill: rgba(31,111,235,.07); stroke: rgba(13,35,68,.14); stroke-width: 2; }
.map-shape.muted { opacity: .6; }
.route {
  fill: none;
  stroke: url(#routeGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 13;
  animation: dash 4s linear infinite;
}
.route-delay { animation-delay: -1.2s; }
.route-long { animation-delay: -2s; }
.points circle { fill: var(--orange); stroke: #fff; stroke-width: 3; filter: drop-shadow(0 0 9px rgba(216,148,34,.35)); }
.points text { fill: var(--navy); font-size: 16px; font-weight: 900; }
@keyframes dash { to { stroke-dashoffset: -92; } }
.visual-stats { border-top: 1px solid var(--line); padding-top: 18px; }
.visual-stats div { display: grid; gap: 2px; }
.visual-stats b { color: var(--navy); font-size: 27px; line-height: 1; }
.visual-stats span { color: var(--muted); font-size: 13px; }

.section { padding: 90px 0; }
.section-tint { background: var(--soft); }
.section-title { max-width: 780px; margin-bottom: 34px; }
.section-title p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.intro-grid, .docs-layout, .request-layout, .contacts-layout, .faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.intro-text p { color: var(--muted); font-size: 17px; }
.requisites {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.requisites span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.requisites small { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.supply-grid, .benefit-grid, .case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.supply-card, .benefit, .case-card, .contact-card, .form, .doc-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13,35,68,.06);
}
.supply-card, .case-card { padding: 22px; transition: transform .18s, box-shadow .18s; }
.supply-card:hover, .case-card:hover, .benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.supply-card span, .case-card span { color: var(--blue); font-size: 13px; font-weight: 900; }
.supply-card p, .case-card p, .benefit span { color: var(--muted); margin-bottom: 0; }

.brands-section {
  padding: 86px 0;
  background: #fff;
  overflow: hidden;
}
.brands-section .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.brand-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #fff, var(--soft), #fff);
}
.brand-carousel::before,
.brand-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(14vw, 150px);
  height: 100%;
  pointer-events: none;
}
.brand-carousel::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.brand-carousel::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.brand-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  animation: brands-marquee 55s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }
.brand-track span {
  min-width: 156px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(13,35,68,.06);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}
@keyframes brands-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.geography-band, .procurement {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.geography-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11,35,68,.94), rgba(11,35,68,.78)),
    url("assets/hero-logistics.jpg") center/cover no-repeat;
}
.geography-band h2 { color: #fff; }
.geography-band p { color: rgba(255,255,255,.76); }
.geography-band .eyebrow { color: #f5b64b; }
.geography-band .region-list span {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.geography-band p, .procurement p { color: var(--muted); font-size: 17px; }
.region-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.region-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 900;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  counter-reset: process;
}
.process-list li {
  min-height: 185px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.process-list li::before {
  counter-increment: process;
  content: counter(process);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}
.process-list b, .process-list span { display: block; }
.process-list span { margin-top: 8px; color: var(--muted); font-size: 14px; }

.procurement ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.procurement li {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
  font-weight: 900;
}
.procurement li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--orange);
}
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.benefit { padding: 24px; display: grid; gap: 8px; transition: transform .18s, box-shadow .18s; }
.benefit b { color: var(--navy); }
.doc-list { display: grid; gap: 12px; }
.doc-list a {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-weight: 900;
}
.doc-list b { color: var(--blue); }
.case-grid { grid-template-columns: repeat(3, 1fr); }

.request-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11,35,68,.98), rgba(18,57,102,.94)),
    url("assets/hero-logistics.jpg") center/cover no-repeat;
}
.request-section h2 { color: #fff; }
.request-section .section-title p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.request-section .btn-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.26); }
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  color: var(--ink);
}
.form label { display: grid; gap: 7px; color: var(--graphite); font-size: 13px; font-weight: 900; }
.form .full { grid-column: 1 / -1; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
textarea { resize: vertical; }
.file-field input { padding: 11px; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; color: var(--muted) !important; font-weight: 600 !important; }
.consent input { width: 18px; height: 18px; margin-top: 3px; }
.consent a { color: var(--blue); font-weight: 900; }
.form-status { margin: 0; color: var(--blue); font-weight: 900; }

.faq { display: grid; gap: 12px; }
details { padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
summary { cursor: pointer; color: var(--navy); font-weight: 900; }
details p { margin: 12px 0 0; color: var(--muted); }
.contact-card {
  padding: 30px;
  display: grid;
  gap: 12px;
  font-style: normal;
}
.contact-card a { color: var(--blue); font-weight: 900; }
.contact-card .btn-primary { color: #fff; }
.contact-card .btn-ghost { color: var(--blue); }
.footer { padding: 26px 0; background: #081426; color: rgba(255,255,255,.72); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.legal-content { max-width: 920px; }
.legal-content h1 { color: var(--navy); font-size: clamp(34px, 5vw, 54px); line-height: 1.08; }
.legal-content h2 { margin-top: 34px; font-size: 24px; }
.legal-content a:not(.btn) { color: var(--blue); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav, .phone-link { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: grid;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .hero-layout, .intro-grid, .docs-layout, .request-layout, .contacts-layout, .faq-layout, .geography-band, .procurement {
    grid-template-columns: 1fr;
  }
  .supply-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 74px; padding: 0 14px; }
  .brand { width: 178px; height: 58px; }
  .brand img { width: 174px; }
  .brand::after { left: 58px; right: 8px; bottom: 3px; height: 2px; }
  .header-actions .btn { display: none; }
  .nav.open { top: 74px; left: 14px; right: 14px; }
  .hero { min-height: auto; padding: 112px 0 54px; }
  .hero-layout { gap: 28px; }
  h1 { font-size: 34px; line-height: 1.05; }
  h2 { font-size: 28px; line-height: 1.14; }
  .lead { font-size: 16px; }
  .hero-actions, .contact-buttons, .contact-actions { align-items: stretch; }
  .btn { width: 100%; }
  .visual-card { padding: 14px; overflow: hidden; }
  .route-map { width: 118%; max-width: none; min-height: 210px; margin-left: -9%; }
  .visual-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .section { padding: 64px 0; }
  .section-title { margin-bottom: 24px; }
  .requisites, .supply-grid, .benefit-grid, .case-grid, .region-list, .form { grid-template-columns: 1fr; }
  .geography-band, .procurement { padding: 24px; }
  .brand-track { animation-duration: 70s; gap: 10px; padding: 18px 0; }
  .brand-track span { min-width: 132px; min-height: 56px; padding: 12px 16px; font-size: 14px; }
  .process-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .process-list li { min-width: 260px; min-height: auto; scroll-snap-align: start; }
  .form { padding: 20px; }
  input, textarea { font-size: 16px; }
  .legal-content h1 { font-size: 32px; }
  .legal-content h2 { font-size: 22px; }
  .footer-inner { display: grid; }
}
