:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --ink: #f4f4f5;
  --ink-2: #e4e4e7;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.06);
  --orange: #ff5a00;
  --orange-dark: #e04e00;
  --soft: rgba(255, 90, 0, 0.12);
  --sky: #3a4a60;
  --navy: #0c1018;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.32);
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Barlow Condensed", "Source Sans 3", sans-serif;
}

.widget,
.panel,
.feature,
.service-card,
.step-card,
.browser,
.hero-panel,
.side-card,
.faq-item,
.cta-band,
.inline-cta,
.photo-card,
.cargo-item,
.country-panel,
.globe-wrap,
.formula-box {
  border: 0;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.site-header .container {
  width: min(1480px, calc(100% - 1.1rem));
}
.site-header .container,
.header-inner {
  overflow: visible;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  margin-left: .35rem;
}
.header-actions .btn {
  height: 40px;
  padding: 0 .85rem;
  white-space: nowrap;
  line-height: 1;
  font-size: .9rem;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--panel-2);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  margin-right: .25rem;
}
.logo-mark {
  width: 168px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 90, 0, 0.45);
  display: grid;
  place-items: center;
  background: #050505;
}
.logo-mark svg { display: block; width: 100%; height: 100%; }
.logo-text {
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0;
}
.logo-text b {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .06em;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.logo-text.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: center;
  gap: .28rem;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  position: relative;
  height: 48px;
  margin: 0 auto;
  padding: 0;
}
.nav-item {
  position: relative;
  display: block;
  height: 48px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  box-sizing: border-box;
  height: 48px;
  margin: 0;
  padding: 0 .22rem;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font);
  line-height: 1;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.nav-item.has-mega > .nav-link {
  cursor: pointer;
}
.nav-item.has-mega > .nav-link::after {
  content: "";
  display: inline-block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .7;
  margin: 0;
  transform: translateY(1px);
  pointer-events: none;
}
.nav-link:hover,
.nav-link.is-active,
.nav-item.is-open > .nav-link {
  color: var(--orange);
}
.nav-item.is-open > .nav-link::after {
  transform: translateY(1px) rotate(180deg);
}
.nav-caret { display: none !important; }
/* Zero-size host so huge flyout DOM never participates in the nav flex row */
.mega-anchor {
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 120;
  pointer-events: none;
}
.nav-item.is-open > .mega-anchor {
  pointer-events: auto;
}
.mega-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  min-width: 240px;
  max-width: min(480px, calc(100vw - 1.5rem));
  max-height: min(380px, calc(100vh - 96px));
  margin: 0;
  padding: .85rem;
  border-radius: var(--radius);
  background: #141414;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: none;
  z-index: 120;
  overflow: hidden;
  line-height: 1.45;
  transform: none;
  pointer-events: auto;
}
.nav-item.is-open .mega-panel {
  display: block;
}

.mega-panel-services {
  width: min(280px, calc(100vw - 1.5rem));
}
.mega-panel-cargo {
  width: min(420px, calc(100vw - 1.5rem));
  padding: .75rem;
}
.mega-cargo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .75rem;
  align-items: start;
}
.mega-cargo .mega-all {
  grid-column: 1 / -1;
  justify-self: start;
}
.mega-cargo-col {
  display: grid;
  gap: .15rem;
  min-width: 0;
}
.mega-cargo .mega-service {
  grid-template-columns: 1fr;
  padding: .42rem .5rem;
}
.mega-article {
  grid-template-columns: 1fr;
  align-items: start;
  padding: .45rem .5rem;
}
.mega-article span {
  display: block;
  line-height: 1.35;
  white-space: normal;
}
.mega-panel-articles .mega-regions {
  grid-template-columns: 168px minmax(0, 1fr);
}

.mega-panel-title {
  color: var(--muted);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.mega-services {
  display: grid;
  gap: .2rem;
  height: min(300px, calc(100vh - 160px));
  max-height: min(300px, calc(100vh - 160px));
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #555 #141414;
}
.mega-service {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: .55rem;
  align-items: center;
  padding: .5rem .55rem;
  border-radius: 10px;
  color: var(--ink);
}
.mega-service:hover { background: rgba(255, 90, 0, .08); }
.mega-service.soon { opacity: .65; }
.mega-service-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 0, .1);
  font-size: .9rem;
}
.mega-service strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  line-height: 1.25;
}
.mega-service small {
  display: none;
}
.mega-all {
  display: inline-flex;
  margin-top: .45rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
}
.mega-all:hover { background: rgba(255, 255, 255, .08); }

