:root {
  --orange: #ff6b00;
  --orange-dark: #e45700;
  --blue: #003366;
  --blue-deep: #001f3f;
  --blue-ink: #00162d;
  --text: #071b35;
  --muted: #637085;
  --line: #e6ebf1;
  --bg: #f6f8fb;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0, 30, 64, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 860px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: #fff;
  background: rgba(0, 31, 63, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(0, 31, 63, .96); box-shadow: 0 12px 35px rgba(0, 0, 0, .22); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 28px; }
.site-logo img, .footer-logo img { width: 96px; height: auto; }
.main-nav { flex: 1; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: 24px; }
.menu a { font-size: 15px; font-weight: 700; opacity: .96; }
.menu a:hover { color: var(--orange); }
.menu-item-has-children { position: relative; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: -18px; min-width: 240px; z-index: 1200;
  background: #fff; color: var(--text); border-radius: 14px; box-shadow: var(--shadow); padding: 12px; list-style: none;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu { display: grid; gap: 8px; }
.sub-menu a { display: block; padding: 8px 10px; border-radius: 10px; font-size: 14px; }
.sub-menu a:hover { background: #f1f5f9; }
.menu-item-has-children > a { display: inline-flex; align-items: center; min-height: 38px; }
.header-contacts { display: grid; gap: 1px; text-align: right; font-weight: 700; white-space: nowrap; }
.header-contacts span { font-size: 12px; opacity: .75; }
.header-btn { white-space: nowrap; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 8px;
  border: 1px solid transparent; font-weight: 800; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(255, 107, 0, .22); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.45); }
.section .btn-secondary, .cta-panel .btn-secondary { color: var(--blue); border-color: var(--blue); background: #fff; }

.site-main { overflow: hidden; }
.page-hero, .home-hero {
  position: relative; min-height: 560px; color: #fff; display: flex; align-items: center; padding: 120px 0 72px;
  background-image: var(--hero-bg); background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,23,47,.94) 0%, rgba(0,38,76,.78) 38%, rgba(0,38,76,.18) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 1180px; }
.hero-inner h1 { max-width: 720px; font-size: clamp(36px, 5vw, 64px); line-height: .98; margin: 0 0 22px; letter-spacing: -.04em; }
.hero-subtitle { max-width: 560px; font-size: clamp(17px, 2vw, 22px); margin: 0 0 34px; color: rgba(255,255,255,.92); }
.eyebrow, .section-kicker { color: var(--orange); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: 14px; margin: 0 0 12px; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; margin: 0 0 22px; font-size: 14px; color: rgba(255,255,255,.72); }
.breadcrumbs a:hover { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; font-weight: 800; }
.micro-trust span::before { content: "✓"; color: var(--orange); margin-right: 8px; }

.floating-badges { margin-top: -48px; position: relative; z-index: 3; }
.badge-panel {
  background: var(--blue-deep); color: #fff; border-radius: 12px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.08);
}
.badge-item { display: flex; gap: 14px; align-items: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.badge-item:last-child { border-right: 0; }
.badge-item strong { display: block; font-size: 16px; }
.badge-item span { color: rgba(255,255,255,.78); font-size: 13px; }
.bl-icon { width: 36px; height: 36px; flex: 0 0 36px; display: inline-flex; align-items: center; justify-content: center; }
.bl-icon img { width: 100%; height: 100%; object-fit: contain; }

.section { padding: 56px 0; }
.section + .section { padding-top: 28px; }
.center-title { text-align: center; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -.03em; margin: 0 0 34px; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.two-col h2, .info-column h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 18px; }
.two-col p { color: var(--muted); font-size: 18px; }
.check-list, .document-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.check-list li, .document-list li { position: relative; padding-left: 32px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); box-shadow: inset 0 0 0 5px #fff; border: 1px solid var(--orange); }
.document-list li::before { content: "▣"; position: absolute; left: 0; top: 0; color: var(--orange); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; min-height: 180px; box-shadow: 0 10px 25px rgba(0, 31, 63, .05); }
.info-card h3 { font-size: 21px; line-height: 1.18; margin: 16px 0 10px; }
.info-card p { margin: 0; color: var(--muted); }
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); transition: .22s ease; }

.dark-strip { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff; }
.dark-strip h2 { margin: 0 0 28px; font-size: clamp(28px, 3vw, 38px); }
.dark-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dark-item { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 18px; min-height: 160px; }
.step-num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 900; margin-bottom: 14px; }
.process-step h3 { margin: 0 0 8px; font-size: 17px; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.info-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-column { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.info-column h2 { font-size: 26px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--orange); font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

.cta-section { padding-top: 24px; }
.cta-panel {
  color: #fff; background: linear-gradient(90deg, rgba(0,31,63,.96), rgba(0,51,102,.9)), url('../img/hero-home.svg');
  background-size: cover; background-position: center; border-radius: 18px; padding: 34px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: center;
}
.cta-copy h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.05; margin: 0 0 12px; }
.cta-copy p { color: rgba(255,255,255,.85); }

.lead-form { display: grid; gap: 14px; }
.lead-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lead-form label { display: grid; gap: 5px; color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%; min-height: 46px; border: 1px solid rgba(0, 31, 63, .12); border-radius: 8px; padding: 0 14px; color: var(--text); background: #fff; font: inherit;
}
.checkbox-line { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 8px; color: rgba(255,255,255,.78) !important; }
.checkbox-line input { width: 16px; min-height: 16px; }
.lead-form .btn { width: 100%; border: 0; }
.quick-form-section { position: relative; z-index: 4; margin-top: -34px; }
.quick-form-panel { background: var(--blue-deep); color: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.quick-form-panel h2 { margin: 0 0 16px; font-size: 20px; }

.stats-section { background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.stat-card { text-align: center; background: #fff; border-radius: 14px; padding: 18px; border: 1px solid var(--line); }
.stat-card strong { display: block; color: var(--orange); font-size: 34px; line-height: 1; }
.stat-card span { display: block; margin-top: 8px; color: var(--muted); }

.map-section { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff; }
.map-layout { display: grid; grid-template-columns: .45fr .55fr; gap: 34px; align-items: center; }
.map-layout p { color: rgba(255,255,255,.8); font-size: 18px; }
.russia-map { position: relative; min-height: 340px; border-radius: 24px; background: radial-gradient(circle at 35% 40%, rgba(255,255,255,.18), transparent 42%), rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); overflow: hidden; }
.russia-map::before { content:""; position:absolute; inset:45px 35px; background: rgba(255,255,255,.08); clip-path: polygon(5% 50%,18% 35%,36% 30%,48% 18%,64% 35%,80% 24%,96% 45%,88% 68%,68% 63%,52% 80%,35% 68%,20% 75%); }
.russia-map span { position: absolute; left: var(--x); top: var(--y); width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,107,0,.5); animation: pulse 1.8s infinite; animation-delay: var(--d); }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(255,107,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); } }
.partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 42px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; font-weight: 900; color: var(--blue); font-size: 24px; }

.notice-success { padding: 96px 0 12px; background: #e7f8ee; color: #0b6b35; font-weight: 800; }
.default-content { padding-top: 130px; min-height: 60vh; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; margin-bottom: 16px; }

.site-footer { background: var(--blue-deep); color: #fff; padding: 54px 0; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .92fr .98fr .9fr 1.02fr 1.3fr; gap: 34px; align-items: start; }
.site-footer h3 { margin: 0 0 12px; font-size: 16px; }
.site-footer a, .site-footer p, .site-footer span { display: block; color: rgba(255,255,255,.78); margin: 0 0 8px; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 18px; margin-bottom: 20px; }
.socials a { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); margin: 0; }
.footer-cta { display: grid; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-note { color: rgba(255,255,255,.58); font-size: 13px; margin-top: 10px; }

.footer-contact-block { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-contact-block:last-of-type { border-bottom: 0; }
.footer-contact-block strong { display: block; margin-bottom: 6px; color: #fff; font-size: 15px; }
.footer-contact-block a { margin-bottom: 6px; word-break: break-word; }
.footer-contact-block span { line-height: 1.45; color: rgba(255,255,255,.68); }
.site-footer .btn { width: 100%; min-height: 46px; margin: 0; }
.site-footer .btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.38); }
.site-footer .btn-secondary:hover { background: rgba(255,255,255,.08); }


@media (max-width: 1024px) {
  .header-contacts { display: none; }
  .header-btn { display: none; }
  .badge-panel { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel, .map-layout, .two-col, .info-columns { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { height: 72px; }
  .site-logo img { width: 78px; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav { display: none; position: fixed; left: 14px; right: 14px; top: 78px; background: var(--blue-deep); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: block; }
  .menu { display: grid; gap: 12px; justify-content: stretch; }
  .sub-menu { display: grid; position: static; background: rgba(255,255,255,.08); color: #fff; box-shadow: none; margin-top: 10px; }
  .page-hero, .home-hero { min-height: 610px; padding-top: 112px; }
  .hero-inner h1 { font-size: 38px; }
  .badge-panel, .card-grid, .process-grid, .dark-grid, .stats-grid, .lead-grid { grid-template-columns: 1fr; }
  .badge-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 42px 0; }
  .cta-panel { padding: 22px; }
  .partners-row { font-size: 20px; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* v0.3 header/menu and modal refinements */
.header-inner { gap: 16px; }
.site-logo img { width: 86px; }
.menu { gap: 17px; }
.menu a { font-size: 14px; white-space: nowrap; }
.header-contacts { min-width: 148px; }
.header-contacts .header-email { display: block; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.1; margin: 0; font-weight: 700; }
.header-contacts .header-email:hover { color: #fff; }
.header-btn { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.menu-item-has-children::after { content: ""; position: absolute; left: -22px; right: -22px; top: 100%; height: 16px; }
.sub-menu { top: calc(100% + 8px); }

.home-services .card-grid { grid-template-columns: repeat(4, 1fr); }
.dark-strip h2 { text-align: center; }
.process-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); justify-content: center; }
.process-step { text-align: center; }
.step-num { margin-left: auto; margin-right: auto; }

.lead-modal { position: fixed; inset: 0; z-index: 4000; display: none; padding: 24px; }
.lead-modal.is-open { display: grid; place-items: center; }
.lead-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 13, 28, .74); backdrop-filter: blur(7px); }
.lead-modal__dialog { position: relative; width: min(860px, 100%); max-height: min(90vh, 920px); overflow: auto; background: #fff; color: var(--text); border-radius: 22px; box-shadow: 0 34px 90px rgba(0, 0, 0, .34); padding: 30px; }
.lead-modal__close { position: absolute; top: 14px; right: 16px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #f1f5f9; color: var(--blue); font-size: 30px; line-height: 1; cursor: pointer; }
.lead-modal__close:hover { background: var(--orange); color: #fff; }
.lead-modal__head { padding-right: 44px; margin-bottom: 20px; }
.lead-modal__head h2 { margin: 0 0 10px; font-size: clamp(28px, 3vw, 42px); line-height: 1.06; letter-spacing: -.03em; }
.lead-modal__head p:not(.section-kicker) { margin: 0; color: var(--muted); font-size: 17px; }
.lead-modal .lead-form label { color: var(--text); }
.lead-modal .lead-grid { grid-template-columns: repeat(3, 1fr); }
.lead-modal .lead-comment { color: var(--text); }
.lead-modal .lead-comment textarea { min-height: 86px; padding: 12px 14px; resize: vertical; }
.lead-modal .checkbox-line { color: var(--muted) !important; }
body.lead-modal-open { overflow: hidden; }

@media (max-width: 1160px) {
  .header-inner { gap: 12px; }
  .menu { gap: 13px; }
  .menu a { font-size: 13px; }
  .site-logo img { width: 78px; }
  .header-btn { padding-inline: 14px; }
}
@media (max-width: 1024px) {
  .home-services .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .lead-modal { padding: 12px; }
  .lead-modal__dialog { padding: 22px; border-radius: 18px; }
  .lead-modal .lead-grid { grid-template-columns: 1fr; }
  .home-services .card-grid { grid-template-columns: 1fr; }
}


/* v0.4 visual spacing refinements */
.partners-section { padding-bottom: 34px; }
.partners-section + .section { padding-top: 38px; }
@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta { max-width: 360px; }
}


/* v0.5 balanced grids for incomplete rows */
@media (min-width: 1025px) {
  .card-grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
  }

  .card-grid--count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid--count-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .card-grid--count-5 > .info-card {
    grid-column: span 2;
  }
  .card-grid--count-5 > .info-card:nth-last-child(2) {
    grid-column: 2 / span 2;
  }
  .card-grid--count-5 > .info-card:nth-last-child(1) {
    grid-column: 4 / span 2;
  }

  .dark-grid--count-5,
  .dark-grid--count-6,
  .dark-grid--count-7 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .dark-grid--count-5 > .dark-item,
  .dark-grid--count-6 > .dark-item,
  .dark-grid--count-7 > .dark-item {
    grid-column: span 2;
  }
  .dark-grid--count-5 > .dark-item:nth-last-child(1) {
    grid-column: 4 / span 2;
  }
  .dark-grid--count-6 > .dark-item:nth-last-child(2) {
    grid-column: 3 / span 2;
  }
  .dark-grid--count-6 > .dark-item:nth-last-child(1) {
    grid-column: 5 / span 2;
  }
  .dark-grid--count-7 > .dark-item:nth-last-child(3) {
    grid-column: 2 / span 2;
  }
  .dark-grid--count-7 > .dark-item:nth-last-child(2) {
    grid-column: 4 / span 2;
  }
  .dark-grid--count-7 > .dark-item:nth-last-child(1) {
    grid-column: 6 / span 2;
  }

  .info-columns--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* v0.6 visual direction: premium dark logistics style */
:root {
  --orange: #FF6B00;
  --orange-dark: #E85B00;
  --blue: #003366;
  --blue-deep: #001F3F;
  --blue-ink: #001226;
  --bg: #f4f7fb;
  --shadow: 0 22px 60px rgba(0, 31, 63, .16);
}

body { background: var(--bg); }
.site-header {
  background: rgba(0, 18, 38, .78);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .18);
}
.site-header.is-scrolled { background: rgba(0, 18, 38, .98); }
.sub-menu { border: 1px solid rgba(0,51,102,.12); }

.btn { border-radius: 10px; }
.btn-primary {
  background: linear-gradient(135deg, #ff7a16 0%, var(--orange) 55%, #e85b00 100%);
  box-shadow: 0 16px 34px rgba(255,107,0,.28), inset 0 1px 0 rgba(255,255,255,.24);
}
.btn-secondary {
  background: rgba(2, 18, 38, .24);
  border-color: rgba(255,255,255,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.page-hero, .home-hero {
  min-height: 660px;
  background-position: center right;
  isolation: isolate;
}
.home-hero { min-height: 720px; }
.page-hero::before, .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(255,107,0,.22), transparent 31%),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,18,38,.72) 100%);
  pointer-events: none;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,16,35,.98) 0%, rgba(0,28,58,.92) 34%, rgba(0,31,63,.35) 66%, rgba(0,15,31,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.38));
}
.hero-inner { z-index: 2; }
.hero-inner h1 { text-shadow: 0 14px 34px rgba(0,0,0,.36); }
.hero-subtitle { text-shadow: 0 10px 24px rgba(0,0,0,.30); }
.micro-trust span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 31, 63, .42);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.quick-form-section { margin-top: -84px; }
.quick-form-panel {
  background: linear-gradient(135deg, rgba(0,31,63,.98), rgba(0,18,38,.98));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0, 20, 42, .35);
}
.quick-form-panel h2 { font-size: 22px; letter-spacing: -.02em; }

.floating-badges { margin-top: -60px; }
.badge-panel {
  background: linear-gradient(135deg, rgba(0,31,63,.98), rgba(0,18,38,.98));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 20, 42, .35);
}
.badge-item { padding: 26px 22px; }
.badge-item .bl-icon, .dark-item .bl-icon { filter: drop-shadow(0 0 12px rgba(255,107,0,.34)); }

.stats-section,
.home-services,
.partners-section,
.process-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
}
.stat-card,
.info-card,
.process-step,
.info-column,
.faq-item {
  border-color: rgba(0,51,102,.10);
  box-shadow: 0 14px 38px rgba(0,31,63,.07);
}
.stat-card:hover,
.info-card:hover,
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0,31,63,.14);
}
.info-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.info-card .bl-icon { color: var(--orange); filter: drop-shadow(0 0 10px rgba(255,107,0,.18)); }

.map-section {
  position: relative;
  background: radial-gradient(circle at 72% 40%, rgba(255,107,0,.14), transparent 34%), linear-gradient(135deg, #001226 0%, #002a54 100%);
  overflow: hidden;
}
.map-section::before {
  content: "";
  position: absolute;
  inset: -12% -6%;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 72%);
  pointer-events: none;
}
.map-layout { position: relative; z-index: 1; }
.russia-map {
  min-height: 400px;
  background:
    url('../img/map-routes.svg') center / contain no-repeat,
    radial-gradient(circle at 45% 40%, rgba(255,255,255,.14), transparent 42%),
    rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 0 70px rgba(255,255,255,.04), 0 26px 70px rgba(0,0,0,.25);
}
.russia-map::before { display: none; }
.russia-map span { width: 9px; height: 9px; }

.dark-strip {
  position: relative;
  background: radial-gradient(circle at 80% 0%, rgba(255,107,0,.16), transparent 34%), linear-gradient(135deg, #001226 0%, #002a54 100%);
}
.dark-item {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
  transition: transform .22s ease, background .22s ease;
}
.dark-item:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }

.partners-row {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(0,31,63,.08);
  letter-spacing: -.03em;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -19px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: .55;
}
.process-step:last-child::after { display: none; }

.cta-panel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 88% 50%, rgba(255,107,0,.45), transparent 30%),
    linear-gradient(90deg, rgba(0,31,63,.97), rgba(0,18,38,.96)),
    url('../img/hero-home.svg');
  box-shadow: 0 30px 75px rgba(0,20,42,.28);
}
.cta-panel::before {
  content: "";
  position: absolute;
}

.site-footer {
  background: radial-gradient(circle at 84% 8%, rgba(255,107,0,.10), transparent 28%), linear-gradient(135deg, #001226 0%, #001f3f 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Slightly more premium inner page look */
.section-intro { background: #fff; }
.info-columns-section { background: #fff; }
.faq-section { background: linear-gradient(180deg, #f8fbff, #f4f7fb); }

@media (max-width: 1024px) {
  .page-hero, .home-hero { min-height: 620px; }
  .quick-form-section { margin-top: -42px; }
}
@media (max-width: 760px) {
  .page-hero, .home-hero { min-height: 650px; padding-top: 110px; }
  .micro-trust span { width: 100%; justify-content: flex-start; }
  .russia-map { min-height: 300px; }
  .process-step::after { display: none; }
}

/* v0.7 hero quick-form placement and footer harmony */
.home-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 42px;
  align-items: center;
}
.home-hero-copy { min-width: 0; }
.hero-quick-card {
  align-self: center;
  justify-self: end;
  width: min(390px, 100%);
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(0, 18, 38, .92), rgba(0, 51, 102, .82));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 72px rgba(0, 14, 32, .44), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.hero-quick-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.hero-quick-card .lead-form { gap: 10px; }
.hero-quick-card .lead-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
.hero-quick-card .lead-form label { color: rgba(255,255,255,.78); }
.hero-quick-card .lead-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.hero-quick-card .lead-form input,
.hero-quick-card .lead-form select {
  min-height: 45px;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.hero-quick-card .lead-form .btn {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
}
.hero-quick-card .checkbox-line {
  color: rgba(255,255,255,.74) !important;
  font-size: 12px;
}
.hero-quick-note {
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  text-align: center;
}
.home-hero .micro-trust { max-width: 760px; }

.site-footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  min-height: 44px;
  padding: 0 18px;
}
.footer-grid {
  grid-template-columns: 1.05fr .9fr 1.05fr .85fr 1.15fr;
  gap: 32px 36px;
}
.footer-contacts-col {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(230px, .65fr);
  gap: 24px;
  align-items: start;
}
.footer-contact-block {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-actions-panel {
  display: grid;
  gap: 14px;
  justify-items: stretch;
  align-self: start;
}
.footer-actions-panel .socials {
  margin: 0;
  justify-content: flex-start;
}
.footer-cta {
  width: 100%;
  max-width: 280px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  gap: 10px;
}
.footer-cta .btn { width: 100%; }

@media (max-width: 1120px) {
  .home-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, 350px); gap: 28px; }
  .hero-quick-card { padding: 20px; }
}
@media (max-width: 1024px) {
  .home-hero-layout { grid-template-columns: 1fr; }
  .hero-quick-card { justify-self: start; max-width: 440px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contacts-layout { grid-template-columns: 1fr 1fr; }
  .footer-actions-panel { grid-column: 1 / -1; max-width: 420px; }
}
@media (max-width: 760px) {
  .home-hero { min-height: 880px; }
  .hero-quick-card { width: 100%; max-width: none; padding: 18px; }
  .footer-grid,
  .footer-contacts-layout { grid-template-columns: 1fr; }
  .footer-actions-panel { grid-column: auto; max-width: none; }
  .footer-cta { max-width: 360px; }
}


/* v0.8 hero-form compact placement and legal links */
.hero-quick-card {
  width: min(340px, 100%);
  padding: 18px;
  transform: translate(28px, 54px);
}
.hero-quick-card h2 {
  margin-bottom: 12px;
  font-size: 18px;
}
.hero-quick-card .lead-form { gap: 8px; }
.hero-quick-card .lead-grid { gap: 8px; }
.hero-quick-card .lead-form input,
.hero-quick-card .lead-form select {
  min-height: 40px;
  padding: 0 12px;
  font-size: 14px;
}
.hero-quick-card .lead-form .btn {
  min-height: 42px;
  margin-top: 0;
}
.checkbox-line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkbox-line a:hover { color: #fff; }
.hero-quick-card .checkbox-line {
  margin-top: 0;
  line-height: 1.25;
}
.lead-modal .checkbox-line a { color: var(--blue); }
.lead-modal .checkbox-line a:hover { color: var(--orange); }
.default-content .entry-content {
  color: var(--text);
  font-size: 17px;
}
.default-content .entry-content h2,
.default-content .entry-content h3 {
  margin-top: 32px;
  color: var(--blue);
}
.default-content .entry-content p,
.default-content .entry-content li {
  color: #334155;
}
.default-content .entry-content ul,
.default-content .entry-content ol {
  padding-left: 24px;
}
.default-content .entry-content a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(0,31,63,.07);
  padding: 28px;
  margin: 24px 0;
}
.legal-requisites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 18px 0 0;
}
.legal-requisites div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.legal-requisites strong {
  display: block;
  color: var(--blue);
  margin-bottom: 4px;
}
@media (max-width: 1120px) {
  .hero-quick-card { transform: translate(0, 36px); width: min(330px, 100%); }
}
@media (max-width: 1024px) {
  .hero-quick-card { transform: none; justify-self: start; }
}
@media (max-width: 760px) {
  .hero-quick-card { width: 100%; transform: none; }
  .legal-requisites { grid-template-columns: 1fr; }
}

/* v0.9 top consent label + fleet constructor */
.hero-quick-card .checkbox-line > span,
.hero-quick-card .lead-form .checkbox-line > span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.hero-quick-card .checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
  font-size: 11.5px;
  color: rgba(255,255,255,.78) !important;
}
.hero-quick-card .checkbox-line input { flex: 0 0 auto; margin-top: 2px; }

.section-head { max-width: 780px; margin: 0 auto 34px; }
.section-head--center { text-align: center; }
.section-head h2 { margin: 0 0 12px; font-size: clamp(30px, 3vw, 46px); line-height: 1.08; letter-spacing: -.035em; color: var(--blue); }
.section-head p:not(.section-kicker) { margin: 0; color: var(--muted); font-size: 18px; }

.fleet-constructor-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(255,107,0,.09), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
}
.fleet-constructor {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,51,102,.10);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,31,63,.12);
  padding: 28px;
  overflow: hidden;
  position: relative;
}
.fleet-constructor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,51,102,.04), transparent 42%, rgba(255,107,0,.045));
  pointer-events: none;
}
.fleet-choice,
.fleet-result { position: relative; z-index: 1; }
.fleet-choice { margin-bottom: 22px; }
.fleet-choice h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--blue);
  letter-spacing: -.02em;
}
.fleet-tabs,
.fleet-pills {
  display: grid;
  gap: 12px;
}
.fleet-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fleet-pills { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.fleet-tab,
.fleet-pill {
  border: 1px solid rgba(0,51,102,.13);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  border-radius: 18px;
  min-height: 72px;
  padding: 14px 16px;
  font: inherit;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.fleet-tab { display: flex; align-items: center; justify-content: center; gap: 10px; }
.fleet-tab .bl-icon { width: 30px; height: 30px; }
.fleet-pill { min-height: 54px; }
.fleet-tab:hover,
.fleet-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0,31,63,.10);
  border-color: rgba(255,107,0,.35);
}
.fleet-tab.is-active,
.fleet-pill.is-active {
  background: linear-gradient(135deg, #002a54 0%, #001f3f 100%);
  color: #fff;
  border-color: rgba(255,107,0,.55);
  box-shadow: 0 18px 52px rgba(0,31,63,.18), inset 0 1px 0 rgba(255,255,255,.14);
}
.fleet-tab.is-active .bl-icon img { filter: brightness(0) invert(1); }

.fleet-result {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .82fr) minmax(300px, .95fr);
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}
.fleet-art-wrap,
.fleet-params-card,
.fleet-description-card {
  border-radius: 24px;
  border: 1px solid rgba(0,51,102,.10);
  box-shadow: 0 18px 50px rgba(0,31,63,.08);
  background: #fff;
}
.fleet-art-wrap { padding: 20px; background: linear-gradient(135deg, #001226, #003366); color: #fff; overflow: hidden; }
.fleet-art-scene {
  min-height: 300px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 75% 22%, rgba(255,107,0,.24), transparent 29%),
    linear-gradient(180deg, #0d2440 0%, #061629 58%, #020b16 100%);
}
.fleet-art-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.06) 48% 49%, transparent 49% 100%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 90px 100%, 100% 42px;
  opacity: .45;
}
.fleet-road {
  position: absolute;
  left: -10%; right: -10%; bottom: 0;
  height: 82px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.14);
}
.fleet-road::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.5) 0 48px, transparent 48px 86px);
  opacity: .55;
}
.fleet-art-truck {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding: 0 18px 50px;
  min-height: 210px;
}
.fleet-cab {
  width: 118px;
  height: 112px;
  border-radius: 18px 20px 12px 12px;
  background: linear-gradient(135deg, #003366 0%, #001f3f 55%, #001226 100%);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 20px 40px rgba(0,0,0,.3);
  position: relative;
}
.fleet-cab::before {
  content: "";
  position: absolute;
  left: 14px; top: 14px; right: 24px; height: 34px;
  border-radius: 8px 10px 5px 5px;
  background: linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
}
.fleet-cab::after {
  content: "";
  position: absolute;
  left: 12px; bottom: 14px; width: 26px; height: 6px;
  border-radius: 999px;
  background: #ffcc8c;
  box-shadow: 72px 0 0 rgba(255,204,140,.8);
}
.fleet-cab span {
  position: absolute;
  right: 10px; bottom: 22px;
  font-size: 26px;
  font-weight: 1000;
  color: var(--orange);
  letter-spacing: -.08em;
}
.fleet-body {
  width: 360px;
  height: 118px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(135deg, #183a5d, #071a31);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 22px 45px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}
.fleet-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 55%, rgba(255,107,0,.18) 55% 66%, transparent 66% 100%);
}
.fleet-body span {
  position: absolute;
  left: 22px; top: 20px;
  font-weight: 1000;
  color: rgba(255,255,255,.9);
  font-size: 28px;
  letter-spacing: -.04em;
}
.wheel {
  position: absolute;
  bottom: 36px;
  width: 35px; height: 35px;
  border-radius: 50%;
  background: radial-gradient(circle, #94a3b8 0 18%, #111827 19% 56%, #334155 57% 68%, #020617 69% 100%);
  box-shadow: 0 8px 14px rgba(0,0,0,.32);
}
.wheel-1 { left: 82px; }
.wheel-2 { left: 170px; }
.wheel-3 { right: 116px; }
.wheel-4 { right: 52px; }
.fleet-capacity-1-5 .fleet-body { width: 180px; }
.fleet-capacity-3 .fleet-body { width: 230px; }
.fleet-capacity-5 .fleet-body { width: 280px; }
.fleet-capacity-10 .fleet-body { width: 320px; }
.fleet-capacity-20 .fleet-body { width: 380px; }
.fleet-art-scene--isotherm .fleet-body,
.fleet-art-scene--refrigerator .fleet-body { background: linear-gradient(135deg, #f8fafc, #cbd5e1); color: var(--blue); }
.fleet-art-scene--isotherm .fleet-body span,
.fleet-art-scene--refrigerator .fleet-body span { color: var(--blue); }
.fleet-art-scene--refrigerator .fleet-body::after {
  content: "❄";
  position: absolute;
  right: 22px; top: 20px;
  color: var(--orange);
  font-size: 42px;
  opacity: .9;
}
.fleet-art-scene--flatbed .fleet-body {
  height: 42px;
  background: linear-gradient(135deg, #334155, #0f172a);
  border-radius: 8px;
  overflow: visible;
}
.fleet-art-scene--flatbed .fleet-body::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; top: -34px;
  height: 28px;
  background: repeating-linear-gradient(90deg, rgba(255,107,0,.85) 0 8px, transparent 8px 18px);
  border-top: 3px solid rgba(255,107,0,.75);
  opacity: .85;
}
.fleet-art-scene--flatbed .fleet-body span { display: none; }
.fleet-art-note { margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 13px; }

.fleet-params-card,
.fleet-description-card { padding: 24px; }
.fleet-params-card h3,
.fleet-description-card h3 { margin: 0 0 10px; color: var(--blue); font-size: 24px; letter-spacing: -.03em; }
.fleet-params-card p:not(.section-kicker) { margin: 0 0 18px; color: var(--muted); }
.fleet-params {
  display: grid;
  gap: 10px;
  margin: 0;
}
.fleet-params div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.fleet-params dt { color: var(--muted); font-size: 14px; }
.fleet-params dd { margin: 0; color: var(--blue); font-weight: 900; text-align: right; }
.fleet-description-card p { color: #334155; margin: 0 0 16px; }
.fleet-feature-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.fleet-feature-list li { color: #334155; padding-left: 26px; position: relative; }
.fleet-feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 1000; }
.fleet-description-card .btn { width: 100%; }

@media (max-width: 1120px) {
  .fleet-result { grid-template-columns: 1fr 1fr; }
  .fleet-art-wrap { grid-column: 1 / -1; }
  .fleet-art-scene { min-height: 270px; }
}
@media (max-width: 860px) {
  .fleet-constructor { padding: 18px; border-radius: 22px; }
  .fleet-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-pills { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
  .fleet-pill { padding: 10px 8px; min-height: 48px; }
  .fleet-result { grid-template-columns: 1fr; }
  .fleet-capacity-20 .fleet-body { width: 300px; }
  .fleet-art-truck { justify-content: flex-start; transform: scale(.9); transform-origin: left bottom; width: 110%; }
}
@media (max-width: 560px) {
  .fleet-tabs,
  .fleet-pills { grid-template-columns: 1fr; }
  .fleet-art-scene { min-height: 230px; }
  .fleet-art-truck { transform: scale(.7); width: 142%; }
  .fleet-params div { grid-template-columns: 1fr; gap: 4px; }
  .fleet-params dd { text-align: left; }
}

/* v1.0 alignment polish across equal card/column sections */
@media (min-width: 761px) {
  .info-column {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .info-column h2 {
    min-height: 62px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .info-columns--count-2 .info-column h2,
  .info-columns--count-3 .info-column h2 {
    min-height: 62px;
  }

  .document-list {
    align-content: start;
  }

  .document-list li,
  .check-list li {
    min-height: 28px;
    line-height: 1.42;
  }

  .info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .info-card h3 {
    min-height: 50px;
    display: flex;
    align-items: flex-start;
  }

  .info-card p {
    margin-top: auto;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-step h3 {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process-step p {
    width: 100%;
  }

  .badge-item,
  .dark-item,
  .stat-card {
    min-height: 100%;
  }

  .dark-item {
    align-items: center;
  }

  .fleet-params-card,
  .fleet-description-card,
  .fleet-art-wrap {
    height: 100%;
  }
}

@media (min-width: 1025px) {
  .info-columns--count-2 {
    align-items: stretch;
  }

  .info-columns--count-2 .info-column,
  .info-columns--count-3 .info-column {
    min-height: 276px;
  }

  .card-grid,
  .dark-grid,
  .process-grid,
  .stats-grid {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .info-column h2,
  .info-card h3,
  .process-step h3 {
    min-height: 0;
  }
}

/* v1.1 — smoother CTA button hover states */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-size: 220% 100%;
  backface-visibility: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  transform: translateX(-125%);
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.38) 45%, transparent 72%);
  transition: transform .72s ease;
  pointer-events: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #ff8a24 0%, #ff6b00 42%, #ff9b45 62%, #e85b00 100%);
  box-shadow: 0 18px 42px rgba(255,107,0,.38), inset 0 1px 0 rgba(255,255,255,.32);
  transform: translateY(-2px);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(125%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(255,107,0,.26), inset 0 2px 4px rgba(0,0,0,.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255,107,0,.8);
  color: #fff;
  background: rgba(255,107,0,.12);
  box-shadow: 0 12px 28px rgba(0,31,63,.2), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.section .btn-secondary:hover,
.section .btn-secondary:focus-visible,
.cta-panel .btn-secondary:hover,
.cta-panel .btn-secondary:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff7f1;
}

/* v1.2 contact links, maps and internal card linking */
.info-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.info-card--link:hover h3 { color: var(--orange); }
.info-card p a,
.footer-contact-block a[href^="mailto:"],
.footer-contact-block a[href^="tel:"] {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer .footer-contact-block a[href^="mailto:"],
.site-footer .footer-contact-block a[href^="tel:"],
.site-footer .footer-contact-block a[target="_blank"] {
  color: rgba(255,255,255,.86);
}
.info-card .card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
}
.info-card .card-action-link::after { content: "→"; }
.info-card .card-action-link:hover { color: var(--blue); }
.info-card--link .card-action-link { margin-top: auto; padding-top: 18px; }
.info-card--link:hover .card-action-link { color: var(--orange); }


/* v1.3 — contacts page balance */
@media (min-width: 1025px) {
  .contacts-cards-section .card-grid,
  .contacts-cards-section .card-grid--count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-inline: auto;
  }
}
.contacts-cards-section .info-card {
  min-height: 0;
}
.contacts-cards-section .info-card h3 {
  min-height: 0;
  margin-bottom: 14px;
}
.contacts-cards-section .info-card p {
  margin-top: 0;
  line-height: 1.72;
}
.contacts-cards-section .info-card .card-action-link {
  margin-top: 18px;
}
.contacts-cards-section .info-card p a {
  word-break: break-word;
}

/* v1.4 — transfer of the premium dark visual concept to the live WordPress theme */
body.home {
  background:
    radial-gradient(circle at 76% 6%, rgba(255,107,0,.12), transparent 26%),
    linear-gradient(180deg, #001226 0%, #002044 48%, #001226 100%);
}
body.home .site-main {
  background:
    radial-gradient(circle at 18% 22%, rgba(0,92,160,.18), transparent 28%),
    radial-gradient(circle at 86% 35%, rgba(255,107,0,.11), transparent 30%),
    linear-gradient(180deg, #001226 0%, #00234a 42%, #001226 100%);
}
body.home .section {
  color: #fff;
  background: transparent;
  padding: 38px 0;
}
body.home .center-title,
body.home .dark-strip h2,
body.home .map-layout h2 {
  color: #fff;
  text-align: center;
  text-shadow: 0 10px 28px rgba(0,0,0,.25);
}
body.home .section-kicker { color: #ff7a16; }

body.home .home-hero {
  min-height: 785px;
  padding: 118px 0 68px;
  background-position: center right;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
body.home .home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(0,18,38,.82) 60%, #001226 100%);
  pointer-events: none;
  z-index: 1;
}
body.home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,10,22,.98) 0%, rgba(0,24,50,.88) 36%, rgba(0,31,63,.22) 68%, rgba(0,12,26,.22) 100%),
    radial-gradient(circle at 74% 42%, rgba(255,107,0,.16), transparent 30%);
}
body.home .home-hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 348px);
  gap: 72px;
  align-items: center;
}
body.home .home-hero-copy {
  padding-top: 36px;
}
body.home .home-hero-copy h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .96;
  letter-spacing: -.055em;
}
body.home .hero-subtitle {
  max-width: 575px;
  color: rgba(255,255,255,.88);
}
body.home .hero-actions { margin-top: 10px; }
body.home .micro-trust {
  gap: 18px 26px;
  margin-top: 34px;
  max-width: 760px;
}
body.home .micro-trust span {
  background: transparent;
  border: 0;
  padding: 0;
  backdrop-filter: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
body.home .micro-trust span::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  background: radial-gradient(circle, rgba(255,107,0,.95) 0 22%, transparent 23%), rgba(255,107,0,.13);
  border: 1px solid rgba(255,107,0,.55);
  box-shadow: 0 0 24px rgba(255,107,0,.22);
}
body.home .hero-quick-card {
  width: 344px;
  transform: translate(28px, 92px);
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(0,18,38,.88), rgba(0,51,102,.70));
  border: 1px solid rgba(132,190,238,.28);
  box-shadow: 0 34px 90px rgba(0, 10, 24, .46), inset 0 1px 0 rgba(255,255,255,.13);
}
body.home .hero-quick-card h2 { font-size: 18px; }
body.home .hero-quick-card .lead-form input,
body.home .hero-quick-card .lead-form select {
  min-height: 39px;
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.26);
}
body.home .hero-quick-card .lead-form .btn { min-height: 41px; }
body.home .hero-quick-card .checkbox-line { font-size: 11px; }

body.home .home-stats-section {
  padding-top: 0;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}
body.home .stats-grid { gap: 14px; }
body.home .stat-card {
  position: relative;
  text-align: left;
  min-height: 118px;
  padding: 24px 22px 22px 82px;
  color: #fff;
  background: linear-gradient(145deg, rgba(0,51,102,.72), rgba(0,18,38,.68));
  border: 1px solid rgba(132,190,238,.18);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,10,24,.25), inset 0 1px 0 rgba(255,255,255,.08);
}
body.home .stat-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 34px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,107,0,.72);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,107,0,.28) 43% 57%, transparent 58%),
    rgba(255,107,0,.08);
  box-shadow: 0 0 22px rgba(255,107,0,.18);
}
body.home .stat-card strong { color: #fff; font-size: 34px; letter-spacing: -.04em; }
body.home .stat-card span { color: rgba(255,255,255,.76); }

body.home .home-services { padding-top: 28px; }
body.home .home-services .card-grid { gap: 14px; }
body.home .home-services .info-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas: "icon title" "icon text" "icon action";
  align-items: center;
  gap: 6px 16px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(145deg, rgba(0,51,102,.68), rgba(0,18,38,.64));
  border: 1px solid rgba(132,190,238,.16);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,10,24,.20), inset 0 1px 0 rgba(255,255,255,.07);
}
body.home .home-services .info-card .bl-icon { grid-area: icon; width: 48px; height: 48px; }
body.home .home-services .info-card h3 {
  grid-area: title;
  min-height: 0;
  color: #fff;
  margin: 0;
  font-size: 18px;
}
body.home .home-services .info-card p {
  grid-area: text;
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 14px;
}
body.home .home-services .card-action-link {
  grid-area: action;
  display: none;
}
body.home .home-services .info-card:hover {
  border-color: rgba(255,107,0,.46);
  background: linear-gradient(145deg, rgba(0,63,124,.75), rgba(0,18,38,.72));
}

