:root {
  --bg: #f6f8f9;
  --surface: #ffffff;
  --surface-soft: #eef2f4;
  --ink: #172026;
  --muted: #5d6870;
  --line: #d7dde1;
  --line-soft: rgba(63, 86, 99, 0.16);
  --structural: #3f5663;
  --amber: #9a4f0f;
  --amber-dark: #7f3f0a;
  --green: #1f8a4c;
  --red: #b42318;
  --footer: #101820;
  --max: 1440px;
  --gutter: 24px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.16s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(154, 79, 15, 0.42);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 430, "GRAD" 0, "opsz" 24;
  line-height: 1;
  vertical-align: middle;
}

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

main.container > :last-child {
  margin-bottom: 76px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin: 22px 0 24px;
}

.page-meta-home {
  justify-content: flex-end;
}

.page-meta .breadcrumbs {
  margin: 0;
  min-width: 0;
}

.breadcrumbs a {
  color: var(--structural);
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  color: var(--ink);
  border-color: var(--amber);
}

.breadcrumbs span {
  color: var(--ink);
}

.breadcrumbs .separator {
  color: rgba(63, 86, 99, 0.42);
}

.page-updated {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.page-meta .page-updated {
  flex: 0 0 auto;
  margin: 0;
  text-align: right;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 6px 0;
}

.main-nav-compact {
  gap: 18px;
}

.nav-link,
.catalog-open-button {
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-open-button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.is-active,
.catalog-open-button:hover,
.catalog-open-button.is-active {
  color: var(--ink);
  border-color: var(--amber);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-trigger::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.catalog-open-button::after {
  content: none;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(360px, calc(100vw - 48px));
  display: grid;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px rgba(23, 32, 38, 0.12);
  padding: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.nav-menu-wide {
  width: min(780px, calc(100vw - 48px));
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px;
}

.nav-dropdown:nth-last-child(-n + 2) .nav-menu {
  right: 0;
  left: auto;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav .nav-menu a {
  display: block;
  border: 0;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 12px;
  text-transform: none;
}

.main-nav .nav-menu a:hover,
.main-nav .nav-menu a.is-active {
  background: var(--surface-soft);
  color: var(--ink);
}

.nav-group {
  display: grid;
  align-content: start;
  gap: 4px;
}

.nav-section {
  display: grid;
  gap: 8px;
}

.nav-section-secondary {
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.nav-menu-wide .nav-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-grid-secondary {
  grid-template-columns: 1fr;
}

.nav-group-title {
  padding: 4px 12px 8px;
  color: var(--structural);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav .nav-menu a.nav-item {
  display: grid;
  gap: 3px;
  min-height: 60px;
  box-shadow: inset 0 -2px 0 transparent;
  padding: 10px 12px;
  transition: background-color 0.14s ease, box-shadow 0.14s ease, color 0.14s ease;
}

.main-nav .nav-menu a.nav-item-compact {
  min-height: 52px;
}

.nav-item-title,
.main-nav .nav-menu a.nav-item > span {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-item-text,
.main-nav .nav-menu a.nav-item > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
}

.main-nav .nav-menu a.nav-item:hover,
.main-nav .nav-menu a.nav-item.is-active {
  box-shadow: inset 0 -2px 0 var(--amber);
}

.main-nav .nav-menu a.nav-item:hover .nav-item-text,
.main-nav .nav-menu a.nav-item.is-active .nav-item-text,
.main-nav .nav-menu a.nav-item:hover > small,
.main-nav .nav-menu a.nav-item.is-active > small {
  color: var(--structural);
}

.catalog-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 980px) minmax(0, 1fr);
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}

.catalog-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.catalog-overlay:not(.is-open) .catalog-panel,
.catalog-overlay:not(.is-open) .catalog-scrim {
  display: none;
}

.catalog-scrim {
  grid-column: 1 / -1;
  grid-row: 1;
  background: rgba(23, 32, 38, 0);
  transition: background 0.18s ease;
}

.catalog-overlay.is-open .catalog-scrim {
  background: rgba(23, 32, 38, 0.42);
}

.catalog-panel {
  grid-column: 1;
  grid-row: 1;
  width: min(980px, calc(100vw - 34px));
  height: 100vh;
  overflow: auto;
  background: var(--surface);
  border-right: 1px solid var(--line);
  box-shadow: 28px 0 70px rgba(23, 32, 38, 0.22);
  padding: 26px;
  transform: translateX(-104%);
  transition: transform 0.22s cubic-bezier(0.19, 1, 0.22, 1);
}

.catalog-overlay.is-open .catalog-panel {
  transform: translateX(0);
}

.catalog-lock {
  overflow: hidden;
}

.catalog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 18px;
}

.catalog-title {
  display: block;
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.catalog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 18px 0 22px;
}

.catalog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer;
  padding: 13px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
}

.catalog-search:hover,
.catalog-close:hover {
  border-color: rgba(154, 79, 15, 0.42);
  color: var(--ink);
}

.catalog-all-link {
  color: var(--structural);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-popular {
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
  padding: 16px;
}

.catalog-popular h3,
.catalog-group summary span {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.catalog-popular .catalog-link-grid {
  margin-top: 12px;
}

.catalog-link {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 11px 12px;
}

.catalog-link:hover,
.catalog-link.is-active {
  border-color: rgba(154, 79, 15, 0.38);
  background: #fffaf2;
}

.catalog-link span {
  color: var(--ink);
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-link small {
  color: var(--muted);
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-groups {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.catalog-group {
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.catalog-group summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  cursor: pointer;
  padding: 15px 16px;
  list-style: none;
}

.catalog-group summary::-webkit-details-marker {
  display: none;
}

.catalog-group summary::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.catalog-group[open] summary::after {
  content: "expand_less";
}

.catalog-group summary small {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-group .catalog-link-grid {
  border-top: 1px solid var(--line-soft);
  padding: 12px;
}

.directions-map {
  display: grid;
  gap: 30px;
}

.direction-group {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
}

.direction-group-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: 24px;
}

.direction-group-head h3 {
  margin: 0;
}

.direction-group-head p {
  margin: 0;
  color: var(--muted);
}

.direction-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.direction-card span {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.route-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.route-panel .eyebrow,
.route-panel h2,
.route-panel p {
  margin-bottom: 0;
}

.route-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
  color: var(--ink);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.route-actions a:hover {
  border-color: rgba(154, 79, 15, 0.42);
  background: #fffaf2;
}

.trust-evidence {
  display: grid;
  gap: 24px;
}

.trust-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-evidence-card {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 22px;
}

.trust-evidence-card strong {
  color: var(--amber-dark);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 0.95;
}

.trust-evidence-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.trust-evidence-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.direction-card {
  min-height: 0;
  padding: 16px 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.mobile-nav-toggle,
.site-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--surface);
  color: var(--structural);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-nav-toggle {
  display: none;
}

.mobile-nav-toggle:hover,
.site-search-trigger:hover {
  border-color: rgba(154, 79, 15, 0.42);
  color: var(--ink);
}

.phone {
  font-weight: 800;
  white-space: nowrap;
}

.button,
.button-secondary,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 0;
  border-radius: 2px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.button {
  background: var(--amber);
  color: #fff;
}

.button:hover {
  background: var(--amber-dark);
}

.button-secondary {
  background: transparent;
  border: 2px solid var(--structural);
  color: var(--structural);
}

.button-secondary:hover {
  background: var(--structural);
  color: #fff;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #25323a;
}

.site-search-lock {
  overflow: hidden;
}

.mobile-nav-lock {
  overflow: hidden;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
  background: rgba(16, 24, 32, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  width: min(440px, 100%);
  max-height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: var(--surface);
  border-left: 1px solid rgba(23, 32, 38, 0.18);
  box-shadow: -24px 0 80px rgba(16, 24, 32, 0.24);
  transform: translateX(20px);
  transition: transform 0.16s ease;
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
  padding: 0 20px;
}

.mobile-nav-head strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--surface);
  color: var(--structural);
  cursor: pointer;
}

.mobile-nav-close:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.mobile-nav-content {
  display: grid;
  align-content: start;
  gap: 20px;
  overflow: auto;
  padding: 22px 20px;
}

.mobile-nav-section {
  display: grid;
  gap: 10px;
}

.mobile-nav-title {
  color: var(--structural);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.mobile-nav-links {
  display: grid;
  gap: 6px;
}

.mobile-nav-link {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 11px 12px;
}

.mobile-nav-link:hover {
  border-color: rgba(154, 79, 15, 0.42);
  background: #fbfcfc;
}

.mobile-nav-link span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.mobile-nav-link small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding: 16px 20px 20px;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: start;
  justify-items: center;
  background: rgba(16, 24, 32, 0.46);
  opacity: 0;
  padding: 88px 24px 24px;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.site-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-search-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(760px, calc(100vh - 112px));
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(23, 32, 38, 0.22);
  box-shadow: 0 28px 80px rgba(16, 24, 32, 0.28);
  padding: 24px;
  transform: translateY(10px);
  transition: transform 0.16s ease;
}

.site-search-overlay.is-open .site-search-panel {
  transform: translateY(0);
}

.site-search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--surface);
  color: var(--structural);
  cursor: pointer;
}

.site-search-close:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.site-search-head {
  padding-right: 42px;
}

.site-search-head h2 {
  margin-bottom: 2px;
}

.site-search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 2px solid var(--ink);
  background: #fff;
  padding: 0 16px;
}

.site-search-field .material-symbols-outlined {
  color: var(--amber);
}

.site-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.site-search-field input::placeholder {
  color: rgba(93, 104, 112, 0.72);
  font-weight: 700;
}

.site-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-search-suggestions button {
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--surface-soft);
  color: var(--structural);
  cursor: pointer;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-search-suggestions button:hover {
  background: var(--ink);
  color: #fff;
}

.site-search-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-search-results {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}

.site-search-result,
.site-search-empty {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 14px 16px;
}

.site-search-result:hover,
.site-search-empty:hover {
  border-color: rgba(154, 79, 15, 0.42);
  background: #fbfcfc;
}

.site-search-result strong,
.site-search-empty strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.site-search-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.site-search-section {
  flex: 0 0 auto;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
  color: var(--structural);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.site-search-section-product {
  border-color: rgba(154, 79, 15, 0.28);
  background: #fff2df;
  color: #8c470e;
}

.site-search-section-logistics {
  border-color: rgba(11, 92, 255, 0.24);
  background: #eaf2ff;
  color: #0b4db8;
}

.site-search-section-company {
  border-color: rgba(47, 125, 87, 0.24);
  background: #eaf5ed;
  color: #246342;
}

.site-search-section-request {
  border-color: rgba(63, 86, 99, 0.22);
  background: #eef2f4;
  color: #3f5663;
}

.site-search-section-tool {
  border-color: rgba(68, 91, 117, 0.22);
  background: #edf3f8;
  color: #405a73;
}

.site-search-result small {
  color: var(--structural);
  font-size: 11px;
  font-weight: 800;
}

.site-search-result p,
.site-search-empty span {
  margin: 0;
  color: var(--muted);
}

.site-search-result mark {
  background: rgba(241, 194, 125, 0.42);
  color: inherit;
  padding: 0 2px;
}

.site-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.site-search-tags span {
  border: 1px solid var(--line-soft);
  color: var(--structural);
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: start;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line-soft);
}

.hero > *,
.page-hero > * {
  min-width: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  gap: 0;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1,
.page-hero .lead,
.page-hero .hero-actions {
  max-width: 860px;
}

@supports selector(.page-hero:has(aside)) {
  .page-hero:has(aside) {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
    justify-content: stretch;
    align-items: start;
    gap: 42px;
  }

  .page-hero:has(aside) h1,
  .page-hero:has(aside) .lead,
  .page-hero:has(aside) .hero-actions {
    max-width: none;
  }

  .page-hero:has(aside) > aside {
    width: 100%;
    min-width: 0;
  }
}

.page-hero-workflow {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
  justify-content: stretch;
  gap: 42px;
  align-items: start;
}

.page-hero-workflow h1,
.page-hero-workflow .lead,
.page-hero-workflow .hero-actions {
  max-width: none;
}

.page-hero-workflow .quote-panel {
  width: 100%;
  min-width: 0;
}

.page-hero-workflow .panel-head {
  padding: 18px 22px;
}

.page-hero-workflow .quote-form {
  padding: 22px;
}

.page-hero-workflow .workflow-summary .step {
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.directions-hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.58fr);
  justify-content: stretch;
  gap: 44px;
  align-items: start;
}

.directions-hero h1,
.directions-hero .lead,
.directions-hero .hero-actions {
  max-width: none;
}

.directions-hero .route-panel {
  align-self: start;
  width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--structural);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.lead {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
}

.hero-scope span {
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--structural);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.note {
  max-width: 680px;
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
}

.product-price-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin: 0 0 26px;
  background: var(--ink);
  border: 1px solid rgba(23, 32, 38, 0.18);
  color: #fff;
  padding: 22px;
}

.product-price-card strong {
  display: block;
  margin: 4px 0 2px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.product-price-card span {
  color: #dbe5ea;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-price-card .price-label {
  color: #f1c27d;
  font-size: 11px;
}

.product-price-card p {
  margin: 0;
  color: #cbd5db;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.signal {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 14px;
}

.check {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.signal strong {
  display: block;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal span:last-child,
.muted {
  color: var(--muted);
}

.quote-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: 0 14px 40px rgba(23, 32, 38, 0.05);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--structural);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.workflow-summary {
  gap: 14px;
}

.workflow-summary .step {
  padding: 18px;
}

.workflow-summary .step-number {
  margin-bottom: 14px;
}

.workflow-summary h3 {
  margin-bottom: 8px;
}

.workflow-summary p {
  margin-bottom: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

textarea {
  min-height: 82px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--structural);
  box-shadow: 0 0 0 3px rgba(63, 86, 99, 0.12);
}

.file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  border: 1px dashed rgba(63, 86, 99, 0.42);
  color: var(--muted);
  text-align: center;
  padding: 14px;
}

.file-drop span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.file-drop input {
  border: 0;
  padding: 0;
  font-size: 12px;
}

.file-drop small {
  color: var(--muted);
  font-size: 11px;
}

.form-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.logistics-request-note {
  border: 1px solid rgba(196, 216, 244, 0.28);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  color: #d9e6fa;
  font-size: 13px;
  line-height: 1.5;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none;
}

.consent-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--amber);
}

.consent-check a {
  color: var(--structural);
  font-weight: 800;
  border-bottom: 1px solid rgba(63, 86, 99, 0.35);
}

.consent-check a:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status.is-success {
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--red);
  font-weight: 800;
}

.company-page {
  --bg: #f4f7f2;
  --surface: #fbfcfa;
  --surface-soft: #e8efe8;
  --ink: #14211a;
  --muted: #5a6860;
  --line: #d6dfd6;
  --line-soft: rgba(45, 91, 65, 0.16);
  --structural: #2d6a4f;
  --amber: #2f7d57;
  --amber-dark: #1f5f3f;
  --green: #2f7d57;
  --footer: #122019;
}

.company-page .site-header {
  background: rgba(251, 252, 250, 0.96);
}

.company-page .mobile-nav-toggle:hover,
.company-page .site-search-trigger:hover {
  border-color: rgba(47, 125, 87, 0.42);
}

.company-page .page-meta {
  margin-top: 26px;
}

.company-page main.container > .page-hero:first-of-type {
  position: relative;
  margin-right: calc(-1 * var(--gutter));
  margin-left: calc(-1 * var(--gutter));
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: linear-gradient(135deg, #eaf2eb 0%, #f8fbf7 62%, #eef4ef 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom-color: rgba(45, 91, 65, 0.2);
}

.company-page main.container > .page-hero:first-of-type .quote-panel,
.company-page main.container > .page-hero:first-of-type .route-panel {
  background: rgba(251, 252, 250, 0.92);
  border-color: rgba(45, 91, 65, 0.18);
}

.company-page .hero-scope span,
.company-page .tag,
.company-page .mini-list a {
  background: rgba(255, 255, 255, 0.72);
}

.company-page .cta-expectations .material-symbols-outlined,
.company-page .cta-note {
  color: #b8d2a7;
}

.company-page .cta-note {
  border-color: rgba(184, 210, 167, 0.44);
}

.company-page main.container > .section:last-child,
.company-page main.container > .cta-band:last-child,
.company-page main.container > .route-bridge:last-child {
  margin-bottom: 76px;
}

.turnstile-slot {
  min-height: 1px;
}

.section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line-soft);
}

section[id] {
  scroll-margin-top: 88px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

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

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

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  align-items: start;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(23, 32, 38, 0.06);
  overflow: hidden;
}

.spec-card h3 {
  margin: 0;
  padding: 22px 24px 8px;
  font-size: 22px;
}

.spec-card p {
  margin: 0;
  padding: 0 24px 18px;
  color: var(--muted);
}

.spec-card .list {
  padding: 0 24px 22px;
}

.spec-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.spec-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 12px;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th + th,
.spec-table td + td {
  border-left: 1px solid var(--line-soft);
}

.spec-table th {
  color: var(--ink);
  background: var(--surface-soft);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--ink);
  line-height: 1.35;
}