/* Directions / Auto: continents + countries inside one panel */
.mega-regions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: .45rem;
  align-items: stretch;
  min-height: 0;
  max-height: min(320px, calc(100vh - 150px));
  position: relative;
}
.mega-region {
  display: contents;
}
.mega-region-btn {
  grid-column: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: .84rem;
  padding: .55rem .6rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  box-sizing: border-box;
}
.mega-region-btn:hover {
  text-decoration: none;
  color: var(--ink);
}
.mega-region-btn small {
  color: var(--orange);
  font-weight: 800;
  font-size: .75rem;
}
.mega-region:hover > .mega-region-btn,
.mega-region.is-open > .mega-region-btn {
  background: rgba(255, 90, 0, .1);
  color: var(--ink);
}
.mega-countries {
  grid-column: 2;
  grid-row: 1 / span 20;
  display: none;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: min(320px, calc(100vh - 150px));
  max-height: min(320px, calc(100vh - 150px));
  padding: .55rem .6rem;
  border-radius: 10px;
  background: var(--panel-2);
  color: var(--ink);
  box-shadow: none;
  border: 1px solid var(--line);
  /* visibility/pointer-events не форсируем в visible/auto:
     иначе закрытое меню (opacity:0) всё равно ловит клики над вкладками */
  transform: none;
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  overflow: hidden;
}
.nav-item.is-open .mega-region.is-open > .mega-countries {
  display: flex;
}
.mega-countries-head {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .4rem;
  font-size: .84rem;
  flex-shrink: 0;
}
.mega-countries-scroll {
  display: grid;
  gap: .08rem;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  max-height: min(250px, calc(100vh - 220px));
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: .15rem;
  scrollbar-width: thin;
  scrollbar-color: #555 #1a1a1a;
}
.mega-countries-scroll::-webkit-scrollbar { width: 8px; }
.mega-countries-scroll::-webkit-scrollbar-track { background: #121212; border-radius: 8px; }
.mega-countries-scroll::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 8px;
}
.mega-panel a.mega-country,
.mega-panel a.mega-country:link,
.mega-panel a.mega-country:visited,
.mega-panel a.mega-country:hover,
.mega-panel a.mega-country:active {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .4rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: .84rem;
  -webkit-text-fill-color: var(--ink);
}
.mega-panel a.mega-country span {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
.mega-country img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: #0a0a0a;
  flex-shrink: 0;
}
.mega-panel a.mega-country:hover {
  background: rgba(255, 90, 0, .1);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
.mega-countries .mega-all {
  margin-top: .4rem;
  align-self: flex-start;
  flex-shrink: 0;
}
.mega-empty { color: var(--muted); padding: .5rem; font-size: .88rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; border-radius: 10px; padding: .9rem 1.4rem;
  background: var(--orange); color: #fff; font-weight: 800; cursor: pointer;
  box-shadow: none;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--orange-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff;
  color: #fff;
}
.btn-tg,
.btn-wa {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  box-shadow: none;
}
.btn-tg:hover,
.btn-wa:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff;
  color: #fff;
}
.btn-link-wa {
  margin-left: .35rem;
}
.tg-lead {
  margin-bottom: 1rem;
  border-color: rgba(255, 90, 0, .35);
}
.channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.channel-actions .btn {
  flex: 1 1 12rem;
}
.side-card .btn-block + .btn-block,
.sticky-side .btn-block + .btn-block {
  margin-top: .45rem;
}
.sticky-side .btn-block,
.sticky-side .btn-ghost.btn-block {
  margin-top: .45rem;
}
.sticky-side > .btn-block:first-of-type,
.sticky-side > a.btn:first-of-type {
  margin-top: 0;
}
.contacts-section {
  padding-top: 0;
}
.contacts-main {
  min-width: 0;
  max-width: 40rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  margin-top: .25rem;
  border-top: 1px solid var(--line);
}
.contact-channel {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  align-items: baseline;
  column-gap: 1.5rem;
  row-gap: .15rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.contact-channel:hover .contact-channel-value {
  grid-column: 2;
  grid-row: 1;
  font-weight: 750;
  font-size: 1.05rem;
  color: #fff;
  word-break: break-word;
}
.contact-channel-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: .55rem 1.15rem;
  width: fit-content;
  max-width: 100%;
}
.contact-phone-link {
  color: #fff;
  font-weight: 750;
  white-space: nowrap;
}
.contact-phone-link:hover {
  color: var(--orange);
}
.contact-phone-sep {
  display: none;
}
.contact-channel-note {
  grid-column: 2;
  grid-row: 2;
  font-size: .86rem;
  color: var(--muted);
}
.contact-channel:has(.contact-channel-phones) {
  grid-template-columns: 8.5rem max-content;
}
.contact-channel:has(.contact-channel-phones) .contact-channel-note {
  width: 100%;
  text-align: center;
}
.contact-meta {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  column-gap: 1.5rem;
  row-gap: .85rem;
  margin: 1.6rem 0 0;
  padding: 0;
}
.contact-meta > div {
  display: contents;
}
.contact-meta dt {
  margin: 0;
  font-size: .92rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.contact-meta dd {
  margin: 0;
  color: #fff;
  font-weight: 750;
}
.footer-legal {
  margin: .65rem 0 0;
  font-size: .85rem;
  color: var(--muted);
}
.legal-card {
  margin: 1.75rem 0 0;
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}
.legal-card-title {
  margin: 0 0 .85rem;
  font-size: 1.05rem;
}
.legal-meta { margin-top: 0; }
.legal-soft {
  color: var(--muted);
  font-weight: 600;
}
.legal-card-link {
  margin: 1rem 0 0;
  font-size: .92rem;
}
.legal-card-link a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.legal-card-link a:hover { text-decoration: underline; }
.seo-query-list {
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .55rem;
}
.seo-query-list li {
  margin: 0;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  font-size: .88rem;
  font-weight: 650;
  color: #e4e4e7;
}
.related-seo-links {
  display: grid;
  gap: .5rem;
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
}
.related-seo-links a {
  color: #f4f4f5;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 90, 0, .35);
}
.related-seo-links a:hover { color: #ff5a00; }
.faq-list {
  display: grid;
  gap: .65rem;
  max-width: 52rem;
}
.contact-form-link {
  margin: 1.75rem 0 0;
  max-width: none;
  color: var(--muted);
  line-height: 1.55;
}
.contact-form-link a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .2em;
}
.contact-form-link a:hover {
  color: var(--orange);
}
@media (max-width: 560px) {
  .contact-channel {
    grid-template-columns: 1fr;
    row-gap: .2rem;
  }
  .contact-channel:has(.contact-channel-phones) {
    grid-template-columns: 1fr;
  }
  .contact-channel-label,
  .contact-channel-value,
  .contact-channel-note {
    grid-column: 1;
    grid-row: auto;
  }
  .contact-channel:has(.contact-channel-phones) .contact-channel-note {
    text-align: left;
  }
  .contact-channel-phones {
    justify-content: flex-start;
  }
  .contact-meta {
    grid-template-columns: 1fr;
    row-gap: .2rem;
  }
  .contact-meta > div {
    display: grid;
    gap: .15rem;
    padding: .85rem 0 0;
  }
  .contact-meta > div + div {
    border-top: 1px solid var(--line);
    margin-top: .85rem;
    padding-top: .85rem;
  }
}
.btn-sm { padding: .65rem 1.05rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn.is-disabled { pointer-events: none; opacity: .45; }
#globe-open.btn {
  background: var(--orange);
  color: #fff;
  border: 0;
  box-shadow: none;
}
#globe-open.btn:hover {
  background: var(--orange-dark);
  border-color: transparent;
  color: #fff;
}
#globe-open.btn.is-disabled {
  opacity: .4;
}
.btn-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  background: transparent;
}
.btn-link:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vh, 3.4rem) 0 2rem;
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(255, 90, 0, .22), transparent 55%),
    linear-gradient(180deg, #121212 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: end;
}
.hero-copy {
  max-width: 36rem;
}
.hero-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: .9;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.eyebrow {
  display: inline-flex; gap: .5rem; align-items: center;
  padding: .4rem .75rem; border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.section-calc { padding-top: 1.4rem; }
.page-hero-calc .calc-mode-tabs {
  margin: 1.1rem 0 0;
}
.page-hero-calc .calc-mode-tabs .tab {
  min-width: 7.5rem;
  justify-content: center;
}
.calc-mode-tabs .tab:disabled,
.calc-mode-tabs .tab.is-disabled {
  opacity: .38;
  cursor: not-allowed;
  pointer-events: none;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}
.calc-result-empty {
  margin: .55rem 0 0;
  max-width: 28ch;
  line-height: 1.5;
}
.calc-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0 0 1rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(255, 90, 0, .12);
  border: 1px solid rgba(255, 90, 0, .28);
  color: #ffb08a;
  font-size: .84rem;
  font-weight: 700;
}
.calc-mode-badge b { color: #fff; font-weight: 800; }
.calc-places-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 1.1rem 0 .7rem;
  flex-wrap: wrap;
}
.calc-places-head strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: .2rem;
}
.calc-places { display: grid; gap: .75rem; }
.calc-place {
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}
.calc-place-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .65rem;
}
.calc-place-top strong { color: #fff; font-size: .95rem; }
.calc-place-remove {
  border: 0;
  background: transparent;
  color: #a1a1aa;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  padding: .2rem .35rem;
}
.calc-place-remove:hover { color: #ff7a33; }
.calc-place-remove[hidden] { display: none; }
#calc-places-summary { margin: .65rem 0 1rem; }
.calc-dims-toggle {
  margin: .35rem 0 .55rem;
  padding: .75rem .9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}
.calc-simple-hint { margin: 0 0 1rem; }
.calc-orient {
  margin: 0 0 1rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 90, 0, .07);
  border: 1px solid rgba(255, 90, 0, .22);
}
.calc-orient[hidden] { display: none !important; }
.calc-orient-title {
  margin: 0 0 .35rem;
  font-weight: 800;
  font-size: .98rem;
  color: #fff;
}
.calc-orient-text { margin: 0 0 .65rem; }
.calc-orient-check { margin: 0 0 .55rem; }
.calc-orient .btn { margin-top: .15rem; }
.calc-dims-block {
  margin: 0 0 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
}
.calc-dims-block.is-hidden,
.calc-simple-hint.is-hidden { display: none; }
.calc-approx-note {
  padding: .7rem .85rem;
  border-radius: 12px;
  background: rgba(255, 90, 0, .08);
  border: 1px solid rgba(255, 90, 0, .2);
  color: #e4e4e7;
}
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; margin: 0 0 .75rem; letter-spacing: .01em; }
h1 { font-size: clamp(1.55rem, 3.2vw, 2.4rem); max-width: 16ch; font-weight: 600; }
.hero-copy h1 { margin-bottom: .85rem; }
h1 em { font-style: normal; color: var(--orange); }
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 40ch;
  margin: 0;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin: 1.45rem 0 0;
}
.hero-actions .btn {
  min-height: 48px;
  padding: .9rem 1.4rem;
  line-height: 1.1;
}
.hero-note {
  margin: .85rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
}
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.trust-pill {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem 1rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: none;
}
.hero-panel {
  position: relative;
  z-index: 1;
  background: var(--panel);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow);
}
.hero-panel h2 {
  font-size: 1.55rem;
  margin: 0 0 .45rem;
  font-weight: 700;
}
.hero-panel p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
}
.hero-panel .mini-form {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
.hero-panel select,
.hero-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem 1rem;
  background: var(--panel-2);
  color: var(--ink);
  position: relative;
  z-index: 2;
  color-scheme: dark;
}
.hero-panel select option,
.hero-panel select optgroup {
  color: var(--ink);
  background-color: #222;
}