body.home .map-section {
  padding-top: 22px;
  padding-bottom: 28px;
  background:
    radial-gradient(circle at 75% 50%, rgba(255,107,0,.13), transparent 32%),
    linear-gradient(180deg, rgba(0,18,38,0), rgba(0,31,63,.48), rgba(0,18,38,0));
}
body.home .map-layout {
  grid-template-columns: .30fr .70fr;
  gap: 28px;
}
body.home .map-layout h2 {
  text-align: left;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 12px;
}
body.home .map-layout p { color: rgba(255,255,255,.78); }
body.home .map-layout .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,107,0,.72);
}
body.home .russia-map {
  min-height: 360px;
  border: 0;
  background: url('../img/map-routes.svg') center / contain no-repeat;
  box-shadow: none;
}
body.home .russia-map span {
  width: 10px;
  height: 10px;
  background: #ff7a16;
  box-shadow: 0 0 18px rgba(255,107,0,.85);
}

body.home .dark-strip {
  padding-top: 24px;
  padding-bottom: 34px;
  background: transparent;
}
body.home .dark-grid { gap: 12px; }
body.home .dark-item {
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  background: linear-gradient(145deg, rgba(0,51,102,.65), rgba(0,18,38,.58));
  border: 1px solid rgba(132,190,238,.15);
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
}
body.home .dark-item .bl-icon { width: 42px; height: 42px; }

body.home .partners-section {
  padding-top: 8px;
  padding-bottom: 18px;
  background: transparent;
}
body.home .partners-row {
  gap: 34px;
  justify-content: space-between;
  padding: 18px 26px;
  color: rgba(255,255,255,.74);
  background: rgba(0,18,38,.34);
  border: 1px solid rgba(132,190,238,.12);
  border-radius: 16px;
  box-shadow: none;
  font-size: 22px;
}
body.home .partners-row span { white-space: nowrap; }

body.home .process-section {
  padding-top: 18px;
  background: transparent;
}
body.home .process-grid {
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(132,190,238,.15);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(0,51,102,.34), rgba(0,18,38,.42));
}
body.home .process-step {
  min-height: 150px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
}
body.home .process-step h3 { color: #fff; }
body.home .process-step p { color: rgba(255,255,255,.68); }
body.home .step-num {
  background: transparent;
  border: 1px solid rgba(255,107,0,.8);
  color: #ff7a16;
}

body.home .cta-section {
  padding-top: 12px;
  padding-bottom: 36px;
}
body.home .cta-panel {
  grid-template-columns: .72fr 1fr;
  padding: 32px;
  background:
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(95deg, #ff6b00 0%, #ff6b00 70%, #f05f00 100%);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 28px 76px rgba(255,107,0,.20);
}
body.home .cta-copy h2,
body.home .cta-copy p { color: #fff; }
body.home .cta-panel .lead-grid { grid-template-columns: repeat(3, 1fr); }
body.home .cta-panel .lead-form .btn {
  background: linear-gradient(135deg, #002a54, #001226);
  box-shadow: 0 14px 34px rgba(0,18,38,.24);
}
body.home .cta-panel .checkbox-line { color: rgba(255,255,255,.9) !important; }
body.home .cta-panel input,
body.home .cta-panel select { min-height: 45px; }

body.home .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(132,190,238,.14);
}

@media (max-width: 1160px) {
  body.home .home-hero-layout { gap: 30px; }
  body.home .hero-quick-card { transform: translate(0, 70px); }
  body.home .stats-grid { grid-template-columns: repeat(3, 1fr); }
  body.home .map-layout { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  body.home .home-hero { min-height: auto; }
  body.home .home-hero-layout { grid-template-columns: 1fr; }
  body.home .hero-quick-card { transform: none; justify-self: start; }
  body.home .process-grid { grid-template-columns: repeat(2, 1fr); }
  body.home .cta-panel { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.home .home-hero { padding-bottom: 44px; }
  body.home .home-hero-copy h1 { font-size: 38px; }
  body.home .stats-grid,
  body.home .home-services .card-grid,
  body.home .process-grid,
  body.home .cta-panel .lead-grid { grid-template-columns: 1fr; }
  body.home .stat-card { padding-left: 74px; }
  body.home .partners-row { justify-content: center; gap: 22px; font-size: 18px; }
  body.home .russia-map { min-height: 260px; }
}

/* v1.5 — hero block closer to approved visual mockup */
body.home .home-hero {
  min-height: 760px;
  padding: 108px 0 86px;
  background-size: cover;
  background-position: center right;
}
body.home .home-hero::before {
  background:
    radial-gradient(circle at 70% 42%, rgba(255,107,0,.16), transparent 30%),
    radial-gradient(circle at 58% 22%, rgba(72,145,220,.10), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,18,38,.78) 100%);
}
body.home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,9,22,.98) 0%, rgba(0,20,43,.93) 33%, rgba(0,31,63,.36) 55%, rgba(0,15,31,.08) 78%, rgba(0,10,22,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.32));
}
body.home .home-hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(315px, 352px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(38px, 5vw, 86px);
}
body.home .home-hero-copy {
  padding-top: 18px;
  max-width: 650px;
}
body.home .home-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: 22px;
}
body.home .hero-subtitle {
  max-width: 585px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.48;
  margin-bottom: 28px;
}
body.home .hero-actions {
  gap: 16px;
  margin-top: 0;
}
body.home .hero-actions .btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 9px;
}
body.home .hero-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, auto));
  align-items: center;
  gap: 16px 24px;
  max-width: 665px;
  margin-top: 34px;
}
body.home .hero-proof-row span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
body.home .hero-proof-row span::before { display: none; }
body.home .hero-proof-row .bl-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 14px;
  border: 1px solid rgba(255,107,0,.42);
  background: rgba(0,31,63,.36);
  box-shadow: 0 0 22px rgba(255,107,0,.16), inset 0 1px 0 rgba(255,255,255,.10);
}
body.home .hero-proof-row .bl-icon img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(99%) saturate(2123%) hue-rotate(359deg) brightness(101%) contrast(103%);
}
body.home .hero-proof-row strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.02em;
}
body.home .hero-proof-row em {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
}
body.home .hero-quick-card {
  width: min(348px, 100%);
  justify-self: end;
  align-self: center;
  transform: translate(8px, 72px);
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(0, 18, 38, .86), rgba(0, 51, 102, .72));
  border: 1px solid rgba(122, 190, 255, .20);
  box-shadow: 0 24px 70px rgba(0, 10, 24, .44), inset 0 1px 0 rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
}
body.home .hero-quick-card h2 {
  font-size: 17px;
  margin-bottom: 12px;
  text-align: center;
}
body.home .hero-quick-card .lead-form input,
body.home .hero-quick-card .lead-form select {
  min-height: 39px;
  border-radius: 7px;
  font-size: 13px;
  background: rgba(255,255,255,.94);
}
body.home .hero-quick-card .lead-grid,
body.home .hero-quick-card .lead-form { gap: 8px; }
body.home .hero-quick-card .lead-form .btn {
  min-height: 41px;
  border-radius: 7px;
}
body.home .hero-quick-card .checkbox-line {
  margin-top: 2px;
  line-height: 1.25;
}
body.home .hero-quick-card .checkbox-line input { width: 14px; height: 14px; }

@media (min-width: 1280px) {
  body.home .home-hero .container { max-width: 1340px; }
  body.home .hero-quick-card { transform: translate(14px, 78px); }
}
@media (max-width: 1180px) {
  body.home .home-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, 336px); gap: 26px; }
  body.home .hero-proof-row { grid-template-columns: repeat(2, minmax(150px, 1fr)); max-width: 520px; }
  body.home .hero-quick-card { transform: translate(0, 52px); }
}
@media (max-width: 1024px) {
  body.home .home-hero { min-height: auto; padding-bottom: 52px; background-position: 67% center; }
  body.home .hero-overlay {
    background: linear-gradient(90deg, rgba(0,9,22,.98), rgba(0,22,46,.82) 62%, rgba(0,12,25,.55));
  }
  body.home .home-hero-layout { grid-template-columns: 1fr; }
  body.home .hero-quick-card { justify-self: start; transform: none; margin-top: 4px; max-width: 430px; }
}
@media (max-width: 760px) {
  body.home .home-hero { padding: 104px 0 44px; }
  body.home .home-hero-copy h1 { font-size: 38px; }
  body.home .hero-proof-row { grid-template-columns: 1fr; gap: 14px; }
  body.home .hero-actions .btn { width: 100%; }
  body.home .hero-quick-card { width: 100%; max-width: none; }
}


/* v1.5.1 — clean rebuilt hero based on v1.5, matching approved sketch */
body.home .bl15-hero,
body.home .bl15-hero * {
  box-sizing: border-box;
}

body.home .bl15-hero {
  position: relative;
  isolation: isolate;
  min-height: 705px;
  padding: 118px 0 72px;
  overflow: hidden;
  color: #fff;
  background: #061d3b;
}

body.home .bl15-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

body.home .bl15-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: .97;
}

body.home .bl15-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(2, 11, 26, .99) 0%,
      rgba(2, 15, 34, .96) 24%,
      rgba(4, 23, 49, .78) 40%,
      rgba(4, 22, 47, .42) 55%,
      rgba(4, 20, 43, .16) 72%,
      rgba(4, 20, 43, .05) 100%
    ),
    radial-gradient(circle at 71% 45%, rgba(255, 128, 24, .16), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 15, 33, .18) 100%);
}

body.home .bl15-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: 128px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,29,59,0) 0%, #061d3b 88%);
}

body.home .bl15-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1380px;
}

body.home .bl15-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(360px, 430px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(44px, 6vw, 118px);
}

body.home .bl15-hero__copy {
  max-width: 620px;
  padding-top: 18px;
}

body.home .bl15-hero__copy h1 {
  margin: 0 0 23px;
  max-width: 620px;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: clamp(48px, 5.15vw, 76px);
  line-height: 1.02;
  letter-spacing: -.047em;
  font-weight: 900;
  text-shadow: 0 12px 34px rgba(0,0,0,.28);
}

body.home .bl15-hero__subtitle {
  max-width: 560px;
  margin: 0 0 31px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

body.home .bl15-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}

body.home .bl15-hero__actions .btn {
  min-height: 56px;
  padding: 0 31px;
  border-radius: 7px;
  font-size: 16px;
}

body.home .bl15-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, auto));
  align-items: center;
  gap: 18px 28px;
  max-width: 780px;
  margin: 42px 0 0;
  padding: 0;
}

body.home .bl15-proof span {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 1px;
  align-items: center;
  align-content: center;
  min-height: 50px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home .bl15-proof .bl-icon {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  min-width: 36px;
  flex: 0 0 36px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.home .bl15-proof .bl-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(49%) sepia(98%) saturate(2389%) hue-rotate(359deg) brightness(102%) contrast(103%);
}

body.home .bl15-proof strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.02em;
}

body.home .bl15-proof em {
  display: block;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 600;
}

body.home .bl15-quick-card {
  width: min(430px, 100%);
  justify-self: end;
  margin-top: 286px;
  padding: 22px 24px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(2,18,38,.86), rgba(2,24,50,.75));
  border: 1px solid rgba(135, 192, 245, .23);
  box-shadow: 0 26px 70px rgba(0, 10, 24, .42), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}

body.home .bl15-quick-card h2 {
  margin: 0 0 18px;
  color: #fff;
  text-align: center;
  font-size: 19px;
  line-height: 1.15;
}

body.home .bl15-quick-card .lead-form {
  display: grid;
  gap: 12px;
}

body.home .bl15-quick-card .lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.home .bl15-quick-card .lead-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.home .bl15-quick-card .lead-form input,
body.home .bl15-quick-card .lead-form select {
  min-height: 48px;
  border-radius: 7px;
  padding: 0 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(154, 198, 235, .25);
}

body.home .bl15-quick-card .lead-form input::placeholder {
  color: rgba(255,255,255,.72);
}

body.home .bl15-quick-card .lead-form select option {
  color: #061d3b;
}

body.home .bl15-quick-card .lead-form .btn {
  min-height: 50px;
  border-radius: 7px;
  font-size: 16px;
}

body.home .bl15-consent {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

body.home .bl15-consent input {
  width: 15px !important;
  height: 15px !important;
  min-height: 15px !important;
  flex: 0 0 15px !important;
  margin: 0 !important;
}

body.home .bl15-consent label {
  display: inline !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

body.home .bl15-consent a {
  color: rgba(255,255,255,.86) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* Extra protection against oversized header/logo artifacts */
.site-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 96px !important;
  min-width: 96px !important;
  height: 64px !important;
  overflow: hidden !important;
}
.site-logo img {
  width: 96px !important;
  max-width: 96px !important;
  height: auto !important;
  max-height: 64px !important;
  object-fit: contain !important;
}

@media (max-width: 1180px) {
  body.home .bl15-hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  body.home .bl15-hero__grid {
    grid-template-columns: 1fr;
  }
  body.home .bl15-quick-card {
    justify-self: start;
    margin-top: 30px;
    max-width: 430px;
  }
  body.home .bl15-proof {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    max-width: 580px;
  }
}

@media (max-width: 760px) {
  body.home .bl15-hero {
    padding: 102px 0 44px;
  }
  body.home .bl15-hero__bg img {
    object-position: 66% center;
    opacity: .45;
  }
  body.home .bl15-hero__copy h1 {
    font-size: 40px;
  }
  body.home .bl15-hero__actions {
    flex-direction: column;
  }
  body.home .bl15-hero__actions .btn {
    width: 100%;
  }
  body.home .bl15-proof {
    grid-template-columns: 1fr;
    max-width: none;
  }
  body.home .bl15-quick-card {
    width: 100%;
    max-width: none;
  }
  body.home .bl15-quick-card .lead-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.5.2 — hero compactness and better text rhythm */
body.home .bl15-hero {
  min-height: 650px;
  padding: 108px 0 54px;
}

body.home .bl15-hero__grid {
  grid-template-columns: minmax(0, 590px) minmax(360px, 430px);
}

body.home .bl15-hero__copy {
  padding-top: 10px;
}

body.home .bl15-hero__copy h1 {
  max-width: 590px;
  font-size: clamp(42px, 4.55vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin-bottom: 20px;
}

body.home .bl15-hero__subtitle {
  max-width: 545px;
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.55;
  margin-bottom: 28px;
}

body.home .bl15-hero__actions .btn {
  min-height: 52px;
  padding: 0 28px;
}

body.home .bl15-proof {
  margin-top: 34px;
  gap: 16px 24px;
}

body.home .bl15-proof strong {
  font-size: 16px;
}

body.home .bl15-proof em {
  font-size: 11.5px;
}

/* form lower, but hero itself is shorter */
body.home .bl15-quick-card {
  margin-top: 312px;
}

/* pull next stats block closer to reduce empty feel */
body.home .home-stats-section {
  margin-top: -28px;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

@media (max-width: 1180px) {
  body.home .bl15-hero {
    min-height: auto;
    padding-bottom: 54px;
  }
  body.home .bl15-quick-card {
    margin-top: 28px;
  }
}

@media (max-width: 760px) {
  body.home .bl15-hero {
    padding: 96px 0 40px;
  }
  body.home .bl15-hero__copy h1 {
    font-size: 38px;
  }
}


/* v1.5.3 — home visual polish: premium dark layout below hero */
body.home .site-main {
  background:
    radial-gradient(circle at 12% 4%, rgba(255,107,0,.09), transparent 28%),
    radial-gradient(circle at 86% 15%, rgba(31,112,205,.18), transparent 30%),
    linear-gradient(180deg, #061d3b 0%, #03152d 52%, #061d3b 100%);
}

/* Statistics: floating dark cards under hero */
body.home .home-stats-section {
  background: transparent;
  margin-top: -38px;
  padding: 0 0 38px;
  position: relative;
  z-index: 6;
}

body.home .stats-grid {
  gap: 14px;
}

body.home .stat-card {
  position: relative;
  min-height: 118px;
  text-align: left;
  color: #fff;
  padding: 24px 22px 22px 74px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,107,0,.16), transparent 34%),
    linear-gradient(145deg, rgba(6,34,70,.94), rgba(3,19,42,.90));
  border: 1px solid rgba(129,192,255,.16);
  box-shadow: 0 22px 64px rgba(0, 11, 28, .36), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

body.home .stat-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,107,0,.42);
  background:
    linear-gradient(135deg, rgba(255,107,0,.23), rgba(255,107,0,.06)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 46%);
  box-shadow: 0 0 22px rgba(255,107,0,.12);
}

body.home .stat-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.13), transparent 68%);
}

body.home .stat-card strong {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: .95;
  letter-spacing: -.035em;
}

body.home .stat-card span {
  position: relative;
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.28;
  margin-top: 9px;
}

/* Section titles */
body.home .center-title,
body.home .dark-strip h2,
body.home .section h2 {
  color: #fff;
}

body.home .home-services {
  background: transparent;
  padding-top: 42px;
  padding-bottom: 46px;
}

body.home .home-services .center-title {
  margin-bottom: 28px;
}

/* Services: slightly asymmetric bento feel */
body.home .home-services .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.home .home-services .info-card {
  position: relative;
  min-height: 150px;
  color: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  background:
    linear-gradient(145deg, rgba(6,32,66,.88), rgba(3,19,42,.86));
  border: 1px solid rgba(129,192,255,.14);
  box-shadow: 0 18px 52px rgba(0, 12, 30, .26), inset 0 1px 0 rgba(255,255,255,.07);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.home .home-services .info-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -40px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.14), transparent 70%);
}

body.home .home-services .info-card:nth-child(1),
body.home .home-services .info-card:nth-child(4) {
  transform: translateY(-8px);
}

body.home .home-services .info-card:nth-child(6) {
  transform: translateY(8px);
}

body.home .home-services .info-card h3 {
  color: #fff;
  margin-top: 14px;
}

body.home .home-services .info-card p {
  color: rgba(255,255,255,.70);
}

body.home .home-services .info-card .bl-icon {
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 13px;
  background: rgba(255,107,0,.10);
  border: 1px solid rgba(255,107,0,.28);
}

body.home .home-services .info-card .bl-icon img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(98%) saturate(2389%) hue-rotate(359deg) brightness(102%) contrast(103%);
}

body.home .home-services .info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,.42);
  box-shadow: 0 26px 72px rgba(0, 12, 30, .42), 0 0 34px rgba(255,107,0,.10);
}

/* Map as visual centerpiece */
body.home .map-section {
  position: relative;
  background: transparent;
  color: #fff;
  padding: 54px 0 68px;
  overflow: hidden;
}

body.home .map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,31,64,.86), rgba(3,18,39,.68)),
    radial-gradient(circle at 72% 52%, rgba(255,107,0,.12), transparent 34%);
  pointer-events: none;
}

body.home .map-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: .34fr .66fr;
  gap: 42px;
}

body.home .map-layout > div:first-child {
  padding: 24px 0;
}

body.home .map-layout h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

body.home .map-layout p {
  color: rgba(255,255,255,.74);
}

body.home .russia-map {
  min-height: 360px;
  border-radius: 26px;
  border: 1px solid rgba(129,192,255,.16);
  background:
    radial-gradient(circle at 42% 45%, rgba(255,255,255,.12), transparent 38%),
    linear-gradient(145deg, rgba(5,31,64,.76), rgba(2,16,35,.56));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 26px 80px rgba(0, 10, 27, .34);
}

body.home .russia-map::before {
  background: linear-gradient(135deg, rgba(17,84,153,.74), rgba(10,57,111,.76));
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.20));
}