.spec-table tbody tr:nth-child(even) td {
  background: #f9fbfc;
}

.spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.calculator-card,
.calculator-result {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
}

.calculator-card {
  display: grid;
  gap: 16px;
}

.calculator-card input.is-invalid,
.calculator-card select.is-invalid {
  border-color: var(--red);
  box-shadow: inset 3px 0 0 var(--red);
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator-result {
  position: sticky;
  top: 96px;
  box-shadow: 0 18px 38px rgba(23, 32, 38, 0.08);
}

.calculator-result[hidden] {
  display: none;
}

.result-grid {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.result-grid div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.result-grid span {
  color: var(--muted);
  font-size: 13px;
}

.result-grid strong {
  color: var(--ink);
  font-size: 20px;
  white-space: nowrap;
}

.result-grid .result-primary {
  display: block;
  margin-top: 6px;
  padding: 18px;
  background: var(--ink);
  color: #fff;
  border-bottom: 0;
}

.result-primary span,
.result-primary strong {
  display: block;
  color: #fff;
}

.result-primary strong {
  margin-top: 6px;
  font-size: 30px;
}

.calculator-summary-panel {
  align-self: start;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(176, 124, 84, 0.08), rgba(34, 70, 79, 0.04)),
    var(--surface);
}

.calculator-summary-panel .panel-head {
  padding: 0 0 14px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}

.calculator-summary-panel .panel-head span:first-child {
  display: grid;
  gap: 3px;
}

.calculator-summary-panel .panel-head small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: none;
}