/* SECTIONS */
.section { padding: 2.75rem 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 0;
  border-bottom: 0;
}
.section-white { background: var(--bg-alt); border-top: 0; border-bottom: 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: .85rem;
  margin-bottom: .95rem;
}
.section-head p { color: var(--muted); margin: 0; max-width: 46ch; }
.section-kicker {
  color: var(--muted);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

/* BROWSER / MAP WIDGETS */
.browser {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.55rem 1.55rem 1.4rem;
  box-shadow: var(--shadow);
}
.is-hidden { display: none !important; }

.map-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  gap: 1.1rem;
  align-items: stretch;
  min-height: 640px;
}

.country-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: var(--radius);
  background: var(--panel-2);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.country-panel-head {
  padding: 1rem 1.1rem .85rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .01em;
  text-transform: none;
  color: #fff;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--display);
}
.country-list {
  overflow: auto;
  flex: 1;
  max-height: 560px;
  padding: .2rem .7rem 1rem;
  background: transparent;
}
.country-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
  padding: .7rem .55rem;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  border: 0;
  background: transparent;
  transition: background .15s ease, transform .15s ease;
}
.country-row:nth-child(odd) { background: transparent; }
.country-row-flag {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  box-shadow: none;
  flex-shrink: 0;
}
.country-row-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.country-row-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}
.country-row-modes {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.country-row-meta {
  font-size: .78rem;
  font-weight: 800;
  color: var(--ink-2);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.country-row:hover,
.country-row:focus-visible {
  background: rgba(255, 90, 0, .08);
  outline: none;
}
.country-row.is-active {
  background: rgba(255, 90, 0, .12);
}
.country-row.is-active .country-row-meta { color: var(--orange); }

.globe-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 90, 0, .16), transparent 42%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  min-height: 640px;
  box-shadow: var(--shadow-soft);
}
#globe-mount {
  width: 100%;
  height: 640px;
  cursor: grab;
  touch-action: none;
}
.globe-fallback-msg {
  display: grid;
  place-items: center;
  height: 100%;
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}
.globe-lite {
  display: grid;
  place-items: center;
  align-content: center;
  gap: .7rem;
  height: 100%;
  min-height: inherit;
  padding: 1.2rem 1rem 5.8rem;
  text-align: center;
  box-sizing: border-box;
}
.globe-lite-ball {
  width: min(56vw, 280px);
  height: min(56vw, 280px);
  border-radius: 50%;
  background: #0b1a2a url("/img/globe/earth-dark.jpg") 0 50% / auto 100% no-repeat;
  box-shadow:
    inset -18px -12px 36px rgba(0, 0, 0, .55),
    0 0 48px rgba(255, 90, 0, .14);
  animation: globe-spin 60s linear infinite;
}
@keyframes globe-spin {
  to { background-position: -640px 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .globe-lite-ball { animation: none; }
}
.globe-lite-hint {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  max-width: 16rem;
}
.globe-lite-3d {
  margin-top: .15rem;
}
img.flag-lazy:not([src]) {
  visibility: hidden;
}
#globe-mount canvas {
  image-rendering: auto;
}
#globe-mount:active { cursor: grabbing; }
.globe-hud {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(18, 18, 18, .92);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.globe-float {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .7rem .85rem;
  border-radius: 14px;
  background: rgba(18, 18, 18, .94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  color: #fff;
  max-width: min(420px, calc(100% - 2rem));
}
.globe-float.is-visible { display: flex; flex-wrap: wrap; }
.globe-float-name { font-weight: 800; font-size: 1.05rem; }
.globe-float .btn { white-space: nowrap; }
.country-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border-radius: 14px;
  color: #f5f5f5;
  background: transparent;
}
.country-row-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .35rem;
  align-items: stretch;
}
.country-row-pin {
  display: grid;
  place-items: center;
  width: 48px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: .55rem .2rem;
}
.country-row-pin:hover { background: rgba(255,255,255,.06); }
.country-row-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
  width: 100%;
  padding: .7rem .55rem .7rem .2rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.country-row-main:hover { background: rgba(255,255,255,.06); }
.country-row-page {
  display: grid;
  place-items: center;
  width: 2.1rem;
  margin: .35rem .25rem .35rem 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}
.country-row-page:hover {
  color: var(--accent, #ff5a00);
  background: rgba(255, 90, 0, .12);
}
.country-cities {
  list-style: disc;
  margin: 0 0 .55rem 3.2rem;
  padding: 0;
  display: none;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
}
.country-row.is-open .country-cities { display: grid; gap: .25rem; }
.country-cities li { padding: .1rem 0; }
.country-city-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.4);
}
.country-city-link:hover {
  color: #ff5a00;
  border-bottom-color: currentColor;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .85rem;
}
.region-card {
  display: grid;
  gap: .35rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.region-card strong { font-size: 1.15rem; }
.region-card small { color: var(--muted); font-weight: 700; }
.globe-tip { font-size: .82rem; opacity: .8; width: 100%; }
.globe-selected { font-weight: 700; flex: 1; min-width: 180px; }
.globe-selected span { font-weight: 600; opacity: .75; font-size: .88rem; }

.continent-legend {
  display: flex; flex-wrap: wrap; gap: .45rem;
  margin: .6rem 0 1rem;
}
.continent-legend span {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 700; color: var(--muted);
}
.continent-legend i {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}

.country-title-row { display: flex; gap: 1rem; align-items: center; margin-bottom: .8rem; }
.country-flag-lg {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  background: var(--panel-2);
}
.country-hero .lead { max-width: 62ch; }
.country-stats {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin: 1rem 0 0;
}
.country-stat {
  border: 0;
  background: var(--panel);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: var(--shadow-soft);
}
.country-stat b { color: #fff; font-weight: 800; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.article-grid-all {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.article-topics {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.article-topic-block {
  scroll-margin-top: 5.5rem;
}
.article-topic-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: .01em;
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1.15rem 1.2rem;
  background: var(--panel);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  transition: background .15s ease;
}
.article-card:hover {
  background: var(--panel-2);
}
.article-card-topic {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--orange);
}
.article-card strong {
  font-size: 1.05rem;
  line-height: 1.3;
  color: #fff;
}
.article-card .muted {
  font-size: .88rem;
  flex: 1 1 auto;
}
.article-card-date {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .25rem;
}
.article-side-link {
  display: block;
  padding: .35rem 0;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}
