/* ===== Design tokens ===== */
:root {
  --white: #ffffff;
  --sky: #eef3ff;
  --sky-2: #dfe9ff;
  --blue: #2f5be0;
  --blue-dark: #1a3fae;
  --navy: #10265f;
  --gray-50: #f7f8fb;
  --gray-100: #eef0f4;
  --gray-300: #ccd2e0;
  --gray-500: #6b7488;
  --gray-700: #35405c;
  --text: #1c2440;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(26, 63, 174, 0.08);
  --shadow-md: 0 12px 32px rgba(26, 63, 174, 0.12);
  --container: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; overflow-wrap: break-word; }
p { margin: 0 0 1em; color: var(--gray-700); overflow-wrap: break-word; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; border: none; font-weight: 700;
  font-size: 15px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center; max-width: 100%;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--blue-dark); border: 1.5px solid var(--sky-2); }
.btn-outline:hover { border-color: var(--blue); }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-xs { padding: 8px 14px; font-size: 12.5px; }
.btn-block { width: 100%; }
.link-cta { color: var(--blue); font-weight: 700; background: none; border: none; padding: 6px 0; font-size: 15px; }
.link-cta:hover { text-decoration: underline; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-100);
}
.site-header .container { max-width: 1560px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 10px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 16.5px; color: var(--navy); flex-shrink: 0; }
.logo-text.light { color: #fff; font-size: 20px; margin-bottom: 10px; }
.main-nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; min-width: 0; }
.main-nav a { font-size: 12.5px; font-weight: 600; color: var(--gray-700); padding: 8px 0; white-space: nowrap; }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 5px; font-weight: 700; font-size: 13px; color: var(--navy); white-space: nowrap; flex-shrink: 0; }
.header-messengers { display: flex; gap: 5px; flex-shrink: 0; }
.msg-icon {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff; background: var(--blue); flex-shrink: 0;
}
.msg-icon.msg-tg { background: #229ed9; }
.msg-icon.msg-vb { background: #7360f2; }
.msg-icon.msg-wa { background: #25d366; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ===== Hero ===== */
.hero { padding: 56px 0 40px; background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero-inner > * { min-width: 0; }
.hero h1 { font-size: clamp(32px, 4.2vw, 50px); color: var(--navy); }
.hero-sub { font-size: 17px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 12px; }
.hero-svg { width: 100%; height: auto; }
.hero-art { animation: fadeUp .8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: translateY(0);} }

/* ===== Sections common ===== */
main section { padding: 64px 0; }

/* Deliberately no scroll-linked "hide then reveal" animation on sections:
   both the IntersectionObserver and CSS animation-timeline(view()) variants
   were tried and dropped — each can leave content invisible whenever the
   trigger doesn't fire in time (JS failure, crawler not scrolling, headless
   full-page capture, some browsers' handling of offscreen scroll-timelines).
   On an SEO/conversion site, content must default to visible. Section
   entrances stay static; the hero graphic, counters and card hovers below
   carry the "site feels alive" job with animations that are time-based
   (always resolve) rather than scroll-position-based.  */
.section-head { max-width: 640px; margin: 0 auto 36px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); color: var(--navy); }

/* ===== Calc section ===== */
.calc-section { background: var(--navy); color: #fff; position: relative; }
.calc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.calc-info h2 { color: #fff; font-size: clamp(24px,3vw,32px); }
.calc-info p { color: #c4cdea; }
.calc-points { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.calc-points li { color: #dfe6fb; font-weight: 600; font-size: 14.5px; display: flex; gap: 8px; align-items: center; }
.calc-points li::before { content: "✓"; color: #7fd7a0; font-weight: 800; }
.calc-card, .popup-panel {
  background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-md);
}
.calc-cta-card { display: flex; align-items: center; justify-content: center; }

.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-100);
  background: var(--gray-50); font-family: inherit; font-size: 14.5px; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: 12px; color: var(--gray-500); margin-top: 10px; }
.route-estimate {
  background: var(--sky); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px; font-weight: 700;
  color: var(--blue-dark); margin: 4px 0 14px;
}
.form-success { text-align: center; padding: 30px 10px; }
.form-success h3 { color: var(--blue-dark); }

/* ===== Stats ===== */
.stats-section { background: var(--sky); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.stat-value { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: var(--blue-dark); }
.stat-label { font-size: 13px; color: var(--gray-700); font-weight: 600; margin-top: 4px; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sky); margin-bottom: 14px; position: relative; }
.service-icon::after { content: "🚚"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.service-card h3 { font-size: 16.5px; color: var(--navy); }
.service-card p { font-size: 13.5px; margin-bottom: 14px; }
.service-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

/* ===== Feature split ===== */
.feature-split { background: var(--gray-50); }
.feature-split-inner { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 24px; align-items: center; }
.feature-svg { width: 100%; }
.feature-copy h2 { color: var(--navy); font-size: clamp(22px, 2.8vw, 30px); }
.feature-quote { background: var(--sky); border-radius: var(--radius-md); padding: 22px; }
.feature-quote p { font-style: italic; color: var(--navy); font-weight: 600; }
.stars { color: #f5a524; letter-spacing: 2px; margin: 6px 0; }
.feature-quote-meta { font-size: 12.5px; color: var(--gray-500); }

/* ===== Cargo chips ===== */
.cargo-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cargo-chip {
  border: 1.5px solid var(--sky-2); background: #fff; border-radius: 999px; padding: 10px 18px;
  font-size: 13.5px; font-weight: 600; color: var(--gray-700); transition: all .15s ease;
}
.cargo-chip:hover { background: var(--sky); border-color: var(--blue); color: var(--blue-dark); }
.cargo-chip.static { cursor: default; }
.chips-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }

/* ===== Why us ===== */
.why-section { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.why-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); font-size: 14.5px; }
.why-check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}

/* ===== Tariffs ===== */
.tariffs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tariff-card { background: var(--sky); border-radius: var(--radius-md); padding: 22px; }
.tariff-card h4 { color: var(--navy); font-size: 15.5px; }
.tariff-card p { font-size: 13.5px; margin: 0; }
.tariffs-cta { text-align: center; margin-top: 30px; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-item { position: relative; padding-top: 6px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px;
}
.step-item h4 { font-size: 15px; color: var(--navy); }
.step-item p { font-size: 13.5px; }

/* ===== Geography ===== */
.geo-section { background: var(--gray-50); }
.geo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.geo-col h4 { color: var(--navy); font-size: 15px; margin-bottom: 12px; }
.geo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.geo-chip { background: #fff; border: 1px solid var(--gray-100); border-radius: 999px; padding: 7px 14px; font-size: 13px; color: var(--gray-700); }
.geo-routes h4 { color: var(--navy); font-size: 15px; margin-bottom: 12px; }
.geo-route-links { display: flex; flex-wrap: wrap; gap: 10px; }
.geo-route-link { background: var(--sky); border-radius: 999px; padding: 9px 16px; font-size: 13.5px; font-weight: 700; color: var(--blue-dark); }
.geo-route-link:hover { background: var(--sky-2); }

/* ===== Business ===== */
.business-section { background: var(--navy); color: #fff; }
.business-inner h2 { color: #fff; font-size: clamp(22px,2.8vw,30px); max-width: 560px; }
.business-inner p { color: #c4cdea; max-width: 560px; }
.business-audience { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 22px; }
.business-audience span { background: rgba(255,255,255,.1); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600; }

/* ===== Cases ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.case-route { font-weight: 800; color: var(--blue-dark); font-size: 16px; margin-bottom: 12px; }
.case-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin: 0 0 12px; }
.case-card dl div { font-size: 12.5px; }
.case-card dt { color: var(--gray-500); }
.case-card dd { margin: 0; font-weight: 700; color: var(--navy); }
.case-task, .case-solution { font-size: 13px; margin-bottom: 6px; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--gray-50); border-radius: var(--radius-md); padding: 22px; }
.review-card p { color: var(--navy); font-size: 14px; }
.review-meta { display: flex; flex-direction: column; font-size: 12.5px; color: var(--gray-500); }
.review-meta strong { color: var(--navy); font-size: 13.5px; }
.review-type { margin-top: 4px; color: var(--blue); font-weight: 700; }

/* ===== Urgent CTA ===== */
.urgent-section { background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; border-radius: 0; }
.urgent-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.urgent-copy h2 { color: #fff; font-size: clamp(24px,3vw,32px); }
.urgent-copy p { color: #e3e9ff; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left;
  padding: 16px 18px; background: var(--gray-50); border: none; font-weight: 700; font-size: 14.5px; color: var(--navy);
}
.faq-chevron { transition: transform .2s ease; color: var(--blue); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 18px; }
.faq-answer p { padding-top: 14px; font-size: 13.5px; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ===== Final CTA ===== */
.final-cta-section { background: var(--sky); }
.final-cta-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.final-cta-copy h2 { color: var(--navy); font-size: clamp(24px,3vw,32px); }
.final-form { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #c4cdea; padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer-brand p { color: #9fb0dc; font-size: 13.5px; }
.footer-messengers { display: flex; gap: 14px; margin-top: 10px; }
.footer-messengers a { font-size: 13px; font-weight: 700; color: #fff; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col li { font-size: 13.5px; color: #b7c2e6; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: #8b9ac2;
}
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a:hover { color: #fff; }

/* ===== Mobile sticky bar ===== */
.mobile-sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: #fff; border-top: 1px solid var(--gray-100); box-shadow: 0 -6px 20px rgba(16,38,95,.08);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Popups ===== */
.popup { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup[hidden] { display: none; }
.popup-overlay { position: absolute; inset: 0; background: rgba(16, 38, 95, .55); backdrop-filter: blur(2px); }
.popup-panel { position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; }
.popup-panel-sm { max-width: 400px; }
.popup-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--gray-100); font-size: 18px; color: var(--gray-700); line-height: 1;
}
.popup-sub { font-size: 13.5px; color: var(--gray-500); margin-top: -6px; }
body.popup-open { overflow: hidden; }

/* ===== Page hero (inner pages) ===== */
.page-hero { padding: 48px 0 30px; background: var(--gray-50); }
.page-hero h1 { color: var(--navy); font-size: clamp(28px, 3.5vw, 40px); }
.breadcrumbs { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; }
.breadcrumbs a { color: var(--blue); }
.route-facts { display: flex; gap: 30px; margin: 18px 0; }
.fact-label { display: block; font-size: 12px; color: var(--gray-500); }
.fact-value { font-size: 20px; font-weight: 800; color: var(--blue-dark); }

/* ===== Fleet (avtopark) ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fleet-card { border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.fleet-art { background: var(--sky); border-radius: var(--radius-sm); margin-bottom: 16px; padding: 10px; }
.fleet-desc { font-size: 13.5px; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin: 12px 0 18px; }
.fleet-specs div { font-size: 12px; }
.fleet-specs dt { color: var(--gray-500); }
.fleet-specs dd { margin: 0; font-weight: 700; color: var(--navy); }
.fleet-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===== Service / route detail ===== */
.service-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.check-list li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14.5px; color: var(--gray-700); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.service-side-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 100px; }

/* ===== Routes list ===== */
.routes-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.route-card { border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.route-card-title { font-weight: 800; color: var(--navy); font-size: 17px; margin-bottom: 8px; }
.route-card p { font-size: 13.5px; }
.route-card-meta { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--blue-dark); }

/* ===== Contacts ===== */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact-row { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; flex-wrap: wrap; }
.contact-row span:first-child { color: var(--gray-500); flex-shrink: 0; }
.contact-row span:last-child, .contact-row a { word-break: break-word; text-align: right; }

/* Grid items default to min-width:auto, which lets long unbreakable content
   force a track wider than its fr share and silently overflow the grid.
   Zero it out on every card grid used on the site. */
.services-grid > *, .fleet-grid > *, .cases-grid > *, .reviews-grid > *,
.routes-list-grid > *, .steps-grid > *, .tariffs-grid > *, .stats-grid > *,
.geo-cols > * { min-width: 0; }

/* ===== Utility ===== */
.truncate { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== Responsive ===== */

/* Header: a 9-item nav + phone + 3 messenger icons + CTA button is a lot to
   fit next to a logo once Ukrainian label lengths are accounted for. Shed
   the least-important pieces first (messenger icons — still reachable via
   the mobile sticky bar, footer, popups and contact page) so the full nav
   keeps working on ordinary laptop widths, and only collapse to a hamburger
   once there genuinely isn't room for the nav itself. */
@media (max-width: 1620px) {
  .header-messengers { display: none; }
}

@media (max-width: 1220px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    padding: 8px 20px 16px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--gray-100);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .header-actions { flex-shrink: 1; min-width: 0; }
  .header-actions .btn { min-width: 0; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid, .reviews-grid, .fleet-grid, .routes-list-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tariffs-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split-inner { grid-template-columns: 1fr; text-align: center; }
  .feature-art, .feature-quote { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
  .calc-grid, .final-cta-inner, .contacts-grid, .service-detail-grid, .urgent-inner { grid-template-columns: 1fr; }
  .service-side-card { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .geo-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-sticky-bar { display: block; }
  main, .site-footer { padding-bottom: 76px; }
  body { padding-bottom: 0; }
}

@media (max-width: 620px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .cases-grid, .reviews-grid, .fleet-grid, .routes-list-grid, .tariffs-grid, .steps-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .header-inner { height: 64px; }
}

.mobile-sticky-bar a, .mobile-sticky-bar button {
  display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 11px; font-weight: 700;
  color: var(--navy); background: none; border: none; padding: 6px 0;
}
@media (max-width: 860px) {
  .mobile-sticky-bar { display: grid; }
}