.calculator-summary-panel .panel-head .material-symbols-outlined {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--structural);
}

.formula-stack {
  display: grid;
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.formula-line {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  line-height: 1.45;
}

.formula-line:last-child {
  border-bottom: 0;
}

.formula-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.formula-equation,
.formula-note {
  min-width: 0;
  color: var(--ink);
}

.formula-equation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.formula-note {
  font-size: 13px;
}

.formula-note strong {
  color: var(--ink);
}

.formula-symbol {
  white-space: nowrap;
}

.formula-fraction {
  display: inline-grid;
  gap: 3px;
  min-width: 112px;
  text-align: center;
  line-height: 1.15;
}

.formula-fraction span:first-child {
  padding: 0 8px 4px;
  border-bottom: 1px solid var(--ink);
}

.formula-fraction span:last-child {
  padding: 1px 8px 0;
  font-size: 0.88em;
}

.card,
.feature,
.category-card,
.step,
.document,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.category-card.is-priority {
  grid-column: span 2;
  background: var(--ink);
  color: #fff;
}

.category-card.is-featured {
  background: #f3f5f6;
  border-color: var(--line);
  box-shadow: inset 0 3px 0 var(--structural);
}

.category-card.is-featured .eyebrow {
  color: var(--structural);
}

.category-card p {
  color: var(--muted);
}

.category-card.is-priority p {
  color: #cbd5db;
}

.category-card.direction-card {
  min-height: 0;
  padding: 16px 18px;
}

.ai-answer-block,
.quick-answer-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.55fr);
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.ai-answer-main,
.quick-answer-main {
  position: sticky;
  top: 96px;
}