.article-side-link:hover { color: var(--orange); }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
}
.delivery-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .7rem;
  align-items: stretch;
}
.delivery-modes:has(.delivery-mode--air) {
  grid-template-columns: 1.35fr repeat(auto-fit, minmax(200px, 1fr));
}
@media (max-width: 720px) {
  .delivery-modes,
  .delivery-modes:has(.delivery-mode--air) {
    grid-template-columns: 1fr;
  }
}
.delivery-mode {
  padding: .7rem .85rem .8rem;
  background: var(--panel);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--line);
  border-left: 3px solid rgba(255, 255, 255, .18);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-height: 0;
}
.delivery-mode--air {
  border-color: rgba(255, 90, 0, .35);
  border-left-color: var(--orange);
  background:
    linear-gradient(135deg, rgba(255, 90, 0, .14), transparent 55%),
    var(--panel);
  box-shadow: 0 0 0 1px rgba(255, 90, 0, .12);
}
.delivery-mode--secondary {
  opacity: .92;
  border-left-color: rgba(255, 255, 255, .14);
}
.delivery-mode--secondary h3 {
  font-size: .9rem;
  color: var(--ink-2);
}
.delivery-mode-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.delivery-mode-tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.delivery-mode--air .delivery-mode-tag {
  color: var(--orange);
}
.delivery-mode-badge {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1a0d00;
  background: var(--orange);
  border-radius: 999px;
  padding: .22rem .5rem;
  white-space: nowrap;
}
.delivery-mode h3 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.2;
}
.delivery-mode--air h3 {
  font-size: 1.08rem;
}
.delivery-mode > p {
  margin: 0;
  color: var(--ink-2);
  font-size: .82rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.delivery-mode--air > p {
  -webkit-line-clamp: 3;
  color: var(--ink);
}
.delivery-mode-meta {
  list-style: none;
  margin: .1rem 0 0;
  padding: .35rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .55rem;
}
.delivery-mode-meta li {
  display: inline-flex;
  align-items: baseline;
  gap: .28rem;
  font-size: .78rem;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.delivery-mode-meta li span { color: var(--ink-2); }
.delivery-mode-meta li b { color: #fff; font-weight: 800; }
.delivery-mode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .15rem;
}
.delivery-mode-actions .btn {
  padding: .4rem .75rem;
  font-size: .78rem;
}
.delivery-mode--air .delivery-mode-actions .btn:not(.btn-ghost) {
  padding: .5rem .9rem;
  font-size: .84rem;
}
.country-stat--air {
  background: rgba(255, 90, 0, .16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 90, 0, .45);
}
.country-stat--air b { color: #fff; }
.mode-air {
  color: var(--orange);
  font-weight: 800;
}
.country-side-modes .mode-air { color: var(--orange); }

.longread .content-block h2 {
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--line);
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.photo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  display: block;
  color: inherit;
  text-decoration: none;
}
a.photo-card-link {
  transition: transform .2s ease, box-shadow .2s ease;
}
a.photo-card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.photo-card img,
.photo-card .route-map {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #121212;
}
.photo-card .route-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.photo-card figcaption {
  padding: .65rem .8rem;
  font-size: .86rem;
  color: var(--muted);
  font-weight: 700;
}
.longread .content-block { margin-top: 1.8rem; }
.longread .content-block:first-child { margin-top: 0; }
.longread h2 { font-size: 1.35rem; margin-bottom: .7rem; }
.longread p { font-size: 1.05rem; margin: 0 0 .85rem; color: var(--muted); }
.article-toc {
  background: var(--panel-2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: .5rem;
}
.article-toc h2 {
  font-size: 1.05rem;
  margin-bottom: .65rem;
  border-bottom: none;
  padding-bottom: 0;
}
.article-toc-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.article-toc-list li { margin: .35rem 0; }
.article-toc-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.article-toc-list a:hover {
  color: var(--text);
  border-bottom-color: var(--line);
}
.process-ol { color: var(--muted); padding-left: 1.2rem; }
.process-ol li { margin: .45rem 0; }
.cargo-list { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem 1rem; color: var(--muted); }
.inline-cta {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--panel-2);
  box-shadow: var(--shadow-soft);
}
.sticky-side {
  position: sticky;
  top: 90px;
  align-self: start;
  z-index: 4;
  max-height: calc(100vh - 110px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.sticky-side::-webkit-scrollbar {
  width: 6px;
}
.sticky-side::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
}
.country-side {
  padding: 1.15rem 1.15rem 1.2rem;
}
.country-side-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.country-side .side-flag {
  width: 48px;
  height: 48px;
  margin: 0;
  flex-shrink: 0;
}
.country-side-head h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}
.country-side-modes {
  margin: .2rem 0 0;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.country-side-facts {
  margin: 0 0 .95rem;
}
.country-side-facts > div {
  padding: .45rem 0;
}
.country-side-facts dd {
  font-size: .88rem;
}
.country-side-actions {
  display: grid;
  gap: .5rem;
}
.country-side-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}
.country-side-channels .btn {
  width: 100%;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: .86rem;
}
.country-side-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .85rem;
  margin-top: .85rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 700;
}
.country-side-links a {
  color: var(--ink-2);
  text-decoration: none;
}
.country-side-links a:hover {
  color: var(--orange);
}
.side-flag {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 50%; margin-bottom: .85rem;
  box-shadow: var(--shadow-soft);
}
.formula-box {
  margin: .9rem 0 1.15rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 90, 0, .1), rgba(255, 90, 0, .04));
  border: 1px solid rgba(255, 90, 0, .28);
  color: #d4d4d8;
  font-size: .9rem;
  line-height: 1.5;
  box-shadow: none;
}
.formula-box b { color: #ffb08a; font-weight: 800; }
.result-flag { display: flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }

.filters {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-bottom: 1rem;
}
.chip {
  border: 1.5px solid rgba(255, 255, 255, .28);
  background: transparent;
  color: rgba(255, 255, 255, .88);
  border-radius: 999px;
  padding: .55rem 1.05rem;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: .15s ease;
}
.chip.is-active, .chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.search-row { display: grid; grid-template-columns: 1fr; gap: .7rem; margin-bottom: 1.1rem; }
.search-row input {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: .95rem 1.2rem; background: var(--panel-2); color: var(--ink);
  box-shadow: none;
}
.search-row input::placeholder { color: #8a93a3; }

/* CARDS */
.cards-4, .cards-3, .cards-2 { display: grid; gap: 1.1rem; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: 1fr 1fr; }
.feature, .service-card, .step-card, .panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover, .service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.feature h3,
.service-card h3,
.step-card h3,
.step-card h4 {
  color: #fff;
  font-size: 1.25rem;
}
.service-card h3 {
  margin: 0;
}
.feature p, .service-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.feature .icon, .service-card .icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 90, 0, .12); color: var(--orange); font-weight: 900;
  margin: 0;
  flex-shrink: 0;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 100%;
}
.service-card.soon { opacity: .72; }
.service-card .tag {
  display: inline-block;
  align-self: flex-start;
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
  background: rgba(12, 21, 36, .05);
  padding: .25rem .65rem;
  border-radius: 8px;
}
.service-card p { flex: 1 1 auto; }
.service-card .btn-link {
  margin-top: .35rem;
  align-self: flex-start;
  flex-shrink: 0;
}
.feature {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.feature p { flex: 1 1 auto; }
.feature .btn-link {
  margin-top: 1.1rem;
  align-self: center;
  text-align: center;
}
.feature .icon { margin-bottom: .9rem; }

.services-widget {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.services-detail-list {
  display: grid;
  gap: 1.1rem;
}
.service-detail-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: .7rem;
}
.service-detail .icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 90, 0, .12); color: var(--orange);
  font-weight: 900; flex-shrink: 0;
}
.service-detail h2 { margin: .35rem 0 0; color: #fff; font-size: 1.45rem; }
.service-detail h2 a { color: inherit; }
.service-detail h2 a:hover { color: var(--orange); }
.service-points {
  color: var(--muted);
  padding-left: 1.15rem;
  margin: 1rem 0 1.2rem;
}
.service-points li { margin: .4rem 0; }

.road-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.road-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .85rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.road-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.road-card-body { display: grid; gap: .25rem; min-width: 0; }
.road-card-body strong { font-size: 1.05rem; }
.road-card-meta {
  color: var(--muted);
  font-weight: 800;
  font-size: .86rem;
}
.corridor-search-row {
  margin: 0 0 1rem;
  max-width: 32rem;
}
.corridor-search-row input {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}
.corridor-search-empty {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}
.road-card-wrap.is-hidden {
  display: none !important;
}
.mode-trail {
  display: grid;
  gap: .65rem;
  margin: 0 0 1.15rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}
.mode-trail-modes {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.mode-trail-mode {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .35rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
}
.mode-trail-mode.is-active,
.mode-trail-mode:hover {
  border-color: rgba(255, 90, 0, .55);
  color: #ffb08a;
  background: rgba(255, 90, 0, .1);
}
.mode-trail-path {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.mode-trail-path li:not(:last-child)::after {
  content: "→";
  margin-left: .35rem;
  opacity: .55;
}
.mode-trail-path a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, .3);
}
.mode-trail-path a:hover {
  color: #ffb08a;
  border-bottom-color: currentColor;
}
.mode-trail-path [aria-current="page"] {
  color: #fff;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.popular-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.popular-card-main {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}
.popular-card-main strong { display: block; }
.popular-card-main .muted { display: block; font-size: .84rem; }

.mode-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.mode-pill {
  background: var(--panel-2);
  border-radius: 16px;
  padding: .85rem 1rem;
  display: grid;
  gap: .2rem;
  border: 1.5px solid transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
button.mode-pill:hover {
  border-color: rgba(255, 90, 0, .45);
  background: rgba(255, 90, 0, .08);
  transform: translateY(-1px);
}
button.mode-pill.is-active {
  border-color: var(--orange);
  background: rgba(255, 90, 0, .12);
  box-shadow: 0 0 0 1px rgba(255, 90, 0, .25);
}
button.mode-pill.is-disabled,
button.mode-pill:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  border-color: rgba(255, 255, 255, .08);
  background: var(--panel-2);
}
button.mode-pill.is-disabled:hover,
button.mode-pill:disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .08);
  background: var(--panel-2);
}
.mode-pill b { color: #fff; }
.mode-pill span { font-weight: 800; }
.mode-pill small { color: var(--muted); font-size: .8rem; }
.mode-pill-price {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: .15rem;
}
.mode-pill-hint {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto repeat(4, auto);
  column-gap: 1.1rem;
  row-gap: .9rem;
  align-items: stretch;
}
.process-col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  align-items: stretch;
}
.process-col-title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
  align-self: end;
}
.step-list { display: grid; gap: .9rem; }
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
  height: 100%;
  box-sizing: border-box;
}
.step-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
}
.step-card h4 {
  margin: 0;
  line-height: 1.25;
  padding-top: .45rem;
}
.step-card .muted {
  margin: 0;
  line-height: 1.5;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: none;
}
.muted { color: var(--muted); }