body.home .russia-map span {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 20px rgba(255,107,0,.9);
}

/* Advantages */
body.home .dark-strip {
  background: transparent;
  padding-top: 54px;
  padding-bottom: 44px;
}

body.home .dark-strip h2 {
  text-align: center;
  margin-bottom: 30px;
}

body.home .dark-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.home .dark-item {
  min-height: 96px;
  color: #fff;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(6,32,66,.82), rgba(3,19,42,.78));
  border: 1px solid rgba(129,192,255,.14);
  box-shadow: 0 15px 44px rgba(0, 12, 30, .22);
}

body.home .dark-item .bl-icon {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 13px;
  background: rgba(255,107,0,.10);
  border: 1px solid rgba(255,107,0,.25);
}

body.home .dark-item .bl-icon img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(98%) saturate(2389%) hue-rotate(359deg) brightness(102%) contrast(103%);
}

/* Partners */
body.home .partners-section {
  background: transparent;
  padding-top: 38px;
  padding-bottom: 36px;
}

body.home .partners-row {
  padding: 26px 30px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(129,192,255,.14);
  color: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 16px 46px rgba(0, 12, 30, .18);
  gap: 38px;
}

body.home .partners-row span {
  opacity: .86;
  transition: opacity .2s ease, transform .2s ease;
}

body.home .partners-row span:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Process */
body.home .process-section,
body.home .section:has(.process-grid) {
  background: transparent;
}

body.home .process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

body.home .process-step {
  color: #fff;
  min-height: 148px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(6,32,66,.82), rgba(3,19,42,.78));
  border: 1px solid rgba(129,192,255,.14);
  box-shadow: 0 15px 44px rgba(0, 12, 30, .22);
}

body.home .process-step p {
  color: rgba(255,255,255,.68);
}

body.home .step-num {
  background: transparent;
  color: var(--orange);
  border: 1px solid rgba(255,107,0,.55);
  box-shadow: 0 0 18px rgba(255,107,0,.10);
}

/* Bottom CTA */
body.home .cta-section {
  background: transparent;
}

body.home .cta-panel {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,107,0,.98), rgba(255,107,0,.86)),
    radial-gradient(circle at 85% 50%, rgba(255,255,255,.20), transparent 32%);
  box-shadow: 0 28px 90px rgba(0, 10, 27, .34);
}

body.home .cta-panel h2 {
  color: #fff;
}

body.home .cta-panel p {
  color: rgba(255,255,255,.82);
}

/* Mobile / tablet */
@media (max-width: 1180px) {
  body.home .stats-grid,
  body.home .home-services .card-grid,
  body.home .dark-grid,
  body.home .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .home-services .info-card:nth-child(n) {
    transform: none;
  }

  body.home .map-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.home .stats-grid,
  body.home .home-services .card-grid,
  body.home .dark-grid,
  body.home .process-grid {
    grid-template-columns: 1fr;
  }

  body.home .home-stats-section {
    margin-top: 0;
    padding-top: 26px;
  }

  body.home .stat-card {
    padding-left: 74px;
  }

  body.home .map-section {
    padding-top: 42px;
  }

  body.home .russia-map {
    min-height: 260px;
  }
}

/* v1.5.4 — refined stats and services alignment */
body.home .stats-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px;align-items:stretch}
body.home .stat-card{display:grid;grid-template-columns:48px minmax(0,1fr);grid-template-rows:auto auto;align-content:center;align-items:center;column-gap:14px;row-gap:4px;min-height:116px;padding:22px 18px!important;text-align:left}
body.home .stat-card::before{position:static;grid-row:1/span 2;width:48px;height:48px;border-radius:16px;background-repeat:no-repeat;background-position:center;background-size:28px 28px,100% 100%;border:1px solid rgba(255,107,0,.28);box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 0 24px rgba(255,107,0,.10)}
body.home .stat-card-1::before{background-image:url('../icons/stat-revenue.svg'),radial-gradient(circle at 30% 30%,rgba(255,255,255,.16),transparent 44%),linear-gradient(145deg,rgba(255,107,0,.16),rgba(255,107,0,.06))}
body.home .stat-card-2::before{background-image:url('../icons/stat-clients.svg'),radial-gradient(circle at 30% 30%,rgba(255,255,255,.16),transparent 44%),linear-gradient(145deg,rgba(255,107,0,.16),rgba(255,107,0,.06))}
body.home .stat-card-3::before{background-image:url('../icons/stat-shipments.svg'),radial-gradient(circle at 30% 30%,rgba(255,255,255,.16),transparent 44%),linear-gradient(145deg,rgba(255,107,0,.16),rgba(255,107,0,.06))}
body.home .stat-card-4::before{background-image:url('../icons/stat-warehouses.svg'),radial-gradient(circle at 30% 30%,rgba(255,255,255,.16),transparent 44%),linear-gradient(145deg,rgba(255,107,0,.16),rgba(255,107,0,.06))}
body.home .stat-card-5::before{background-image:url('../icons/stat-team.svg'),radial-gradient(circle at 30% 30%,rgba(255,255,255,.16),transparent 44%),linear-gradient(145deg,rgba(255,107,0,.16),rgba(255,107,0,.06))}
body.home .stat-card strong{grid-column:2;white-space:nowrap;font-size:clamp(25px,2.1vw,34px);line-height:1;letter-spacing:-.035em}
body.home .stat-card span{grid-column:2;margin:0;max-width:130px;font-size:13px;line-height:1.22;color:rgba(255,255,255,.70)}
body.home .home-services .card-grid{align-items:stretch}
body.home .home-services .info-card,body.home .home-services .info-card:nth-child(1),body.home .home-services .info-card:nth-child(4),body.home .home-services .info-card:nth-child(6){transform:none!important}
body.home .home-services .info-card{display:flex;flex-direction:column;min-height:190px;height:100%;padding:24px 22px 22px}
body.home .home-services .info-card .bl-icon{flex:0 0 auto}
body.home .home-services .info-card h3{min-height:50px;display:flex;align-items:flex-start}
body.home .home-services .info-card p{flex:1 1 auto}
body.home .home-services .info-card a{margin-top:18px;align-self:flex-start}
body.home .home-services .info-card:hover{transform:translateY(-5px)!important}
.reveal-on-scroll{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease}
.reveal-on-scroll.is-visible{opacity:1;transform:translateY(0)}
@media (prefers-reduced-motion:reduce){.reveal-on-scroll{opacity:1;transform:none;transition:none}}
@media (max-width:1180px){body.home .stats-grid{grid-template-columns:repeat(3,minmax(0,1fr))}body.home .stat-card span{max-width:none}}
@media (max-width:760px){body.home .stats-grid{grid-template-columns:1fr}body.home .stat-card{grid-template-columns:46px minmax(0,1fr);min-height:94px}body.home .stat-card::before{width:46px;height:46px;background-size:27px 27px,100% 100%}body.home .stat-card strong{font-size:30px}body.home .home-services .info-card h3{min-height:auto}}


/* v1.5.5 — hero blending, mobile fixes, cleaner stats icons, improved service icons */
body.home .bl15-hero {
  min-height: 640px;
}
body.home .bl15-hero__bg img {
  transform: scale(1.035);
  filter: saturate(.92) brightness(.92);
}
body.home .bl15-hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(2, 11, 26, 1) 0%,
      rgba(2, 15, 34, .97) 24%,
      rgba(4, 23, 49, .83) 40%,
      rgba(4, 22, 47, .50) 55%,
      rgba(4, 20, 43, .23) 72%,
      rgba(4, 20, 43, .18) 100%
    ),
    radial-gradient(circle at 71% 45%, rgba(255, 128, 24, .14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(6,29,59,.78), rgba(6,29,59,0) 44%),
    linear-gradient(180deg, rgba(4,18,39,.10) 0%, rgba(6,29,59,.10) 70%, rgba(6,29,59,.58) 100%);
}
body.home .bl15-hero::after {
  height: 176px;
  background: linear-gradient(180deg, rgba(6,29,59,0) 0%, rgba(6,29,59,.22) 34%, #061d3b 100%);
}

/* Mobile hero rebuild */
@media (max-width: 900px) {
  body.home .bl15-hero {
    min-height: auto;
    padding: 92px 0 34px;
    overflow: hidden;
  }
  body.home .bl15-hero__bg img {
    object-position: 76% center;
    transform: scale(1.06);
    opacity: .34;
  }
  body.home .bl15-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body.home .bl15-hero__copy {
    max-width: 100%;
    padding-top: 0;
  }
  body.home .bl15-hero__copy h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
  }
  body.home .bl15-hero__subtitle {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.48;
  }
  body.home .bl15-hero__actions {
    gap: 12px;
  }
  body.home .bl15-hero__actions .btn {
    width: 100%;
    min-height: 50px;
  }
  body.home .bl15-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    max-width: none;
    margin-top: 24px;
  }
  body.home .bl15-proof span {
    min-height: 42px;
    grid-template-columns: 30px minmax(0,1fr);
    column-gap: 10px;
  }
  body.home .bl15-proof .bl-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  body.home .bl15-proof strong {
    font-size: 15px;
  }
  body.home .bl15-proof em {
    font-size: 11px;
  }
  body.home .bl15-quick-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-top: 4px;
    padding: 18px 16px 16px;
    border-radius: 14px;
  }
  body.home .bl15-quick-card h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  body.home .bl15-quick-card .lead-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body.home .bl15-quick-card .lead-form {
    gap: 10px;
  }
}
@media (max-width: 560px) {
  body.home .bl15-proof {
    grid-template-columns: 1fr;
  }
}

/* Stats icons without visible square frame */
body.home .stat-card {
  padding: 22px 20px !important;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
}
body.home .stat-card::before {
  width: 42px;
  height: 42px;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 34px 34px !important;
}
body.home .stat-card-1::before { background-image: url('../icons/stat-revenue.svg') !important; }
body.home .stat-card-2::before { background-image: url('../icons/stat-clients.svg') !important; }
body.home .stat-card-3::before { background-image: url('../icons/stat-shipments.svg') !important; }
body.home .stat-card-4::before { background-image: url('../icons/stat-warehouses.svg') !important; }
body.home .stat-card-5::before { background-image: url('../icons/stat-team.svg') !important; }
body.home .stat-card span {
  max-width: 140px;
}

/* Service card icons refined */
body.home .home-services .card-grid {
  align-items: stretch;
  gap: 16px;
}
body.home .home-services .info-card {
  min-height: 198px;
}
body.home .home-services .info-card .bl-icon {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.home .home-services .info-card .bl-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: none;
  opacity: .98;
}
body.home .home-services .info-card h3 {
  min-height: 48px;
}
body.home .home-services .info-card p {
  color: rgba(255,255,255,.74);
}
body.home .home-services .info-card::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.10), transparent 68%);
  pointer-events: none;
}
body.home .home-services .info-card:hover {
  transform: translateY(-4px) !important;
}
@media (max-width: 1180px) {
  body.home .home-services .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body.home .home-services .card-grid {
    grid-template-columns: 1fr;
  }
  body.home .home-services .info-card {
    min-height: 170px;
  }
}


/* v1.5.6 — seamless section transitions + refined stats layout */
body .site-main {
  background:
    radial-gradient(circle at 14% 7%, rgba(255,107,0,.08), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(19,95,184,.14), transparent 28%),
    linear-gradient(180deg, #061d3b 0%, #03152d 45%, #061d3b 100%);
}

/* Stronger hero blend to the next section */
body.home .bl15-hero {
  min-height: 632px;
  padding-bottom: 42px;
}

body.home .bl15-hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(2, 11, 26, 1) 0%,
      rgba(2, 15, 34, .98) 24%,
      rgba(4, 23, 49, .86) 40%,
      rgba(4, 22, 47, .54) 55%,
      rgba(4, 20, 43, .28) 72%,
      rgba(4, 20, 43, .22) 100%
    ),
    radial-gradient(circle at 71% 45%, rgba(255, 128, 24, .14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(6,29,59,.92), rgba(6,29,59,0) 48%),
    linear-gradient(180deg, rgba(4,18,39,.08) 0%, rgba(6,29,59,.14) 70%, rgba(6,29,59,.72) 100%);
}

body.home .bl15-hero::after {
  height: 210px;
  background:
    linear-gradient(180deg,
      rgba(6,29,59,0) 0%,
      rgba(6,29,59,.22) 24%,
      rgba(6,29,59,.74) 62%,
      #061d3b 100%);
}

/* Seamless stats section right under hero */
body.home .home-stats-section {
  position: relative;
  margin-top: -48px;
  padding: 24px 0 34px;
  background: transparent;
  z-index: 6;
}
body.home .home-stats-section::before {
  content: "";
  position: absolute;
  inset: -60px 0 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(6,29,59,0) 0%,
      rgba(6,29,59,.55) 24%,
      rgba(6,29,59,.96) 72%,
      #061d3b 100%);
}

body.home .stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.home .stat-card {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 112px;
}
body.home .stat-card strong {
  font-size: clamp(24px, 2vw, 32px);
}
body.home .stat-card:first-child strong {
  font-size: clamp(22px, 1.85vw, 30px);
  letter-spacing: -.045em;
}
body.home .stat-card span {
  max-width: 150px;
}
body.home .stat-card::before {
  width: 42px;
  height: 42px;
  background-size: 32px 32px !important;
}

/* General section continuity */
body .section {
  position: relative;
}
body .section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: transparent;
  pointer-events: none;
}

/* soften other home section seams */
body.home .home-services,
body.home .map-section,
body.home .dark-strip,
body.home .partners-section,
body.home .process-section,
body.home .cta-section {
  background: transparent;
}
body.home .home-services::before,
body.home .map-section::before,
body.home .dark-strip::before,
body.home .partners-section::before,
body.home .process-section::before,
body.home .cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -42px;
  height: 42px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,29,59,0), rgba(6,29,59,.08) 65%, rgba(6,29,59,0));
  z-index: 0;
}

/* Mobile continuity */
@media (max-width: 900px) {
  body.home .bl15-hero {
    padding-bottom: 28px;
  }
  body.home .bl15-hero::after {
    height: 140px;
  }
  body.home .home-stats-section {
    margin-top: -12px;
    padding-top: 16px;
  }
  body.home .home-stats-section::before {
    inset: -24px 0 0 0;
  }
}
@media (max-width: 1180px) {
  body.home .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  body.home .stats-grid {
    grid-template-columns: 1fr;
  }
  body.home .stat-card:first-child strong,
  body.home .stat-card strong {
    font-size: 28px;
  }
  body.home .stat-card span {
    max-width: none;
  }
}


/* v1.5.7 — fix hero seam/button line + custom service icons */
body.home .bl15-hero {
  position: relative;
  z-index: 8;
  overflow: hidden;
  background: #061d3b;
}
body.home .bl15-hero__bg {
  z-index: -3;
}
body.home .bl15-hero__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,29,59,0) 0%, rgba(6,29,59,.26) 36%, rgba(6,29,59,.78) 72%, #061d3b 100%);
}
body.home .bl15-hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(2,11,26,1) 0%,
      rgba(2,15,34,.98) 23%,
      rgba(4,23,49,.86) 40%,
      rgba(4,22,47,.58) 56%,
      rgba(6,29,59,.38) 73%,
      rgba(6,29,59,.36) 100%
    ),
    radial-gradient(circle at 72% 46%, rgba(255,128,24,.12), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(6,29,59,.12) 56%, rgba(6,29,59,.52) 100%);
}
body.home .bl15-hero::after {
  height: 0 !important;
  background: none !important;
}
body.home .bl15-hero__inner,
body.home .bl15-hero__copy,
body.home .bl15-quick-card {
  position: relative;
  z-index: 12;
}
body.home .bl15-quick-card {
  overflow: hidden;
}
body.home .bl15-quick-card .lead-form .btn {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background-clip: padding-box;
}
body.home .home-stats-section {
  position: relative;
  z-index: 4;
  margin-top: -20px;
  padding-top: 6px;
}
body.home .home-stats-section::before {
  display: none !important;
}

/* overall seam cleanup between sections */
body.home .home-services::before,
body.home .map-section::before,
body.home .dark-strip::before,
body.home .partners-section::before,
body.home .process-section::before,
body.home .cta-section::before {
  top: -30px;
  height: 30px;
  background: linear-gradient(180deg, rgba(6,29,59,0), rgba(6,29,59,.05) 58%, rgba(6,29,59,0));
}

/* stats first card fit */
body.home .stat-card:first-child strong {
  font-size: clamp(20px, 1.6vw, 27px) !important;
  letter-spacing: -.04em;
}
body.home .stat-card:first-child span {
  max-width: 135px;
}

/* services — bigger icon column and larger custom symbols */
body.home .home-services .info-card {
  grid-template-columns: 72px 1fr;
  gap: 8px 18px;
  min-height: 206px;
}
body.home .home-services .info-card .bl-icon {
  width: 64px !important;
  height: 64px !important;
  align-self: start;
}
body.home .home-services .info-card .bl-icon img {
  width: 64px !important;
  height: 64px !important;
}
body.home .home-services .info-card h3 {
  min-height: 44px;
  align-items: center;
}
body.home .home-services .info-card p {
  line-height: 1.45;
}
body.home .home-services .info-card::before {
  width: 92px;
  height: 92px;
  opacity: .8;
}

/* mobile */
@media (max-width: 900px) {
  body.home .bl15-hero__bg::after {
    height: 44%;
  }
  body.home .home-stats-section {
    margin-top: 0;
    padding-top: 14px;
  }
}
@media (max-width: 760px) {
  body.home .home-services .info-card {
    grid-template-columns: 62px 1fr;
    min-height: 182px;
  }
  body.home .home-services .info-card .bl-icon,
  body.home .home-services .info-card .bl-icon img {
    width: 56px !important;
    height: 56px !important;
  }
}


/* v1.5.8 — lighter hero blend + prevent truck image from touching stats section */
body.home .bl15-hero {
  z-index: 5;
  padding-bottom: 36px;
}

body.home .bl15-hero__bg::after {
  height: 24%;
  background: linear-gradient(
    180deg,
    rgba(6,29,59,0) 0%,
    rgba(6,29,59,.10) 42%,
    rgba(6,29,59,.34) 72%,
    rgba(6,29,59,.82) 100%
  );
}

body.home .bl15-hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(2,11,26,.98) 0%,
      rgba(2,15,34,.95) 23%,
      rgba(4,23,49,.78) 40%,
      rgba(4,22,47,.46) 56%,
      rgba(6,29,59,.24) 73%,
      rgba(6,29,59,.20) 100%
    ),
    radial-gradient(circle at 72% 46%, rgba(255,128,24,.10), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(6,29,59,.08) 60%, rgba(6,29,59,.28) 100%);
}

body.home .bl15-hero__inner,
body.home .bl15-hero__copy,
body.home .bl15-quick-card {
  z-index: 8;
}

body.home .home-stats-section {
  z-index: 2;
  margin-top: 0 !important;
  padding-top: 12px;
}

body.home .home-stats-section::before {
  display: none !important;
}

/* ensure first section visually ends before the next starts */
body.home .stats-grid {
  margin-top: 0;
}

@media (max-width: 900px) {
  body.home .bl15-hero {
    padding-bottom: 24px;
  }
  body.home .bl15-hero__bg::after {
    height: 22%;
  }
  body.home .home-stats-section {
    margin-top: 0 !important;
    padding-top: 10px;
  }
}


/* v1.6.0 — stronger bottom blend, CIS icon update, larger stat icons, centered service cards */
body.home .bl15-hero__bg::after {
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(6,29,59,0) 0%,
    rgba(6,29,59,.14) 36%,
    rgba(6,29,59,.42) 66%,
    rgba(6,29,59,.90) 100%
  );
}

body.home .bl15-hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(2,11,26,.98) 0%,
      rgba(2,15,34,.95) 23%,
      rgba(4,23,49,.78) 40%,
      rgba(4,22,47,.46) 56%,
      rgba(6,29,59,.28) 73%,
      rgba(6,29,59,.24) 100%
    ),
    radial-gradient(circle at 72% 46%, rgba(255,128,24,.10), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(6,29,59,.10) 58%, rgba(6,29,59,.36) 100%);
}

/* Bigger icons in stats cards */
body.home .stat-card {
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 118px;
}
body.home .stat-card::before {
  width: 50px !important;
  height: 50px !important;
  background-size: 40px 40px !important;
}
body.home .stat-card strong {
  font-size: clamp(24px, 2vw, 33px);
}
body.home .stat-card span {
  max-width: 155px;
}

/* Center services icon + text */
body.home .home-services .card-grid {
  align-items: stretch;
}

body.home .home-services .info-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  min-height: 214px;
  padding: 26px 24px 24px;
}

body.home .home-services .info-card::before {
  right: 50%;
  transform: translateX(50%);
  top: 12px;
  width: 88px;
  height: 88px;
  opacity: .65;
}

body.home .home-services .info-card .bl-icon {
  width: 68px !important;
  height: 68px !important;
  margin: 0 auto 16px !important;
  align-self: center !important;
  justify-self: center !important;
  display: block !important;
}

body.home .home-services .info-card .bl-icon img {
  width: 68px !important;
  height: 68px !important;
  display: block;
  margin: 0 auto;
}

body.home .home-services .info-card h3 {
  min-height: 46px;
  margin: 0 0 10px;
  justify-content: center !important;
  text-align: center !important;
  align-items: center !important;
}

body.home .home-services .info-card p {
  width: 100%;
  margin: 0 auto;
  text-align: center !important;
  line-height: 1.46;
}

body.home .home-services .info-card a {
  align-self: center !important;
  margin-top: 16px;
}

@media (max-width: 900px) {
  body.home .bl15-hero__bg::after {
    height: 28%;
  }
  body.home .stat-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }
  body.home .stat-card::before {
    width: 46px !important;
    height: 46px !important;
    background-size: 36px 36px !important;
  }
  body.home .home-services .info-card {
    min-height: 196px;
  }
}

@media (max-width: 760px) {
  body.home .home-services .info-card {
    min-height: 178px;
    padding: 22px 18px 20px;
  }
  body.home .home-services .info-card .bl-icon,
  body.home .home-services .info-card .bl-icon img {
    width: 58px !important;
    height: 58px !important;
  }
}


/* v1.6.1 — hero bottom fade matched exactly to #061d3b */
body.home .bl15-hero {
  background: #061d3b;
}

body.home .bl15-hero__bg::after {
  height: 32%;
  background: linear-gradient(
    180deg,
    rgba(6,29,59,0) 0%,
    rgba(6,29,59,0.10) 26%,
    rgba(6,29,59,0.34) 52%,
    rgba(6,29,59,0.74) 76%,
    #061d3b 100%
  ) !important;
}

body.home .bl15-hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(2,11,26,.98) 0%,
      rgba(2,15,34,.95) 23%,
      rgba(4,23,49,.78) 40%,
      rgba(4,22,47,.46) 56%,
      rgba(6,29,59,.28) 73%,
      rgba(6,29,59,.24) 100%
    ),
    radial-gradient(circle at 72% 46%, rgba(255,128,24,.10), transparent 25%),
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(6,29,59,.08) 48%,
      rgba(6,29,59,.28) 72%,
      #061d3b 100%
    ) !important;
}

body.home .home-stats-section {
  background: #061d3b;
}

@media (max-width: 900px) {
  body.home .bl15-hero__bg::after {
    height: 30%;
  }
}


/* v1.6.2 — CIS orange icon + first-pass map polish */
body.home .home-services .info-card .bl-icon img[src*="map-cis"] {
  width: 72px !important;
  height: 72px !important;
}

/* Map section refined */
body.home .map-section {
  padding-top: 56px;
  padding-bottom: 74px;
}
body.home .map-layout {
  grid-template-columns: .38fr .62fr;
  gap: 40px;
  align-items: center;
}
body.home .map-layout > div:first-child {
  position: relative;
  z-index: 2;
}
body.home .map-layout h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
body.home .map-layout p {
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.6;
  max-width: 420px;
}
body.home .russia-map {
  min-height: 400px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 42% 42%, rgba(255,255,255,.09), transparent 34%),
    linear-gradient(145deg, rgba(8,33,66,.88), rgba(3,18,39,.88));
  border: 1px solid rgba(129,192,255,.14);
  box-shadow: 0 24px 70px rgba(0, 10, 27, .30), inset 0 1px 0 rgba(255,255,255,.08);
}
body.home .russia-map::before {
  inset: 38px 28px;
  background:
    linear-gradient(135deg, rgba(22,93,166,.72), rgba(10,57,111,.72));
  clip-path: polygon(3% 54%,10% 48%,15% 39%,23% 33%,32% 31%,41% 21%,54% 28%,61% 25%,68% 30%,77% 27%,89% 38%,97% 48%,92% 58%,83% 60%,72% 57%,61% 67%,49% 74%,37% 66%,28% 70%,18% 66%,10% 63%);
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.22));
  opacity: .92;
}
body.home .russia-map::after {
  content: "45 городов присутствия";
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(3,19,42,.66);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
body.home .russia-map span {
  width: 12px;
  height: 12px;
  background: linear-gradient(180deg, #ff8532, #ff6b00);
  clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
  box-shadow: 0 0 0 0 rgba(255,107,0,.62), 0 0 18px rgba(255,107,0,.55);
  animation: pulse-star 2s infinite;
}
body.home .russia-map span:nth-child(3n) { width: 10px; height: 10px; }
body.home .russia-map span:nth-child(5n) { width: 14px; height: 14px; }
@keyframes pulse-star {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,0,.48), 0 0 18px rgba(255,107,0,.42); }
  70% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(255,107,0,0), 0 0 26px rgba(255,107,0,.24); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,0,0), 0 0 18px rgba(255,107,0,.42); }
}
@media (max-width: 980px) {
  body.home .map-layout { grid-template-columns: 1fr; gap: 22px; }
  body.home .russia-map { min-height: 340px; }
}
@media (max-width: 640px) {
  body.home .russia-map { min-height: 280px; border-radius: 22px; }
  body.home .russia-map::after { left: 14px; bottom: 14px; font-size: 12px; padding: 8px 12px; }
  body.home .russia-map span { width: 10px; height: 10px; }
}


/* v1.6.3 — real RF map asset with overlay stars */
body.home .russia-map {
  min-height: 430px;
  display: block;
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(8,33,66,.88), rgba(3,18,39,.88));
  border: 1px solid rgba(129,192,255,.14);
  box-shadow: 0 24px 70px rgba(0, 10, 27, .30), inset 0 1px 0 rgba(255,255,255,.08);
}
body.home .russia-map::before,
body.home .russia-map::after {
  content: none !important;
  display: none !important;
}
body.home .russia-map__img {
  position: absolute;
  inset: 16px 16px 18px 16px;
  width: calc(100% - 32px);
  height: calc(100% - 34px);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.18));
  pointer-events: none;
}
body.home .russia-map .map-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, #ffe3bf 0 18%, #ff9b45 18% 48%, #ff6b00 48% 100%);
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  box-shadow: 0 0 0 0 rgba(255,107,0,.48), 0 0 16px rgba(255,107,0,.55);
  animation: pulse-star 2s infinite;
  animation-delay: var(--d);
}
body.home .russia-map .map-star--lg { width: 16px; height: 16px; box-shadow: 0 0 0 0 rgba(255,107,0,.58), 0 0 20px rgba(255,107,0,.72); }
body.home .russia-map .map-star--xl { width: 22px; height: 22px; box-shadow: 0 0 0 0 rgba(255,107,0,.68), 0 0 26px rgba(255,107,0,.88); }
@keyframes pulse-star {
  0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(255,107,0,.48), 0 0 16px rgba(255,107,0,.55); }
  70% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 14px rgba(255,107,0,0), 0 0 28px rgba(255,107,0,.20); }
  100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(255,107,0,0), 0 0 16px rgba(255,107,0,.55); }
}
@media (max-width: 980px) {
  body.home .russia-map { min-height: 340px; }
}
@media (max-width: 640px) {
  body.home .russia-map { min-height: 280px; padding: 12px; }
  body.home .russia-map__img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  body.home .russia-map .map-star { width: 9px; height: 9px; }
  body.home .russia-map .map-star--lg { width: 13px; height: 13px; }
  body.home .russia-map .map-star--xl { width: 18px; height: 18px; }
}


/* v1.6.4 — move RF map into "Компания в цифрах" like the sketch */
body.home .company-figures-section {
  padding-top: 22px;
  padding-bottom: 30px;
  background: linear-gradient(180deg, #eef2f7 0%, #f7f9fc 100%);
}
body.home .company-figures-section .center-title {
  margin-bottom: 24px;
  color: #0b2340;
}
body.home .company-figures-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .95fr);
  gap: 26px;
  align-items: center;
}
body.home .russia-map--figures {
  min-height: 400px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
body.home .russia-map--figures .russia-map__img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(22,42,74,.12));
}
body.home .company-figures-stats {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
body.home .company-figures-stats .stat-card {
  min-height: 122px;
  background: #ffffff;
  color: #0b2340;
  border: 1px solid rgba(6,29,59,.08);
  box-shadow: 0 16px 36px rgba(12,23,48,.08);
}
body.home .company-figures-stats .stat-card strong { color: #ff6b00; }
body.home .company-figures-stats .stat-card span { color: rgba(11,35,64,.78); }
body.home .company-figures-stats .stat-card::before {
  box-shadow: none;
  border-color: rgba(255,107,0,.18);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,107,0,.12) 43% 57%, transparent 58%),
    rgba(255,107,0,.06);
}
/* reduce extra gap and hide separate geography map to avoid duplication */
body.home .home-services { padding-top: 8px; }
body.home .map-section { display: none; }