.ai-answer-main h2,
.quick-answer-main h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
}

.ai-answer-grid,
.quick-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ai-answer-grid > div,
.quick-answer-grid > div {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.ai-answer-grid h3,
.quick-answer-grid h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.ai-answer-grid .list,
.quick-answer-grid .list {
  margin: 0;
  padding-left: 18px;
}

.ai-answer-grid .list li,
.quick-answer-grid .list li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.priority-catalog {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}

.priority-item {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  column-gap: 14px;
  row-gap: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
}

.priority-item:first-child {
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
}

.priority-item span {
  grid-row: span 2;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.priority-item strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
}

.priority-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.priority-item:first-child strong {
  color: #fff;
  font-size: 22px;
}

.priority-item:first-child small {
  color: #cbd5db;
}

.priority-item:hover {
  border-color: rgba(154, 79, 15, 0.5);
  background: #fbfcfc;
}

.priority-item:first-child:hover {
  background: #1f2a31;
}

.category-groups {
  display: grid;
  gap: 24px;
}

.category-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}

.category-group-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.category-group-head > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  color: var(--structural);
  font-size: 23px;
}

.category-group-head h3 {
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.18;
}

.category-group .grid-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.category-group .category-card {
  min-height: 0;
  padding: 14px;
}

.category-group .category-card h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.category-group .category-card p {
  display: -webkit-box;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.category-group .category-card .eyebrow {
  margin-bottom: 6px;
}

.category-group .tag-row {
  margin-top: auto;
}

.mixed-spec-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: 26px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.mixed-spec-cta h3 {
  margin: 2px 0 8px;
  font-size: 25px;
  line-height: 1.18;
}

.mixed-spec-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.mixed-spec-cta .button-secondary {
  flex: 0 0 auto;
}

.calculator-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
  padding: 18px;
  background: #e9eef1;
  border: 1px solid var(--line-soft);
}

.calculator-strip > div {
  align-self: center;
}

.calculator-strip h3 {
  margin-bottom: 8px;
}

.calculator-strip p {
  margin: 0;
}

.calculator-strip .category-card {
  background: var(--surface);
}

.calculator-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.calculator-link-grid .category-card {
  min-height: 100%;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  background: var(--surface-soft);
  color: var(--structural);
  font-size: 11px;
  font-weight: 800;
}

.is-priority .tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.feature,
.document,
.card {
  padding: 20px;
}

.feature .material-symbols-outlined,
.document .material-symbols-outlined {
  color: var(--amber);
  margin-bottom: 18px;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.mistake-list {
  display: grid;
  gap: 10px;
}

.mistake-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.mistake-item span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.mistake-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.request-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cta-checklist {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.cta-checklist li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #dce7ec;
  font-size: 13px;
  line-height: 1.4;
}

.cta-checklist .material-symbols-outlined {
  color: var(--amber);
  font-size: 18px;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.process .step {
  min-height: 190px;
  border: 0;
  border-right: 1px solid var(--line-soft);
  padding: 20px;
}

.process .step:last-child {
  border-right: 0;
}

.process .step-number {
  margin-bottom: 18px;
}

.process .step h3 {
  margin-bottom: 10px;
}

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

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.35fr);
  gap: 24px;
  align-items: start;
}

.process-rail {
  position: relative;
  display: grid;
  gap: 0;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 39px;
  width: 2px;
  background: var(--line-soft);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 0.32fr) minmax(0, 0.68fr);
  gap: 16px;
  align-items: baseline;
  padding: 20px 24px;
}

.process-step + .process-step {
  border-top: 1px solid var(--line-soft);
}

.step-number {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  background: var(--surface);
  border: 2px solid var(--amber);
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0;
}

.process-step p {
  margin: 0;
}

.process-proof {
  position: sticky;
  top: 96px;
  background: var(--ink);
  color: #fff;
  padding: 24px;
}

.process-proof .eyebrow {
  color: #f1c27d;
}

.process-proof h3 {
  color: #fff;
  font-size: 24px;
}

.process-proof ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-proof li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #dbe5ea;
  font-size: 13px;
  line-height: 1.4;
}

.process-proof .material-symbols-outlined {
  color: #f1c27d;
  font-size: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 8px;
  background: var(--amber);
}

.warning {
  background: #fff;
  border-left: 4px solid var(--amber);
  padding: 24px;
}

.negative {
  border-left: 4px solid var(--red);
}

.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  padding: 16px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.comparison-table th {
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 8px 12px;
  color: var(--structural);
  font-size: 12px;
  font-weight: 900;
}