.tabs { display: flex; gap: .5rem; margin-bottom: 1rem; }
.tab {
  border: 1.5px solid rgba(255, 255, 255, .28);
  background: transparent;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .88);
  cursor: pointer;
}
.tab.is-active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.home-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .7rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.home-service-link {
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.home-service-link:hover {
  border-color: var(--orange);
  color: #fff;
  background: rgba(255, 90, 0, .1);
}
.home-service-link-all {
  border-color: rgba(255, 90, 0, .55);
  color: #ffb08a;
}

.cargo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .85rem;
}
.cargo-item {
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease;
}
a.cargo-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--orange);
}
.cargo-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 90, 0, .35);
}
.cargo-list a:hover { color: var(--orange); }

.cta-band {
  background: var(--panel);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 2.1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  border: 0;
}
.cta-band p { color: rgba(255, 255, 255, .72); margin: 0; }
.cta-band h2 { color: #fff; }
.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

.breadcrumbs {
  padding: 1rem 0 .15rem;
  font-size: .86rem;
  line-height: 1.25;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem .15rem;
  color: var(--muted);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 .45rem;
  color: rgba(255, 255, 255, .32);
  font-weight: 400;
  line-height: 1;
}
.breadcrumbs a {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs li[aria-current="page"] {
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.25;
}

.page-hero {
  padding: 2.6rem 0 1.6rem;
  background:
    radial-gradient(720px 280px at 12% 0%, rgba(255, 90, 0, .12), transparent 58%),
    linear-gradient(180deg, #141414 0%, var(--bg) 100%);
  border-bottom: 0;
}
.page-hero .eyebrow {
  background: rgba(255, 90, 0, .1);
  color: #ffb08a;
  border: 1px solid rgba(255, 90, 0, .22);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  max-width: 18ch;
}
.page-hero .lead {
  max-width: 54ch;
  color: #b0b0b8;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
.form-row.form-row-4,
.calc-place .form-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 1fr;
  gap: .55rem;
  align-items: end;
}
.calc-place .form-row label {
  margin-bottom: 0;
  min-width: 0;
  font-size: .78rem;
}
.calc-place .form-row input {
  margin-top: .3rem;
  padding: .7rem .65rem;
  border-radius: 12px;
  min-width: 0;
  width: 100%;
}
@media (max-width: 560px) {
  .form-row.form-row-4,
  .calc-place .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
label { display: block; font-weight: 800; font-size: .9rem; margin-bottom: .85rem; color: #ececf1; }
label input, label select, label textarea, .panel input, .panel select, .panel textarea {
  width: 100%; margin-top: .4rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: .9rem 1.05rem;
  background: #121212;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  color-scheme: dark;
  transition: border-color .15s ease, background .15s ease;
}
label input:focus, label select:focus, label textarea:focus,
.panel input:focus, .panel select:focus, .panel textarea:focus {
  outline: none;
  border-color: rgba(255, 90, 0, .45);
  background: #161616;
}
label select option,
label select optgroup,
.panel select option,
.panel select optgroup,
.hero-panel select option {
  color: var(--ink);
  background-color: #222;
}
.hero-panel select { color-scheme: dark; }
.calc-layout, .prose-grid { display: grid; gap: 1rem; }
.calc-layout { grid-template-columns: 1.1fr .9fr; align-items: start; }
.prose-grid { grid-template-columns: 1.35fr .8fr; align-items: start; }
.calc-layout > .panel,
.calc-layout > #calc-form,
.calc-layout > #road-calc-form,
.calc-layout > #calc-result,
.calc-layout > #road-calc-result {
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
.calc-layout #calc-result h2 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: .4rem;
}
.hint { color: var(--muted); font-size: .9rem; }
.hint b { color: #e4e4e7; }
.phone-field-wrap { display: block; }
.phone-field {
  display: grid;
  grid-template-columns: minmax(7.5rem, 11.5rem) minmax(0, 1fr);
  gap: .5rem;
  align-items: stretch;
}
.phone-field select,
.phone-field input {
  width: 100%;
  min-width: 0;
}
.phone-field select {
  font-size: .88rem;
  padding-left: .65rem;
  padding-right: .4rem;
}
.field-error {
  display: block;
  margin-top: .35rem;
  color: #ff6b4a;
  font-size: .82rem;
  line-height: 1.35;
}
.field-error[hidden] { display: none; }
.input-invalid,
.phone-field.input-invalid select,
.phone-field.input-invalid input,
input.input-invalid {
  border-color: rgba(255, 90, 0, .65) !important;
  box-shadow: 0 0 0 1px rgba(255, 90, 0, .25);
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: .85rem 0 1rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}
.consent-row input {
  margin-top: .2rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--orange);
}
.consent-row a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .phone-field {
    grid-template-columns: 1fr;
  }
}
.result-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  font-family: var(--font);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  color: #ff7a33;
  margin: .8rem 0 .15rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.kp-total-label {
  margin: 0 0 .8rem;
  font-weight: 800;
  color: #e4e4e7;
}
.calc-options {
  display: grid;
  gap: .55rem;
  margin: .35rem 0 1rem;
  padding: .95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
}
.calc-options-group {
  margin: .15rem 0 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-options-group + .check { margin-top: -.1rem; }
.check {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .9rem;
  color: #e4e4e7;
  margin: 0;
}
.check input { width: auto; margin: 0; accent-color: var(--orange); }
.check.is-locked { opacity: .85; cursor: default; }
.check.is-locked input { cursor: not-allowed; }
.pack-disclaimer {
  margin: -.05rem 0 .2rem 1.55rem;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  color: #a1a1aa;
}
.quote-carry {
  background: var(--panel);
  margin-bottom: 0;
}
.quote-carry .result-price { margin: .2rem 0; }
#contact-quote-total[readonly] {
  color: var(--orange);
  font-weight: 800;
  cursor: default;
}
.kp-weights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
  margin: .8rem 0 .5rem;
}
.kp-weights > div {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: .65rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.kp-weights span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.kp-weights b { font-size: .95rem; }
.kp-weights small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}
.kp-weights > div.is-chargeable {
  box-shadow: inset 0 0 0 1px rgba(255, 90, 0, .35);
}
.kp-weights > div.is-payable {
  background: rgba(255, 90, 0, .12);
}
.kp-weights > div.is-payable b { color: var(--orange); }
.kp-lines {
  display: grid;
  gap: .35rem;
  margin: .9rem 0 .4rem;
  max-height: 280px;
  overflow: auto;
  padding-right: .2rem;
}
.kp-line {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  align-items: start;
  padding: .7rem .85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .04);
  font-size: .86rem;
}
.kp-line span { color: #d4d4d8; font-weight: 600; }
.kp-line small { display: block; color: var(--muted); font-weight: 600; margin-top: .2rem; }
.kp-line b { white-space: nowrap; color: #fff; font-variant-numeric: tabular-nums; }
.kp-line.is-optional { opacity: .55; }
.kp-line.is-optional em { font-style: normal; color: var(--muted); font-size: .75rem; }
.kp-line-eaeu b { color: #7ddea2; }
.kp-line-manual b { color: #ffb08a; }
.result-price-manual span {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #ffb08a;
}
.calc-eaeu-note {
  margin: .35rem 0 .55rem;
  color: #9be7b5;
}
.prose p { color: var(--muted); font-size: 1.05rem; }
.prose h2 { margin-top: 1.8rem; font-size: 1.3rem; }
.side-card {
  background: var(--panel);
  padding: 1.65rem 1.55rem;
}
.side-card h3 { color: #fff; }
.side-card dl { margin: 0 0 1rem; }
.side-card dl > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.side-card dl > div:last-child { border-bottom: 0; }
.side-card dt { color: var(--muted); }
.side-card dd { margin: 0; font-weight: 800; text-align: right; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin-bottom: .75rem;
  background: var(--panel);
  box-shadow: none;
}
.faq-item summary { cursor: pointer; font-weight: 800; color: #fff; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "→";
  float: right;
  color: var(--muted);
  opacity: 1;
  transition: transform .15s ease;
}
.faq-item[open] summary::after { transform: rotate(90deg); }
.faq-item p { color: var(--muted); margin: .7rem 0 0; }

.site-footer {
  margin-top: 2rem;
  background: #050505;
  color: rgba(255, 255, 255, .78);
  padding: 2.5rem 0 1.4rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
}
.footer-grid a, .footer-grid p { display: block; color: rgba(255, 255, 255, .68); margin: .35rem 0; }
.footer-grid h4 { color: #fff; margin-bottom: .5rem; }
.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .88rem;
  text-align: center;
}

@media (max-width: 1100px) {
  .mega-panel-dirs { width: min(420px, calc(100vw - 1.5rem)); }
  .mega-regions { grid-template-columns: 140px minmax(0, 1fr); }
}

@media (max-width: 1320px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: auto;
    right: 0;
    width: min(17.5rem, calc(100vw - 1rem));
    background: rgba(12, 12, 12, .98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: .55rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: .3rem;
    z-index: 60;
    max-height: calc(100dvh - 72px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow: auto;
    height: auto;
  }
  .header-inner {
    position: relative;
  }
  .header-actions {
    position: relative;
    z-index: 70;
  }
  body.nav-open .nav { display: flex; }
  .nav-link,
  .nav a.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    border-radius: 14px;
    background: var(--panel);
    width: 100%;
    height: auto;
    line-height: 1.25;
    font-size: 1rem;
  }
  .nav-item {
    width: 100%;
    height: auto;
    line-height: normal;
  }
  .nav-item.has-mega > .nav-link {
    padding-right: 1rem;
  }
  .nav-item.has-mega > .nav-link::after {
    position: static;
    margin-top: 0;
    transform: none;
  }
  .mega-anchor {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    pointer-events: auto;
  }
  .mega-panel,
  .mega-panel-services,
  .mega-panel-cargo,
  .mega-panel-dirs,
  .nav-item:hover .mega-panel,
  .nav-item:focus-within .mega-panel,
  .nav-item.is-open .mega-panel {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    max-height: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none !important;
    box-shadow: none;
    margin-top: .35rem;
    padding: .7rem;
    background: var(--panel-2);
    overflow: visible;
  }
  .nav-item.is-open .mega-panel { display: block !important; }
  .mega-panel::before { display: none; }
  .mega-regions {
    display: grid;
    grid-template-columns: 1fr;
    max-height: none;
    gap: .25rem;
  }
  .mega-region { display: block; }
  .mega-region-btn { grid-column: auto; }
  .mega-countries,
  .mega-region.is-open > .mega-countries {
    position: static;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-height: none;
    display: none;
    margin-top: .35rem;
    box-shadow: none;
  }
  .mega-region.is-open > .mega-countries { display: flex; }
  .mega-countries-scroll { max-height: 200px; }
  .mega-cargo { grid-template-columns: 1fr; }
  .mega-service small {
    display: block;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.3;
    margin-top: .12rem;
  }
  .site-header { position: sticky; }
  .hero-grid, .cards-4, .cards-3, .cards-2, .process-grid,
  .calc-layout, .prose-grid, .footer-grid, .form-row:not(.form-row-4), .form-row-3, .search-row,
  .map-layout, .photo-gallery, .cargo-list, .services-widget, .road-grid,
  .popular-grid, .mode-compare-grid {
    grid-template-columns: 1fr;
  }
  /* Планшет: места груза 2×2, не 4 узкие колонки */
  .form-row.form-row-4,
  .calc-place .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero-calc .calc-mode-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 28rem;
  }
  .page-hero-calc .calc-mode-tabs .tab {
    min-width: 0;
    width: 100%;
  }
  .sticky-side {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .country-side-channels {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-rows: none;
    row-gap: 1.4rem;
  }
  .process-col {
    grid-row: auto;
    grid-template-rows: none;
    gap: .9rem;
  }
  .country-list { max-height: 280px; }
  .globe-wrap, #globe-mount { min-height: 420px; height: 420px; }
  .map-layout { min-height: 0; }
}

/* Globe city selection (reference-like) */
.globe-float {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .7rem .85rem;
  border-radius: 14px;
  background: rgba(18, 18, 18, .94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  color: #fff;
  max-width: min(440px, calc(100% - 2rem));
}
.globe-float.is-visible { display: flex; flex-wrap: wrap; }
.globe-float-name { font-weight: 800; font-size: 1.05rem; }
.globe-float .btn { white-space: nowrap; }
/* CSS2D центрирует корень в lat/lng — держим 0×0, якорь = точка города */
.globe-city-marker {
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.globe-city-marker-inner {
  position: relative;
  width: 0;
  height: 0;
}
.globe-city-dot {
  position: absolute;
  left: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 90, 0, .9);
}
.globe-city-marker.is-dot .globe-city-dot {
  left: -3px;
  top: -3px;
  width: 6px;
  height: 6px;
  opacity: .92;
  box-shadow: 0 0 0 1.5px rgba(255, 90, 0, .75);
}
.globe-city-marker.is-labeled .globe-city-dot {
  left: -5px;
  top: -5px;
  width: 10px;
  height: 10px;
}
.globe-city-name {
  position: absolute;
  left: 12px;
  top: -12px;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(10, 16, 28, .96);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  font-synthesis: none;
  letter-spacing: .01em;
  line-height: 1.15;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}
.country-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border-radius: 14px;
  color: #f5f5f5;
  background: transparent;
  text-decoration: none;
}
.country-row-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .35rem;
  align-items: stretch;
}
.country-row-pin {
  display: grid;
  place-items: center;
  width: 48px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: .55rem .2rem;
}
.country-row-pin:hover,
.country-row.is-active > .country-row-head > .country-row-pin,
.country-row.is-open > .country-row-head > .country-row-pin {
  background: rgba(255, 90, 0, .14);
}
.country-row-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
  width: 100%;
  padding: .7rem .55rem .7rem .2rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.country-row.is-active > .country-row-head > .country-row-main,
.country-row.is-open > .country-row-head > .country-row-main,
.country-row-main:hover {
  background: rgba(255, 90, 0, .14);
}
.country-row-page {
  display: grid;
  place-items: center;
  width: 2.1rem;
  margin: .35rem .25rem .35rem 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}
.country-row-page:hover {
  color: var(--accent, #ff5a00);
  background: rgba(255, 90, 0, .12);
}
.country-cities {
  list-style: disc;
  margin: 0 0 .55rem 3.2rem;
  padding: 0;
  display: none;
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
}
.country-row.is-open .country-cities { display: grid; gap: .22rem; }
.country-cities li { padding: .05rem 0; }
.country-cities small { color: var(--muted); font-weight: 600; }
.country-city-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted color-mix(in srgb, currentColor 45%, transparent);
}
.country-city-link:hover { color: var(--accent, #ff5a00); border-bottom-color: currentColor; }

.city-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
  align-items: stretch;
}
.city-cards > li {
  display: flex;
  min-height: 100%;
}
.city-card {
  display: grid;
  grid-template-rows: auto 1.25em auto auto;
  gap: .3rem;
  flex: 1;
  width: 100%;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: color-mix(in srgb, var(--panel, #111) 88%, #fff 12%);
  border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
  transition: border-color .15s ease, transform .15s ease;
  box-sizing: border-box;
}
.city-card:hover {
  border-color: #ff5a00;
  transform: translateY(-1px);
}
.city-card-name {
  line-height: 1.25;
  min-height: 1.25em;
}
.city-card-iata {
  display: block;
  min-height: 1.25em;
  line-height: 1.25;
  font-size: .88rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.city-card-tag {
  justify-self: start;
  margin-top: .15rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ff5a00;
  min-height: 1.1em;
  line-height: 1.1;
}
.city-card-tag.is-empty {
  visibility: hidden;
}
.city-card-modes {
  font-size: .8rem;
  line-height: 1.3;
  min-height: 1.3em;
  color: var(--muted, #888);
}
.road-card-wrap {
  display: grid;
  gap: .35rem;
  align-content: start;
}
.road-card-cities {
  list-style: none;
  margin: 0;
  padding: 0 .4rem .55rem 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
  font-size: .88rem;
}
.road-card-cities a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.road-card-cities a:hover { color: #ff5a00; }
.country-city-modes { opacity: .75; }

/* ——— Mobile / phone ——— */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.site-header {
  padding-top: env(safe-area-inset-top);
}
.btn,
.chip,
.nav-toggle,
.tab,
.country-row-main,
.country-row-pin {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 1.25rem, 1180px);
  }
  .site-header .container {
    width: min(100% - 0.85rem, 1480px);
  }
  .header-inner {
    min-height: 60px;
    gap: .45rem;
    position: relative;
  }
  .nav {
    top: calc(100% + 0.3rem);
    right: 0;
    left: auto;
    width: min(17rem, calc(100vw - 0.9rem));
    max-height: calc(100dvh - 68px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }
  body.nav-open .nav {
    display: flex;
    padding-bottom: .55rem;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .page-hero,
  .hero,
  .section {
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    padding-top: 1.65rem;
    padding-bottom: 1.65rem;
  }
  .section-head {
    margin-bottom: .7rem;
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
  }
  .section-head p {
    max-width: none;
  }
  .hero {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }
  .hero-brand {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    margin-bottom: .25rem;
  }
  .hero-grid {
    gap: .85rem;
  }
  .browser {
    padding: 1rem .9rem .95rem;
  }
  .map-layout {
    min-height: 0;
    gap: .55rem;
  }
  .cards-4,
  .cards-3,
  .cards-2,
  .process-grid,
  .popular-grid,
  .road-grid,
  .article-grid {
    gap: .65rem;
  }
  .feature,
  .step-card,
  .article-card,
  .panel {
    margin-bottom: 0;
  }
  .cta-band {
    padding: 1.1rem 1rem;
  }
  .site-footer {
    margin-top: 1rem;
    padding: 1.5rem 0 1rem;
  }
  .page-hero {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    max-width: none;
    line-height: 1.18;
    margin: .35rem 0 .45rem;
  }
  .page-hero .lead,
  .hero .lead {
    font-size: .95rem;
    max-width: none;
    margin: 0 0 .65rem;
  }
  .mode-trail {
    margin-bottom: .75rem;
    padding: .55rem .65rem;
    gap: .45rem;
  }
  .country-stats {
    gap: .35rem;
    margin: .65rem 0 .75rem;
  }
  .hero-actions {
    margin-top: .85rem;
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .country-title-row {
    flex-wrap: wrap;
    gap: .75rem;
  }
  .country-flag-lg {
    width: 56px;
    height: 56px;
  }
  .country-stats {
    gap: .4rem;
  }
  .country-stat {
    padding: .45rem .75rem;
    font-size: .78rem;
    border-radius: 12px;
  }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-inline: -.25rem;
    padding-inline: .25rem;
    padding-bottom: .45rem;
  }
  .chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: .5rem .9rem;
    font-size: .82rem;
  }
  .map-layout {
    grid-template-columns: 1fr;
    gap: .65rem;
    min-height: 0;
  }
  /* Глобус сверху — сразу карта и CTA, список ниже */
  .map-layout .globe-wrap {
    order: -1;
  }
  .country-panel {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
  }
  .country-panel-head {
    padding: .55rem .8rem;
    font-size: .78rem;
  }
  .country-list {
    max-height: min(30vh, 210px);
    padding: .3rem .4rem .5rem;
  }
  .country-row {
    border-radius: 12px;
    margin-bottom: .2rem;
  }
  .country-row.is-active,
  .country-row.is-open {
    background: rgba(255, 90, 0, .14);
  }
  .country-row-head {
    gap: .15rem;
  }
  .country-row-pin {
    width: 38px;
    padding: .35rem .05rem;
  }
  .country-row-pin img,
  .country-row-flag img {
    width: 26px !important;
    height: 26px !important;
  }
  .country-row-main {
    padding: .5rem .3rem .5rem .05rem;
    gap: .35rem;
  }
  .country-row-name {
    font-size: .9rem;
    line-height: 1.2;
  }
  .country-row-modes {
    font-size: .68rem;
  }
  .country-row-meta {
    font-size: .76rem;
    white-space: nowrap;
  }
  .country-row-page {
    width: 1.75rem;
    margin: .2rem .1rem .2rem 0;
    font-size: .85rem;
  }
  /* Города только на карте/в HUD — без второго списка в карточке */
  .country-cities,
  .country-row.is-open .country-cities {
    display: none !important;
  }
  .continent-legend {
    display: none;
  }
  .globe-wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    border-radius: 14px;
    background: #121212;
  }
  .globe-wrap #globe-mount {
    width: 100%;
    height: 210px;
    min-height: 210px;
    flex: 0 0 auto;
  }
  .globe-lite {
    padding: .45rem .5rem .35rem;
    gap: .35rem;
  }
  .globe-lite-ball {
    width: 118px;
    height: 118px;
    animation-duration: 80s;
  }
  .globe-lite-hint {
    font-size: .78rem;
    max-width: none;
  }
  .globe-hud {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
    margin: 0;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none;
    flex-direction: column;
    align-items: stretch;
    gap: .4rem;
    padding: .7rem .85rem .8rem;
    background: rgba(18, 18, 18, .98);
  }
  .globe-tip {
    font-size: .7rem;
    line-height: 1.25;
    opacity: .55;
    margin: 0;
    width: 100%;
  }
  .globe-selected {
    min-width: 0;
    flex: none;
    width: 100%;
    font-size: .95rem;
    line-height: 1.3;
    font-weight: 700;
  }
  .globe-selected img {
    width: 22px !important;
    height: 16px !important;
    margin-right: 6px !important;
  }
  /* На узком экране города не дублируем — они на маркерах карты */
  .globe-sel-cities {
    display: none !important;
  }
  .globe-sel-meta {
    display: block;
    margin-top: .2rem;
    font-size: .8rem;
    font-weight: 700;
    opacity: .95;
    color: #ffb08a;
  }
  .globe-hud .btn,
  #globe-open.btn {
    width: 100%;
    min-height: 46px;
    margin-top: .1rem;
  }
  .globe-float {
    display: none !important;
  }
  .globe-city-name {
    font-size: .72rem;
    padding: .15rem .35rem;
  }
  .browser {
    padding: .65rem .55rem .85rem;
    border-radius: 16px;
  }
  .home-service-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: 1rem;
    padding-top: .85rem;
  }
  .home-service-link {
    justify-content: center;
    text-align: center;
    font-size: .78rem;
    line-height: 1.25;
    padding: .7rem .55rem;
    min-height: 46px;
    border-radius: 14px;
  }
  .home-service-link-all {
    grid-column: 1 / -1;
  }
  .search-row input {
    min-height: 46px;
  }
  .page-hero-calc .lead {
    font-size: .95rem;
  }
  .calc-layout .panel {
    padding: 1rem .85rem;
  }
  .calc-places-head {
    flex-wrap: wrap;
    gap: .5rem;
  }
  .calc-mode-tabs {
    width: 100%;
  }
  #contact-form .form-row,
  .calc-layout .form-row {
    gap: .65rem;
  }
  .country-title-row h1 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }
  .country-side {
    padding: 1rem .9rem;
  }
  .sticky-side {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .country-side-channels {
    grid-template-columns: 1fr;
  }
  .country-side-actions .btn {
    min-height: 48px;
  }
  .services-widget {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .services-widget .service-card,
  .services-widget a {
    min-height: 48px;
  }
  .photo-gallery {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .photo-card img,
  .photo-card .route-map,
  .photo-card svg {
    max-height: 220px;
    object-fit: cover;
  }
  .delivery-mode-actions {
    display: grid;
    gap: .4rem;
  }
  .delivery-mode-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .city-cards {
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
  }
  .city-card {
    padding: .85rem .8rem;
  }
  .form-row,
  .form-row-3,
  .form-row.form-row-4,
  .calc-place .form-row {
    grid-template-columns: 1fr;
  }
  .calc-place .form-row {
    gap: .65rem;
  }
  label input,
  label select,
  label textarea,
  .panel input,
  .panel select,
  .panel textarea,
  .search-row input {
    font-size: 16px; /* iOS: без автозума */
    min-height: 48px;
    padding: .85rem 1rem;
  }
  label textarea,
  .panel textarea {
    min-height: 120px;
  }
  .btn,
  .btn-sm {
    min-height: 48px;
  }
  .btn-sm {
    padding: .65rem 1rem;
  }
  .prose-grid .side-card {
    order: -1;
  }
  .side-card .btn-block {
    min-height: 48px;
  }
  .footer-grid {
    gap: 1.25rem;
  }
  .section-head h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }
  .longread,
  .prose.panel {
    padding: 1.1rem 1rem;
  }
  .channel-actions,
  .hero-actions,
  .delivery-mode-actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .city-cards {
    grid-template-columns: 1fr;
  }
  .country-row-meta {
    font-size: .78rem;
  }
  .country-row-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .globe-wrap #globe-mount {
    height: 190px;
    min-height: 190px;
  }
  .country-list {
    max-height: min(28vh, 180px);
  }
  .home-service-link {
    font-size: .74rem;
    padding: .65rem .4rem;
  }
  .trust-row {
    gap: .45rem;
  }
  .trust-pill {
    font-size: .8rem;
    padding: .45rem .75rem;
  }
  .widget,
  .panel,
  .feature,
  .service-card,
  .side-card,
  .globe-wrap,
  .country-panel,
  .browser {
    border-radius: 16px;
  }
}

@media (max-width: 720px) {
  .mobile-cta-bar {
    display: none !important;
  }
}
@media (min-width: 721px) {
  .mobile-cta-bar { display: none !important; }
}

.mode-extra-fields.is-hidden,
#contact-truck-wrap.is-hidden,
#contact-container-wrap.is-hidden,
#contact-container-qty-wrap.is-hidden {
  display: none !important;
}
