:root {
  --navy: #063866;
  --navy-dark: #042f58;
  --navy-soft: #174f7d;
  --orange: #ff6500;
  --orange-dark: #de5200;
  --ink: #052f58;
  --text: #303640;
  --muted: #68717d;
  --line: #e6ebef;
  --panel: #f5f7f9;
  --white: #ffffff;
  --domain-primary: #063866;
  --domain-accent: #ff6500;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--text);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--text);
}

ul,
ol {
  margin: 0;
  padding-left: 1.3rem;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  font-size: 1.08rem;
  line-height: 1.25;
}

.header-stack {
  display: grid;
  justify-items: end;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-cta,
.mobile-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.header-cta,
.mobile-cta {
  background: var(--orange);
  border-color: var(--orange);
}

.desktop-nav a {
  color: #d8e7f3;
  text-decoration: none;
  font-size: 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  min-height: 44px;
  min-width: 64px;
  padding: 0 14px;
  border: 2px solid var(--orange);
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.mobile-panel-title {
  font-weight: 800;
  margin-bottom: 12px;
}

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

.mobile-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.mobile-cta {
  margin-top: 12px;
  width: 100%;
}

.service-rail {
  min-height: 74px;
  padding: 14px max(24px, calc((100% - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.service-rail span {
  padding: 0 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.78);
}

.service-rail span:last-child {
  border-right: 0;
}

.hero,
.page-text-hero {
  position: relative;
}

.logistics-hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  object-fit: cover;
}

.hero-panel {
  position: relative;
  width: min(460px, calc(100% - 40px));
  margin-left: max(24px, calc((100% - 1120px) / 2));
  padding: 30px;
  background: rgba(6, 56, 102, 0.86);
  color: var(--white);
}

.hero-panel h1 {
  color: var(--orange);
  font-size: 2.35rem;
  margin-top: 10px;
}

.hero-panel p {
  color: #eef6fb;
}

.hero-panel > p:last-of-type {
  margin-top: 18px;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: none;
}

.eyebrow.light {
  color: #f3f8fb;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.btn-light {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.statement-strip {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 28px;
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 28px;
}

.statement-rule {
  background: var(--orange);
}

.statement-strip h2 {
  font-size: 2rem;
  margin: 8px 0 12px;
}

.proof-circles {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.proof-circles article {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.proof-circles strong {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 1.55rem;
}

.proof-copy {
  min-width: 0;
}

.proof-copy h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.proof-copy p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.home-brief,
.cost-question,
.about-position,
.contact-plan {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
}

.home-brief-main h2,
.cost-question h2,
.about-position h2,
.about-standard h2,
.section-head h2 {
  font-size: 2rem;
  margin-top: 10px;
}

.home-brief-main p:last-child,
.quality-head p {
  margin-top: 14px;
}

.home-brief-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.home-brief-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.home-brief-list span {
  color: var(--orange);
  font-weight: 900;
}

.home-brief-list h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.home-brief-list p {
  color: var(--muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-left: 3px solid var(--orange);
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
}

.dark-service-slab {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 390px;
  background: var(--navy);
  color: var(--white);
}

.slab-copy {
  padding: 58px max(24px, calc((100vw - 1120px) / 2)) 58px max(24px, calc((100vw - 1120px) / 2));
}

.slab-copy h2 {
  color: var(--white);
  font-size: 2.1rem;
  margin: 10px 0 18px;
}

.slab-copy p {
  color: #dce9f2;
}

.slab-lanes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.slab-lanes article {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.slab-lanes span,
.process-row span,
.values-grid span,
.service-lane .lane-mark {
  color: var(--orange);
  font-weight: 900;
}

.slab-lanes h3 {
  color: var(--white);
  margin: 10px 0 12px;
}

.slab-lanes p {
  color: #dce9f2;
}

.section-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  border: 1px solid var(--line);
  background: var(--white);
  min-width: 0;
}

.article-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 24px;
}

.article-body time {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.article-body h3 a {
  text-decoration: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 70px max(24px, calc((100% - 1120px) / 2));
  background: linear-gradient(110deg, var(--navy), var(--orange));
  color: var(--white);
}

.cta-panel h2 {
  color: var(--white);
  font-size: 2rem;
  margin: 8px 0 12px;
}

.cta-panel p {
  color: #eef6fb;
}

.page-text-hero {
  padding: 78px max(24px, calc((100% - 1120px) / 2));
  background: var(--navy);
  color: var(--white);
}

.page-title-slab {
  position: relative;
  width: min(720px, 100%);
  padding: 0;
  background: transparent;
  color: var(--white);
}

.page-title-slab h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin: 8px 0 12px;
}

.page-title-slab p {
  color: #eef6fb;
}

.breadcrumbs {
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumbs li + li::before {
  content: "/";
  margin: 0 9px;
  color: currentColor;
  opacity: 0.58;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  opacity: 0.84;
}

.breadcrumbs li:last-child a {
  opacity: 1;
}

.cost-question {
  align-items: start;
}

.cost-question h2 {
  color: var(--orange);
}

.service-process {
  padding-bottom: 40px;
}

.process-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  gap: 28px;
}

.process-row > div {
  padding: 0;
}

.process-row:nth-child(even) > div {
  padding: 0;
}

.process-row h2 {
  font-size: 1.55rem;
  margin: 0 0 10px;
}

.process-row > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 1.1rem;
}

.fit-row {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 76px;
  text-align: left;
}

.fit-row h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-align: center;
}

.fit-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--muted);
  text-align: center;
}

.fit-row > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fit-row article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px 16px;
  align-items: start;
  padding-top: 22px;
  border-top: 4px solid var(--orange);
}

.fit-row span {
  grid-row: span 2;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}

.fit-row h3 {
  font-size: 1.12rem;
}

.fit-row p {
  color: var(--muted);
}

.about-text-hero .page-title-slab {
  max-width: 760px;
}

.about-position {
  align-items: start;
}

.about-profile p:last-child {
  margin-top: 14px;
}

.about-scope-list {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 0;
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--line);
}