@media (max-width: 1100px) {
  body.home .company-figures-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.home .russia-map--figures {
    min-height: 340px;
  }
}
@media (max-width: 760px) {
  body.home .company-figures-section { padding-top: 12px; }
  body.home .russia-map--figures { min-height: 255px; }
  body.home .company-figures-stats { grid-template-columns: 1fr; }
}


/* v1.6.5 — restore geography block map, transparent RF map with visible regional boundaries */
body.home .company-figures-section {
  padding-top: 20px;
  padding-bottom: 22px;
  background: linear-gradient(180deg, #eef2f7 0%, #f7f9fc 100%);
}
body.home .company-figures-section .center-title {
  margin-bottom: 20px;
  color: #0b2340;
}
body.home .company-figures-stats {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
body.home .company-figures-stats .stat-card {
  min-height: 122px;
  background: #ffffff;
  color: #0b2340;
  border: 1px solid rgba(6,29,59,.08);
  box-shadow: 0 16px 36px rgba(12,23,48,.08);
}
body.home .company-figures-stats .stat-card strong { color: #ff6b00; }
body.home .company-figures-stats .stat-card span { color: rgba(11,35,64,.78); }
body.home .company-figures-stats .stat-card::before {
  box-shadow: none;
  border-color: rgba(255,107,0,.18);
  background: linear-gradient(135deg, transparent 42%, rgba(255,107,0,.12) 43% 57%, transparent 58%), rgba(255,107,0,.06);
}

body.home .map-section {
  display: block !important;
  padding-top: 56px;
  padding-bottom: 68px;
  background: linear-gradient(135deg, #08203f 0%, #0b2c53 50%, #08203f 100%);
  color: #fff;
}
body.home .map-layout {
  display: grid;
  grid-template-columns: minmax(320px, .4fr) minmax(0, .6fr);
  gap: 34px;
  align-items: center;
}
body.home .map-layout h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
body.home .map-layout p {
  max-width: 420px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.6;
}
body.home .russia-map {
  position: relative;
  min-height: 410px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(145deg, rgba(8,33,66,.76), rgba(4,19,40,.78));
  border: 1px solid rgba(141,195,255,.18);
  box-shadow: 0 24px 70px rgba(0,10,27,.30), inset 0 1px 0 rgba(255,255,255,.08);
}
body.home .russia-map::before,
body.home .russia-map::after {
  content: none !important;
  display: none !important;
}
body.home .russia-map__img {
  position: absolute;
  inset: 26px 26px 24px 26px;
  width: calc(100% - 52px);
  height: calc(100% - 50px);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
  pointer-events: none;
}
body.home .russia-map .map-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, #fff2de 0 16%, #ffb16a 18% 46%, #ff6b00 48% 100%);
  clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
  box-shadow: 0 0 0 0 rgba(255,107,0,.42), 0 0 16px rgba(255,107,0,.50);
  animation: pulse-star 2s infinite;
  animation-delay: var(--d);
}
body.home .russia-map .map-star--lg { width: 16px; height: 16px; box-shadow: 0 0 0 0 rgba(255,107,0,.52), 0 0 22px rgba(255,107,0,.75); }
body.home .russia-map .map-star--xl { width: 22px; height: 22px; box-shadow: 0 0 0 0 rgba(255,107,0,.60), 0 0 28px rgba(255,107,0,.95); }

@media (max-width: 1150px) {
  body.home .company-figures-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.home .map-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.home .company-figures-stats { grid-template-columns: 1fr; }
  body.home .map-section { padding-top: 40px; padding-bottom: 44px; }
  body.home .russia-map { min-height: 280px; padding: 14px; border-radius: 22px; }
  body.home .russia-map__img { inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); }
  body.home .russia-map .map-star { width: 9px; height: 9px; }
  body.home .russia-map .map-star--lg { width: 13px; height: 13px; }
  body.home .russia-map .map-star--xl { width: 18px; height: 18px; }
}


/* v1.6.6 — Geography block transferred from sketch */
body.home .map-section--sketch {
  display: block !important;
  position: relative;
  overflow: hidden;
  padding: 48px 0 58px;
  background:
    radial-gradient(circle at 10% 16%, rgba(14,87,173,.18), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(12,70,145,.16), transparent 22%),
    linear-gradient(180deg, #041a35 0%, #072449 45%, #051d3e 100%);
}
body.home .map-section--sketch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
body.home .map-network-layout {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}
body.home .map-copy h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
body.home .map-copy p {
  margin: 0 0 42px;
  max-width: 420px;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
}
body.home .map-presence {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 40px;
}
body.home .map-presence strong {
  color: #ff6b00;
  font-size: clamp(70px, 6.4vw, 96px);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 800;
}
body.home .map-presence span {
  color: rgba(255,255,255,.88);
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 1.1;
  max-width: 280px;
}
body.home .map-copy .btn {
  min-width: 320px;
  min-height: 72px;
  justify-content: center;
  border-radius: 18px;
  border: 2px solid #ff6b00;
  color: #ff6b00;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,107,0,.08);
}
body.home .map-copy .btn:hover {
  background: rgba(255,107,0,.08);
}
body.home .network-map-visual {
  position: relative;
  min-height: 470px;
}
body.home .network-map-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.26));
}
/* disable legacy map visuals if any remain */
body.home .map-section--sketch .russia-map,
body.home .map-section--sketch .section-kicker { display: none !important; }

@media (max-width: 1200px) {
  body.home .map-network-layout {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    gap: 24px;
  }
  body.home .network-map-visual { min-height: 380px; }
}
@media (max-width: 920px) {
  body.home .map-section--sketch { padding: 38px 0 42px; }
  body.home .map-network-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  body.home .map-copy p { margin-bottom: 28px; max-width: none; }
  body.home .map-presence { margin-bottom: 28px; }
  body.home .map-copy .btn { min-width: 0; width: 100%; max-width: 360px; min-height: 62px; }
  body.home .network-map-visual { min-height: auto; }
}
@media (max-width: 640px) {
  body.home .map-copy h2 { font-size: 42px; }
  body.home .map-copy p { font-size: 18px; }
  body.home .map-presence strong { font-size: 62px; }
  body.home .map-presence span { font-size: 18px; }
  body.home .map-copy .btn { font-size: 18px; border-radius: 16px; }
}


/* v1.6.7 — unify dark backgrounds + HQ redrawn geography map */
body.home .company-figures-section,
body.home .map-section--sketch {
  background:
    radial-gradient(circle at 14% 12%, rgba(18,90,172,.16), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(10,71,148,.12), transparent 22%),
    linear-gradient(180deg, #041a35 0%, #061f40 42%, #051d3e 100%) !important;
}

body.home .company-figures-section {
  position: relative;
  padding-top: 22px;
  padding-bottom: 28px;
}
body.home .company-figures-section::before,
body.home .map-section--sketch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
body.home .company-figures-section .container,
body.home .map-network-layout {
  position: relative;
  z-index: 2;
}
body.home .company-figures-section .center-title {
  color: #ffffff;
}
body.home .company-figures-stats .stat-card {
  background: linear-gradient(180deg, rgba(8,35,70,.82), rgba(5,25,52,.84));
  color: #ffffff;
  border: 1px solid rgba(111,170,255,.18);
  box-shadow: 0 18px 40px rgba(0,10,27,.18), inset 0 1px 0 rgba(255,255,255,.04);
}
body.home .company-figures-stats .stat-card strong {
  color: #ff6b00;
}
body.home .company-figures-stats .stat-card span {
  color: rgba(255,255,255,.82);
}
body.home .company-figures-stats .stat-card::before {
  border-color: rgba(255,107,0,.22);
  background:
    linear-gradient(135deg, transparent 42%, rgba(255,107,0,.14) 43% 57%, transparent 58%),
    rgba(255,107,0,.08);
}

body.home .map-section--sketch {
  padding: 52px 0 58px;
}
body.home .map-copy h2 {
  margin-bottom: 20px;
}
body.home .map-copy p {
  margin-bottom: 34px;
  max-width: 430px;
}
body.home .map-presence {
  margin-bottom: 32px;
}
body.home .network-map-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
}
body.home .network-map-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.24));
}
/* slightly tighten section join between services and geography */
body.home .home-services {
  padding-bottom: 26px;
}

@media (max-width: 1200px) {
  body.home .network-map-visual { min-height: 340px; }
}
@media (max-width: 920px) {
  body.home .company-figures-section { padding-top: 18px; padding-bottom: 22px; }
  body.home .map-section--sketch { padding: 40px 0 44px; }
  body.home .map-copy p { margin-bottom: 26px; }
  body.home .map-presence { margin-bottom: 24px; }
  body.home .network-map-visual { min-height: auto; }
}


/* v1.6.8 — transparent redrawn geography map + unified dark sections */
body.home .company-figures-section,
body.home .map-section--sketch {
  background:
    radial-gradient(circle at 14% 12%, rgba(18,90,172,.16), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(10,71,148,.12), transparent 22%),
    linear-gradient(180deg, #041a35 0%, #061f40 42%, #051d3e 100%) !important;
}

body.home .network-map-visual {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  min-height: 430px;
}

body.home .network-map-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  mix-blend-mode: screen;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,.24));
}

@media (max-width: 1200px) {
  body.home .network-map-visual {
    min-height: 360px;
  }
}
@media (max-width: 920px) {
  body.home .network-map-visual {
    min-height: auto;
  }
}

/* v1.7.0 — Figma reference transfer to WordPress: pixel-close home layout */
:root{
  --bl17-bg:#001225;
  --bl17-bg-2:#021a31;
  --bl17-card:rgba(2,27,50,.72);
  --bl17-card-2:rgba(3,31,58,.58);
  --bl17-line:rgba(83,146,205,.24);
  --bl17-line-strong:rgba(120,178,232,.30);
  --bl17-orange:#ff4b00;
  --bl17-orange-2:#ff6b00;
  --bl17-text:#f5f9ff;
  --bl17-muted:#afc0d1;
  --bl17-radius:8px;
  --bl17-container:1344px;
}