.procurement-tools {
  margin-top: 24px;
}

.compact-section {
  padding-top: 34px;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: 24px;
  align-items: start;
}

.wizard-panel,
.wizard-result {
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 24px;
}

.wizard-panel {
  display: grid;
  gap: 12px;
}

.wizard-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 44px;
  padding: 12px;
  background: var(--surface-soft);
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 700;
}

.wizard-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--amber);
}

.wizard-option:has(input:checked) {
  border-color: rgba(154, 79, 15, 0.42);
  background: #fff7ed;
}

.wizard-field {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 900;
}

.wizard-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
}

.wizard-result {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  background: var(--ink);
  color: #fff;
}

.wizard-result h2,
.wizard-result .eyebrow {
  color: #fff;
}

.wizard-result p,
.wizard-result li {
  color: #dbe5ea;
}

.wizard-result.is-ready {
  background: #173822;
}

.wizard-meter {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.wizard-meter span {
  display: block;
  height: 100%;
  background: #f1c27d;
  transition: width 180ms ease;
}

.download-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 24px;
}

.download-strip h2 {
  margin-bottom: 8px;
}

.case-timeline {
  display: grid;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.case-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
}

.case-row + .case-row {
  border-top: 1px solid var(--line-soft);
}

.case-row > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.document-matrix td:first-child {
  font-weight: 900;
  color: var(--ink);
}

.contact-card {
  display: grid;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 24px;
}

.contact-card a {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.contact-card a:hover {
  color: var(--amber);
}

.legal-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-details div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
}

.legal-details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
  font-weight: 700;
}

.contact-map-section {
  margin-top: 18px;
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(23, 32, 38, 0.05);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1fr);
  gap: 36px;
  align-items: start;
  margin: 76px 0;
  padding: 36px;
  background: var(--ink);
  color: #fff;
}

.cta-band.cta-band-simple {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-band.cta-band-simple > div {
  max-width: 780px;
}

.cta-band.cta-band-simple h2 {
  margin-bottom: 12px;
}

.cta-band.cta-band-simple p:last-child {
  margin-bottom: 0;
  color: #dbe5ea;
}

.cta-band.cta-band-simple .button {
  justify-self: end;
  white-space: nowrap;
}

.cta-copy {
  max-width: 680px;
}

.cta-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
}

.cta-copy > .muted {
  max-width: 620px;
  margin-bottom: 28px;
}

.cta-expectations {
  display: grid;
  border-top: 1px solid rgba(219, 229, 234, 0.24);
}

.cta-expectations div {
  display: grid;
  grid-template-columns: 34px minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid rgba(219, 229, 234, 0.24);
  padding: 16px 0;
}

.cta-expectations .material-symbols-outlined {
  color: #f1c27d;
  font-size: 24px;
}

.cta-expectations strong {
  color: #f7fbfc;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.cta-expectations p {
  margin: 0;
  color: #cbd5db;
  font-size: 13px;
  line-height: 1.4;
}