.about-scope-list .eyebrow {
  margin-bottom: 4px;
}

.about-scope-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.about-scope-list article span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 900;
}

.about-scope-list h3 {
  font-size: 1.08rem;
}

.about-scope-list p {
  color: var(--muted);
}

.about-standard {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  width: auto;
  margin: 0;
}

.values-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.service-lane {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.lane-mark {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.service-lane h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.resource-hero,
.contact-hero,
.legal-hero,
.not-found {
  padding: 82px max(24px, calc((100% - 1120px) / 2));
  background: var(--navy);
  color: var(--white);
}

.resource-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: end;
}

.resource-hero h1,
.contact-hero h1,
.legal-hero h1,
.not-found h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin: 10px 0 16px;
}

.resource-hero p,
.contact-hero p,
.legal-hero p,
.not-found p {
  color: #e5f0f7;
}

.resource-strip {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.resource-strip span {
  color: var(--white);
  font-weight: 800;
}

.blog-contact-band {
  margin: 0 auto 90px;
  width: min(1120px, calc(100% - 40px));
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
}

.blog-contact-band h2 {
  color: var(--white);
  margin: 8px 0 10px;
}

.blog-contact-band p {
  color: #e5f0f7;
}

.article-detail {
  background: var(--white);
}

.article-header {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 32px;
}

.article-header h1 {
  font-size: 2.35rem;
  margin: 10px 0 16px;
}

.article-hero-image {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--panel);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 72px;
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.keypoints {
  box-shadow: inset 4px 0 0 var(--orange);
  padding: 18px 0 18px 18px;
}

.keypoints {
  align-self: start;
  position: sticky;
  top: 20px;
}

.keypoints h2,
.article-aux h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.keypoints a,
.article-aux a {
  color: var(--ink);
}

.article-aux {
  grid-column: 2;
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.article-aux-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: #fff;
}

.article-aux-block + .article-aux-block {
  border-left-color: var(--navy);
}

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

.article-aux-block a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.article-aux-block a::after {
  content: ">";
  color: var(--orange);
}

.article-content {
  display: grid;
  gap: 34px;
}

.article-content h2 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.article-content p + p {
  margin-top: 12px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: end;
}

.contact-facts {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.contact-facts a,
.contact-facts span {
  color: var(--white);
}

.contact-plan {
  align-items: start;
}

.contact-intro-copy h2,
.contact-method-head h2 {
  font-size: 2rem;
  margin: 10px 0 14px;
}

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

.contact-checklist article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-checklist span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 900;
}

.contact-checklist h3,
.contact-method-grid h3 {
  font-size: 1.16rem;
}

.contact-checklist p {
  color: var(--muted);
}

.contact-methods {
  padding-top: 24px;
}

.contact-method-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-method-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-method-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 900;
}