body{
  background:var(--bl17-bg)!important;
  color:var(--bl17-text);
}
.container{width:min(var(--bl17-container),calc(100% - 96px));margin-inline:auto;}
body.home .site-main{
  background:
    radial-gradient(circle at 22% 2%, rgba(255,75,0,.10), transparent 28%),
    radial-gradient(circle at 82% 17%, rgba(13,85,172,.18), transparent 28%),
    linear-gradient(180deg,#001225 0%,#021a31 33%,#001225 100%)!important;
}

/* Header */
.site-header{
  height:72px;
  background:rgba(0,14,28,.62)!important;
  border-bottom:1px solid rgba(255,255,255,.06)!important;
  box-shadow:none!important;
  backdrop-filter:blur(12px);
}
.site-header.is-scrolled{background:rgba(0,14,28,.88)!important;box-shadow:0 14px 34px rgba(0,0,0,.20)!important;}
.bl15-header-inner{height:72px!important;gap:28px!important;}
.site-logo{width:86px!important;min-width:86px!important;height:58px!important;}
.site-logo img{width:86px!important;max-width:86px!important;max-height:58px!important;}
.bl15-main-nav{flex:1;}
.bl15-menu{gap:42px!important;justify-content:center!important;}
.bl15-menu>li>a{font-size:13px!important;line-height:1;color:rgba(245,249,255,.92);font-weight:600!important;letter-spacing:.01em;}
.bl15-menu>.menu-item-has-children>a::after{content:"⌄";font-size:11px;margin-left:8px;color:rgba(245,249,255,.70);position:relative;top:-1px;}
.bl15-header-contacts{min-width:170px!important;gap:3px!important;text-align:left!important;}
.bl15-header-contacts .phone{font-size:14px;color:#fff;font-weight:700;line-height:1.15;}
.bl15-header-contacts .header-email{font-size:13px!important;color:rgba(245,249,255,.64)!important;font-weight:500!important;}
.header-btn{min-height:46px!important;padding:0 28px!important;border-radius:5px!important;font-size:14px!important;background:var(--bl17-orange)!important;box-shadow:none!important;}
.sub-menu{background:#03172c!important;border:1px solid var(--bl17-line)!important;color:#fff!important;border-radius:10px!important;box-shadow:0 20px 60px rgba(0,0,0,.32)!important;}
.sub-menu a:hover{background:rgba(255,75,0,.10)!important;color:#fff!important;}

/* Buttons */
.btn{border-radius:6px!important;min-height:50px;font-weight:700;letter-spacing:.005em;}
.btn-primary{background:var(--bl17-orange)!important;color:#fff!important;box-shadow:none!important;}
.btn-primary:hover{background:#e94600!important;}
.btn-secondary{background:rgba(2,18,38,.26)!important;color:#fff!important;border-color:rgba(255,255,255,.42)!important;box-shadow:none!important;}
.btn-secondary:hover{background:rgba(255,255,255,.08)!important;}

/* Hero */
body.home .bl15-hero{
  min-height:640px!important;
  padding:92px 0 38px!important;
  background:#001225!important;
  overflow:hidden;
}
body.home .bl15-hero__inner{max-width:var(--bl17-container)!important;}
body.home .bl15-hero__bg img{
  transform:none!important;
  object-position:center top!important;
  filter:saturate(.98) brightness(.88)!important;
  opacity:1!important;
}
body.home .bl15-hero__bg::after{
  height:48%!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.36) 52%,#001225 100%)!important;
}
body.home .bl15-hero__overlay{
  background:
    linear-gradient(90deg,rgba(0,14,31,.98) 0%,rgba(0,18,37,.94) 30%,rgba(0,18,37,.56) 50%,rgba(0,18,37,.18) 72%,rgba(0,18,37,.16) 100%),
    linear-gradient(180deg,rgba(0,0,0,.16) 0%,rgba(0,18,37,.20) 68%,#001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,600px) minmax(320px,360px)!important;
  gap:clamp(40px,7vw,150px)!important;
  align-items:start!important;
}
body.home .bl15-hero__copy{padding-top:44px!important;max-width:600px!important;}
body.home .bl15-hero__copy h1{
  max-width:570px!important;
  margin:0 0 24px!important;
  font-size:clamp(44px,4.15vw,58px)!important;
  line-height:1.16!important;
  letter-spacing:.01em!important;
  font-weight:700!important;
  text-shadow:0 18px 40px rgba(0,0,0,.35)!important;
}
body.home .bl15-hero__subtitle{
  max-width:560px!important;
  margin:0 0 28px!important;
  color:rgba(245,249,255,.86)!important;
  font-size:17px!important;
  line-height:1.55!important;
}
body.home .bl15-hero__actions{gap:18px!important;}
body.home .bl15-hero__actions .btn{min-height:50px!important;padding:0 36px!important;border-radius:6px!important;font-size:14px!important;}
body.home .bl15-proof{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  max-width:640px!important;
  gap:24px!important;
  margin-top:48px!important;
}
body.home .bl15-proof span{grid-template-columns:46px minmax(0,1fr)!important;min-height:50px!important;column-gap:14px!important;}
body.home .bl15-proof .bl-icon{width:46px!important;height:46px!important;min-width:46px!important;}
body.home .bl15-proof .bl-icon img{filter:none!important;width:46px!important;height:46px!important;object-fit:contain!important;}
body.home .bl15-proof strong{font-size:18px!important;line-height:1.12!important;color:#fff!important;}
body.home .bl15-proof em{font-size:13px!important;line-height:1.25!important;color:rgba(245,249,255,.75)!important;}

/* Hero quick form */
body.home .bl15-quick-card{
  width:360px!important;
  margin-top:260px!important;
  padding:18px 18px 16px!important;
  border-radius:10px!important;
  background:rgba(1,18,35,.78)!important;
  border:1px solid rgba(111,170,255,.25)!important;
  box-shadow:0 24px 60px rgba(0,0,0,.34)!important;
  backdrop-filter:blur(12px);
}
body.home .bl15-quick-card h2{font-size:18px!important;margin-bottom:14px!important;font-weight:700!important;}
body.home .bl15-hero-form{gap:10px!important;}
body.home .bl15-form-row--two{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
body.home .bl15-hero-form label{display:grid;gap:6px;color:rgba(245,249,255,.76)!important;font-size:11px!important;font-weight:500!important;}
body.home .bl15-hero-form .bl15-form-field{grid-template-columns:1fr;}
body.home .bl15-quick-card .lead-form label>span{position:static!important;width:auto!important;height:auto!important;overflow:visible!important;clip:auto!important;white-space:normal!important;}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  min-height:41px!important;
  border-radius:5px!important;
  padding:0 12px!important;
  background:rgba(255,255,255,.055)!important;
  color:#fff!important;
  border:1px solid rgba(154,198,235,.24)!important;
  font-size:13px!important;
}
body.home .bl15-quick-card input::placeholder{color:rgba(255,255,255,.72)!important;}
body.home .bl15-quick-card select option{color:#061d3b!important;}
body.home .bl15-quick-card .btn{min-height:43px!important;border-radius:5px!important;font-size:14px!important;}
body.home .bl15-consent{font-size:11px!important;color:rgba(255,255,255,.70)!important;}

/* Numbers strip */
body.home .company-figures-section{
  background:#001225!important;
  padding:10px 0 28px!important;
  margin:0!important;
}
body.home .company-figures-section .center-title{display:none!important;}
body.home .company-figures-stats,
body.home .stats-grid{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:12px!important;
}
body.home .company-figures-stats .stat-card{
  display:grid!important;
  grid-template-columns:58px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  min-height:102px!important;
  align-content:center!important;
  column-gap:16px!important;
  padding:16px 18px!important;
  border-radius:8px!important;
  background:rgba(2,27,50,.72)!important;
  border:1px solid var(--bl17-line)!important;
  box-shadow:none!important;
  color:#fff!important;
}
body.home .company-figures-stats .stat-card::before{
  width:50px!important;height:50px!important;background-size:42px 42px!important;grid-row:1/span 2!important;
}
body.home .company-figures-stats .stat-card strong{
  color:#fff!important;
  font-size:clamp(28px,2.1vw,34px)!important;
  line-height:1!important;
  letter-spacing:.01em!important;
  font-weight:600!important;
  white-space:nowrap!important;
}
body.home .company-figures-stats .stat-card:first-child strong{font-size:clamp(26px,1.9vw,31px)!important;}
body.home .company-figures-stats .stat-card span{
  color:rgba(245,249,255,.72)!important;
  font-size:13px!important;
  line-height:1.3!important;
  max-width:160px!important;
  margin-top:6px!important;
}

/* Services */
body.home .home-services{
  background:#001225!important;
  padding:22px 0 18px!important;
}
body.home .home-services .center-title,
body.home .dark-strip h2,
body.home .partners-section .center-title,
body.home .process-section .center-title{
  margin:0 0 22px!important;
  color:#fff!important;
  text-align:center!important;
  font-size:28px!important;
  line-height:1.1!important;
  letter-spacing:.01em!important;
  font-weight:700!important;
}
body.home .home-services .card-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:10px!important;
}
body.home .home-services .info-card{
  display:grid!important;
  grid-template-columns:72px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  gap:2px 16px!important;
  align-items:center!important;
  min-height:86px!important;
  padding:16px 18px!important;
  text-align:left!important;
  border-radius:8px!important;
  color:#fff!important;
  background:rgba(2,27,50,.66)!important;
  border:1px solid var(--bl17-line)!important;
  box-shadow:none!important;
}
body.home .home-services .info-card::before,
body.home .home-services .info-card::after{display:none!important;}
body.home .home-services .info-card .bl-icon{
  grid-row:1/span 2!important;
  width:58px!important;height:58px!important;margin:0!important;align-self:center!important;justify-self:start!important;
}
body.home .home-services .info-card .bl-icon img{width:58px!important;height:58px!important;object-fit:contain!important;}
body.home .home-services .info-card h3{
  display:block!important;
  min-height:0!important;
  margin:0 0 4px!important;
  color:#fff!important;
  text-align:left!important;
  font-size:16px!important;
  line-height:1.22!important;
  font-weight:600!important;
}
body.home .home-services .info-card p{
  margin:0!important;
  color:rgba(245,249,255,.70)!important;
  text-align:left!important;
  font-size:13px!important;
  line-height:1.35!important;
}
body.home .home-services .card-action-link{display:none!important;}
body.home .home-services .info-card:hover{transform:translateY(-2px)!important;border-color:rgba(255,75,0,.55)!important;background:rgba(4,36,68,.76)!important;}

/* Geography */
body.home .map-section--sketch{
  display:block!important;
  padding:20px 0 28px!important;
  background:#001225!important;
  overflow:hidden!important;
}
body.home .map-section--sketch::before{display:none!important;}
body.home .map-network-layout{
  display:grid!important;
  grid-template-columns:270px minmax(0,1fr)!important;
  gap:28px!important;
  align-items:center!important;
}
body.home .map-copy h2{
  margin:0 0 14px!important;
  color:#fff!important;
  font-size:26px!important;
  line-height:1.1!important;
  letter-spacing:.01em!important;
}
body.home .map-copy p{
  max-width:270px!important;
  margin:0 0 16px!important;
  color:rgba(245,249,255,.76)!important;
  font-size:16px!important;
  line-height:1.45!important;
}
body.home .map-presence{margin:0 0 18px!important;gap:10px!important;align-items:center!important;}
body.home .map-presence strong{font-size:34px!important;line-height:1!important;color:var(--bl17-orange)!important;letter-spacing:.01em!important;}
body.home .map-presence span{font-size:16px!important;line-height:1.25!important;color:rgba(245,249,255,.78)!important;}
body.home .map-copy .btn{min-width:0!important;min-height:42px!important;padding:0 22px!important;border-radius:4px!important;border:1px solid var(--bl17-orange)!important;color:#fff!important;background:transparent!important;font-size:14px!important;}
body.home .network-map-visual{min-height:270px!important;display:flex!important;align-items:center!important;justify-content:center!important;}
body.home .network-map-visual img{width:100%!important;max-height:300px!important;object-fit:contain!important;mix-blend-mode:screen!important;filter:drop-shadow(0 12px 30px rgba(0,0,0,.28))!important;}

/* Advantages */
body.home .dark-strip{
  background:#001225!important;
  padding:16px 0 28px!important;
}
body.home .dark-grid{
  display:grid!important;
  grid-template-columns:repeat(8,minmax(0,1fr))!important;
  gap:10px!important;
}
body.home .dark-item{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  min-height:104px!important;
  padding:14px 10px!important;
  border-radius:8px!important;
  background:rgba(2,27,50,.66)!important;
  border:1px solid var(--bl17-line)!important;
  color:#fff!important;
  text-align:center!important;
  box-shadow:none!important;
}
body.home .dark-item .bl-icon{width:40px!important;height:40px!important;min-width:40px!important;padding:0!important;background:transparent!important;border:0!important;}
body.home .dark-item .bl-icon img{width:40px!important;height:40px!important;object-fit:contain!important;filter:none!important;}
body.home .dark-item span{display:block!important;}
body.home .dark-item strong{display:block;color:#fff;font-size:13px;line-height:1.2;font-weight:600;}
body.home .dark-item em{display:block;margin-top:2px;color:rgba(245,249,255,.72);font-size:12px;line-height:1.2;font-style:normal;font-weight:400;}

/* Partners */
body.home .partners-section{background:#001225!important;padding:12px 0 18px!important;}
body.home .partners-row{
  position:relative;
  display:flex!important;
  flex-wrap:nowrap!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:26px!important;
  padding:16px 54px!important;
  border-radius:8px!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  color:rgba(245,249,255,.68)!important;
  font-size:20px!important;
  font-weight:700!important;
  letter-spacing:.01em!important;
}
body.home .partners-row::before,
body.home .partners-row::after{
  position:absolute;top:50%;transform:translateY(-50%);font-size:42px;line-height:1;color:#fff;font-weight:200;opacity:.86;
}
body.home .partners-row::before{content:"‹";left:0;}
body.home .partners-row::after{content:"›";right:0;}
body.home .partners-row span{white-space:nowrap;opacity:.72;}

/* Process */
body.home .process-section{background:#001225!important;padding:0 0 22px!important;}
body.home .process-grid{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:0!important;
  padding:22px 28px!important;
  border-radius:8px!important;
  background:rgba(2,27,50,.46)!important;
  border:1px solid var(--bl17-line)!important;
}
body.home .process-step{
  position:relative!important;
  min-height:96px!important;
  padding:0 22px!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  color:#fff!important;
  text-align:left!important;
}
body.home .process-step::after{
  content:""!important;
  position:absolute!important;
  top:22px!important;
  right:-8px!important;
  width:54px!important;
  height:1px!important;
  background:repeating-linear-gradient(90deg,rgba(245,249,255,.55) 0 3px,transparent 3px 8px)!important;
  opacity:1!important;
}
body.home .process-step:last-child::after{display:none!important;}
body.home .step-num{
  display:inline-grid!important;
  place-items:center!important;
  width:40px!important;height:40px!important;
  margin:0 0 8px!important;
  border-radius:50%!important;
  border:1px solid var(--bl17-orange)!important;
  background:transparent!important;
  color:var(--bl17-orange)!important;
  font-size:20px!important;font-weight:400!important;
}
body.home .process-step h3{margin:0 0 5px!important;color:#fff!important;font-size:14px!important;line-height:1.2!important;font-weight:700!important;}
body.home .process-step p{margin:0!important;color:rgba(245,249,255,.66)!important;font-size:12px!important;line-height:1.35!important;}

/* CTA */
body.home .cta-section--home{background:#001225!important;padding:0 0 34px!important;}
body.home .cta-section--home .cta-panel{
  position:relative;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:10px!important;
  padding:28px 38px 22px!important;
  min-height:150px!important;
  border-radius:8px!important;
  overflow:hidden!important;
  background:
    linear-gradient(90deg,rgba(255,75,0,1) 0%,rgba(255,75,0,.94) 66%,rgba(255,75,0,.70) 100%),
    url('../img/bl15-hero-truck.webp') right center/auto 180% no-repeat!important;
  border:0!important;
  box-shadow:none!important;
}
body.home .cta-section--home .cta-panel::after{
  content:"";position:absolute;inset:0;background:url('../img/bl15-hero-truck.webp') right center/auto 180% no-repeat;mix-blend-mode:screen;opacity:.22;pointer-events:none;
}
body.home .cta-section--home .cta-copy{position:relative;z-index:2;}
body.home .cta-section--home .section-kicker{display:none!important;}
body.home .cta-section--home .cta-copy h2{margin:0 0 6px!important;color:#fff!important;font-size:22px!important;line-height:1.2!important;letter-spacing:.045em!important;font-weight:700!important;}
body.home .cta-section--home .cta-copy p{margin:0!important;color:#fff!important;font-size:15px!important;line-height:1.4!important;}
body.home .bl15-bottom-cta-form{position:relative;z-index:2;gap:8px!important;}
body.home .bl15-bottom-cta-grid{display:grid!important;grid-template-columns:1fr 1fr 1fr 180px!important;gap:20px!important;align-items:end!important;}
body.home .bl15-bottom-cta-form label{display:grid;gap:6px;color:rgba(255,255,255,.86)!important;font-size:12px!important;}
body.home .bl15-bottom-cta-form input,
body.home .bl15-bottom-cta-form select{min-height:42px!important;border-radius:3px!important;border:0!important;background:#fff!important;color:#0b2340!important;font-size:13px!important;padding:0 14px!important;}
body.home .bl15-bottom-cta-form .btn{min-height:42px!important;border-radius:3px!important;background:#001f3f!important;font-size:14px!important;}
body.home .bl15-bottom-cta-form .checkbox-line{color:rgba(255,255,255,.84)!important;font-size:11px!important;}
body.home .bl15-bottom-cta-form .checkbox-line a{color:#fff!important;text-decoration:underline!important;}

/* Footer */
.bl15-footer{background:#001225!important;border-top:1px solid rgba(83,146,205,.12)!important;padding:34px 0 46px!important;color:#fff!important;}
.bl15-footer-grid{
  display:grid!important;
  grid-template-columns:200px 165px 155px 155px 160px 205px 205px!important;
  gap:24px!important;
  align-items:start!important;
}
.footer-logo img{width:88px!important;max-width:88px!important;}
.bl15-footer h3{margin:0 0 14px!important;color:#fff!important;font-size:15px!important;font-weight:700!important;}
.bl15-footer a,.bl15-footer p,.bl15-footer span{font-size:13px!important;line-height:1.34!important;color:rgba(245,249,255,.68)!important;margin:0 0 8px!important;}
.bl15-footer a:hover{color:#fff!important;}
.bl15-footer-brand p{margin-top:14px!important;}
.bl15-footer .socials{display:flex!important;gap:10px!important;margin-top:18px!important;}
.bl15-footer .socials a{width:28px!important;height:28px!important;border-radius:50%!important;border:1px solid rgba(255,255,255,.28)!important;display:grid!important;place-items:center!important;font-size:11px!important;margin:0!important;color:#fff!important;}
.bl15-footer-actions{display:grid!important;gap:16px!important;align-content:start!important;padding-top:24px!important;}
.bl15-footer-actions .btn{min-height:48px!important;width:100%!important;border-radius:5px!important;font-size:14px!important;margin:0!important;}
.bl15-footer-actions .btn-secondary{background:transparent!important;border-color:rgba(255,255,255,.34)!important;color:#fff!important;}
.bl15-footer-contacts p{color:rgba(245,249,255,.84)!important;margin:0 0 7px!important;font-weight:600!important;}

/* Responsive */
@media (max-width:1280px){
  .container{width:min(1180px,calc(100% - 48px));}
  body.home .bl15-hero__grid{grid-template-columns:minmax(0,1fr) minmax(320px,360px)!important;gap:34px!important;}
  body.home .company-figures-stats,body.home .stats-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
  body.home .home-services .card-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body.home .dark-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
  .bl15-footer-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:1024px){
  .bl15-menu{gap:20px!important;}
  .header-btn,.bl15-header-contacts{display:none!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;}
  body.home .bl15-quick-card{margin-top:20px!important;width:min(460px,100%)!important;justify-self:start!important;}
  body.home .map-network-layout{grid-template-columns:1fr!important;}
  body.home .network-map-visual img{max-height:none!important;}
  body.home .process-grid{grid-template-columns:1fr!important;gap:16px!important;}
  body.home .process-step{padding:0!important;}
  body.home .process-step::after{display:none!important;}
  body.home .bl15-bottom-cta-grid{grid-template-columns:1fr 1fr!important;gap:12px!important;}
}
@media (max-width:760px){
  .container{width:min(100% - 28px, var(--bl17-container));}
  .site-header{height:72px;}
  .main-nav{top:78px!important;background:#03172c!important;border:1px solid var(--bl17-line)!important;}
  .bl15-menu{display:grid!important;gap:12px!important;justify-content:stretch!important;}
  .sub-menu{display:grid!important;position:static!important;background:rgba(255,255,255,.05)!important;box-shadow:none!important;margin-top:8px!important;}
  body.home .bl15-hero{padding:96px 0 34px!important;}
  body.home .bl15-hero__copy{padding-top:0!important;}
  body.home .bl15-hero__copy h1{font-size:36px!important;line-height:1.12!important;}
  body.home .bl15-hero__subtitle{font-size:15px!important;}
  body.home .bl15-hero__actions .btn{width:100%!important;}
  body.home .bl15-proof{grid-template-columns:1fr 1fr!important;gap:14px!important;margin-top:28px!important;}
  body.home .bl15-form-row--two{grid-template-columns:1fr!important;}
  body.home .company-figures-stats,body.home .stats-grid{grid-template-columns:1fr!important;}
  body.home .home-services .card-grid,body.home .dark-grid{grid-template-columns:1fr!important;}
  body.home .home-services .info-card{grid-template-columns:62px minmax(0,1fr)!important;}
  body.home .map-copy .btn{width:100%!important;}
  body.home .partners-row{overflow:auto!important;justify-content:flex-start!important;padding-inline:34px!important;}
  body.home .bl15-bottom-cta-grid{grid-template-columns:1fr!important;}
  body.home .cta-section--home .cta-panel{padding:24px 18px!important;}
  .bl15-footer-grid{grid-template-columns:1fr!important;gap:22px!important;}
}
@media (max-width:520px){body.home .bl15-proof{grid-template-columns:1fr!important;}}


/* v1.7.1 — hero/form positioning, compact consultation modal, larger geography map */
body.home .bl15-hero{
  min-height:660px!important;
  padding:92px 0 50px!important;
}
body.home .bl15-hero__bg img{
  object-position:58% -46px!important;
  transform:scale(1.025)!important;
  transform-origin:center top!important;
}
body.home .bl15-hero__bg::after{
  height:54%!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.24) 42%,#001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,600px) minmax(290px,330px)!important;
  gap:clamp(44px,8vw,180px)!important;
}
body.home .bl15-proof{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  max-width:560px!important;
  gap:22px 30px!important;
  margin-top:44px!important;
}
body.home .bl15-proof span{
  grid-template-columns:44px minmax(0,1fr)!important;
}
body.home .bl15-proof .bl-icon,
body.home .bl15-proof .bl-icon img{
  width:44px!important;
  height:44px!important;
  min-width:44px!important;
}
body.home .bl15-quick-card{
  width:330px!important;
  margin-top:318px!important;
  padding:14px 14px 13px!important;
  border-radius:9px!important;
}
body.home .bl15-quick-card h2{
  font-size:16px!important;
  line-height:1.18!important;
  margin:0 0 10px!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  gap:7px!important;
}
body.home .bl15-form-row--two{
  gap:7px!important;
}
body.home .bl15-hero-form label{
  gap:3px!important;
  font-size:10px!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  min-height:35px!important;
  border-radius:4px!important;
  padding:0 10px!important;
  font-size:12px!important;
}
body.home .bl15-quick-card .btn{
  min-height:37px!important;
  border-radius:4px!important;
  font-size:13px!important;
}
body.home .bl15-consent{
  align-items:flex-start!important;
  gap:6px!important;
  font-size:10px!important;
  line-height:1.18!important;
}
body.home .bl15-consent input{
  width:12px!important;
  height:12px!important;
  min-height:12px!important;
  flex-basis:12px!important;
  margin-top:1px!important;
}
body.home .bl15-consent label{
  font-size:10px!important;
  line-height:1.18!important;
}

.lead-modal--consult .lead-modal__dialog{
  width:min(500px,100%)!important;
  padding:26px!important;
  border-radius:18px!important;
}
.lead-modal--consult .lead-modal__head{
  margin-bottom:18px!important;
}
.lead-modal--consult .lead-modal__head h2{
  font-size:30px!important;
  line-height:1.08!important;
}
.lead-modal--consult .lead-modal__head p:not(.section-kicker){
  font-size:15px!important;
  line-height:1.45!important;
}
.consult-form{
  display:grid!important;
  gap:12px!important;
}
.consult-form label{
  display:grid!important;
  gap:6px!important;
  color:var(--text)!important;
  font-size:13px!important;
  font-weight:700!important;
}
.consult-form input,
.consult-form textarea{
  width:100%!important;
  border:1px solid #d8e1ec!important;
  border-radius:8px!important;
  background:#fff!important;
  color:var(--text)!important;
  font:inherit!important;
}
.consult-form input{
  min-height:46px!important;
  padding:0 14px!important;
}
.consult-form textarea{
  min-height:106px!important;
  padding:12px 14px!important;
  resize:vertical!important;
}
.consult-form .consult-consent{
  display:flex!important;
  align-items:flex-start!important;
  gap:8px!important;
  color:var(--muted)!important;
  font-size:12px!important;
  line-height:1.35!important;
  font-weight:500!important;
}
.consult-form .consult-consent input{
  width:16px!important;
  height:16px!important;
  min-height:16px!important;
  flex:0 0 16px!important;
  margin-top:2px!important;
}
.consult-form .consult-consent a{
  color:var(--blue)!important;
  text-decoration:underline!important;
}
.consult-form .btn{
  width:100%!important;
  min-height:48px!important;
}

body.home .map-section--sketch{
  padding:28px 0 42px!important;
}
body.home .map-network-layout{
  grid-template-columns:270px minmax(0,1fr)!important;
  gap:38px!important;
  align-items:center!important;
}
body.home .network-map-visual{
  min-height:370px!important;
  margin-right:-34px!important;
}
body.home .network-map-visual img{
  width:112%!important;
  max-width:112%!important;
  max-height:430px!important;
}

@media (max-width:1280px){
  body.home .bl15-hero__grid{grid-template-columns:minmax(0,1fr) minmax(290px,330px)!important;gap:34px!important;}
  body.home .bl15-quick-card{width:320px!important;margin-top:300px!important;}
  body.home .network-map-visual{margin-right:0!important;}
  body.home .network-map-visual img{width:106%!important;max-width:106%!important;}
}
@media (max-width:1024px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:46px!important;}
  body.home .bl15-hero__bg img{object-position:68% top!important;transform:scale(1)!important;}
  body.home .bl15-proof{grid-template-columns:repeat(3,minmax(0,1fr))!important;max-width:620px!important;}
  body.home .bl15-quick-card{margin-top:20px!important;width:min(430px,100%)!important;justify-self:start!important;}
  body.home .map-network-layout{grid-template-columns:1fr!important;gap:20px!important;}
  body.home .network-map-visual{min-height:330px!important;margin-right:0!important;}
  body.home .network-map-visual img{width:100%!important;max-width:100%!important;max-height:420px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero{padding:96px 0 34px!important;}
  body.home .bl15-proof{grid-template-columns:1fr!important;max-width:none!important;}
  body.home .bl15-quick-card{width:100%!important;max-width:none!important;}
  body.home .bl15-form-row--two{grid-template-columns:1fr!important;}
  body.home .network-map-visual{min-height:260px!important;}
  body.home .network-map-visual img{max-height:320px!important;}
  .lead-modal--consult .lead-modal__dialog{padding:22px 18px!important;}
  .lead-modal--consult .lead-modal__head h2{font-size:26px!important;}
}

/* v1.7.2 — hero rebuilt closer to Figma reference: larger proof items, truck focus, logo visibility */
body.home .bl15-hero{
  min-height:700px!important;
  padding:92px 0 44px!important;
  background:#001225!important;
  overflow:hidden!important;
}
body.home .bl15-hero__inner{
  position:relative!important;
  z-index:3!important;
  max-width:var(--bl17-container)!important;
}
body.home .bl15-hero__bg img{
  object-position:center top!important;
  transform:translate3d(-42px,-86px,0) scale(1.085)!important;
  transform-origin:center top!important;
  opacity:1!important;
  filter:saturate(1.02) brightness(.91) contrast(1.02)!important;
}
body.home .bl15-hero__bg::after{
  height:58%!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.18) 44%,#001225 100%)!important;
}
body.home .bl15-hero__overlay{
  background:
    linear-gradient(90deg,rgba(0,13,29,.99) 0%,rgba(0,15,32,.97) 27%,rgba(0,18,37,.72) 46%,rgba(0,18,37,.30) 66%,rgba(0,18,37,.20) 100%),
    radial-gradient(circle at 71% 37%,rgba(255,107,0,.13),transparent 25%),
    linear-gradient(180deg,rgba(0,0,0,.10) 0%,rgba(0,18,37,.10) 64%,#001225 100%)!important;
}
body.home .bl15-hero::after{
  height:150px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.30) 42%,#001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,610px) minmax(304px,330px)!important;
  gap:clamp(52px,9vw,210px)!important;
  align-items:start!important;
  justify-content:space-between!important;
}
body.home .bl15-hero__copy{
  padding-top:48px!important;
  max-width:610px!important;
}
body.home .bl15-hero__copy h1{
  max-width:590px!important;
  margin:0 0 22px!important;
  font-size:clamp(46px,4.2vw,62px)!important;
  line-height:1.13!important;
  letter-spacing:-.012em!important;
  font-weight:800!important;
  color:#fff!important;
  text-shadow:0 18px 44px rgba(0,0,0,.34)!important;
}
body.home .bl15-hero__subtitle{
  max-width:570px!important;
  margin:0 0 29px!important;
  color:rgba(245,249,255,.86)!important;
  font-size:17px!important;
  line-height:1.55!important;
}
body.home .bl15-hero__actions{
  display:flex!important;
  gap:18px!important;
  margin:0!important;
}
body.home .bl15-hero__actions .btn{
  min-height:50px!important;
  padding:0 34px!important;
  border-radius:6px!important;
  font-size:14px!important;
}
body.home .bl15-proof{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(154px,1fr))!important;
  max-width:690px!important;
  gap:30px!important;
  margin-top:50px!important;
  align-items:center!important;
}
body.home .bl15-proof span{
  display:grid!important;
  grid-template-columns:58px minmax(0,1fr)!important;
  grid-template-rows:auto auto!important;
  min-height:64px!important;
  column-gap:16px!important;
  align-items:center!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
}
body.home .bl15-proof .bl-icon{
  grid-row:1/span 2!important;
  width:58px!important;
  height:58px!important;
  min-width:58px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  filter:drop-shadow(0 0 16px rgba(255,107,0,.26))!important;
}
body.home .bl15-proof .bl-icon img{
  width:58px!important;
  height:58px!important;
  object-fit:contain!important;
  filter:none!important;
}
body.home .bl15-proof strong{
  display:block!important;
  align-self:end!important;
  color:#fff!important;
  font-size:21px!important;
  line-height:1.05!important;
  font-weight:800!important;
  letter-spacing:-.01em!important;
}
body.home .bl15-proof em{
  display:block!important;
  align-self:start!important;
  color:rgba(245,249,255,.76)!important;
  font-size:14px!important;
  line-height:1.22!important;
  font-style:normal!important;
}
body.home .bl15-quick-card{
  justify-self:end!important;
  width:326px!important;
  margin-top:306px!important;
  padding:14px 14px 13px!important;
  border-radius:9px!important;
  background:rgba(1,17,34,.82)!important;
  border:1px solid rgba(128,184,255,.27)!important;
  box-shadow:0 24px 64px rgba(0,0,0,.36)!important;
  backdrop-filter:blur(14px)!important;
}
body.home .bl15-quick-card h2{
  margin:0 0 10px!important;
  font-size:16px!important;
  line-height:1.18!important;
  font-weight:800!important;
  text-align:center!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  gap:7px!important;
}
body.home .bl15-form-row--two{
  gap:7px!important;
}
body.home .bl15-hero-form label{
  gap:3px!important;
  font-size:10px!important;
  line-height:1.15!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  min-height:35px!important;
  border-radius:4px!important;
  padding:0 10px!important;
  font-size:12px!important;
  background:rgba(255,255,255,.06)!important;
  border-color:rgba(154,198,235,.25)!important;
}
body.home .bl15-quick-card .btn{
  min-height:37px!important;
  margin-top:1px!important;
  border-radius:4px!important;
  font-size:13px!important;
}
body.home .bl15-consent{
  gap:6px!important;
  font-size:10px!important;
  line-height:1.18!important;
  color:rgba(255,255,255,.70)!important;
}
body.home .bl15-consent input{
  width:12px!important;
  height:12px!important;
  min-height:12px!important;
  flex:0 0 12px!important;
  margin-top:1px!important;
}
body.home .bl15-consent label{
  font-size:10px!important;
  line-height:1.18!important;
  color:rgba(255,255,255,.70)!important;
}

@media (max-width:1280px){
  body.home .bl15-hero__grid{grid-template-columns:minmax(0,1fr) minmax(304px,326px)!important;gap:34px!important;}
  body.home .bl15-hero__bg img{transform:translate3d(-28px,-68px,0) scale(1.07)!important;}
  body.home .bl15-quick-card{width:320px!important;margin-top:306px!important;}
  body.home .bl15-proof{grid-template-columns:repeat(3,minmax(0,1fr))!important;max-width:650px!important;gap:22px!important;}
}
@media (max-width:1024px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:46px!important;}
  body.home .bl15-hero__bg img{object-position:70% top!important;transform:scale(1.02)!important;opacity:.48!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:24px!important;}
  body.home .bl15-hero__copy{padding-top:12px!important;}
  body.home .bl15-proof{grid-template-columns:repeat(3,minmax(0,1fr))!important;max-width:720px!important;margin-top:34px!important;}
  body.home .bl15-quick-card{justify-self:start!important;margin-top:12px!important;width:min(430px,100%)!important;}
}
@media (max-width:760px){
  body.home .bl15-hero{padding:96px 0 34px!important;}
  body.home .bl15-hero__copy{padding-top:0!important;}
  body.home .bl15-hero__copy h1{font-size:36px!important;line-height:1.12!important;}
  body.home .bl15-hero__subtitle{font-size:15px!important;}
  body.home .bl15-hero__actions{display:grid!important;grid-template-columns:1fr!important;gap:12px!important;}
  body.home .bl15-hero__actions .btn{width:100%!important;}
  body.home .bl15-proof{grid-template-columns:1fr!important;gap:16px!important;max-width:none!important;margin-top:28px!important;}
  body.home .bl15-proof span{grid-template-columns:52px minmax(0,1fr)!important;min-height:58px!important;}
  body.home .bl15-proof .bl-icon,
  body.home .bl15-proof .bl-icon img{width:52px!important;height:52px!important;min-width:52px!important;}
  body.home .bl15-form-row--two{grid-template-columns:1fr!important;}
}


/* v1.7.3 — hero truck distance/height and larger trusted logos marquee */
body.home .bl15-hero__bg img{
  object-position:48% top!important;
  transform:translate3d(-78px,-122px,0) scale(1.005)!important;
  transform-origin:center top!important;
  filter:saturate(1.03) brightness(.92) contrast(1.03)!important;
}
body.home .bl15-hero__overlay{
  background:
    linear-gradient(90deg,rgba(0,13,29,.99) 0%,rgba(0,15,32,.965) 25%,rgba(0,18,37,.65) 43%,rgba(0,18,37,.22) 64%,rgba(0,18,37,.18) 100%),
    radial-gradient(circle at 69% 31%,rgba(255,107,0,.12),transparent 25%),
    linear-gradient(180deg,rgba(0,0,0,.06) 0%,rgba(0,18,37,.04) 62%,#001225 100%)!important;
}
body.home .bl15-quick-card{
  margin-top:314px!important;
}
body.home .partners-section{
  padding:22px 0 32px!important;
  background:
    linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,32,68,.26) 48%,rgba(0,18,37,0) 100%)!important;
}
body.home .partners-section .center-title{
  margin-bottom:18px!important;
  font-size:clamp(28px,2.6vw,40px)!important;
  line-height:1.08!important;
}
body.home .partners-row.partners-marquee{
  position:relative!important;
  display:block!important;
  overflow:hidden!important;
  padding:20px 0!important;
  min-height:104px!important;
  width:100%!important;
  background:linear-gradient(145deg,rgba(0,51,102,.54),rgba(0,18,38,.64))!important;
  border:1px solid rgba(132,190,238,.20)!important;
  border-radius:20px!important;
  box-shadow:0 22px 70px rgba(0,10,24,.28), inset 0 1px 0 rgba(255,255,255,.08)!important;
}
body.home .partners-row.partners-marquee::before,
body.home .partners-row.partners-marquee::after{
  content:""!important;
  position:absolute!important;
  top:0!important;
  bottom:0!important;
  z-index:3!important;
  width:96px!important;
  pointer-events:none!important;
}
body.home .partners-row.partners-marquee::before{
  left:0!important;
  background:linear-gradient(90deg,#001225 0%,rgba(0,18,37,.82) 35%,rgba(0,18,37,0) 100%)!important;
}
body.home .partners-row.partners-marquee::after{
  right:0!important;
  background:linear-gradient(270deg,#001225 0%,rgba(0,18,37,.82) 35%,rgba(0,18,37,0) 100%)!important;
}
body.home .partners-track{
  display:flex!important;
  align-items:center!important;
  gap:42px!important;
  width:max-content!important;
  will-change:transform!important;
  animation:blPartnersMarquee 46s linear infinite!important;
}
body.home .partners-row.partners-marquee:hover .partners-track{
  animation-play-state:paused!important;
}
body.home .partner-logo{
  flex:0 0 190px!important;
  height:64px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:10px 20px!important;
  border-radius:15px!important;
  background:rgba(255,255,255,.035)!important;
  border:1px solid rgba(255,255,255,.055)!important;
  opacity:.88!important;
  transition:opacity .25s ease, transform .25s ease, border-color .25s ease, background .25s ease!important;
}
body.home .partner-logo:hover{
  opacity:1!important;
  transform:translateY(-2px)!important;
  border-color:rgba(255,107,0,.28)!important;
  background:rgba(255,255,255,.06)!important;
}
body.home .partner-logo img{
  display:block!important;
  max-width:160px!important;
  max-height:48px!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain!important;
}
body.home .partner-logo strong{
  color:rgba(255,255,255,.74)!important;
  font-size:20px!important;
  line-height:1!important;
  white-space:nowrap!important;
}
@keyframes blPartnersMarquee{
  0%{transform:translateX(0);}
  100%{transform:translateX(calc(-50% - 21px));}
}
@media (max-width:1280px){
  body.home .bl15-hero__bg img{transform:translate3d(-70px,-104px,0) scale(1.0)!important;object-position:52% top!important;}
  body.home .bl15-quick-card{margin-top:312px!important;}
  body.home .partner-logo{flex-basis:172px!important;}
  body.home .partners-track{gap:30px!important;}
  @keyframes blPartnersMarquee{0%{transform:translateX(0);}100%{transform:translateX(calc(-50% - 15px));}}
}
@media (max-width:1024px){
  body.home .bl15-hero__bg img{object-position:68% top!important;transform:translate3d(-10px,-38px,0) scale(1)!important;opacity:.48!important;}
  body.home .bl15-quick-card{margin-top:12px!important;}
  body.home .partners-row.partners-marquee{min-height:94px!important;padding:16px 0!important;}
  body.home .partner-logo{flex-basis:160px!important;height:58px!important;}
  body.home .partner-logo img{max-width:140px!important;max-height:42px!important;}
}
@media (max-width:760px){
  body.home .partners-section{padding:18px 0 26px!important;}
  body.home .partners-row.partners-marquee::before,
  body.home .partners-row.partners-marquee::after{width:44px!important;}
  body.home .partners-track{gap:18px!important;animation-duration:34s!important;}
  body.home .partner-logo{flex-basis:138px!important;height:54px!important;padding:8px 14px!important;}
  body.home .partner-logo img{max-width:118px!important;max-height:38px!important;}
}

/* v1.7.4 — final hero layout from approved reference: truck restored, form under trailer logo */
body.home .bl15-hero{
  min-height:690px!important;
  padding:92px 0 54px!important;
}
body.home .bl15-hero__bg img{
  transform:none!important;
  object-position:center top!important;
  filter:saturate(1.06) brightness(1.03) contrast(1.02)!important;
  opacity:1!important;
}
body.home .bl15-hero__overlay{
  background:
    linear-gradient(90deg,
      rgba(0,14,31,.98) 0%,
      rgba(0,18,37,.93) 28%,
      rgba(0,18,37,.52) 48%,
      rgba(0,18,37,.16) 63%,
      rgba(0,18,37,.07) 78%,
      rgba(0,18,37,.04) 100%
    ),
    linear-gradient(180deg,rgba(0,0,0,.06) 0%,rgba(0,18,37,.05) 64%,#001225 100%)!important;
}
body.home .bl15-hero::after{
  height:132px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.18) 46%,#001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,600px) minmax(330px,390px)!important;
  gap:clamp(44px,7.2vw,154px)!important;
}
body.home .bl15-hero__copy{padding-top:48px!important;}
body.home .bl15-proof{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  max-width:670px!important;
  gap:30px!important;
  margin-top:52px!important;
}
body.home .bl15-proof span{
  grid-template-columns:54px minmax(0,1fr)!important;
  min-height:62px!important;
  column-gap:16px!important;
}
body.home .bl15-proof .bl-icon,
body.home .bl15-proof .bl-icon img{
  width:54px!important;
  height:54px!important;
  min-width:54px!important;
}
body.home .bl15-proof strong{font-size:22px!important;line-height:1.08!important;}
body.home .bl15-proof em{font-size:14px!important;line-height:1.22!important;}
body.home .bl15-quick-card{
  width:386px!important;
  margin-top:328px!important;
  transform:translateX(-8px)!important;
  padding:17px 18px 15px!important;
  border-radius:12px!important;
  background:linear-gradient(155deg,rgba(7,22,40,.82),rgba(1,18,35,.72))!important;
  border-color:rgba(151,198,240,.30)!important;
  box-shadow:0 26px 66px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08)!important;
}
body.home .bl15-quick-card h2{
  margin-bottom:13px!important;
  text-align:left!important;
  font-size:18px!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{min-height:40px!important;}
body.home .bl15-quick-card .btn{min-height:42px!important;}
@media (max-width:1180px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:48px!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:26px!important;}
  body.home .bl15-quick-card{margin-top:18px!important;transform:none!important;justify-self:start!important;}
}
@media (max-width:900px){
  body.home .bl15-hero{padding:92px 0 36px!important;}
  body.home .bl15-hero__bg img{
    object-position:72% top!important;
    filter:saturate(1.02) brightness(.76)!important;
  }
  body.home .bl15-hero__overlay{
    background:linear-gradient(90deg,rgba(0,14,31,.96),rgba(0,18,37,.78)),linear-gradient(180deg,rgba(0,18,37,.04),#001225)!important;
  }
  body.home .bl15-proof{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important;margin-top:26px!important;}
  body.home .bl15-proof span{grid-template-columns:40px minmax(0,1fr)!important;min-height:46px!important;column-gap:12px!important;}
  body.home .bl15-proof .bl-icon,
  body.home .bl15-proof .bl-icon img{width:40px!important;height:40px!important;min-width:40px!important;}
  body.home .bl15-proof strong{font-size:18px!important;}
  body.home .bl15-proof em{font-size:12px!important;}
}
@media (max-width:560px){body.home .bl15-proof{grid-template-columns:1fr!important;}}

/* v1.7.5 — approved full-width hero background image without dark overlay, fixed hero height */
body.home .bl15-hero{
  min-height:700px!important;
  padding:92px 0 44px!important;
  background:#001225!important;
}
body.home .bl15-hero__bg{
  inset:0!important;
}
body.home .bl15-hero__bg img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center center!important;
  transform:none!important;
  opacity:1!important;
  filter:none!important;
}
body.home .bl15-hero__bg::after,
body.home .bl15-hero__overlay{
  content:none!important;
  display:none!important;
  background:none!important;
}
body.home .bl15-hero::after{
  height:72px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%, rgba(0,18,37,.10) 58%, rgba(0,18,37,.24) 100%)!important;
}
/* keep content readable without darkening the whole image */
body.home .bl15-hero__inner,
body.home .bl15-hero__copy,
body.home .bl15-quick-card,
body.home .bl15-proof{
  position:relative!important;
  z-index:3!important;
}
@media (max-width:1024px){
  body.home .bl15-hero__bg img{
    object-position:62% center!important;
    transform:none!important;
    opacity:1!important;
  }
}
@media (max-width:760px){
  body.home .bl15-hero{
    min-height:auto!important;
    padding:96px 0 34px!important;
  }
  body.home .bl15-hero__bg img{
    object-position:68% center!important;
  }
}

/* v1.7.6 — horizontal hero form aligned with mini-advantages + darker bottom blend */
body.home .bl15-hero{
  min-height:700px!important;
  padding:92px 0 44px!important;
}
body.home .bl15-hero__bg::after{
  content:""!important;
  display:block!important;
  position:absolute!important;
  left:0!important;
  right:0!important;
  bottom:0!important;
  height:42%!important;
  z-index:1!important;
  pointer-events:none!important;
  background:linear-gradient(180deg,
    rgba(0,18,37,0) 0%,
    rgba(0,18,37,.22) 34%,
    rgba(0,18,37,.68) 72%,
    #001225 100%)!important;
}
body.home .bl15-hero::after{
  height:124px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%, rgba(0,18,37,.34) 46%, #001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,570px) minmax(620px,700px)!important;
  gap:clamp(24px,3.2vw,44px)!important;
  align-items:stretch!important;
}
body.home .bl15-hero__copy{
  max-width:570px!important;
}
body.home .bl15-quick-card{
  width:min(700px,100%)!important;
  align-self:end!important;
  justify-self:end!important;
  margin-top:0!important;
  transform:none!important;
  padding:16px 18px 14px!important;
  border-radius:12px!important;
  background:linear-gradient(155deg,rgba(4,20,38,.86),rgba(1,18,35,.76))!important;
  border:1px solid rgba(151,198,240,.30)!important;
  box-shadow:0 24px 64px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08)!important;
  backdrop-filter:blur(14px)!important;
}
body.home .bl15-quick-card h2{
  margin:0 0 10px!important;
  text-align:left!important;
  font-size:17px!important;
  line-height:1.15!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  display:grid!important;
  grid-template-columns:minmax(105px,1fr) minmax(112px,1fr) minmax(142px,1.15fr) minmax(142px,1.15fr) 146px!important;
  gap:8px!important;
  align-items:end!important;
}
body.home .bl15-form-row--two{
  display:contents!important;
}
body.home .bl15-hero-form label{
  display:grid!important;
  gap:4px!important;
  min-width:0!important;
  color:rgba(245,249,255,.76)!important;
  font-size:10px!important;
  line-height:1.15!important;
  font-weight:500!important;
}
body.home .bl15-quick-card .lead-form label>span{
  position:static!important;
  width:auto!important;
  height:auto!important;
  overflow:visible!important;
  clip:auto!important;
  white-space:normal!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  width:100%!important;
  min-height:38px!important;
  border-radius:5px!important;
  padding:0 9px!important;
  font-size:12px!important;
}
body.home .bl15-quick-card .btn{
  width:100%!important;
  min-height:38px!important;
  margin-top:0!important;
  padding:0 10px!important;
  border-radius:5px!important;
  font-size:12px!important;
  white-space:nowrap!important;
}
body.home .bl15-consent{
  grid-column:1 / -1!important;
  margin-top:0!important;
  gap:6px!important;
  font-size:10px!important;
  line-height:1.18!important;
  align-items:center!important;
}
body.home .bl15-consent input{
  width:12px!important;
  height:12px!important;
  min-height:12px!important;
  flex:0 0 12px!important;
}
body.home .bl15-consent label{
  font-size:10px!important;
  line-height:1.18!important;
}
@media (max-width:1280px){
  body.home .bl15-hero__grid{
    grid-template-columns:minmax(0,540px) minmax(560px,650px)!important;
    gap:24px!important;
  }
  body.home .bl15-quick-card{width:min(650px,100%)!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:minmax(96px,1fr) minmax(104px,1fr) minmax(128px,1.12fr) minmax(128px,1.12fr) 132px!important;
    gap:7px!important;
  }
}
@media (max-width:1180px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:48px!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:24px!important;}
  body.home .bl15-quick-card{
    width:min(760px,100%)!important;
    justify-self:start!important;
    align-self:auto!important;
    margin-top:8px!important;
  }
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:9px!important;
  }
  body.home .bl15-quick-card .btn{min-height:40px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero__bg::after{height:54%!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:1fr!important;
  }
  body.home .bl15-quick-card{padding:16px!important;}
}

/* v1.7.7 — hero horizontal form spacing, wider left expansion, stronger bottom blend + Figma-like icons below hero */
body.home .bl15-hero{
  min-height:700px!important;
  padding:92px 0 44px!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,520px) minmax(780px,830px)!important;
  gap:clamp(18px,2.3vw,32px)!important;
  align-items:stretch!important;
}
body.home .bl15-hero__copy{
  max-width:540px!important;
}
body.home .bl15-quick-card{
  width:min(830px,100%)!important;
  align-self:end!important;
  justify-self:end!important;
  margin-top:0!important;
  transform:none!important;
  padding:18px 22px 16px!important;
  border-radius:12px!important;
}
body.home .bl15-quick-card h2{
  margin:0 0 13px!important;
  font-size:17px!important;
  line-height:1.15!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  display:grid!important;
  grid-template-columns:minmax(110px,.9fr) minmax(125px,.95fr) minmax(150px,1.2fr) minmax(150px,1.2fr) minmax(160px,1fr)!important;
  gap:12px!important;
  align-items:end!important;
}
body.home .bl15-form-row--two{display:contents!important;}
body.home .bl15-hero-form label{
  gap:5px!important;
  min-width:0!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  min-height:40px!important;
  border-radius:6px!important;
  padding:0 11px!important;
  font-size:12px!important;
}
body.home .bl15-quick-card .btn{
  min-height:40px!important;
  padding:0 16px!important;
  border-radius:6px!important;
  font-size:12px!important;
  white-space:nowrap!important;
}
body.home .bl15-consent{
  grid-column:1 / -1!important;
  margin-top:2px!important;
  padding-top:0!important;
  gap:7px!important;
}
body.home .bl15-hero__bg::after{
  content:""!important;
  display:block!important;
  position:absolute!important;
  left:0!important;
  right:0!important;
  bottom:0!important;
  height:50%!important;
  z-index:1!important;
  pointer-events:none!important;
  background:linear-gradient(180deg,
    rgba(0,18,37,0) 0%,
    rgba(0,18,37,.18) 28%,
    rgba(0,18,37,.58) 68%,
    #001225 100%)!important;
}
body.home .bl15-hero::after{
  height:150px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.30) 42%,#001225 100%)!important;
}
/* make below-hero pictograms visually match the Figma version */
body.home .company-figures-stats .stat-card::before{
  background-color:transparent!important;
  border:0!important;
  box-shadow:none!important;
  background-size:50px 50px!important;
  filter:drop-shadow(0 0 14px rgba(255,75,0,.16))!important;
}
body.home .home-services .info-card .bl-icon img,
body.home .dark-item .bl-icon img{
  filter:none!important;
}
@media (max-width:1360px){
  body.home .bl15-hero__grid{
    grid-template-columns:minmax(0,500px) minmax(720px,790px)!important;
    gap:20px!important;
  }
  body.home .bl15-quick-card{width:min(790px,100%)!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:minmax(104px,.85fr) minmax(118px,.95fr) minmax(140px,1.16fr) minmax(140px,1.16fr) minmax(150px,.96fr)!important;
    gap:10px!important;
  }
  body.home .bl15-quick-card .btn{padding:0 12px!important;font-size:11.5px!important;}
}
@media (max-width:1180px){
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:24px!important;}
  body.home .bl15-quick-card{width:min(820px,100%)!important;justify-self:start!important;align-self:auto!important;margin-top:8px!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  body.home .bl15-quick-card .btn{font-size:13px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{grid-template-columns:1fr!important;}
  body.home .bl15-quick-card{padding:16px!important;}
  body.home .bl15-hero__bg::after{height:58%!important;}
}

/* v1.7.8 — revert hero form to compact vertical card, keep full image, align services/icons with Figma, begin inner pages polish */
body.home .bl15-hero{
  min-height:700px!important;
  padding:92px 0 44px!important;
  background:#001225!important;
  overflow:hidden!important;
}
body.home .bl15-hero__bg img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center center!important;
  transform:none!important;
  opacity:1!important;
  filter:none!important;
}
body.home .bl15-hero__overlay{display:none!important;background:none!important;}
body.home .bl15-hero__bg::after{
  content:""!important;
  display:block!important;
  position:absolute!important;
  left:0!important;right:0!important;bottom:0!important;
  height:44%!important;
  z-index:1!important;
  pointer-events:none!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.16) 34%,rgba(0,18,37,.62) 76%,#001225 100%)!important;
}
body.home .bl15-hero::after{
  height:118px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%,rgba(0,18,37,.22) 44%,#001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,610px) minmax(320px,356px)!important;
  gap:clamp(52px,9vw,198px)!important;
  align-items:start!important;
  justify-content:space-between!important;
}
body.home .bl15-hero__copy{max-width:610px!important;padding-top:48px!important;}
body.home .bl15-quick-card{
  width:356px!important;
  max-width:100%!important;
  justify-self:end!important;
  align-self:start!important;
  margin-top:302px!important;
  transform:none!important;
  padding:16px 16px 15px!important;
  border-radius:10px!important;
  background:rgba(1,17,34,.82)!important;
  border:1px solid rgba(128,184,255,.27)!important;
  box-shadow:0 24px 64px rgba(0,0,0,.36)!important;
  backdrop-filter:blur(14px)!important;
}
body.home .bl15-quick-card h2{
  margin:0 0 10px!important;
  text-align:center!important;
  font-size:16px!important;
  line-height:1.16!important;
  font-weight:800!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:8px!important;
  align-items:stretch!important;
}
body.home .bl15-form-row--two{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:8px!important;
}
body.home .bl15-hero-form label,
body.home .bl15-quick-card .lead-form label{
  display:grid!important;
  gap:0!important;
  min-width:0!important;
  margin:0!important;
}
body.home .bl15-quick-card .lead-form label>span,
body.home .bl15-hero-form label>span{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  white-space:nowrap!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  width:100%!important;
  min-height:36px!important;
  border-radius:5px!important;
  padding:0 10px!important;
  font-size:12px!important;
  line-height:1!important;
  background:rgba(255,255,255,.065)!important;
  border:1px solid rgba(154,198,235,.25)!important;
}
body.home .bl15-quick-card .btn{
  width:100%!important;
  min-height:38px!important;
  margin:0!important;
  padding:0 14px!important;
  border-radius:5px!important;
  font-size:13px!important;
  white-space:nowrap!important;
}
body.home .bl15-consent{
  grid-column:auto!important;
  display:flex!important;
  align-items:center!important;
  gap:6px!important;
  margin:0!important;
  padding:0!important;
  font-size:10px!important;
  line-height:1.18!important;
  color:rgba(255,255,255,.70)!important;
}
body.home .bl15-consent input{width:12px!important;height:12px!important;min-height:12px!important;flex:0 0 12px!important;margin:0!important;}
body.home .bl15-consent label{position:static!important;width:auto!important;height:auto!important;clip:auto!important;overflow:visible!important;white-space:normal!important;font-size:10px!important;line-height:1.18!important;color:rgba(255,255,255,.70)!important;}
body.home .home-services .info-card .bl-icon,
body.home .home-services .info-card .bl-icon img{
  width:48px!important;
  height:48px!important;
  min-width:48px!important;
  object-fit:contain!important;
  filter:none!important;
}
body.home .home-services .info-card{
  grid-template-columns:56px minmax(0,1fr)!important;
  align-items:center!important;
}
@media (max-width:1280px){
  body.home .bl15-hero__grid{grid-template-columns:minmax(0,1fr) minmax(312px,340px)!important;gap:36px!important;}
  body.home .bl15-quick-card{width:340px!important;margin-top:292px!important;}
}
@media (max-width:1024px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:46px!important;}
  body.home .bl15-hero__bg img{object-position:68% center!important;opacity:.56!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:24px!important;}
  body.home .bl15-quick-card{justify-self:start!important;margin-top:12px!important;width:min(430px,100%)!important;}
  body.home .bl15-quick-card .lead-form label>span,
  body.home .bl15-hero-form label>span{position:static!important;width:auto!important;height:auto!important;clip:auto!important;overflow:visible!important;white-space:normal!important;color:rgba(245,249,255,.78)!important;font-size:11px!important;line-height:1.2!important;margin-bottom:4px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero{padding:96px 0 34px!important;}
  body.home .bl15-form-row--two{grid-template-columns:1fr!important;}
  body.home .bl15-quick-card{padding:16px!important;}
}

/* Inner pages: start aligning visual language with the homepage */
body:not(.home) .site-main{
  color:#f5f9ff;
  background:
    radial-gradient(circle at 12% 4%, rgba(255,75,0,.08), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(31,112,205,.16), transparent 32%),
    linear-gradient(180deg,#061d3b 0%,#03152d 52%,#061d3b 100%)!important;
}
body:not(.home) .page-hero{
  min-height:560px!important;
  padding:128px 0 96px!important;
  background-color:#061d3b!important;
  background-size:cover!important;
  background-position:center!important;
  overflow:hidden!important;
}
body:not(.home) .page-hero::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:radial-gradient(circle at 82% 22%, rgba(255,75,0,.14), transparent 26%)!important;
  pointer-events:none!important;
}
body:not(.home) .hero-overlay{
  background:linear-gradient(90deg,rgba(2,11,26,.96) 0%,rgba(3,21,45,.88) 45%,rgba(3,21,45,.45) 100%)!important;
}
body:not(.home) .hero-inner{position:relative!important;z-index:2!important;max-width:1180px!important;}
body:not(.home) .breadcrumbs,
body:not(.home) .breadcrumbs a{color:rgba(245,249,255,.68)!important;}
body:not(.home) .eyebrow,
body:not(.home) .section-kicker{color:#ff4b00!important;letter-spacing:.08em!important;text-transform:uppercase!important;}
body:not(.home) .hero-inner h1{max-width:850px!important;color:#fff!important;font-size:clamp(42px,4.8vw,68px)!important;line-height:1.05!important;font-weight:850!important;text-shadow:0 18px 44px rgba(0,0,0,.35)!important;}
body:not(.home) .hero-subtitle{max-width:720px!important;color:rgba(245,249,255,.86)!important;font-size:clamp(17px,1.5vw,21px)!important;line-height:1.55!important;}
body:not(.home) .floating-badges{background:#001225!important;margin-top:-54px!important;position:relative!important;z-index:4!important;}
body:not(.home) .badge-panel{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(180px,1fr))!important;gap:12px!important;padding:0!important;background:transparent!important;box-shadow:none!important;}
body:not(.home) .badge-item,
body:not(.home) .info-card,
body:not(.home) .dark-item,
body:not(.home) .process-step,
body:not(.home) .info-column,
body:not(.home) .faq-item,
body:not(.home) .fleet-result,
body:not(.home) .fleet-filter,
body:not(.home) .fleet-params-card,
body:not(.home) .fleet-description-card{
  color:#f5f9ff!important;
  background:linear-gradient(145deg,rgba(6,34,70,.82),rgba(3,19,42,.76))!important;
  border:1px solid rgba(129,192,255,.16)!important;
  box-shadow:0 18px 54px rgba(0,11,28,.30),inset 0 1px 0 rgba(255,255,255,.07)!important;
}
body:not(.home) .section{background:transparent!important;color:#f5f9ff!important;}
body:not(.home) .center-title,
body:not(.home) .section h2,
body:not(.home) .info-card h3,
body:not(.home) .dark-item h3,
body:not(.home) .process-step h3,
body:not(.home) .info-column h2,
body:not(.home) .faq-item summary{color:#f5f9ff!important;}
body:not(.home) .section p,
body:not(.home) .info-card p,
body:not(.home) .dark-item p,
body:not(.home) .process-step p,
body:not(.home) .document-list li,
body:not(.home) .faq-item p,
body:not(.home) .badge-item span{color:#b8c8d8!important;}
body:not(.home) .check-list li{background:rgba(3,24,43,.66)!important;border:1px solid rgba(129,192,255,.15)!important;color:#d7e4f2!important;}
body:not(.home) .cta-section{background:transparent!important;}
body:not(.home) .cta-panel{background:linear-gradient(135deg,#ff5a00,#ff7a1a)!important;color:#fff!important;border:0!important;box-shadow:0 28px 80px rgba(255,75,0,.18)!important;}
body:not(.home) .lead-form input,
body:not(.home) .lead-form select,
body:not(.home) .lead-form textarea{background:rgba(255,255,255,.96)!important;color:#061d3b!important;border-color:rgba(255,255,255,.5)!important;}
body:not(.home) .bl-icon img{filter:none!important;}
@media (max-width:760px){
  body:not(.home) .page-hero{min-height:auto!important;padding:106px 0 56px!important;}
  body:not(.home) .floating-badges{margin-top:0!important;padding-top:18px!important;}
}

/* v1.7.9 — restore Hero layout from v1.7.6, with neater horizontal form fields */
body.home .bl15-hero{
  min-height:700px!important;
  padding:92px 0 44px!important;
  background:#001225!important;
  overflow:hidden!important;
}
body.home .bl15-hero__bg{
  inset:0!important;
}
body.home .bl15-hero__bg img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center center!important;
  transform:none!important;
  opacity:1!important;
  filter:none!important;
}
body.home .bl15-hero__overlay{
  content:none!important;
  display:none!important;
  background:none!important;
}
body.home .bl15-hero__bg::after{
  content:""!important;
  display:block!important;
  position:absolute!important;
  left:0!important;
  right:0!important;
  bottom:0!important;
  height:42%!important;
  z-index:1!important;
  pointer-events:none!important;
  background:linear-gradient(180deg,
    rgba(0,18,37,0) 0%,
    rgba(0,18,37,.22) 34%,
    rgba(0,18,37,.68) 72%,
    #001225 100%)!important;
}
body.home .bl15-hero::after{
  height:124px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0) 0%, rgba(0,18,37,.34) 46%, #001225 100%)!important;
}
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,560px) minmax(690px,760px)!important;
  gap:clamp(22px,2.7vw,38px)!important;
  align-items:stretch!important;
  justify-content:space-between!important;
}
body.home .bl15-hero__copy{
  max-width:570px!important;
  padding-top:48px!important;
}
body.home .bl15-quick-card{
  width:min(760px,100%)!important;
  max-width:100%!important;
  align-self:end!important;
  justify-self:end!important;
  margin-top:0!important;
  transform:none!important;
  padding:18px 22px 16px!important;
  border-radius:12px!important;
  background:linear-gradient(155deg,rgba(4,20,38,.86),rgba(1,18,35,.76))!important;
  border:1px solid rgba(151,198,240,.30)!important;
  box-shadow:0 24px 64px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08)!important;
  backdrop-filter:blur(14px)!important;
}
body.home .bl15-quick-card h2{
  margin:0 0 12px!important;
  text-align:left!important;
  font-size:17px!important;
  line-height:1.15!important;
  font-weight:800!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  display:grid!important;
  grid-template-columns:minmax(112px,.95fr) minmax(128px,1.05fr) minmax(154px,1.22fr) minmax(154px,1.22fr) minmax(144px,.9fr)!important;
  gap:10px!important;
  align-items:end!important;
}
body.home .bl15-form-row--two{
  display:contents!important;
}
body.home .bl15-hero-form label,
body.home .bl15-quick-card .lead-form label{
  display:grid!important;
  gap:5px!important;
  min-width:0!important;
  margin:0!important;
  color:rgba(245,249,255,.76)!important;
  font-size:10px!important;
  line-height:1.15!important;
  font-weight:500!important;
}
body.home .bl15-quick-card .lead-form label>span,
body.home .bl15-hero-form label>span{
  position:static!important;
  width:auto!important;
  height:auto!important;
  overflow:visible!important;
  clip:auto!important;
  white-space:normal!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  width:100%!important;
  min-height:39px!important;
  border-radius:5px!important;
  padding:0 10px!important;
  font-size:12px!important;
  line-height:1!important;
  background:rgba(255,255,255,.065)!important;
  border:1px solid rgba(154,198,235,.25)!important;
  color:#fff!important;
}
body.home .bl15-quick-card select option{color:#061d3b!important;}
body.home .bl15-quick-card .btn{
  width:100%!important;
  min-height:39px!important;
  margin:0!important;
  padding:0 12px!important;
  border-radius:5px!important;
  font-size:12px!important;
  line-height:1.15!important;
  white-space:nowrap!important;
}
body.home .bl15-consent{
  grid-column:1 / -1!important;
  display:flex!important;
  align-items:center!important;
  gap:6px!important;
  margin:0!important;
  padding:0!important;
  font-size:10px!important;
  line-height:1.18!important;
  color:rgba(255,255,255,.70)!important;
}
body.home .bl15-consent input{
  width:12px!important;
  height:12px!important;
  min-height:12px!important;
  flex:0 0 12px!important;
  margin:0!important;
}
body.home .bl15-consent label{
  position:static!important;
  width:auto!important;
  height:auto!important;
  clip:auto!important;
  overflow:visible!important;
  white-space:normal!important;
  font-size:10px!important;
  line-height:1.18!important;
  color:rgba(255,255,255,.70)!important;
}
@media (max-width:1360px){
  body.home .bl15-hero__grid{
    grid-template-columns:minmax(0,530px) minmax(625px,700px)!important;
    gap:22px!important;
  }
  body.home .bl15-quick-card{width:min(700px,100%)!important;padding:17px 20px 15px!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:minmax(102px,.95fr) minmax(118px,1fr) minmax(138px,1.18fr) minmax(138px,1.18fr) minmax(132px,.88fr)!important;
    gap:9px!important;
  }
  body.home .bl15-quick-card .btn{padding:0 10px!important;font-size:11.5px!important;}
}
@media (max-width:1180px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:48px!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:24px!important;}
  body.home .bl15-quick-card{
    width:min(820px,100%)!important;
    justify-self:start!important;
    align-self:auto!important;
    margin-top:8px!important;
  }
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
  body.home .bl15-quick-card .btn{min-height:40px!important;font-size:13px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero{padding:96px 0 34px!important;}
  body.home .bl15-hero__bg img{object-position:68% center!important;}
  body.home .bl15-hero__bg::after{height:54%!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{grid-template-columns:1fr!important;}
  body.home .bl15-quick-card{padding:16px!important;}
}

/* v1.7.10 — hero form returned to v1.7.6 size with equal left/right padding */
body.home .bl15-hero__grid{
  grid-template-columns:minmax(0,570px) minmax(620px,700px)!important;
  gap:clamp(24px,3.2vw,44px)!important;
  align-items:stretch!important;
}
body.home .bl15-quick-card{
  width:min(700px,100%)!important;
  max-width:100%!important;
  align-self:end!important;
  justify-self:end!important;
  margin-top:0!important;
  transform:none!important;
  padding:16px 18px 14px!important; /* left/right are equal */
  border-radius:12px!important;
}
body.home .bl15-quick-card h2{
  margin:0 0 10px!important;
  text-align:left!important;
  font-size:17px!important;
  line-height:1.15!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  display:grid!important;
  grid-template-columns:minmax(105px,1fr) minmax(112px,1fr) minmax(142px,1.15fr) minmax(142px,1.15fr) 146px!important;
  gap:8px!important;
  align-items:end!important;
}
body.home .bl15-form-row--two{
  display:contents!important;
}
body.home .bl15-hero-form label,
body.home .bl15-quick-card .lead-form label{
  display:grid!important;
  gap:4px!important;
  min-width:0!important;
  margin:0!important;
  font-size:10px!important;
  line-height:1.15!important;
}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  width:100%!important;
  min-height:38px!important;
  border-radius:5px!important;
  padding:0 9px!important;
  font-size:12px!important;
}
body.home .bl15-quick-card .btn{
  width:100%!important;
  min-height:38px!important;
  margin:0!important;
  padding:0 10px!important;
  border-radius:5px!important;
  font-size:12px!important;
  line-height:1.15!important;
  white-space:nowrap!important;
}
body.home .bl15-consent{
  grid-column:1 / -1!important;
  margin:0!important;
  padding:0!important;
  gap:6px!important;
  font-size:10px!important;
  line-height:1.18!important;
}
@media (max-width:1280px){
  body.home .bl15-hero__grid{
    grid-template-columns:minmax(0,540px) minmax(560px,650px)!important;
    gap:24px!important;
  }
  body.home .bl15-quick-card{
    width:min(650px,100%)!important;
    padding:16px 18px 14px!important; /* left/right are equal */
  }
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:minmax(96px,1fr) minmax(104px,1fr) minmax(128px,1.12fr) minmax(128px,1.12fr) 132px!important;
    gap:7px!important;
  }
}
@media (max-width:1180px){
  body.home .bl15-hero{min-height:auto!important;padding-bottom:48px!important;}
  body.home .bl15-hero__grid{grid-template-columns:1fr!important;gap:24px!important;}
  body.home .bl15-quick-card{
    width:min(760px,100%)!important;
    justify-self:start!important;
    align-self:auto!important;
    margin-top:8px!important;
    padding:16px 18px 14px!important; /* left/right are equal */
  }
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:9px!important;
  }
  body.home .bl15-quick-card .btn{min-height:40px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    grid-template-columns:1fr!important;
  }
  body.home .bl15-quick-card{
    padding:16px!important; /* equal all sides on mobile */
  }
}

/* v1.7.11 — hero form button balance, complete header grouping, inner pages visual pass */
/* Header: compact full-site navigation with all main pages grouped */
.bl15-header-inner{gap:18px!important;}
.bl15-menu{gap:20px!important;justify-content:center!important;}
.bl15-menu>li>a{font-size:12.5px!important;white-space:nowrap!important;}
.bl15-header-contacts{min-width:148px!important;}
.bl15-header-contacts .phone{font-size:13px!important;}
.bl15-header-contacts .header-email{font-size:12px!important;}
.header-btn{min-height:42px!important;padding:0 18px!important;font-size:12.5px!important;}
.bl15-menu .sub-menu{gap:6px!important;padding:12px!important;}
.bl15-menu .sub-menu a{font-size:13px!important;line-height:1.2!important;padding:8px 10px!important;}
.bl15-menu .sub-menu--services,
.bl15-menu .sub-menu--directions{min-width:430px!important;grid-template-columns:repeat(2,minmax(185px,1fr))!important;}
.bl15-menu .sub-menu--company,
.bl15-menu .sub-menu--clients{min-width:285px!important;}

/* Hero horizontal form: narrower submit button, evenly distributed fields */
body.home .bl15-quick-card{
  width:min(708px,100%)!important;
  padding:17px 20px 15px!important;
}
body.home .bl15-hero-form,
body.home .bl15-quick-card .lead-form{
  grid-template-columns:repeat(4,minmax(112px,1fr)) minmax(118px,126px)!important;
  gap:10px!important;
  align-items:end!important;
}
body.home .bl15-form-row--two{display:contents!important;}
body.home .bl15-hero-form label,
body.home .bl15-quick-card .lead-form label{gap:4px!important;}
body.home .bl15-quick-card input,
body.home .bl15-quick-card select{
  min-height:38px!important;
  padding:0 10px!important;
}
body.home .bl15-quick-card .btn{
  width:126px!important;
  justify-self:end!important;
  min-height:38px!important;
  padding:0 8px!important;
  font-size:11.6px!important;
  letter-spacing:0!important;
}
body.home .bl15-consent{grid-column:1 / -1!important;}
@media (max-width:1360px){
  body.home .bl15-hero__grid{grid-template-columns:minmax(0,540px) minmax(600px,664px)!important;gap:24px!important;}
  body.home .bl15-quick-card{width:min(664px,100%)!important;padding:16px 18px 14px!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{grid-template-columns:repeat(4,minmax(100px,1fr)) minmax(112px,120px)!important;gap:8px!important;}
  body.home .bl15-quick-card .btn{width:120px!important;font-size:11.2px!important;}
}
@media (max-width:1180px){
  .bl15-menu{gap:14px!important;}
  .bl15-menu>li>a{font-size:12px!important;}
  body.home .bl15-quick-card{width:min(760px,100%)!important;}
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  body.home .bl15-quick-card .btn{width:100%!important;justify-self:stretch!important;font-size:13px!important;}
}
@media (max-width:760px){
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{grid-template-columns:1fr!important;}
  body.home .bl15-quick-card .btn{width:100%!important;}
}

/* Inner pages: bring cards, sections and CTA closer to the homepage visual system */
body:not(.home) .section{padding:74px 0!important;}
body:not(.home) .floating-badges{padding-bottom:32px!important;}
body:not(.home) .badge-item{min-height:104px!important;padding:20px 20px!important;border-radius:16px!important;}
body:not(.home) .badge-item .bl-icon,
body:not(.home) .info-card .bl-icon,
body:not(.home) .dark-item .bl-icon{width:48px!important;height:48px!important;min-width:48px!important;}
body:not(.home) .badge-item .bl-icon img,
body:not(.home) .info-card .bl-icon img,
body:not(.home) .dark-item .bl-icon img{width:48px!important;height:48px!important;object-fit:contain!important;filter:none!important;}
body:not(.home) .card-grid{gap:18px!important;}
body:not(.home) .info-card{min-height:205px!important;padding:24px 22px!important;border-radius:18px!important;display:grid!important;grid-template-columns:56px minmax(0,1fr)!important;align-content:start!important;gap:16px!important;}
body:not(.home) .info-card h3{margin:0!important;font-size:20px!important;line-height:1.2!important;}
body:not(.home) .info-card p{grid-column:1 / -1!important;margin:0!important;font-size:15px!important;line-height:1.55!important;}
body:not(.home) .info-card .card-action-link{grid-column:1 / -1!important;margin-top:4px!important;color:#ff6b00!important;font-weight:800!important;}
body:not(.home) .info-card:hover,
body:not(.home) .dark-item:hover,
body:not(.home) .process-step:hover{transform:translateY(-3px)!important;border-color:rgba(255,107,0,.45)!important;}
body:not(.home) .two-col{gap:34px!important;align-items:start!important;}
body:not(.home) .two-col>div:first-child,
body:not(.home) .check-list,
body:not(.home) .info-column,
body:not(.home) .faq-list{position:relative!important;z-index:2!important;}
body:not(.home) .process-grid{gap:16px!important;}
body:not(.home) .process-step{border-radius:18px!important;padding:24px 22px!important;}
body:not(.home) .step-num{background:#ff6b00!important;color:#fff!important;box-shadow:0 14px 34px rgba(255,107,0,.22)!important;}
body:not(.home) .faq-item{border-radius:16px!important;padding:20px 22px!important;margin-bottom:12px!important;}
body:not(.home) .faq-item summary{cursor:pointer!important;}
body:not(.home) .cta-panel{display:grid!important;grid-template-columns:minmax(0,.85fr) minmax(520px,1.15fr)!important;gap:28px!important;align-items:center!important;border-radius:22px!important;padding:32px!important;}
body:not(.home) .cta-panel .lead-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
body:not(.home) .cta-panel .lead-form{gap:10px!important;}
body:not(.home) .cta-panel .lead-form .btn{min-height:44px!important;}
@media (max-width:980px){
  body:not(.home) .cta-panel{grid-template-columns:1fr!important;}
}
@media (max-width:760px){
  .bl15-menu .sub-menu--services,
  .bl15-menu .sub-menu--directions{min-width:0!important;grid-template-columns:1fr!important;}
  body:not(.home) .section{padding:52px 0!important;}
  body:not(.home) .info-card{grid-template-columns:50px minmax(0,1fr)!important;min-height:auto!important;}
  body:not(.home) .cta-panel{padding:24px 18px!important;}
  body:not(.home) .cta-panel .lead-grid{grid-template-columns:1fr!important;}
}

/* v1.8.2 — Figma transfer: page "Группа компаний BL" */
.bl-group-page{
  --blg-blue:#06234a;
  --blg-blue-2:#001b37;
  --blg-orange:#ff4b00;
  --blg-text:#061a3d;
  --blg-muted:#496078;
  --blg-line:#d8e2ee;
  --blg-soft:#f6f9fd;
  background:#fff;
  color:var(--blg-text);
}
.bl-group-page .container{max-width:1180px;}
.blg-hero{
  position:relative;
  min-height:438px;
  display:flex;
  align-items:center;
  padding:94px 0 78px;
  color:#fff;
  background:var(--blg-blue-2) var(--blg-hero-bg) center/cover no-repeat;
  overflow:hidden;
}
.blg-hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:120px;
  background:linear-gradient(180deg,rgba(0,27,55,0),rgba(0,18,37,.78));
  pointer-events:none;
}
.blg-hero__inner{position:relative;z-index:2;}
.blg-breadcrumbs{margin:0 0 16px;color:rgba(255,255,255,.72);}
.blg-breadcrumbs span:last-child{color:var(--blg-orange);font-weight:800;}
.blg-hero .eyebrow{display:none;}
.blg-hero h1{max-width:520px;margin:0 0 10px;font-size:clamp(38px,4.2vw,58px);line-height:1.04;letter-spacing:-.045em;color:#fff;text-shadow:0 16px 42px rgba(0,0,0,.30);}
.blg-domain{margin:0 0 16px;color:var(--blg-orange);font-weight:900;font-size:24px;line-height:1;}
.blg-hero__lead{max-width:520px;margin:0 0 12px;color:#fff;font-size:20px;line-height:1.25;font-weight:800;}
.blg-hero__text{max-width:535px;margin:0 0 22px;color:rgba(255,255,255,.86);font-size:15px;line-height:1.52;}
.blg-hero__actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.blg-hero__actions .btn{min-height:46px;border-radius:7px;padding:0 24px;font-size:14px;}
.blg-download{color:#fff!important;border-color:rgba(255,255,255,.45)!important;background:rgba(5,27,54,.65)!important;box-shadow:none!important;}
.blg-download:before{content:"↓";display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border:1px solid rgba(255,255,255,.45);border-radius:6px;margin-right:8px;font-weight:900;}

.blg-stats{position:relative;z-index:5;margin-top:-50px;margin-bottom:26px;}
.blg-stats__panel{display:grid;grid-template-columns:repeat(5,1fr);overflow:hidden;border-radius:8px;background:linear-gradient(135deg,#04274e,#00244d);border:1px solid rgba(129,192,255,.22);box-shadow:0 18px 48px rgba(0,27,55,.22);}
.blg-stat{display:flex;align-items:center;gap:18px;min-height:104px;padding:20px 24px;border-right:1px solid rgba(255,255,255,.22);color:#fff;}
.blg-stat:last-child{border-right:0;}
.blg-stat .bl-icon{width:42px;height:42px;flex-basis:42px;}
.blg-stat strong{display:block;font-size:26px;line-height:1;font-weight:900;color:#fff;letter-spacing:-.03em;}
.blg-stat span{display:block;margin-top:7px;color:rgba(255,255,255,.82);font-size:14px;line-height:1.15;}

.blg-section{padding:18px 0 8px;}
.blg-section h2{margin:0 0 20px;color:var(--blg-text);font-size:28px;line-height:1.15;letter-spacing:-.03em;font-weight:900;}
.blg-about-grid{display:grid;grid-template-columns:1fr 1.35fr;gap:52px;align-items:center;}
.blg-copy p{margin:0 0 17px;color:#213a59;font-size:16px;line-height:1.62;}
.blg-warehouse-card{position:relative;min-height:250px;border-radius:10px;overflow:hidden;box-shadow:0 14px 42px rgba(4,34,72,.16);border:1px solid rgba(9,43,80,.10);}
.blg-warehouse-card img{width:100%;height:100%;min-height:250px;object-fit:cover;display:block;}
.blg-warehouse-badge{position:absolute;left:26px;bottom:26px;display:grid;grid-template-columns:auto 1fr;column-gap:14px;align-items:center;min-width:360px;max-width:470px;padding:18px 22px;border-radius:9px;background:#052a55;color:#fff;box-shadow:0 18px 34px rgba(0,23,47,.28);}
.blg-warehouse-badge .bl-icon{grid-row:1 / span 2;width:44px;height:44px;}
.blg-warehouse-badge strong{display:block;font-size:18px;line-height:1.1;}
.blg-warehouse-badge span{display:block;margin-top:4px;color:rgba(255,255,255,.82);font-size:15px;}

.blg-card-grid{display:grid;gap:16px;}
.blg-card-grid--4{grid-template-columns:repeat(4,1fr);}
.blg-card{display:flex;align-items:flex-start;gap:18px;min-height:126px;padding:22px 22px;border-radius:8px;background:#fff;border:1px solid var(--blg-line);box-shadow:0 8px 22px rgba(3,27,55,.035);transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
.blg-card:hover{transform:translateY(-2px);border-color:rgba(255,75,0,.35);box-shadow:0 15px 36px rgba(3,27,55,.08);}
.blg-card .bl-icon{width:46px;height:46px;flex:0 0 46px;}
.blg-card h3{margin:0 0 8px;color:var(--blg-text);font-size:16px;line-height:1.25;font-weight:900;}
.blg-card p{margin:0;color:#52667c;font-size:14px;line-height:1.45;}
.blg-benefits-section{padding-top:20px;}
.blg-benefits-section .blg-card{min-height:112px;}

.blg-geo-section{padding-top:24px;}
.blg-geo-grid{display:grid;grid-template-columns:1fr 1.08fr;gap:48px;align-items:start;}
.blg-map-card{display:flex;align-items:center;justify-content:center;min-height:232px;margin-bottom:12px;border-radius:12px;background:#f4f8fc;overflow:hidden;}
.blg-map-card img{width:100%;height:auto;display:block;}
.blg-mini-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;}
.blg-mini-stats>div{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:86px;text-align:center;border:1px solid var(--blg-line);border-radius:8px;background:#fff;color:var(--blg-text);}
.blg-mini-stats strong{font-size:22px;line-height:1.05;font-weight:900;}
.blg-mini-stats span{margin-top:6px;color:#415973;font-size:13px;line-height:1.25;}
.blg-mini-stats .bl-icon{width:28px;height:28px;margin-bottom:4px;}
.blg-relation h2{margin-bottom:18px;}
.blg-relation-grid{display:grid;grid-template-columns:.88fr 1fr;gap:20px;}
.blg-relation-copy p{margin:0 0 20px;color:#334b66;font-size:15px;line-height:1.62;}
.blg-side-cards{display:grid;gap:9px;}
.blg-card--compact{min-height:76px;padding:14px 18px;border-radius:8px;gap:14px;}
.blg-card--compact .bl-icon{width:39px;height:39px;flex-basis:39px;}
.blg-card--compact h3{font-size:16px;margin-bottom:4px;}
.blg-card--compact p{font-size:13px;}

.blg-timeline-section{padding:22px 0 32px;}
.blg-timeline{position:relative;display:grid;grid-template-columns:repeat(5,1fr);gap:18px;padding-top:30px;}
.blg-timeline__line{position:absolute;left:0;right:0;top:15px;height:2px;background:#082b58;}
.blg-timeline__line:after{content:"";position:absolute;right:-2px;top:-5px;border-left:10px solid #082b58;border-top:6px solid transparent;border-bottom:6px solid transparent;}
.blg-timeline article{position:relative;text-align:center;color:#102a4d;}
.blg-timeline article i{position:absolute;top:-21px;left:50%;transform:translateX(-50%);width:11px;height:11px;border-radius:50%;background:var(--blg-orange);box-shadow:0 0 0 4px #fff;}
.blg-timeline em{position:absolute;top:-30px;left:calc(50% + 18px);font-style:normal;font-size:11px;font-weight:800;color:#7d8ca0;}
.blg-timeline strong{display:block;margin-bottom:6px;font-size:13px;font-weight:900;}
.blg-timeline p{margin:0;color:#52667c;font-size:12px;line-height:1.35;}

.blg-cta{position:relative;min-height:220px;overflow:hidden;background:linear-gradient(135deg,#001b37,#052d5d);color:#fff;}
.blg-cta__image{position:absolute;left:0;top:0;bottom:0;width:38%;background-size:cover;background-position:center;}
.blg-cta__image:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,27,55,.05),rgba(0,27,55,.92));}
.blg-cta__inner{position:relative;z-index:2;display:grid;grid-template-columns:.42fr 1fr;gap:32px;align-items:center;min-height:220px;padding-top:24px;padding-bottom:24px;}
.blg-cta__content h2{margin:0 0 8px;color:#fff;font-size:30px;line-height:1.15;font-weight:900;letter-spacing:-.03em;}
.blg-cta__content p{margin:0 0 16px;color:rgba(255,255,255,.85);font-size:15px;line-height:1.45;}
.blg-cta-form__row{display:grid;grid-template-columns:1fr 1fr 1fr auto;gap:12px;align-items:center;}
.blg-cta-form input{height:44px;border:0;border-radius:5px;padding:0 14px;background:#fff;color:#061a3d;font-size:14px;outline:none;}
.blg-cta-form .btn{height:44px;min-height:44px;border-radius:6px;padding:0 24px;white-space:nowrap;}
.blg-cta-consent{margin-top:10px;color:rgba(255,255,255,.76);font-size:12px;}
.blg-cta-consent a{color:#fff;text-decoration:underline;}

.bl-group-page + .site-footer,
.bl-group-page ~ .site-footer{margin-top:0;}
@media (max-width:1180px){
  .blg-stats__panel{grid-template-columns:repeat(5,minmax(0,1fr));}
  .blg-stat{padding:18px 14px;gap:12px;}
  .blg-stat strong{font-size:22px;}
  .blg-card{padding:18px 16px;}
}
@media (max-width:980px){
  .blg-hero{background-position:center right;}
  .blg-stats__panel,.blg-card-grid--4,.blg-geo-grid,.blg-about-grid{grid-template-columns:1fr 1fr;}
  .blg-relation-grid{grid-template-columns:1fr;}
  .blg-mini-stats{grid-template-columns:repeat(2,1fr);}
  .blg-cta__inner{grid-template-columns:1fr;}
  .blg-cta__image{display:none;}
  .blg-cta-form__row{grid-template-columns:1fr 1fr;}
}
@media (max-width:700px){
  .blg-hero{min-height:auto;padding:100px 0 62px;background-position:62% center;}
  .blg-hero h1{font-size:36px;}
  .blg-stats{margin-top:0;}
  .blg-stats__panel,.blg-card-grid--4,.blg-geo-grid,.blg-about-grid,.blg-mini-stats{grid-template-columns:1fr;}
  .blg-stat{min-height:86px;border-right:0;border-bottom:1px solid rgba(255,255,255,.16);}
  .blg-stat:last-child{border-bottom:0;}
  .blg-warehouse-badge{left:14px;right:14px;bottom:14px;min-width:0;padding:14px;}
  .blg-timeline{grid-template-columns:1fr;gap:24px;padding-left:20px;}
  .blg-timeline__line{left:5px;right:auto;top:0;bottom:0;width:2px;height:auto;}
  .blg-timeline__line:after{display:none;}
  .blg-timeline article{text-align:left;}
  .blg-timeline article i{left:-15px;top:3px;transform:none;}
  .blg-timeline em{position:static;display:block;margin-bottom:4px;}
  .blg-cta-form__row{grid-template-columns:1fr;}
}

/* v1.8.3 — group company page polish, image quality and alignment */
.bl-group-page .container{max-width:1200px;}
.blg-hero{
  min-height:452px;
  padding:96px 0 84px;
  background-position:center center;
}
.blg-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(1,18,44,.88) 0%, rgba(1,18,44,.78) 38%, rgba(1,18,44,.08) 70%, rgba(1,18,44,0) 100%);
  pointer-events:none;
}
.blg-hero__inner{max-width:1200px;}
.blg-hero__lead{max-width:540px;}
.blg-stats__panel{
  grid-template-columns:.9fr 1fr 1fr 1.05fr 1.22fr;
}
.blg-stat{padding:20px 20px;gap:15px;}
.blg-stat .bl-icon{width:40px;height:40px;flex-basis:40px;}
.blg-stat div{min-width:0;}
.blg-stat strong{font-size:25px;}
.blg-stat span{margin-top:7px;font-size:13px;line-height:1.18;white-space:nowrap;}
.blg-stat:last-child strong{font-size:24px;letter-spacing:-.045em;}
.blg-stat:last-child span{font-size:12.5px;}
.blg-section{padding:22px 0 10px;}
.blg-about-grid,.blg-geo-grid{gap:40px;}
.blg-warehouse-card{min-height:300px;border-radius:12px;}
.blg-warehouse-card img{min-height:300px;object-position:center center;}
.blg-warehouse-badge{left:22px;bottom:22px;min-width:390px;max-width:500px;padding:18px 22px;}
.blg-card-grid{gap:18px;}
.blg-card-grid--4{grid-auto-rows:1fr;}
.blg-card{min-height:124px;border-radius:10px;}
.blg-card>div{display:flex;flex-direction:column;}
.blg-card--compact{min-height:82px;}
.blg-map-card{min-height:265px;padding:0;border:1px solid #e5edf6;background:#fff;box-shadow:0 10px 24px rgba(5, 24, 48, .04);}
.blg-map-card img{width:100%;height:100%;object-fit:contain;}
.blg-mini-stats{gap:10px;}
.blg-mini-stats>div{padding:14px 10px;min-height:92px;}
.blg-relation-grid{grid-template-columns:.94fr 1fr;gap:22px;align-items:start;}
.blg-side-cards{gap:10px;}
.blg-timeline-section{padding:28px 0 34px;}
.blg-timeline{gap:22px;}
.blg-timeline strong{font-size:14px;}
.blg-timeline p{font-size:12px;line-height:1.45;}
.blg-cta{min-height:240px;}
.blg-cta__image{width:39%;background-size:cover;background-position:center center;}
.blg-cta__image:after{background:linear-gradient(90deg,rgba(0,27,55,.02),rgba(0,27,55,.88));}
.blg-cta__inner{min-height:240px;grid-template-columns:.40fr 1fr;gap:34px;}
.blg-cta__content{padding-left:10px;}
@media (max-width:1180px){
  .blg-stats__panel{grid-template-columns:repeat(5,minmax(0,1fr));}
  .blg-stat span{white-space:normal;}
}
@media (max-width:980px){
  .bl-group-page .container{max-width:100%;}
  .blg-warehouse-badge{min-width:0;max-width:calc(100% - 44px);}
}
@media (max-width:700px){
  .blg-hero{padding:98px 0 62px;}
  .blg-hero:before{background:linear-gradient(180deg, rgba(1,18,44,.82) 0%, rgba(1,18,44,.72) 44%, rgba(1,18,44,.38) 100%);}
  .blg-stat span{white-space:normal;}
  .blg-warehouse-card img{min-height:240px;}
}


/* v1.8.4 — group page final image/assets tune */
.blg-stat strong{white-space:nowrap;}
.blg-map-card img{display:block; width:100%; height:100%; object-fit:contain;}
.blg-cta__image{background-position:center left;}
.blg-card .bl-icon img{width:48px;height:48px;object-fit:contain;}


/* v1.8.5 — group page final generated assets */
.blg-hero{
  min-height:462px;
  padding:96px 0 86px;
  background-size:cover!important;
  background-position:center center!important;
}
.blg-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,20,44,.88) 0%,rgba(0,20,44,.76) 36%,rgba(0,20,44,.28) 62%,rgba(0,20,44,.08) 100%);
  pointer-events:none;
}
.blg-hero:after{
  background:linear-gradient(180deg,rgba(0,18,37,0),rgba(0,18,37,.58));
}
.blg-stats__panel{
  grid-template-columns:.86fr .96fr 1fr 1.05fr 1.30fr;
}
.blg-stat{
  padding-left:18px;
  padding-right:18px;
}
.blg-stat strong{
  white-space:nowrap;
}
.blg-stat span{
  white-space:normal;
}
.blg-stat:last-child strong{
  font-size:23px;
}
.blg-stat:last-child span{
  max-width:150px;
}
.blg-warehouse-card{
  min-height:310px;
}
.blg-warehouse-card img{
  height:100%;
  min-height:310px;
  object-fit:cover;
}
.blg-map-card{
  min-height:292px;
  padding:8px 10px;
  background:#fff;
}
.blg-map-card img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.blg-cta{
  min-height:238px;
}
.blg-cta__image{
  width:39%;
  background-size:cover!important;
  background-position:center center!important;
}
.blg-cta__inner{
  min-height:238px;
}
@media (max-width:1180px){
  .blg-stats__panel{grid-template-columns:repeat(5,minmax(0,1fr));}
  .blg-stat:last-child strong{font-size:21px;}
}
@media (max-width:700px){
  .blg-hero{min-height:auto;padding:100px 0 64px;background-position:center right!important;}
  .blg-map-card{min-height:220px;}
  .blg-cta__image{display:none;}
}

/* v1.8.6 — full inner pages visual pass based on generated Figma sketches */
body:not(.home) .site-main{
  background:#f6f9fd!important;
  color:#061a3d!important;
}
body:not(.home) .page-hero{
  min-height:500px!important;
  padding:112px 0 82px!important;
  background-size:cover!important;
  background-position:center right!important;
  background-repeat:no-repeat!important;
  color:#fff!important;
}
body:not(.home) .page-hero::before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:linear-gradient(90deg,rgba(1,16,36,.94) 0%,rgba(1,18,40,.82) 38%,rgba(1,18,40,.34) 64%,rgba(1,18,40,.10) 100%)!important;
  pointer-events:none!important;
}
body:not(.home) .page-hero::after{
  content:""!important;
  position:absolute!important;
  left:0!important;right:0!important;bottom:0!important;
  height:112px!important;
  background:linear-gradient(180deg,rgba(0,18,37,0),rgba(0,18,37,.62))!important;
  pointer-events:none!important;
}
body:not(.home) .page-hero .hero-overlay{display:none!important;}
body:not(.home) .page-hero[data-hero="about"],
body:not(.home) .page-hero[data-hero="news"],
body:not(.home) .page-hero[data-hero="contacts"]{background-position:center center!important;}
body:not(.home) .page-hero[data-hero="china"],
body:not(.home) .page-hero[data-hero="multimodal"],
body:not(.home) .page-hero[data-hero="customs"]{background-position:center right!important;}
body:not(.home) .hero-inner{
  position:relative!important;
  z-index:2!important;
  max-width:1200px!important;
}
body:not(.home) .breadcrumbs,
body:not(.home) .breadcrumbs a{color:rgba(255,255,255,.72)!important;}
body:not(.home) .breadcrumbs span:last-child{color:#ff5a17!important;font-weight:800!important;}
body:not(.home) .eyebrow,
body:not(.home) .section-kicker{color:#ff5a17!important;letter-spacing:.075em!important;text-transform:uppercase!important;font-weight:900!important;}
body:not(.home) .hero-inner h1{
  max-width:760px!important;
  color:#fff!important;
  font-size:clamp(38px,4.6vw,62px)!important;
  line-height:1.04!important;
  font-weight:900!important;
  letter-spacing:-.045em!important;
  text-shadow:0 18px 48px rgba(0,0,0,.40)!important;
}
body:not(.home) .hero-subtitle{
  max-width:650px!important;
  color:rgba(255,255,255,.88)!important;
  font-size:clamp(16px,1.35vw,20px)!important;
  line-height:1.55!important;
}
body:not(.home) .hero-actions{gap:12px!important;}
body:not(.home) .hero-actions .btn{min-height:46px!important;border-radius:8px!important;padding:0 22px!important;font-size:14px!important;}
body:not(.home) .hero-actions .btn-secondary{background:rgba(5,27,54,.58)!important;color:#fff!important;border-color:rgba(255,255,255,.42)!important;}

/* status metrics under hero: one accurate dark strip like in the mockups */
body:not(.home) .floating-badges{
  background:#f6f9fd!important;
  margin-top:-50px!important;
  padding-bottom:42px!important;
  position:relative!important;
  z-index:4!important;
}
body:not(.home) .badge-panel{
  max-width:1200px!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:0!important;
  padding:0!important;
  overflow:hidden!important;
  border-radius:12px!important;
  background:linear-gradient(135deg,#052c5a,#00244d)!important;
  border:1px solid rgba(129,192,255,.22)!important;
  box-shadow:0 18px 48px rgba(0,27,55,.22)!important;
}
body:not(.home) .badge-item{
  min-height:102px!important;
  padding:20px 20px!important;
  border-radius:0!important;
  border:0!important;
  border-right:1px solid rgba(255,255,255,.18)!important;
  background:transparent!important;
  box-shadow:none!important;
  display:flex!important;
  align-items:center!important;
  gap:14px!important;
  color:#fff!important;
}
body:not(.home) .badge-item:last-child{border-right:0!important;}
body:not(.home) .badge-item strong{display:block!important;color:#fff!important;font-size:16px!important;line-height:1.15!important;font-weight:900!important;}
body:not(.home) .badge-item span{display:block!important;margin-top:4px!important;color:rgba(255,255,255,.78)!important;font-size:13px!important;line-height:1.25!important;}
body:not(.home) .badge-item .bl-icon{width:42px!important;height:42px!important;min-width:42px!important;}

/* content: white precise blocks, navy typography and orange icons */
body:not(.home) .section{
  padding:64px 0!important;
  background:#fff!important;
  color:#061a3d!important;
}
body:not(.home) .section + .section{padding-top:36px!important;}
body:not(.home) .section:nth-of-type(even):not(.floating-badges){background:#f7faff!important;}
body:not(.home) .section-head h2,
body:not(.home) .center-title,
body:not(.home) .section h2,
body:not(.home) .two-col h2,
body:not(.home) .info-column h2{
  color:#061a3d!important;
  font-weight:900!important;
  letter-spacing:-.035em!important;
}
body:not(.home) .section p,
body:not(.home) .section-head p:not(.section-kicker),
body:not(.home) .two-col p,
body:not(.home) .info-column p{color:#334b66!important;line-height:1.65!important;}
body:not(.home) .card-grid{gap:18px!important;align-items:stretch!important;}
body:not(.home) .info-card{
  color:#061a3d!important;
  background:#fff!important;
  border:1px solid #dce6f1!important;
  box-shadow:0 12px 28px rgba(5,24,48,.045)!important;
  border-radius:14px!important;
  min-height:166px!important;
  padding:24px 24px!important;
  display:grid!important;
  grid-template-columns:54px minmax(0,1fr)!important;
  gap:14px 18px!important;
  align-content:start!important;
}
body:not(.home) .info-card h3{
  grid-column:auto!important;
  margin:0!important;
  color:#061a3d!important;
  font-size:18px!important;
  line-height:1.25!important;
  font-weight:900!important;
}
body:not(.home) .info-card p{
  grid-column:2!important;
  margin:0!important;
  color:#52667c!important;
  font-size:14px!important;
  line-height:1.48!important;
}
body:not(.home) .info-card .bl-icon,
body:not(.home) .dark-item .bl-icon{width:48px!important;height:48px!important;min-width:48px!important;}
body:not(.home) .info-card .bl-icon img,
body:not(.home) .badge-item .bl-icon img,
body:not(.home) .dark-item .bl-icon img{filter:none!important;object-fit:contain!important;}
body:not(.home) .info-card .card-action-link{grid-column:2!important;margin-top:4px!important;color:#ff5a17!important;font-weight:900!important;font-size:14px!important;}
body:not(.home) .info-card:hover,
body:not(.home) .process-step:hover,
body:not(.home) .dark-item:hover{transform:translateY(-3px)!important;border-color:rgba(255,90,23,.38)!important;box-shadow:0 18px 42px rgba(5,24,48,.09)!important;}

body:not(.home) .two-col{gap:44px!important;align-items:start!important;}
body:not(.home) .check-list{display:grid!important;gap:10px!important;}
body:not(.home) .check-list li{
  background:#fff!important;
  border:1px solid #dce6f1!important;
  border-radius:12px!important;
  box-shadow:0 10px 24px rgba(5,24,48,.035)!important;
  color:#263f5d!important;
  padding:14px 16px 14px 44px!important;
}
body:not(.home) .check-list li::before{left:16px!important;top:16px!important;box-shadow:none!important;background:#ff5a17!important;}

body:not(.home) .dark-strip,
body:not(.home) .dark-strip.section{
  background:linear-gradient(135deg,#001b37,#052d5d)!important;
  color:#fff!important;
}
body:not(.home) .dark-strip h2,
body:not(.home) .dark-strip .center-title{color:#fff!important;}
body:not(.home) .dark-item{
  background:rgba(255,255,255,.06)!important;
  border:1px solid rgba(129,192,255,.18)!important;
  border-radius:16px!important;
  color:#fff!important;
  box-shadow:0 18px 42px rgba(0,11,28,.20)!important;
}
body:not(.home) .dark-item h3{color:#fff!important;}
body:not(.home) .dark-item p{color:rgba(255,255,255,.76)!important;}

body:not(.home) .process-step,
body:not(.home) .info-column,
body:not(.home) .faq-item,
body:not(.home) .fleet-params-card,
body:not(.home) .fleet-description-card{
  background:#fff!important;
  border:1px solid #dce6f1!important;
  border-radius:16px!important;
  color:#061a3d!important;
  box-shadow:0 12px 28px rgba(5,24,48,.045)!important;
}
body:not(.home) .process-step h3,
body:not(.home) .info-column h2,
body:not(.home) .faq-item summary,
body:not(.home) .fleet-params-card h3,
body:not(.home) .fleet-description-card h3{color:#061a3d!important;}
body:not(.home) .process-step p,
body:not(.home) .document-list li,
body:not(.home) .faq-item p,
body:not(.home) .fleet-params-card p:not(.section-kicker),
body:not(.home) .fleet-description-card p,
body:not(.home) .fleet-feature-list li{color:#52667c!important;}
body:not(.home) .step-num{background:#ff5a17!important;color:#fff!important;}

body:not(.home) .cta-section{background:#fff!important;}
body:not(.home) .cta-panel{
  display:grid!important;
  grid-template-columns:minmax(0,.78fr) minmax(520px,1.22fr)!important;
  gap:30px!important;
  align-items:center!important;
  border-radius:18px!important;
  padding:32px!important;
  background:linear-gradient(135deg,#052d5d,#001b37)!important;
  color:#fff!important;
  border:1px solid rgba(129,192,255,.16)!important;
  box-shadow:0 22px 60px rgba(0,27,55,.18)!important;
}
body:not(.home) .cta-panel h2,
body:not(.home) .cta-panel p{color:#fff!important;}
body:not(.home) .cta-panel .lead-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
body:not(.home) .lead-form input,
body:not(.home) .lead-form select,
body:not(.home) .lead-form textarea{background:#fff!important;color:#061d3b!important;border:1px solid rgba(6,29,59,.14)!important;}

/* Fleet page: preserve constructor, improve visuals and post-constructor blocks */
body:not(.home) .fleet-constructor-section{
  background:linear-gradient(180deg,#f6f9fd 0%,#eef4fb 100%)!important;
  padding-top:70px!important;
}
body:not(.home) .fleet-constructor{
  background:rgba(255,255,255,.92)!important;
  border:1px solid #dce6f1!important;
  box-shadow:0 30px 80px rgba(5,24,48,.10)!important;
}
.fleet-art-wrap{padding:14px!important;background:linear-gradient(135deg,#001b37,#052d5d)!important;overflow:hidden!important;}
.fleet-art-scene{min-height:330px!important;border-radius:18px!important;position:relative!important;overflow:hidden!important;display:block!important;background:#001b37!important;}
.fleet-art-scene::before{content:""!important;position:absolute!important;inset:0!important;z-index:1!important;background:linear-gradient(180deg,rgba(0,18,37,.02),rgba(0,18,37,.28))!important;opacity:1!important;}
.fleet-art-photo{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;}
.fleet-art-badge{position:absolute!important;left:18px!important;top:18px!important;z-index:2!important;}
.fleet-art-badge span{display:inline-flex!important;align-items:center!important;min-height:38px!important;padding:0 14px!important;border-radius:999px!important;background:rgba(3,20,42,.78)!important;border:1px solid rgba(255,255,255,.20)!important;color:#fff!important;font-weight:900!important;box-shadow:0 12px 26px rgba(0,11,28,.24)!important;}
.fleet-art-note{color:rgba(255,255,255,.70)!important;margin:12px 4px 0!important;font-size:13px!important;}
body:not(.home) .fleet-tab,
body:not(.home) .fleet-pill{border-radius:14px!important;}
body:not(.home) .fleet-tab.is-active,
body:not(.home) .fleet-pill.is-active{background:linear-gradient(135deg,#052d5d,#001b37)!important;border-color:#ff5a17!important;}
body:not(.home) .fleet-params dd{color:#061a3d!important;}

@media (max-width:1180px){
  body:not(.home) .badge-panel{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body:not(.home) .badge-item:nth-child(2n){border-right:0!important;}
  body:not(.home) .card-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  body:not(.home) .cta-panel{grid-template-columns:1fr!important;}
}
@media (max-width:760px){
  body:not(.home) .page-hero{min-height:auto!important;padding:100px 0 62px!important;background-position:62% center!important;}
  body:not(.home) .hero-inner h1{font-size:34px!important;}
  body:not(.home) .floating-badges{margin-top:0!important;padding-top:18px!important;}
  body:not(.home) .badge-panel,
  body:not(.home) .card-grid{grid-template-columns:1fr!important;}
  body:not(.home) .badge-item{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.16)!important;}
  body:not(.home) .badge-item:last-child{border-bottom:0!important;}
  body:not(.home) .info-card{grid-template-columns:50px minmax(0,1fr)!important;min-height:auto!important;padding:20px!important;}
  body:not(.home) .cta-panel{padding:24px 18px!important;}
  body:not(.home) .cta-panel .lead-grid{grid-template-columns:1fr!important;}
  .fleet-art-scene{min-height:230px!important;}
}

/* v1.8.6 fleet constructor grid cleanup */
body:not(.home) .fleet-result{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
}
body:not(.home) .fleet-art-wrap,
body:not(.home) .fleet-params-card,
body:not(.home) .fleet-description-card{
  border-radius:20px!important;
}


/* v1.8.9 — smooth scroll reveal for all pages */
.reveal-on-scroll{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .68s cubic-bezier(.22,.61,.36,1), transform .68s cubic-bezier(.22,.61,.36,1), filter .68s cubic-bezier(.22,.61,.36,1);
  will-change:opacity,transform;
  filter:blur(2px);
}
.reveal-on-scroll--hero{transform:translateY(18px);transition-duration:.82s;}
.reveal-on-scroll--scale{transform:translateY(24px) scale(.985);}
.reveal-on-scroll.is-visible{opacity:1;transform:translateY(0) scale(1);filter:blur(0);}
.floating-badges .badge-item.reveal-on-scroll,
.blg-stat.reveal-on-scroll,
.info-card.reveal-on-scroll,
.dark-item.reveal-on-scroll,
.process-step.reveal-on-scroll,
.blg-card.reveal-on-scroll{
  transition-duration:.62s;
}
@media (prefers-reduced-motion:reduce){
  .reveal-on-scroll{opacity:1!important;transform:none!important;transition:none!important;filter:none!important;}
}


/* v1.9.0 — fleet constructor generated vehicle images */
.fleet-art-scene{background:radial-gradient(circle at 50% 60%, rgba(255,255,255,.10), rgba(0,27,55,.10) 34%, rgba(0,18,37,.86) 100%)!important;}
.fleet-art-photo{object-fit:contain!important;padding:18px 12px 0!important;}
.fleet-art-scene::before{background:linear-gradient(180deg,rgba(0,18,37,.00),rgba(0,18,37,.18))!important;}
.fleet-result{align-items:stretch!important;}

/* v1.9.1 anti-spam honeypot */
.bl-hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important;}

/* v1.9.13 — expanded client logo marquee and editable news grid */
body.home .partners-track{animation-duration:68s!important;gap:34px!important;}
body.home .partner-logo{flex-basis:184px!important;height:68px!important;padding:10px 18px!important;}
body.home .partner-logo img{max-width:158px!important;max-height:50px!important;filter:drop-shadow(0 8px 18px rgba(0,0,0,.16));}
.news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.news-card{overflow:hidden;border-radius:20px;background:rgba(255,255,255,.96);border:1px solid rgba(216,226,239,.9);box-shadow:0 18px 48px rgba(5,24,48,.08);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;}
.news-card:hover{transform:translateY(-3px);border-color:rgba(255,90,23,.34);box-shadow:0 24px 62px rgba(5,24,48,.13);}
.news-card__image{display:block;height:190px;background:#061a3d;overflow:hidden;}
.news-card__image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
.news-card:hover .news-card__image img{transform:scale(1.04);}
.news-card__body{padding:22px;}
.news-card__body time{display:block;margin-bottom:10px;color:#ff5a17;font-size:13px;font-weight:900;}
.news-card__body h3{margin:0 0 10px;color:#061a3d;font-size:20px;line-height:1.22;font-weight:900;}
.news-card__body h3 a{color:inherit;text-decoration:none;}
.news-card__body p{margin:0 0 16px;color:#52667c;font-size:15px;line-height:1.55;}
.news-card__link{color:#ff5a17;font-weight:900;text-decoration:none;}
.news-card--fallback{display:grid;grid-template-columns:56px minmax(0,1fr);gap:14px;align-items:flex-start;padding:22px;}
.news-card--fallback .news-card__body{padding:0;}
.news-card__icon .bl-icon{width:48px;height:48px;}
@media (max-width:980px){.news-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){body.home .partner-logo{flex-basis:150px!important;height:58px!important;}body.home .partner-logo img{max-width:126px!important;max-height:42px!important;}.news-grid{grid-template-columns:1fr;}.news-card__image{height:170px;}}


/* v1.9.14 — clean two-line client logo marquee + fleet tent 1.5 image alignment */
body.home .partners-section.partners-section--clean{
  padding-top:26px!important;
}
body.home .partners-section.partners-section--clean .center-title{
  margin-bottom:20px!important;
}
body.home .partners-section.partners-section--clean .container{
  position:relative;
}
body.home .partners-section.partners-section--clean .partners-row.partners-marquee{
  position:relative;
  overflow:hidden;
  min-height:88px!important;
  padding:8px 0!important;
  margin:0!important;
  background:transparent!important;
  border:none!important;
  box-shadow:none!important;
}
body.home .partners-section.partners-section--clean .partners-row.partners-marquee + .partners-row.partners-marquee{
  margin-top:12px!important;
}
body.home .partners-section.partners-section--clean .partners-row.partners-marquee::before,
body.home .partners-section.partners-section--clean .partners-row.partners-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:74px;
  z-index:2;
  pointer-events:none;
}
body.home .partners-section.partners-section--clean .partners-row.partners-marquee::before{
  left:0;
  background:linear-gradient(90deg, rgba(5,24,48,.92) 0%, rgba(5,24,48,.72) 28%, rgba(5,24,48,0) 100%);
}
body.home .partners-section.partners-section--clean .partners-row.partners-marquee::after{
  right:0;
  background:linear-gradient(270deg, rgba(5,24,48,.92) 0%, rgba(5,24,48,.72) 28%, rgba(5,24,48,0) 100%);
}
body.home .partners-section.partners-section--clean .partners-track{
  display:flex!important;
  align-items:center!important;
  gap:22px!important;
  width:max-content!important;
  animation:blPartnersMarqueeLeft 56s linear infinite!important;
  will-change:transform;
}
body.home .partners-section.partners-section--clean .partners-marquee--reverse .partners-track{
  animation-name:blPartnersMarqueeRight!important;
  animation-duration:60s!important;
}
body.home .partners-section.partners-section--clean .partner-logo{
  flex:0 0 178px!important;
  height:66px!important;
  padding:10px 16px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:14px!important;
  background:#ffffff!important;
  border:1px solid rgba(220,228,238,.95)!important;
  box-shadow:none!important;
  transform:none!important;
}
body.home .partners-section.partners-section--clean .partner-logo:hover{
  transform:none!important;
  border-color:rgba(220,228,238,.95)!important;
  box-shadow:none!important;
}
body.home .partners-section.partners-section--clean .partner-logo img{
  max-width:148px!important;
  max-height:42px!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain!important;
  filter:none!important;
}
body.home .partners-section.partners-section--clean .partner-logo strong{
  color:#061a3d!important;
}
@keyframes blPartnersMarqueeLeft{
  0%{transform:translateX(0);}
  100%{transform:translateX(calc(-50% - 11px));}
}
@keyframes blPartnersMarqueeRight{
  0%{transform:translateX(calc(-50% - 11px));}
  100%{transform:translateX(0);}
}
@media (max-width:980px){
  body.home .partners-section.partners-section--clean .partner-logo{flex-basis:162px!important;height:62px!important;}
  body.home .partners-section.partners-section--clean .partner-logo img{max-width:134px!important;max-height:39px!important;}
}
@media (max-width:640px){
  body.home .partners-section.partners-section--clean .partners-row.partners-marquee::before,
  body.home .partners-section.partners-section--clean .partners-row.partners-marquee::after{width:38px!important;}
  body.home .partners-section.partners-section--clean .partner-logo{flex-basis:142px!important;height:56px!important;padding:8px 12px!important;}
  body.home .partners-section.partners-section--clean .partner-logo img{max-width:118px!important;max-height:34px!important;}
}

/* v1.9.15 — remove partner marquee edge overlays completely */
body.home .partners-section.partners-section--clean .partners-row.partners-marquee::before,
body.home .partners-section.partners-section--clean .partners-row.partners-marquee::after{
  content:none!important;
  display:none!important;
  width:0!important;
  background:none!important;
}


/* v1.9.16 — three-row partner marquee + unified section headings */
body.home .advantages-section .center-title,
body.home .partners-section .center-title,
body.home .process-section .center-title,
body.home .home-services .center-title {
  font-size: clamp(32px, 2.8vw, 40px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  margin-bottom: 28px !important;
}
body.home .partners-section.partners-section--triple {
  background: #001225 !important;
  padding: 16px 0 24px !important;
}
body.home .partners-section.partners-section--triple .center-title {
  margin-bottom: 18px !important;
}
body.home .partners-section.partners-section--triple .partners-row.partners-marquee {
  overflow: hidden;
  min-height: 82px;
  padding: 6px 0;
  margin: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.home .partners-section.partners-section--triple .partners-row.partners-marquee + .partners-row.partners-marquee {
  margin-top: 10px !important;
}
body.home .partners-section.partners-section--triple .partners-track {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  width: max-content !important;
  will-change: transform;
  animation: blPartnersMarqueeLeft 56s linear infinite !important;
}
body.home .partners-section.partners-section--triple .partners-marquee--reverse .partners-track {
  animation-name: blPartnersMarqueeRight !important;
  animation-duration: 60s !important;
}
body.home .partners-section.partners-section--triple .partner-logo {
  flex: 0 0 176px !important;
  height: 64px !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 14px !important;
  border: 1px solid rgba(219, 227, 238, 0.92) !important;
  box-shadow: none !important;
  transform: none !important;
  background: #ffffff !important;
}
body.home .partners-section.partners-section--triple .partners-marquee--dark .partner-logo {
  background: #0b2a52 !important;
  border-color: rgba(62, 99, 146, 0.9) !important;
}
body.home .partners-section.partners-section--triple .partner-logo:hover {
  transform: none !important;
  box-shadow: none !important;
}
body.home .partners-section.partners-section--triple .partner-logo img {
  max-width: 146px !important;
  max-height: 42px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: none !important;
}
body.home .partners-section.partners-section--triple .partner-logo strong {
  color: #061a3d !important;
}
@media (max-width: 980px) {
  body.home .partners-section.partners-section--triple .partner-logo { flex-basis: 160px !important; height: 60px !important; }
  body.home .partners-section.partners-section--triple .partner-logo img { max-width: 132px !important; max-height: 38px !important; }
}
@media (max-width: 640px) {
  body.home .partners-section.partners-section--triple .partner-logo { flex-basis: 142px !important; height: 54px !important; padding: 8px 10px !important; }
  body.home .partners-section.partners-section--triple .partner-logo img { max-width: 118px !important; max-height: 34px !important; }
}


/* v1.9.17 — no side overlays, dark-row logos from logo2, seamless triple-loop marquee */
body.home .partners-section.partners-section--triple .partners-row.partners-marquee::before,
body.home .partners-section.partners-section--triple .partners-row.partners-marquee::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
body.home .partners-section.partners-section--triple .partners-track {
  animation-duration: 72s !important;
}
body.home .partners-section.partners-section--triple .partners-marquee--reverse .partners-track {
  animation-duration: 76s !important;
}
body.home .partners-section.partners-section--triple .partner-logo {
  flex: 0 0 188px !important;
}
body.home .partners-section.partners-section--triple .partners-marquee--dark .partner-logo img {
  max-width: 150px !important;
  max-height: 44px !important;
}
@keyframes blPartnersMarqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-33.333%)); }
}
@keyframes blPartnersMarqueeRight {
  0% { transform: translateX(calc(-33.333%)); }
  100% { transform: translateX(0); }
}


/* v1.9.19 — mobile polish across pages + refined icons for city delivery page */
.info-column__head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.info-column__head h2{
  margin:0!important;
}
.info-column__icon,
.process-step__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,107,28,.14),rgba(1,46,86,.06));
  border:1px solid rgba(255,107,28,.18);
  box-shadow:0 10px 24px rgba(7,31,61,.08);
  flex:0 0 58px;
}
.info-column__icon .bl-icon,
.process-step__icon .bl-icon{margin:0;}
.info-column__icon img,
.process-step__icon img{
  width:28px;
  height:28px;
}
.process-step{
  position:relative;
}
.process-step__icon{
  margin:0 auto 16px;
}
.process-step h3,
.process-step p{
  position:relative;
  z-index:1;
}

@media (max-width: 991px){
  body.home .bl15-hero__inner,
  body.home .bl15-hero__grid,
  body.home .bl15-quick-card,
  body.home .bl15-hero-form,
  body.home .bl15-hero-form .bl15-form-row--two,
  body.home .bl15-hero-form .bl15-form-field,
  body.home .bl15-hero-form .checkbox-line,
  body.home .bl15-hero-form .btn{
    max-width:100%!important;
  }
  body.home .bl15-hero__copy,
  body.home .bl15-quick-card{
    min-width:0!important;
  }
  body.home .bl15-quick-card{
    justify-self:stretch!important;
  }
  body.home .bl15-hero-form label,
  body.home .bl15-hero-form input,
  body.home .bl15-hero-form select,
  body.home .bl15-hero-form .btn{
    width:100%!important;
    min-width:0!important;
  }
}

@media (max-width: 767px){
  body.home .bl15-hero{
    padding:94px 0 28px!important;
  }
  body.home .bl15-hero__grid{
    gap:18px!important;
  }
  body.home .bl15-quick-card{
    width:100%!important;
    padding:16px 14px 14px!important;
    border-radius:14px!important;
    overflow:hidden!important;
  }
  body.home .bl15-quick-card h2{
    font-size:18px!important;
    margin-bottom:12px!important;
  }
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form,
  body.home .bl15-form-row--two{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
  }
  body.home .bl15-hero-form label{
    display:grid!important;
    gap:5px!important;
  }
  body.home .bl15-consent{
    display:flex!important;
    align-items:flex-start!important;
    gap:8px!important;
    font-size:10px!important;
    line-height:1.35!important;
  }
  body.home .bl15-consent label{
    width:auto!important;
    min-width:0!important;
    white-space:normal!important;
  }
  body.home .bl15-hero-form .btn,
  body.home .bl15-quick-card .btn{
    width:100%!important;
    justify-self:stretch!important;
    min-height:42px!important;
    font-size:13px!important;
  }
  body:not(.home) .page-hero,
  body:not(.home) .section{
    overflow:hidden;
  }
  body:not(.home) .section{
    padding:56px 0!important;
  }
  body:not(.home) .badge-panel,
  body:not(.home) .card-grid,
  body:not(.home) .process-grid,
  body:not(.home) .info-columns,
  body:not(.home) .two-col,
  body:not(.home) .cta-box,
  body:not(.home) .faq-list{
    gap:16px!important;
  }
  body:not(.home) .badge-item,
  body:not(.home) .info-card,
  body:not(.home) .process-step,
  body:not(.home) .info-column,
  body:not(.home) .faq-item,
  body:not(.home) .cta-box{
    min-width:0!important;
  }
  .info-column__head{
    gap:12px;
    margin-bottom:14px;
  }
  .info-column__icon,
  .process-step__icon{
    width:52px;
    height:52px;
    border-radius:16px;
    flex-basis:52px;
  }
  .info-column__icon img,
  .process-step__icon img{
    width:24px;
    height:24px;
  }
}

@media (max-width: 480px){
  body.home .bl15-quick-card{
    padding:14px 12px 12px!important;
  }
  body.home .bl15-hero-form input,
  body.home .bl15-hero-form select,
  body.home .bl15-quick-card input,
  body.home .bl15-quick-card select{
    min-height:42px!important;
    padding:0 12px!important;
  }
  body.home .bl15-hero__copy h1,
  body:not(.home) .page-hero h1{
    overflow-wrap:anywhere;
  }
}


/* v1.9.20 — mobile home hero fallback + city-delivery icon refinement */
@media (max-width: 767px){
  body.home .bl15-quick-card,
  body.home .bl15-hero-form,
  body.home .bl15-quick-card .lead-form{
    display:none !important;
  }
  body.home .bl15-hero__grid{
    grid-template-columns:1fr !important;
    gap:12px !important;
    align-items:start !important;
  }
  body.home .bl15-hero__copy{
    max-width:100% !important;
  }
  body.home .bl15-hero{
    min-height:auto !important;
    padding-bottom:24px !important;
  }
  body.home .bl15-hero__actions,
  body.home .bl15-hero-actions{
    display:flex !important;
    flex-direction:column !important;
    gap:10px !important;
    align-items:stretch !important;
  }
  body.home .bl15-hero__actions .btn,
  body.home .bl15-hero-actions .btn,
  body.home .bl15-hero__actions a,
  body.home .bl15-hero-actions a{
    width:100% !important;
    justify-content:center !important;
  }
  body.home .bl15-hero__mini,
  body.home .bl15-hero-benefits,
  body.home .bl15-mini-benefits{
    margin-top:14px !important;
  }
}

.card-grid .bl-icon img[src*="vehicle-15.svg"],
.card-grid .bl-icon img[src*="vehicle-35.svg"],
.card-grid .bl-icon img[src*="vehicle-10.svg"],
.card-grid .bl-icon img[src*="vehicle-20.svg"]{
  width:34px;
  height:34px;
}
.info-column__icon img[src*="cooperation-pro.svg"]{
  width:30px;
  height:30px;
}

/* v1.9.21 — technical foundation pass: mobile hero, forms, 404/news polish */
.error-404-section,
.news-single-section{background:#f5f8fc;}
.error-404-card,
.news-single-card{
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(216,226,239,.95);
  box-shadow:0 24px 64px rgba(5,24,48,.08);
  padding:36px;
}
.error-404-actions,
.news-single-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px;}
.news-single-card .entry-content{font-size:17px;line-height:1.72;color:#263f5c;}
.news-single-card .entry-content h2,
.news-single-card .entry-content h3{color:#061a3d;line-height:1.22;margin:32px 0 14px;}
.news-single-card .entry-content p{margin:0 0 18px;}
.news-single-card .entry-content img{max-width:100%;height:auto;border-radius:18px;}
.page-hero--news-single{min-height:430px;background-size:cover;background-position:center;}

@media (max-width: 767px){
  body.home .bl15-hero{padding:92px 0 28px!important;min-height:auto!important;}
  body.home .bl15-quick-card,
  body.home .bl15-quick-card form,
  body.home .bl15-hero-form{display:none!important;}
  body.home .bl15-hero__grid{display:block!important;}
  body.home .bl15-hero__copy{max-width:100%!important;padding-top:0!important;}
  body.home .bl15-hero__actions{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;width:100%!important;margin-top:20px!important;}
  body.home .bl15-hero__actions .btn{width:100%!important;justify-content:center!important;min-height:46px!important;}
  body.home .bl15-proof{margin-top:18px!important;grid-template-columns:1fr!important;gap:10px!important;}
  body.home .bl15-proof span{min-width:0!important;width:100%!important;}
  .error-404-card,
  .news-single-card{padding:24px 18px;border-radius:18px;}
  .error-404-actions,
  .news-single-actions{display:grid;grid-template-columns:1fr;}
  .error-404-actions .btn,
  .news-single-actions .btn{width:100%;justify-content:center;}
}


/* v1.9.22 — prevent iOS Safari auto-zoom in forms */
@media (max-width: 767px){
  input,
  select,
  textarea,
  button,
  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .consult-form input,
  .consult-form textarea,
  .blg-cta-form input,
  .bl15-hero-form input,
  .bl15-hero-form select,
  .fleet-form input,
  .fleet-form select,
  .fleet-form textarea{
    font-size:16px!important;
  }
  .lead-modal{
    padding:10px!important;
    align-items:start!important;
    overflow-y:auto!important;
    -webkit-overflow-scrolling:touch!important;
  }
  .lead-modal.is-open{
    display:grid!important;
    place-items:start center!important;
  }
  .lead-modal__dialog{
    width:100%!important;
    max-height:calc(100dvh - 20px)!important;
    overflow-y:auto!important;
    -webkit-overflow-scrolling:touch!important;
    padding:20px 16px!important;
    border-radius:18px!important;
  }
  .lead-modal .lead-grid{
    grid-template-columns:1fr!important;
    gap:10px!important;
  }
  .lead-modal .btn,
  .consult-form .btn,
  .lead-form-modal .btn{
    min-height:46px!important;
  }
}


/* v1.9.23 — fixed mobile menu: own scroll, compact accordion sections */
@media (max-width: 760px){
  body.mobile-nav-open{
    overflow:hidden!important;
    touch-action:none;
  }
  .nav-toggle{
    position:relative!important;
    z-index:10020!important;
    width:42px!important;
    height:42px!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:12px!important;
    background:rgba(255,255,255,.08)!important;
    border:1px solid rgba(255,255,255,.12)!important;
  }
  .nav-toggle span{
    transition:transform .22s ease, opacity .22s ease!important;
  }
  .nav-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
  .nav-toggle.is-active span:nth-child(2){opacity:0!important;}
  .nav-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}
  .main-nav.bl15-main-nav{
    position:fixed!important;
    left:12px!important;
    right:12px!important;
    top:78px!important;
    bottom:14px!important;
    z-index:10010!important;
    display:none!important;
    overflow-y:auto!important;
    overscroll-behavior:contain!important;
    -webkit-overflow-scrolling:touch!important;
    padding:14px!important;
    border-radius:18px!important;
    background:linear-gradient(180deg,#03172c 0%,#061f3d 100%)!important;
    border:1px solid rgba(151,198,240,.24)!important;
    box-shadow:0 28px 80px rgba(0,0,0,.45)!important;
  }
  .main-nav.bl15-main-nav.is-open{display:block!important;}
  .main-nav.bl15-main-nav::before{
    content:"Меню";
    display:block;
    margin:0 0 12px;
    color:rgba(255,255,255,.72);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
  }
  .bl15-menu{
    display:grid!important;
    gap:8px!important;
  }
  .bl15-menu>li{
    border:1px solid rgba(255,255,255,.10)!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.045)!important;
    overflow:hidden!important;
  }
  .bl15-menu>li>a{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    min-height:48px!important;
    padding:0 14px!important;
    color:#fff!important;
    font-size:15px!important;
    font-weight:800!important;
    text-decoration:none!important;
  }
  .bl15-menu>.menu-item-has-children>a::after{
    content:"+"!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:28px!important;
    height:28px!important;
    margin-left:12px!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.09)!important;
    color:#ff6b00!important;
    font-size:18px!important;
    line-height:1!important;
    top:auto!important;
  }
  .bl15-menu>.menu-item-has-children.is-submenu-open>a::after{content:"–"!important;}
  .bl15-menu .sub-menu,
  .bl15-menu .sub-menu--services,
  .bl15-menu .sub-menu--directions,
  .bl15-menu .sub-menu--company,
  .bl15-menu .sub-menu--clients{
    display:none!important;
    position:static!important;
    min-width:0!important;
    grid-template-columns:1fr!important;
    gap:6px!important;
    margin:0!important;
    padding:0 10px 12px!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
  }
  .bl15-menu .menu-item-has-children.is-submenu-open>.sub-menu{
    display:grid!important;
  }
  .bl15-menu .sub-menu a{
    min-height:40px!important;
    padding:10px 12px!important;
    border-radius:10px!important;
    background:rgba(255,255,255,.06)!important;
    color:rgba(255,255,255,.86)!important;
    font-size:14px!important;
    line-height:1.2!important;
  }
  .bl15-menu .sub-menu a:hover,
  .bl15-menu .sub-menu a:focus{
    background:rgba(255,107,0,.18)!important;
    color:#fff!important;
  }
  .menu-item-has-children::after{display:none!important;}
}


/* v1.9.24 — mobile menu full-size drawer and visible burger button */
@media (max-width: 980px){
  .nav-toggle{
    display:flex!important;
    position:relative!important;
    z-index:10040!important;
    width:44px!important;
    min-width:44px!important;
    height:44px!important;
    padding:0!important;
    margin-left:auto!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:column!important;
    gap:5px!important;
    border-radius:12px!important;
    background:rgba(3,23,44,.92)!important;
    border:1px solid rgba(255,255,255,.22)!important;
    box-shadow:0 10px 26px rgba(0,0,0,.22)!important;
    -webkit-tap-highlight-color:transparent!important;
  }
  .nav-toggle span{
    display:block!important;
    width:24px!important;
    height:2px!important;
    margin:0!important;
    border-radius:999px!important;
    background:#ffffff!important;
    opacity:1!important;
    transform-origin:center!important;
    transition:transform .22s ease, opacity .22s ease!important;
  }
  .nav-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
  .nav-toggle.is-active span:nth-child(2){opacity:0!important;}
  .nav-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}

  body.mobile-nav-open{
    overflow:hidden!important;
    position:fixed!important;
    inset:0!important;
    width:100%!important;
    touch-action:none!important;
  }
  body.mobile-nav-open .main-nav.bl15-main-nav,
  .main-nav.bl15-main-nav.is-open{
    display:block!important;
    position:fixed!important;
    left:0!important;
    right:0!important;
    top:68px!important;
    bottom:0!important;
    width:100vw!important;
    height:calc(100dvh - 68px)!important;
    max-height:calc(100dvh - 68px)!important;
    min-height:calc(100dvh - 68px)!important;
    z-index:10030!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    overscroll-behavior:contain!important;
    -webkit-overflow-scrolling:touch!important;
    padding:18px 14px 28px!important;
    margin:0!important;
    border-radius:0!important;
    background:linear-gradient(180deg,#03172c 0%,#061f3d 100%)!important;
    border:0!important;
    box-shadow:0 28px 80px rgba(0,0,0,.48)!important;
  }
  .main-nav.bl15-main-nav::before{
    content:"Меню"!important;
    display:block!important;
    margin:0 0 14px!important;
    color:rgba(255,255,255,.72)!important;
    font-size:12px!important;
    font-weight:800!important;
    text-transform:uppercase!important;
    letter-spacing:.08em!important;
  }
  .main-nav.bl15-main-nav:not(.is-open){display:none!important;}
  .bl15-menu{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:9px!important;
    width:100%!important;
    padding:0!important;
    margin:0!important;
    list-style:none!important;
  }
  .bl15-menu>li{
    width:100%!important;
    border:1px solid rgba(255,255,255,.10)!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.045)!important;
    overflow:hidden!important;
  }
  .bl15-menu>li>a{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    width:100%!important;
    min-height:50px!important;
    padding:0 14px!important;
    color:#fff!important;
    font-size:15px!important;
    font-weight:800!important;
    text-decoration:none!important;
  }
  .bl15-menu>.menu-item-has-children>a::after{
    content:"+"!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:28px!important;
    height:28px!important;
    margin-left:12px!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.10)!important;
    color:#ff6b00!important;
    font-size:18px!important;
    line-height:1!important;
  }
  .bl15-menu>.menu-item-has-children.is-submenu-open>a::after{content:"–"!important;}
  .bl15-menu .sub-menu,
  .bl15-menu .sub-menu--services,
  .bl15-menu .sub-menu--directions,
  .bl15-menu .sub-menu--company,
  .bl15-menu .sub-menu--clients{
    display:none!important;
    position:static!important;
    width:100%!important;
    min-width:0!important;
    max-width:none!important;
    grid-template-columns:1fr!important;
    gap:6px!important;
    margin:0!important;
    padding:0 10px 12px!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    opacity:1!important;
    visibility:visible!important;
    transform:none!important;
  }
  .bl15-menu .menu-item-has-children.is-submenu-open>.sub-menu{display:grid!important;}
  .bl15-menu .sub-menu a{
    display:flex!important;
    align-items:center!important;
    min-height:40px!important;
    padding:10px 12px!important;
    border-radius:10px!important;
    background:rgba(255,255,255,.06)!important;
    color:rgba(255,255,255,.88)!important;
    font-size:14px!important;
    line-height:1.2!important;
    text-decoration:none!important;
  }
}


/* v1.9.25 — mobile header contacts and menu contact panel */
.mobile-header-contacts,
.mobile-menu-contacts{display:none;}
@media (max-width:980px){
  .bl15-header-inner{
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr) auto!important;
    column-gap:10px!important;
    align-items:center!important;
  }
  .mobile-header-contacts{
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    min-width:0!important;
    gap:2px!important;
    line-height:1.1!important;
  }
  .mobile-header-phone,
  .mobile-header-email{
    display:block!important;
    max-width:100%!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    text-decoration:none!important;
  }
  .mobile-header-phone{
    color:#fff!important;
    font-size:13px!important;
    font-weight:900!important;
  }
  .mobile-header-email{
    color:rgba(255,255,255,.72)!important;
    font-size:11px!important;
    font-weight:700!important;
  }
  .bl15-header-contacts{display:none!important;}
  .header-btn{display:none!important;}
  .site-logo{justify-self:start!important;}
  .nav-toggle{justify-self:end!important;margin-left:0!important;}
  .mobile-menu-contacts{
    display:block!important;
    margin:16px 0 0!important;
    padding:16px!important;
    border-radius:16px!important;
    background:rgba(255,255,255,.055)!important;
    border:1px solid rgba(255,255,255,.12)!important;
  }
  .mobile-menu-contacts p{
    margin:0 0 10px!important;
    color:rgba(255,255,255,.68)!important;
    font-size:12px!important;
    font-weight:900!important;
    letter-spacing:.06em!important;
    text-transform:uppercase!important;
  }
  .mobile-menu-contact{
    display:flex!important;
    align-items:center!important;
    min-height:42px!important;
    padding:0 12px!important;
    border-radius:12px!important;
    color:#fff!important;
    text-decoration:none!important;
    font-weight:900!important;
    background:rgba(255,255,255,.07)!important;
  }
  .mobile-menu-contact + .mobile-menu-contact{margin-top:8px!important;}
  .mobile-menu-contact--email{font-size:14px!important;color:rgba(255,255,255,.86)!important;}
  .mobile-menu-socials{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:8px!important;
    margin-top:10px!important;
  }
  .mobile-menu-socials:empty{display:none!important;}
  .mobile-menu-socials a{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-height:42px!important;
    border-radius:12px!important;
    background:#ff6b00!important;
    color:#fff!important;
    text-decoration:none!important;
    font-weight:900!important;
  }
}
@media (max-width:420px){
  .mobile-header-phone{font-size:12px!important;}
  .mobile-header-email{font-size:10.5px!important;}
  .site-logo{width:76px!important;min-width:76px!important;}
  .site-logo img{width:76px!important;max-width:76px!important;}
}


/* v1.9.26 — mobile header contacts in one centered pill */
@media (max-width:980px){
  .bl15-header-inner{
    grid-template-columns:auto minmax(0,1fr) auto!important;
    column-gap:8px!important;
  }
  .mobile-header-contacts{
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    justify-self:center!important;
    align-self:center!important;
    min-width:0!important;
    width:100%!important;
    max-width:226px!important;
    gap:6px!important;
    padding:6px 8px!important;
    border-radius:999px!important;
    background:rgba(0,18,37,.42)!important;
    border:1px solid rgba(255,255,255,.12)!important;
    box-shadow:0 8px 22px rgba(0,0,0,.16)!important;
    backdrop-filter:blur(10px)!important;
    line-height:1!important;
    overflow:hidden!important;
  }
  .mobile-header-phone,
  .mobile-header-email{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:auto!important;
    min-width:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    text-decoration:none!important;
    line-height:1!important;
  }
  .mobile-header-phone{
    color:#fff!important;
    font-size:11px!important;
    font-weight:900!important;
    flex:0 0 auto!important;
  }
  .mobile-header-email{
    color:rgba(255,255,255,.76)!important;
    font-size:10px!important;
    font-weight:700!important;
    flex:1 1 auto!important;
  }
  .mobile-header-phone::after{
    content:"";
    display:inline-block;
    width:1px;
    height:12px;
    margin-left:6px;
    background:rgba(255,255,255,.22);
  }
}
@media (max-width:380px){
  .mobile-header-contacts{
    max-width:196px!important;
    gap:5px!important;
    padding:6px 7px!important;
  }
  .mobile-header-phone{font-size:10px!important;}
  .mobile-header-email{font-size:9.5px!important;}
  .mobile-header-phone::after{margin-left:5px!important;}
}