.cta-note {
  margin: 22px 0 0;
  border: 1px solid rgba(241, 194, 125, 0.45);
  color: #f1c27d;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.cta-band .muted,
.cta-band label,
.cta-band .form-footnote {
  color: #cbd5db;
}

.cta-band .eyebrow {
  color: #dbe5ea;
}

.cta-band .contact-card {
  color: var(--ink);
}

.cta-band .contact-card .eyebrow,
.cta-band .contact-card .muted {
  color: var(--structural);
}

.cta-band .quote-panel {
  background: #f7fbfc;
  border-color: rgba(219, 229, 234, 0.9);
  color: var(--ink);
  box-shadow: none;
}

.cta-band .quote-panel .eyebrow {
  color: var(--structural);
}

.cta-band .quote-panel h2 {
  color: var(--ink);
}

.cta-band .quote-panel p {
  color: var(--muted);
}

.cta-band .quote-panel label,
.cta-band .quote-panel .form-footnote {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.logistics-page {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eaf1fb;
  --ink: #07172c;
  --muted: #5f6d7d;
  --line: #d8e2ef;
  --line-soft: rgba(16, 48, 92, 0.14);
  --structural: #0b5cff;
  --amber: #2f7dff;
  --amber-dark: #0847c8;
  --green: #0a4a8f;
  --navy: #071b34;
  --navy-2: #0d2748;
  --footer: #071b34;
  background: var(--bg);
}

.logistics-page .site-header {
  background: rgba(248, 251, 255, 0.96);
}

.logistics-page .site-search-trigger:hover,
.logistics-page .mobile-nav-toggle:hover {
  border-color: rgba(11, 92, 255, 0.42);
}

.logistics-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.logistics-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 70px;
}

.logistics-logo {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.logistics-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.logistics-nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logistics-nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.logistics-nav-group > button,
.logistics-nav a,
.logistics-nav-direct {
  padding: 10px 11px;
  color: #4d5d70;
  font-size: 13px;
  font-weight: 800;
}

.logistics-catalog-open {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.logistics-nav-group > button .material-symbols-outlined {
  font-size: 17px;
  line-height: 1;
}

.logistics-nav-group:hover > button,
.logistics-nav-group:focus-within > button,
.logistics-nav-group.is-active > button,
.logistics-nav a:hover,
.logistics-nav a.is-active,
.logistics-nav-direct:hover,
.logistics-nav-direct.is-active {
  background: #eaf1fb;
  color: var(--structural);
}

.logistics-nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 250px;
  padding: 8px;
  border: 1px solid #c6d6eb;
  background: #f8fbff;
  box-shadow: 0 18px 42px rgba(7, 27, 52, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.logistics-nav-menu-categories {
  left: 50%;
  display: grid;
  width: min(860px, calc(100vw - 40px));
  gap: 10px;
  padding: 12px;
  transform: translate(-50%, -4px);
}

.logistics-nav-grid {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
}

.logistics-nav-section {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 8px;
  border: 1px solid #dce7f5;
  background: #ffffff;
}

.logistics-nav-section strong {
  color: var(--structural);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.logistics-nav-grid a {
  flex: 1 1 150px;
}

.logistics-nav-section:first-child .logistics-nav-grid a {
  flex: 0 1 220px;
}

.logistics-nav-group:hover .logistics-nav-menu,
.logistics-nav-group:focus-within .logistics-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.logistics-nav-group:hover .logistics-nav-menu-categories,
.logistics-nav-group:focus-within .logistics-nav-menu-categories {
  transform: translate(-50%, 0);
}

.logistics-nav-menu a {
  display: grid;
  gap: 3px;
  min-height: 60px;
  padding: 10px 12px;
  color: #24364a;
}

.logistics-nav-menu a span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.logistics-nav-menu a small {
  color: #63748a;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
}

.logistics-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logistics-mode-link {
  border: 1px solid #c6d6eb;
  background: #f8fbff;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.logistics-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid #c6d6eb;
  background: #eef5ff;
  color: var(--structural);
  cursor: pointer;
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.logistics-search-trigger:hover {
  border-color: rgba(11, 92, 255, 0.42);
  background: #f8fbff;
  color: var(--ink);
}

.logistics-phone {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.logistics-page .button {
  background: var(--structural);
}

.logistics-page .button:hover {
  background: #0847c8;
}

.logistics-page .button-secondary:hover {
  border-color: var(--structural);
  color: var(--structural);
}

.logistics-page .catalog-popular {
  background: #eaf1fb;
}

.logistics-page .catalog-link:hover,
.logistics-page .catalog-link.is-active {
  border-color: rgba(11, 92, 255, 0.36);
  background: #f5f9ff;
}

.logistics-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid rgba(9, 40, 77, 0.35);
  background:
    linear-gradient(135deg, rgba(12, 91, 255, 0.28), transparent 42%),
    var(--navy);
  padding: 46px;
  color: #f6f9ff;
}

.logistics-hero .page-hero-copy {
  max-width: 760px;
}

.logistics-hero .eyebrow {
  color: #9ec1ff;
}

.logistics-hero h1 {
  color: #f6f9ff;
}

.logistics-hero .lead {
  color: #c9d7ee;
}

.logistics-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #f6f9ff;
}

.logistics-hero .route-panel {
  color: var(--ink);
}

.logistics-hero .route-panel .eyebrow {
  color: var(--structural);
}

.logistics-hero .route-panel h2 {
  color: var(--ink);
}

.logistics-hero .route-panel .list li {
  color: var(--muted);
}

.logistics-hero .route-panel .list strong {
  color: var(--ink);
}

.logistics-hero-board {
  display: grid;
  gap: 22px;
  align-self: stretch;
  border: 1px solid rgba(196, 216, 244, 0.18);
  background:
    linear-gradient(135deg, rgba(11, 92, 255, 0.2), transparent 42%),
    var(--navy-2);
  padding: 24px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.logistics-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(196, 216, 244, 0.18);
  padding-bottom: 16px;
}

.logistics-board-head span {
  color: #8eb8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.logistics-board-head strong {
  color: #f6f9ff;
  font-size: 12px;
}

.logistics-board-lines {
  display: grid;
  gap: 0;
}

.logistics-board-lines div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 58px;
}

.logistics-board-lines span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border: 3px solid #6da3ff;
  background: var(--navy-2);
}

.logistics-board-lines span::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 2px;
  height: 46px;
  background: rgba(196, 216, 244, 0.24);
}

.logistics-board-lines div:last-child span::after {
  display: none;
}

.logistics-board-lines p {
  margin: 0;
  color: #d9e6fa;
  font-weight: 900;
}

.logistics-board-lines p strong {
  color: #ffffff;
}

.logistics-board-note {
  border: 1px solid rgba(196, 216, 244, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
  color: #c9d7ee;
  font-size: 13px;
  line-height: 1.45;
}

.logistics-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 4px 0 54px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}

.route-node {
  display: grid;
  gap: 7px;
  min-height: 132px;
  border-right: 1px solid var(--line-soft);
  padding: 18px;
}

.route-node:last-child {
  border-right: 0;
}

.route-node span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.route-node strong {
  font-size: 16px;
  line-height: 1.25;
}

.route-node small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.logistics-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.logistics-work-mode {
  border: 1px solid var(--line-soft);
  background: #dfeafb;
  padding: 30px;
}

.work-mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.work-mode-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 230px;
  border: 1px solid rgba(11, 92, 255, 0.14);
  background: var(--surface);
  padding: 20px;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.work-mode-card:hover {
  border-color: rgba(11, 92, 255, 0.42);
  background: #f8fbff;
  transform: translateY(-1px);
}

.work-mode-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: #f3f7ef;
  font-size: 12px;
  font-weight: 900;
}

.work-mode-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}

.work-mode-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.work-mode-card small {
  align-self: end;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.logistics-service {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 18px;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.logistics-service:hover {
  border-color: rgba(11, 92, 255, 0.42);
  background: #f8fbff;
  transform: translateY(-1px);
}

.logistics-service .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--surface-soft);
  color: var(--structural);
  font-size: 21px;
}

.logistics-service h3,
.logistics-row h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.logistics-service p,
.logistics-row p {
  margin: 0;
  color: var(--muted);
}

.logistics-row-list {
  display: grid;
  gap: 10px;
}

.logistics-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 18px;
}

.logistics-row > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--surface-soft);
  color: var(--structural);
  font-size: 12px;
  font-weight: 900;
}

.logistics-checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 28px;
}

.logistics-checklist-copy {
  max-width: 560px;
}

.logistics-checklist-copy p:last-child {
  color: var(--muted);
}

.logistics-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.logistics-checklist-grid div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  background: var(--surface-soft);
  padding: 14px;
}

.logistics-checklist-grid .material-symbols-outlined {
  color: var(--structural);
  font-size: 20px;
}

.logistics-checklist-grid p {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.logistics-process-rail {
  background: transparent;
}

.logistics-process-grid,
.logistics-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.logistics-process-card,
.logistics-signal-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 20px;
}

.logistics-process-card span {
  color: var(--structural);
  font-size: 12px;
  font-weight: 900;
}

.logistics-process-card h3,
.logistics-signal-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.logistics-process-card p,
.logistics-signal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.logistics-signal-grid article {
  background: #f2f7ef;
}

.logistics-signal-grid .material-symbols-outlined {
  color: var(--structural);
  font-size: 24px;
}

.logistics-doc-table th {
  background: #e7ede3;
}

.logistics-partner,
.logistics-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(61, 111, 94, 0.26);
  background: #e8efe5;
  padding: 28px;
}