.contact-method-grid h3 {
  margin-bottom: 10px;
}

.contact-method-grid p,
.contact-method-grid a {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-body {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 92px;
  display: grid;
  gap: 28px;
}

.policy-panel {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-panel span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.policy-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.policy-panel p + p {
  margin-top: 12px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.sitemap-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: start;
}

.sitemap-intro {
  padding-top: 8px;
  border-top: 4px solid var(--orange);
}

.sitemap-intro h2 {
  font-size: 1.75rem;
  margin: 10px 0 14px;
}

.sitemap-panel {
  border-top: 4px solid var(--navy);
}

.sitemap-grid h2 {
  margin-bottom: 16px;
  padding-top: 18px;
}

.sitemap-grid ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.sitemap-grid li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.not-found {
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: 60px;
  align-items: center;
}

.not-found-routes {
  display: grid;
  gap: 12px;
}

.not-found-routes a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.not-found-routes span {
  color: var(--orange);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 36px;
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 1.2fr) minmax(280px, 1fr);
  gap: 46px;
  align-items: start;
}

.footer-brand strong,
.footer-links h2,
.footer-contact h2 {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-contact span {
  color: #d9e8f2;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  font-size: 1.18rem;
  margin-bottom: 0;
}

.footer-brand p {
  max-width: 390px;
}

.footer-contact address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
  color: #d9e8f2;
}

.footer-legal {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #d9e8f2;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .header-stack,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .service-rail {
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 20px;
  }

  .service-rail span {
    border: 1px solid rgba(255, 255, 255, 0.65);
    padding: 6px 10px;
    font-size: 0.88rem;
  }

  .logistics-hero {
    min-height: 560px;
    align-items: end;
    padding: 28px 0;
  }

  .hero-panel {
    margin: 0 auto;
  }

  .home-brief,
  .cost-question,
  .about-position,
  .about-standard,
  .contact-plan,
  .dark-service-slab,
  .resource-hero,
  .contact-hero,
  .article-shell,
  .sitemap-shell,
  .not-found,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-brief,
  .cost-question,
  .about-position,
  .about-standard,
  .contact-plan {
    gap: 30px;
  }

  .proof-circles,
  .article-grid,
  .fit-row > div,
  .values-grid,
  .contact-checklist,
  .contact-method-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .slab-lanes {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .process-row,
  .process-row:nth-child(even) {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }

  .process-row > div,
  .process-row:nth-child(even) > div {
    padding: 0;
  }

  .keypoints {
    position: static;
  }

  .cta-panel,
  .blog-contact-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .article-aux {
    grid-column: 1;
  }

  .footer-inner {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section,
  .statement-strip,
  .proof-circles,
  .fit-row,
  .values-grid,
  .contact-methods,
  .legal-body,
  .sitemap-grid,
  .article-header,
  .article-hero-image,
  .article-shell,
  .footer-inner,
  .footer-legal,
  .blog-contact-band {
    width: calc(100% - 32px);
  }

  .hero-panel {
    width: calc(100% - 32px);
    padding: 22px;
  }

  .hero-panel h1,
  .resource-hero h1,
  .contact-hero h1,
  .legal-hero h1,
  .not-found h1 {
    font-size: 1.86rem;
  }

  .page-title-slab h1,
  .statement-strip h2,
  .home-brief-main h2,
  .cost-question h2,
  .about-position h2,
  .about-standard h2,
  .contact-intro-copy h2,
  .contact-method-head h2,
  .section-head h2,
  .process-row h2,
  .cta-panel h2 {
    font-size: 1.58rem;
  }

  .proof-circles {
    gap: 28px;
  }

  .proof-circles strong {
    width: 104px;
    height: 104px;
    font-size: 1.6rem;
  }

  .policy-panel {
    grid-template-columns: 1fr;
  }

  .proof-circles article,
  .contact-checklist article,
  .fit-row article {
    grid-template-columns: 1fr;
  }

  .sitemap-grid li {
    display: grid;
  }
}