.logistics-note {
  background: #f4eadb;
  border-color: rgba(160, 106, 34, 0.32);
}

.logistics-partner h2,
.logistics-note h2 {
  margin-bottom: 12px;
}

.logistics-partner p:last-child,
.logistics-note p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.route-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 28px;
}

.section + .route-bridge,
.route-bridge + .section {
  margin-top: 28px;
}

.route-bridge-logistics {
  background: #eef5ec;
}

.route-bridge-product {
  background: #f5f0e8;
}

.route-bridge-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.route-bridge-copy h2,
.route-bridge-copy p {
  margin: 0;
}

.route-bridge-copy p:last-child {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.6;
}

.route-bridge-links {
  display: grid;
  gap: 10px;
}

.route-bridge-links a {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(61, 111, 94, 0.22);
  background: rgba(253, 252, 247, 0.72);
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.route-bridge-links a:hover {
  border-color: rgba(11, 92, 255, 0.36);
  background: rgba(253, 252, 247, 0.96);
  transform: translateY(-1px);
}

.route-bridge-links span {
  font-weight: 900;
  line-height: 1.25;
}

.route-bridge-links small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.logistics-request {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 76px;
  border: 1px solid var(--line-soft);
  background: var(--navy);
  color: #f3f7ef;
  padding: 32px;
}

.logistics-request-copy {
  max-width: 560px;
}

.logistics-request-copy .eyebrow,
.logistics-request-copy p {
  color: #c9d7ee;
}

.logistics-form {
  border: 1px solid rgba(243, 247, 239, 0.16);
  background: #f8fbff;
  color: var(--ink);
  padding: 22px;
}

.logistics-footer {
  margin-top: 0;
  border-top: 4px solid var(--structural);
  background: var(--navy);
  color: #9fb0c7;
}

.logistics-footer-main {
  padding-top: 38px;
  padding-bottom: 28px;
}

.logistics-footer-lead {
  max-width: 740px;
  padding-bottom: 26px;
}

.logistics-footer-lead p {
  margin: 8px 0 0;
  color: #c9d7ee;
}

.logistics-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 0;
}

.logistics-form label,
.logistics-form .form-footnote {
  color: var(--muted);
}

.site-footer {
  margin-top: 0;
  background: var(--footer);
  border-top: 4px solid var(--amber);
  color: #9aa7af;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px var(--gutter) 44px;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px var(--gutter) 44px;
}

.footer-products {
  min-width: 0;
}

.footer-sitemap-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-sitemap-head strong {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-sitemap-head a {
  color: #d9e1e6;
  font-size: 12px;
  font-weight: 800;
}

.footer-sitemap-head a:hover {
  color: #fff;
}

.footer-products-grid {
  columns: 3 210px;
  column-gap: 26px;
}

.footer-product-group {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
}

.footer-product-group summary {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  cursor: default;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
}

.footer-product-group summary::-webkit-details-marker {
  display: none;
}

.footer-product-links {
  display: grid;
  gap: 7px;
}

.footer-product-links a {
  color: inherit;
  font-size: 12px;
  line-height: 1.35;
}

.footer-product-links a:hover,
.footer-product-links a.is-active {
  color: #fff;
}

.footer-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  align-content: start;
}

.footer-company {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 360px);
  justify-content: space-between;
  align-items: start;
  gap: 28px;
  padding: 34px var(--gutter) 28px;
}

.footer-company p {
  margin: 0;
}

.footer-contact-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.footer-contact-card strong {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-contact-card p {
  color: #b9c5cc;
  font-size: 12px;
  line-height: 1.45;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-contact-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-contact-links a:hover {
  color: #f1c27d;
}

.footer-title {
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-col-section {
  display: grid;
  gap: 7px;
}

.footer-col-section strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-col a {
  color: inherit;
  font-size: 12px;
  line-height: 1.35;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col a.is-active {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px var(--gutter);
  color: #9aa8b2;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover {
  color: #fff;
}

.legal-content {
  max-width: 980px;
}

.legal-content h2 {
  margin-top: 42px;
}

.legal-content h3 {
  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--structural);
  font-weight: 800;
  border-bottom: 1px solid rgba(63, 86, 99, 0.35);
}

.legal-content a:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 76;
  width: min(620px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23, 32, 38, 0.22);
  padding: 18px;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-banner a {
  color: var(--structural);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid rgba(63, 86, 99, 0.35);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 1500px) {
  .phone {
    display: none;
  }

  .site-search-trigger span:not(.material-symbols-outlined) {
    display: none;
  }

  .site-search-trigger {
    width: 38px;
    justify-content: center;
    padding: 8px;
  }
}

@media (max-width: 1240px) {
  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .header-inner,
  .header-actions {
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .header-actions > .button,
  .logistics-header-actions > .button {
    display: none;
  }

  .hero .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .catalog-panel {
    width: min(760px, 100vw);
    padding: 20px;
  }

  .catalog-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .direction-group-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero,
  .page-hero,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band.cta-band-simple {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-band.cta-band-simple .button {
    justify-self: start;
  }

  .page-hero:has(aside),
  .page-hero.logistics-hero {
    grid-template-columns: 1fr;
  }

  .page-hero:has(aside) > aside,
  .page-hero.logistics-hero > aside {
    width: 100%;
    min-width: 0;
  }

  .page-hero-workflow {
    gap: 28px;
  }

  .directions-hero {
    gap: 28px;
  }

  .cta-copy {
    max-width: none;
  }

  .cta-expectations div {
    grid-template-columns: 34px minmax(150px, 0.28fr) minmax(0, 1fr);
  }

  .priority-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .priority-item:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

  .category-group {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .detail-split,
  .request-route-grid {
    grid-template-columns: 1fr;
  }

  .process-proof {
    position: static;
  }

  .wizard-layout,
  .download-strip {
    grid-template-columns: 1fr;
  }

  .wizard-result {
    position: static;
  }

  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process.process-claims {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process .step:nth-child(3) {
    border-right: 0;
  }

  .process .step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line-soft);
  }

  .process.process-claims .step:nth-child(2) {
    border-right: 0;
  }

  .process.process-claims .step:nth-child(3) {
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
  }

  .nav-grid,
  .nav-grid-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-sitemap {
    grid-template-columns: 1fr;
  }

  .footer-products-grid {
    columns: 2 220px;
  }

  .calculator-strip {
    grid-template-columns: 1fr;
  }

  .calculator-link-grid {
    grid-template-columns: 1fr;
  }

  .logistics-hero,
  .logistics-checklist,
  .route-bridge,
  .logistics-request,
  .logistics-header-inner,
  .logistics-footer-lead {
    grid-template-columns: 1fr;
  }

  .logistics-process-grid,
  .logistics-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logistics-header-inner {
    gap: 12px;
    padding: 12px 0;
  }

  .logistics-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }

  .logistics-nav-menu-categories {
    left: 0;
    transform: translateY(-4px);
  }

  .logistics-nav-group:hover .logistics-nav-menu-categories,
  .logistics-nav-group:focus-within .logistics-nav-menu-categories {
    transform: translateY(0);
  }

  .logistics-header-actions {
    justify-content: space-between;
  }

  .logistics-route {
    grid-template-columns: 1fr;
  }

  .route-node {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .route-node:last-child {
    border-bottom: 0;
  }

  .logistics-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 18px;
  }

  .catalog-panel {
    width: 100vw;
    padding: 18px;
  }

  .catalog-tools,
  .catalog-link-grid {
    grid-template-columns: 1fr;
  }

  .catalog-all-link {
    white-space: normal;
  }

  .catalog-link span,
  .catalog-link small {
    white-space: normal;
  }

  .mobile-nav-toggle span:not(.material-symbols-outlined) {
    display: none;
  }

  .mobile-nav-toggle,
  .site-search-trigger {
    width: 38px;
    justify-content: center;
    padding: 8px;
  }

  h1 {
    font-size: 34px;
  }

  .page-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 22px;
  }

  .page-meta-home {
    align-items: flex-end;
  }

  .page-meta .page-updated {
    text-align: left;
  }

  .hero,
  .page-hero {
    padding-top: 34px;
    gap: 28px;
  }

  .signal-grid,
  .trust-evidence-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .spec-grid,
  .calculator-layout,
  .split,
  .field-grid,
  .footer-grid,
  .footer-sitemap,
  .footer-side-grid,
  .footer-company,
  .legal-details div {
    grid-template-columns: 1fr;
  }

  .footer-products-grid {
    columns: 1;
  }

  .footer-sitemap-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-product-group {
    margin-bottom: 12px;
  }

  .footer-product-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
  }

  .footer-product-group summary::after {
    content: "+";
    color: #d9e1e6;
    font-size: 14px;
    line-height: 1;
  }

  .footer-product-group[open] summary::after {
    content: "−";
  }

  .hero .signal-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero .signal {
    min-height: 0;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
  }

  .hero .check {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 11px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .category-card.is-priority {
    grid-column: auto;
  }

  .priority-catalog,
  .category-group .grid-3 {
    grid-template-columns: 1fr;
  }

  .priority-item:first-child {
    grid-column: auto;
  }

  .priority-item,
  .priority-item:first-child {
    min-height: 0;
  }

  .priority-item:first-child strong {
    font-size: 18px;
  }

  .category-group .category-card {
    padding: 12px;
  }

  .category-group .category-card p {
    -webkit-line-clamp: 1;
  }

  .category-group .tag-row {
    gap: 4px;
  }

  .category-group .tag {
    padding: 3px 5px;
    font-size: 9px;
  }

  .category-groups {
    gap: 28px;
  }

  .category-group-head {
    align-items: flex-start;
  }

  .mixed-spec-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .calculator-result {
    position: static;
  }

  .result-grid div {
    display: block;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process.process-claims {
    grid-template-columns: 1fr;
  }

  .process .step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 16px;
  }

  .process.process-claims .step,
  .process.process-claims .step:nth-child(2),
  .process.process-claims .step:nth-child(3) {
    border-right: 0;
  }

  .process.process-claims .step:nth-child(3) {
    border-bottom: 1px solid var(--line-soft);
  }

  .process .step:last-child {
    border-bottom: 0;
  }

  .process .step-number {
    margin-bottom: 14px;
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 16px;
  }

  .process-step p {
    grid-column: 2;
  }

  .process-rail::before {
    left: 31px;
  }

  .section-head {
    display: block;
  }

  .ai-answer-block,
  .quick-answer-block {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .ai-answer-main,
  .quick-answer-main {
    position: static;
  }

  .ai-answer-main h2,
  .quick-answer-main h2 {
    font-size: 23px;
  }

  .ai-answer-grid,
  .quick-answer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .cta-band {
    gap: 22px;
    padding: 24px;
  }

  .wizard-panel,
  .wizard-result,
  .download-strip,
  .case-row {
    padding: 18px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-copy h2 {
    font-size: 26px;
  }

  .cta-copy > .muted {
    margin-bottom: 18px;
  }

  .cta-expectations div {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 13px 0;
  }

  .cta-expectations p {
    grid-column: 2;
  }

  .cta-note {
    margin-top: 16px;
    font-size: 12px;
  }

  .product-price-card {
    grid-template-columns: 1fr;
  }

  .product-price-card strong {
    font-size: 32px;
  }

  .cookie-banner {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px 12px;
  }

  .cookie-banner strong {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .cookie-banner p {
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.3;
  }

  .cookie-banner a {
    font-size: 11px;
  }

  .cookie-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.62fr);
  }

  .cookie-actions .button,
  .cookie-actions .button-secondary {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .site-search-overlay {
    align-items: stretch;
    padding: 72px 12px 12px;
  }

  .site-search-panel {
    max-height: calc(100vh - 84px);
    padding: 18px;
  }

  .site-search-field input {
    font-size: 15px;
  }

  .logistics-hero-board,
  .logistics-checklist,
  .route-bridge,
  .logistics-partner,
  .logistics-note,
  .logistics-request {
    padding: 18px;
  }

  .logistics-service-list,
  .logistics-nav-grid,
  .work-mode-grid,
  .logistics-process-grid,
  .logistics-signal-grid,
  .logistics-checklist-grid,
  .logistics-partner,
  .logistics-note,
  .logistics-footer-grid {
    grid-template-columns: 1fr;
  }

  .logistics-service,
  .logistics-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .logistics-row > span {
    width: 38px;
    height: 38px;
  }

  .logistics-request {
    margin-bottom: 48px;
  }
}
