/* Port Services page: a service-led extension of the existing Longgong Port visual system. */

.services-hero {
  position: relative;
  min-height: 540px;
  height: min(600px, 65vh);
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.services-hero-media,
.services-hero-media picture,
.services-hero-media img,
.services-hero-scrim,
.services-hero-grid {
  position: absolute;
  inset: 0;
}

.services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.78) contrast(1.1);
  animation: hero-image-in 1.3s var(--ease) both;
}

.services-hero-scrim {
  background: linear-gradient(90deg, rgba(5, 29, 59, .97) 0%, rgba(6, 37, 75, .87) 35%, rgba(6, 37, 75, .42) 71%, rgba(6, 37, 75, .2) 100%), linear-gradient(0deg, rgba(4, 22, 45, .8), transparent 58%);
}

.services-hero-grid {
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 57px;
  padding-bottom: 91px;
}

.services-hero-copy {
  max-width: 745px;
}

.services-hero-copy h1 {
  margin: 0 0 11px;
  color: var(--paper);
  font-size: clamp(54px, 6.35vw, 91px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.services-hero-copy h2 {
  margin: 0 0 18px;
  color: #88c5fc;
  font-size: clamp(25px, 2.65vw, 39px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.25;
}

.services-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  line-height: 1.9;
}

.services-hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  margin-top: 34px;
  color: rgba(255,255,255,.62);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-align: right;
}

.services-hero-meta i {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--orange);
}

.services-hero-meta strong {
  color: rgba(255,255,255,.47);
  font-size: 8px;
  line-height: 1.8;
}

.services-hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.services-hero-bottom small {
  margin-left: auto;
  color: rgba(255,255,255,.38);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.services-hero-signal {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5.55vw, 80px);
  bottom: 111px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.46);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.services-hero-signal span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(233,104,50,.12);
}

.services-hero-signal span:nth-child(2) { opacity: .58; }
.services-hero-signal span:nth-child(3) { opacity: .28; }

/* Service anchor navigation */
.service-anchor-nav {
  position: sticky;
  z-index: 12;
  top: 84px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11,46,89,.04);
  backdrop-filter: blur(14px);
}

.service-anchor-nav-inner {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.service-anchor-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 78px;
  padding: 14px 14px 12px 0;
  border-right: 1px solid var(--line);
  color: #8b9db0;
  transition: color .25s ease, background-color .3s ease, padding .3s var(--ease);
}

.service-anchor-nav a:not(:first-child) {
  padding-left: 14px;
}

.service-anchor-nav a:last-child {
  border-right: 0;
}

.service-anchor-nav a::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.service-anchor-nav a:hover,
.service-anchor-nav a.is-active {
  color: var(--blue-deep);
  background: rgba(237,245,252,.66);
}

.service-anchor-nav a:hover::after,
.service-anchor-nav a.is-active::after {
  transform: scaleX(1);
}

.service-anchor-nav a > span {
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-anchor-nav strong {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

#multimodal-service,
#solution-service,
#customs-service,
#trade-train-service,
#cold-chain-service,
#transport-service,
#supply-service {
  scroll-margin-top: 175px;
}

/* Overview */
.service-overview {
  overflow: hidden;
  background: var(--paper);
}

.service-overview::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 37%;
  height: 100%;
  opacity: .42;
  background-image: linear-gradient(rgba(18,86,160,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(18,86,160,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.service-overview .container {
  position: relative;
  z-index: 1;
}

.service-overview .section-heading {
  margin-bottom: 51px;
}

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

.service-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 406px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s ease, box-shadow .35s var(--ease), transform .35s var(--ease);
}

.service-overview-card:nth-child(-n+4) {
  grid-column: span 3;
}

.service-overview-card:nth-child(n+5) {
  grid-column: span 4;
}

.service-overview-card:hover {
  border-color: rgba(38,132,232,.46);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card-media {
  position: relative;
  height: 166px;
  overflow: hidden;
  background: var(--blue-deep);
}

.service-card-media picture,
.service-card-media img,
.service-card-shade {
  position: absolute;
  inset: 0;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.05);
  transition: transform .7s var(--ease), filter .4s ease;
}

.service-overview-card:hover .service-card-media img {
  transform: scale(1.06);
  filter: saturate(.95) contrast(1.05);
}

.service-card-shade {
  background: linear-gradient(180deg, rgba(5,29,59,.08), rgba(5,29,59,.63));
}

.service-card-media-tag,
.service-image-label {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 18px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-card-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 20px 18px;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--blue);
  background: var(--mist-blue);
  transition: color .3s ease, background-color .3s ease, transform .3s var(--ease);
}

.service-card-icon .icon {
  width: 20px;
  height: 20px;
}

.service-overview-card:hover .service-card-icon {
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  transform: rotate(-4deg);
}

.service-card-number {
  color: #a2b3c4;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.service-card-body h3 {
  max-width: 260px;
  margin: 17px 0 7px;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.4;
}

.service-card-body p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  transition: color .25s ease, gap .3s var(--ease);
}

.service-card-link .icon {
  width: 16px;
  height: 16px;
}

.service-overview-card:hover .service-card-link {
  gap: 13px;
  color: var(--orange);
}

/* Shared service visual helpers */
.service-image-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,29,59,.88), rgba(5,29,59,.29) 72%), linear-gradient(0deg, rgba(5,29,59,.82), transparent 63%);
}


.section-number-dark,
.section-number {
  display: block;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.section-number-dark {
  color: var(--orange-soft);
}

.service-module-lead {
  max-width: 525px;
  margin: 0 0 11px;
  color: rgba(255,255,255,.61);
  font-size: 14px;
  line-height: 1.9;
}

.service-terminology-note {
  max-width: 510px;
  margin: 0 0 25px;
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.34);
  color: rgba(255,255,255,.38);
  font-size: 10px;
  line-height: 1.7;
}

.service-benefit-list {
  max-width: 530px;
  margin-bottom: 29px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.service-benefit-list article {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.service-benefit-list article > span {
  padding-top: 2px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
}

.service-benefit-list strong,
.service-benefit-list small {
  display: block;
}

.service-benefit-list strong {
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.service-benefit-list small {
  margin-top: 2px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.65;
}

/* 01 / Multimodal */
.multimodal-service-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.multimodal-service-section::before {
  position: absolute;
  top: -190px;
  right: -85px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(125,188,251,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(125,188,251,.025), 0 0 0 150px rgba(125,188,251,.025);
  content: "";
  pointer-events: none;
}

.multimodal-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.multimodal-service-visual {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  background: var(--blue);
}

.multimodal-service-visual > picture,
.multimodal-service-visual > picture > img {
  position: absolute;
  inset: 0;
}

.multimodal-service-visual > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.1);
  transition: transform .9s var(--ease);
}

.multimodal-service-visual:hover > picture > img {
  transform: scale(1.035);
}

.multimodal-route-board {
  position: absolute;
  z-index: 3;
  right: 23px;
  bottom: 48px;
  left: 23px;
  padding: 18px 17px 16px;
  border: 1px solid rgba(125,188,251,.32);
  background: rgba(6,31,64,.79);
  backdrop-filter: blur(10px);
}

.multimodal-route-board > span {
  display: block;
  margin-bottom: 15px;
  color: rgba(255,255,255,.54);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.multimodal-route-line {
  position: absolute;
  top: 72px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.25s .15s var(--ease);
}

.multimodal-service-visual.is-visible .multimodal-route-line,
.multimodal-service-visual:hover .multimodal-route-line {
  transform: scaleX(1);
}

.multimodal-route-nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.multimodal-route-nodes i {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #8bc4fb;
  font-style: normal;
  text-align: center;
}

.multimodal-route-nodes i::before {
  position: absolute;
  top: 16px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue-deep);
  border-radius: 50%;
  background: #8bc4fb;
  content: "";
}

.multimodal-route-nodes i.is-core {
  color: var(--orange-soft);
}

.multimodal-route-nodes i.is-core::before {
  background: var(--orange);
}

.multimodal-route-nodes .icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid rgba(125,188,251,.6);
  border-radius: 50%;
  background: rgba(11,46,89,.88);
}

.multimodal-route-nodes i.is-core .icon {
  border-color: var(--orange);
  background: rgba(233,104,50,.16);
}

.multimodal-route-nodes b {
  color: inherit;
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.multimodal-service-copy {
  position: relative;
  z-index: 1;
}

.multimodal-service-copy h2 {
  margin: 11px 0 21px;
  color: var(--paper);
}

.multimodal-service-copy .button {
  min-height: 47px;
  font-size: 12px;
}

/* 02 / Solution */
.solution-service-section {
  overflow: hidden;
  background: var(--mist-blue);
}

.solution-service-layout {
  display: grid;
  grid-template-columns: minmax(0, .73fr) minmax(0, 1.27fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.solution-service-copy h2 {
  margin: 11px 0 21px;
}

.solution-service-copy .section-lead {
  max-width: 430px;
  margin-bottom: 18px;
}

.solution-note {
  max-width: 410px;
  margin: 0 0 28px;
  padding-left: 13px;
  border-left: 2px solid var(--orange);
  color: #8496aa;
  font-size: 11px;
  line-height: 1.75;
}

.solution-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  min-height: 306px;
  padding: 31px 0 5px;
  border-top: 1px solid #cbddea;
  border-bottom: 1px solid #cbddea;
}

.solution-process-line {
  position: absolute;
  top: 70px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
}

.solution-process article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.js .solution-process article {
  opacity: 0;
  transform: translateY(12px);
}

.js .solution-process.is-visible article {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s var(--ease);
}

.js .solution-process.is-visible article:nth-of-type(2) { transition-delay: .08s; }
.js .solution-process.is-visible article:nth-of-type(3) { transition-delay: .16s; }
.js .solution-process.is-visible article:nth-of-type(4) { transition-delay: .24s; }
.js .solution-process.is-visible article:nth-of-type(5) { transition-delay: .32s; }
.js .solution-process.is-visible article:nth-of-type(6) { transition-delay: .4s; }

.solution-process article > span {
  align-self: flex-start;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.solution-process article > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  margin-top: 13px;
  border: 1px solid #a9c9e3;
  border-radius: 50%;
  color: var(--blue);
  background: var(--mist-blue);
  box-shadow: 0 0 0 8px var(--mist-blue);
  font-style: normal;
}

.solution-process article > i .icon {
  width: 21px;
  height: 21px;
}

.solution-process strong,
.solution-process small {
  display: block;
}

.solution-process strong {
  max-width: 112px;
  margin-top: 19px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
}

.solution-process small {
  max-width: 116px;
  margin-top: 7px;
  color: #8a9db1;
  font-size: 9px;
  line-height: 1.55;
}

/* 03 / Customs */
.customs-service-section {
  overflow: hidden;
  background: var(--paper);
}

.customs-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.customs-service-visual {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background: var(--blue-deep);
}

.customs-service-visual picture,
.customs-service-visual img {
  position: absolute;
  inset: 0;
}

.customs-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.1);
  transition: transform .9s var(--ease);
}

.customs-service-visual:hover img {
  transform: scale(1.035);
}

.customs-facility-stack {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 25px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.customs-facility-stack span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.78);
  background: rgba(11,46,89,.7);
  font-size: 10px;
  backdrop-filter: blur(9px);
}

.customs-service-copy h2 {
  margin: 11px 0 20px;
}

.customs-service-copy .section-lead {
  max-width: 535px;
  margin-bottom: 24px;
}

.customs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customs-steps article {
  min-height: 100px;
  padding: 16px 12px 14px 0;
  border-right: 1px solid var(--line);
}

.customs-steps article:not(:first-child) {
  padding-left: 12px;
}

.customs-steps article:last-child {
  border-right: 0;
}

.customs-steps span,
.customs-steps strong,
.customs-steps small {
  display: block;
}

.customs-steps span {
  margin-bottom: 11px;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
}

.customs-steps strong {
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.customs-steps small {
  margin-top: 4px;
  color: #9aacc0;
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.customs-area-count {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 16px;
}

.customs-area-count strong {
  color: var(--blue-deep);
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .9;
}

.customs-area-count > span {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.customs-area-count small {
  margin: 0 0 4px 8px;
  color: var(--muted);
  font-size: 10px;
}

.customs-note {
  max-width: 500px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

/* 04 / Foreign trade train */
.trade-train-service-section {
  overflow: hidden;
  background: var(--mist);
}

.trade-train-service-layout {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.trade-train-service-copy h2 {
  margin: 11px 0 21px;
}

.trade-train-service-copy .section-lead {
  max-width: 555px;
  margin-bottom: 25px;
}

.trade-train-route {
  display: flex;
  align-items: center;
  max-width: 610px;
  padding: 19px 0 18px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trade-train-route article {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
}

.trade-train-route article > span {
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
}

.trade-train-route article strong,
.trade-train-route article small {
  display: block;
}

.trade-train-route article strong {
  margin-top: 10px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.trade-train-route article small {
  margin-top: 4px;
  color: #9aacc0;
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.trade-train-route > i {
  display: block;
  flex: 0 0 22px;
  height: 1px;
  margin: 22px 7px 0;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  font-style: normal;
}

.trade-train-route article.is-core strong {
  color: var(--orange);
}

.trade-train-cooperation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 18px;
  color: #8496a9;
  font-size: 10px;
  line-height: 1.6;
}

.trade-train-cooperation small {
  color: #a2afbd;
  font-size: 9px;
}

.trade-train-service-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--blue-deep);
}

.trade-train-service-visual picture,
.trade-train-service-visual img,
.trade-train-visual-overlay,
.train-scan-lines {
  position: absolute;
  inset: 0;
}

.trade-train-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.1);
  transition: transform .9s var(--ease);
}

.trade-train-service-visual:hover img {
  transform: scale(1.035);
}

.trade-train-visual-overlay {
  background: linear-gradient(90deg, rgba(5,29,59,.9), rgba(5,29,59,.26) 74%), linear-gradient(0deg, rgba(5,29,59,.8), transparent 59%);
}

.train-scan-lines {
  opacity: .28;
  background: repeating-linear-gradient(0deg, transparent 0 42px, rgba(125,188,251,.35) 43px, transparent 44px);
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.trade-train-visual-panel {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 16px;
  border-left: 2px solid var(--orange);
  color: rgba(255,255,255,.68);
  background: rgba(11,46,89,.68);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.trade-train-visual-panel strong {
  color: var(--orange-soft);
  font-size: 13px;
  letter-spacing: .08em;
}

.trade-train-visual-panel small {
  color: rgba(255,255,255,.52);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .03em;
}

.trade-cost-reference {
  display: grid;
  grid-template-columns: .73fr 1.27fr;
  align-items: center;
  gap: 34px;
  margin-top: 24px;
  padding: 21px 26px;
  border: 1px solid rgba(233,104,50,.25);
  background: linear-gradient(100deg, #fff7f1, var(--paper));
}

.trade-cost-reference > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.trade-cost-reference > div > span,
.trade-cost-reference > div > small {
  flex-basis: 100%;
}

.trade-cost-reference > div > span {
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.trade-cost-reference strong {
  color: var(--blue-deep);
  font-family: var(--font-sans);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: 1;
}

.trade-cost-reference > div > small {
  color: var(--muted);
  font-size: 10px;
}

.trade-cost-reference > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.trade-cost-reference > span {
  grid-column: 2;
  margin-top: -17px;
  color: #9faebb;
  font-size: 9px;
}

/* 05 / Cold chain */
.cold-chain-service-section {
  overflow: hidden;
  background: #eaf5fc;
}

.cold-chain-service-section::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(38,132,232,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(38,132,232,.025), 0 0 0 140px rgba(38,132,232,.025);
  content: "";
  pointer-events: none;
}

.cold-chain-service-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.cold-chain-service-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #b8dcef;
}

.cold-chain-service-visual picture,
.cold-chain-service-visual img,
.cold-chain-overlay,
.cold-chain-visual-lines {
  position: absolute;
  inset: 0;
}

.cold-chain-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.62) hue-rotate(8deg) contrast(1.08);
  transition: transform .9s var(--ease);
}

.cold-chain-service-visual:hover img {
  transform: scale(1.035);
}

.cold-chain-overlay {
  background: linear-gradient(90deg, rgba(6,49,82,.78), rgba(20,110,163,.18) 75%), linear-gradient(0deg, rgba(6,49,82,.76), transparent 62%);
}

.cold-chain-visual-stamp {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.45);
  color: var(--paper);
  background: rgba(9,77,119,.54);
  backdrop-filter: blur(8px);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.cold-chain-visual-stamp .icon {
  width: 17px;
  height: 17px;
  color: #c8edff;
}

.cold-chain-visual-lines {
  z-index: 2;
  opacity: .35;
  background-image: linear-gradient(115deg, transparent 0 57%, rgba(255,255,255,.34) 57.1%, transparent 57.3%), linear-gradient(115deg, transparent 0 67%, rgba(255,255,255,.25) 67.1%, transparent 67.3%);
}

.cold-chain-service-copy h2 {
  margin: 11px 0 21px;
}

.cold-chain-service-copy .section-lead {
  max-width: 530px;
  margin-bottom: 25px;
}

.cold-chain-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 14px;
  margin-bottom: 26px;
}

.cold-chain-stats article {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 6px;
  padding: 17px 17px 14px;
  border: 1px solid #c4dfef;
  background: rgba(255,255,255,.57);
}

.cold-chain-stats strong {
  color: #0d5e8f;
  font-family: var(--font-sans);
  font-size: 39px;
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: .9;
}

.cold-chain-stats span {
  color: #3680a7;
  font-size: 12px;
  font-weight: 800;
}

.cold-chain-stats small {
  grid-column: 1 / -1;
  margin-top: 9px;
  color: #628aa1;
  font-size: 10px;
  line-height: 1.45;
}

.cold-chain-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 530px;
  margin-bottom: 26px;
}

.cold-chain-service-list span {
  padding: 7px 10px;
  border: 1px solid #b9d9ea;
  color: #387596;
  background: rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 700;
}

.cold-chain-date {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 15px;
  border-top: 1px solid #c3ddea;
}

.cold-chain-date strong {
  color: #0d5e8f;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.cold-chain-date span {
  color: #6f8da1;
  font-size: 10px;
  line-height: 1.6;
}

/* 06 / Vehicle, vessel, container */
.transport-service-section {
  overflow: hidden;
  background: var(--paper);
}

.transport-service-section .section-heading {
  margin-bottom: 48px;
}

.transport-service-section .section-heading h2,
.supply-service-section .section-heading h2 {
  margin-bottom: 0;
}

.transport-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.transport-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s ease, box-shadow .35s var(--ease), transform .35s var(--ease);
}

.transport-service-card:hover {
  border-color: rgba(38,132,232,.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.transport-card-media {
  position: relative;
  height: 218px;
  overflow: hidden;
  background: var(--blue-deep);
}

.transport-card-media picture,
.transport-card-media img,
.transport-card-media > div:not(.image-slot) {
  position: absolute;
  inset: 0;
}

.transport-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.07);
  transition: transform .7s var(--ease);
}

.transport-service-card:hover .transport-card-media img {
  transform: scale(1.06);
}

.transport-card-media > div:not(.image-slot) {
  background: linear-gradient(0deg, rgba(5,29,59,.82), rgba(5,29,59,.04) 68%);
}

.transport-card-media > span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 19px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.transport-card-content {
  position: relative;
  padding: 21px 22px 23px;
}

.transport-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: -42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 11px;
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 5px 15px rgba(11,46,89,.15);
  transition: background-color .3s ease, transform .3s var(--ease);
}

.transport-card-icon .icon {
  width: 21px;
  height: 21px;
}

.transport-service-card:hover .transport-card-icon {
  background: var(--orange);
  transform: translateY(-3px) rotate(-4deg);
}

.transport-card-content h3 {
  margin: 17px 0 7px;
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.transport-card-content > p {
  max-width: 310px;
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.transport-card-context {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.transport-card-context strong {
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .95;
}

.transport-card-context span {
  max-width: 180px;
  color: #8b9daf;
  font-size: 9px;
  line-height: 1.45;
}

.transport-service-note,
.supply-service-note,
.cargo-types-note {
  color: #9aaabd;
  font-size: 10px;
  line-height: 1.7;
}

.transport-service-note {
  margin: 18px 0 0;
  text-align: right;
}

/* 07 / Supply chain */
.supply-service-section {
  overflow: hidden;
  background: var(--mist-blue);
}

.supply-service-section .section-heading {
  margin-bottom: 49px;
}

.supply-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.supply-service-card {
  overflow: hidden;
  border: 1px solid #d4e3ef;
  background: var(--paper);
  transition: border-color .3s ease, box-shadow .35s var(--ease), transform .35s var(--ease);
}

.supply-service-card:hover {
  border-color: rgba(38,132,232,.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.supply-card-media {
  position: relative;
  height: 181px;
  overflow: hidden;
  background: var(--blue-deep);
}

.supply-card-media picture,
.supply-card-media img,
.supply-card-media > div:not(.image-slot) {
  position: absolute;
  inset: 0;
}

.supply-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.06);
  transition: transform .7s var(--ease);
}

.supply-service-card:hover .supply-card-media img {
  transform: scale(1.06);
}

.supply-card-media > div:not(.image-slot) {
  background: linear-gradient(0deg, rgba(5,29,59,.77), rgba(5,29,59,.03) 70%);
}

.supply-card-media > span {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 18px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.supply-card-content {
  padding: 22px 21px 24px;
}

.supply-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  color: var(--blue);
  background: var(--mist-blue);
}

.supply-card-icon .icon {
  width: 20px;
  height: 20px;
}

.supply-card-content h3 {
  margin: 16px 0 7px;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.45;
}

.supply-card-content p {
  min-height: 56px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.supply-service-note {
  margin: 19px 0 0;
}

/* Service process */
.service-process-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.service-process-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  opacity: .2;
  background-image: linear-gradient(rgba(129,194,255,.33) 1px, transparent 1px), linear-gradient(90deg, rgba(129,194,255,.33) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}

.service-process-section .container {
  position: relative;
  z-index: 1;
}

.service-process-heading {
  max-width: 680px;
  margin-bottom: 58px;
}

.service-process-heading h2 {
  margin-bottom: 20px;
  color: var(--paper);
}

.service-process-heading > p:last-child {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: 14px;
  line-height: 1.9;
}

.service-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 25px;
  border-top: 1px solid rgba(125,188,251,.25);
  border-bottom: 1px solid rgba(125,188,251,.25);
}

.service-process-track::before,
.service-process-progress {
  position: absolute;
  z-index: 0;
  top: 72px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
}

.service-process-track::before {
  background: rgba(125,188,251,.25);
}

.service-process-progress {
  right: auto;
  width: 82%;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.35s .18s var(--ease);
}

.service-process-track.is-visible .service-process-progress {
  transform: scaleX(1);
}

.service-process-track article {
  position: relative;
  z-index: 1;
  min-height: 242px;
  padding: 0 22px 21px 0;
}

.service-process-track article:not(:first-of-type) {
  padding-left: 22px;
}

.service-process-track article:last-child {
  padding-right: 0;
}

.service-process-track article > span,
.service-process-track article strong,
.service-process-track article small {
  display: block;
}

.service-process-track article > span {
  margin-bottom: 14px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-process-track article > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border: 1px solid rgba(125,188,251,.53);
  border-radius: 50%;
  color: #8ac4fb;
  background: var(--blue-deep);
  box-shadow: 0 0 0 8px var(--blue-deep);
  font-style: normal;
}

.service-process-track article > i .icon {
  width: 22px;
  height: 22px;
}

.service-process-track article strong {
  max-width: 170px;
  margin-top: 24px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.service-process-track article small {
  max-width: 170px;
  margin-top: 7px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.65;
}

.service-process-track article:last-child > i {
  border-color: var(--orange);
  color: var(--paper);
  background: var(--blue);
}

.process-cta {
  margin-top: 28px;
}

/* Cargo types */
.cargo-types-section {
  overflow: hidden;
  background: var(--paper);
}

.cargo-types-section .section-heading {
  margin-bottom: 48px;
}

.cargo-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cargo-type-card {
  position: relative;
  min-height: 316px;
  overflow: hidden;
  background: var(--blue-deep);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.cargo-type-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.cargo-type-card picture,
.cargo-type-card img,
.cargo-type-card > div {
  position: absolute;
  inset: 0;
}

.cargo-type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.66) contrast(1.08);
  transition: transform .7s var(--ease), filter .4s ease;
}

.cargo-type-card:hover img {
  transform: scale(1.07);
  filter: saturate(.88) contrast(1.08);
}

.cargo-type-card > div {
  background: linear-gradient(180deg, rgba(5,29,59,.1) 25%, rgba(5,29,59,.9) 100%);
}

.cargo-type-card > span,
.cargo-type-card h3,
.cargo-type-card small {
  position: absolute;
  z-index: 1;
  left: 17px;
}

.cargo-type-card > span {
  top: 17px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.cargo-type-card h3 {
  right: 14px;
  bottom: 46px;
  margin: 0;
  color: var(--paper);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.35;
}

.cargo-type-card small {
  right: 14px;
  bottom: 21px;
  color: rgba(255,255,255,.58);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.cargo-types-note {
  margin: 17px 0 0;
  text-align: right;
}

/* Industry connection */
.industry-connection-section {
  overflow: hidden;
  background: var(--mist-blue);
}

.industry-connection-layout {
  display: grid;
  grid-template-columns: minmax(0, .73fr) minmax(0, 1.27fr);
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
}

.industry-connection-copy h2 {
  margin: 11px 0 21px;
}

.industry-connection-copy .section-lead {
  max-width: 445px;
}

.industry-connection-mantra {
  margin: 31px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.industry-connection-diagram {
  position: relative;
  min-height: 430px;
  padding: 24px 25px 21px;
  border: 1px solid #c9ddeb;
  background: rgba(255,255,255,.57);
}

.industry-connection-diagram::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
}

.industry-diagram-heading,
.industry-diagram-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #91a8be;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.industry-source-list {
  position: absolute;
  top: 91px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 142px;
}

.industry-source-list span,
.industry-market-node span {
  display: flex;
  align-items: center;
  min-height: 35px;
  padding: 0 11px;
  border: 1px solid #c7dcea;
  color: var(--blue-deep);
  background: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 700;
}

.industry-source-list span::after {
  position: absolute;
  left: 167px;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-bright), rgba(38,132,232,.18));
  content: "";
}

.industry-source-list span:nth-child(1)::after { top: 108px; }
.industry-source-list span:nth-child(2)::after { top: 156px; }
.industry-source-list span:nth-child(3)::after { top: 204px; }
.industry-source-list span:nth-child(4)::after { top: 252px; }

.industry-port-node {
  position: absolute;
  top: 153px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 0 0 11px rgba(237,245,252,.95), 0 0 0 12px var(--orange);
  transform: translateX(-50%);
}

.industry-port-node span {
  color: rgba(255,255,255,.66);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.industry-port-node strong {
  margin-top: 3px;
  color: var(--orange-soft);
  font-family: var(--font-sans);
  font-size: 22px;
  letter-spacing: .08em;
}

.industry-port-node small {
  margin-top: 6px;
  color: rgba(255,255,255,.65);
  font-size: 8px;
}

.industry-diagram-connector.connector-right {
  position: absolute;
  top: 178px;
  right: 0;
  left: auto;
  width: 31%;
}

.industry-diagram-connector.connector-right i {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 47px;
  background: linear-gradient(90deg, rgba(233,104,50,.3), var(--orange));
}

.industry-market-node {
  position: absolute;
  top: 130px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 160px;
}

.industry-market-node span::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.industry-diagram-foot {
  position: absolute;
  right: 25px;
  bottom: 20px;
  left: 25px;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #c9ddeb;
}

.industry-diagram-foot i {
  width: 22px;
  height: 1px;
  background: var(--orange);
}

/* CTA */
.services-cta {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  color: var(--paper);
  background: var(--blue-deep);
}

.services-cta-background,
.services-cta-background picture,
.services-cta-background img,
.services-cta-background > div:not(.image-slot) {
  position: absolute;
  inset: 0;
}

.services-cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  filter: saturate(.72) contrast(1.1);
}

.services-cta-background > div:not(.image-slot) {
  background: linear-gradient(90deg, rgba(5,29,59,.95), rgba(5,29,59,.48) 64%, rgba(5,29,59,.26)), linear-gradient(0deg, rgba(5,29,59,.72), transparent 61%);
}

.services-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-height: 455px;
}

.services-cta-content h2 {
  margin-bottom: 19px;
  color: var(--paper);
  font-size: clamp(43px, 5.2vw, 73px);
}

.services-cta-content h2 span:last-child {
  color: #84c2fc;
}

.services-cta-content > p:not(.section-kicker) {
  margin-bottom: 28px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
}

/* Tablet */
@media (max-width: 1180px) {
  .service-anchor-nav strong {
    font-size: 11px;
  }

  .service-anchor-nav a,
  .service-anchor-nav a:not(:first-child) {
    padding-inline: 10px;
  }

  .service-anchor-nav a::after {
    right: 10px;
  }

  .service-card-body {
    padding-inline: 16px;
  }

  .service-card-body h3 {
    font-size: 17px;
  }

  .multimodal-service-layout,
  .solution-service-layout,
  .customs-service-layout,
  .trade-train-service-layout,
  .cold-chain-service-layout,
  .industry-connection-layout {
    gap: 60px;
  }

  .trade-train-route > i {
    flex-basis: 13px;
    margin-inline: 4px;
  }

  .trade-train-route article strong {
    font-size: 10px;
  }

  .transport-card-content,
  .supply-card-content {
    padding-inline: 18px;
  }
}

@media (max-width: 900px) {
  .services-hero {
    height: 590px;
  }

  .services-hero-inner {
    align-items: flex-end;
    padding-top: 105px;
    padding-bottom: 137px;
  }

  .services-hero-meta,
  .services-hero-signal {
    display: none;
  }

  .service-anchor-nav {
    top: 74px;
  }

  .service-anchor-nav-inner {
    display: flex;
    gap: 0;
    padding-inline: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-anchor-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .service-anchor-nav a,
  .service-anchor-nav a:not(:first-child) {
    flex: 0 0 126px;
    min-height: 70px;
    padding: 12px 14px 10px 0;
  }

  .service-anchor-nav a:not(:first-child) {
    padding-left: 14px;
  }

  .service-anchor-nav a:first-child {
    padding-left: 0;
  }

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

  .service-overview-card:nth-child(n) {
    grid-column: span 1;
  }

  .service-overview-card:nth-child(7) {
    grid-column: span 2;
  }

  .multimodal-service-layout,
  .solution-service-layout,
  .customs-service-layout,
  .trade-train-service-layout,
  .cold-chain-service-layout,
  .industry-connection-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .multimodal-service-visual,
  .customs-service-visual,
  .trade-train-service-visual,
  .cold-chain-service-visual {
    max-width: 760px;
  }

  .multimodal-service-copy,
  .solution-service-copy,
  .customs-service-copy,
  .trade-train-service-copy,
  .cold-chain-service-copy,
  .industry-connection-copy {
    max-width: 760px;
  }

  .solution-process {
    max-width: 820px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 35px;
  }

  .solution-process-line {
    display: none;
  }

  .transport-service-grid,
  .supply-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transport-service-card:last-child,
  .supply-service-card:last-child {
    grid-column: span 2;
    max-width: calc(50% - 7.5px);
  }

  .service-process-track article {
    padding-inline: 15px;
  }

  .service-process-track article:not(:first-of-type) {
    padding-left: 15px;
  }

  .service-process-track article strong,
  .service-process-track article small {
    max-width: 140px;
  }

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

  .cargo-type-card:nth-child(4),
  .cargo-type-card:nth-child(5) {
    min-height: 290px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .services-hero {
    min-height: 450px;
    height: 520px;
  }

  .services-hero-media img {
    object-position: 63% center;
  }

  .services-hero-scrim {
    background: linear-gradient(180deg, rgba(5,29,59,.61) 0%, rgba(6,37,75,.5) 28%, rgba(6,37,75,.95) 100%);
  }

  .services-hero-inner {
    padding-top: 105px;
    padding-bottom: 116px;
  }

  .services-hero-copy h1 {
    margin-bottom: 9px;
    font-size: clamp(49px, 14.5vw, 64px);
  }

  .services-hero-copy h2 {
    margin-bottom: 13px;
    font-size: clamp(22px, 6.5vw, 29px);
  }

  .services-hero-copy > p:not(.eyebrow) {
    max-width: 345px;
    margin-bottom: 21px;
    font-size: 11px;
    line-height: 1.8;
  }

  .services-hero-copy .hero-actions .button {
    min-height: 45px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .services-hero-bottom {
    bottom: 21px;
    font-size: 8px;
  }

  .services-hero-bottom small {
    display: none;
  }

  .service-anchor-nav {
    top: 68px;
  }

  .service-anchor-nav-inner {
    padding-inline: 22px;
  }

  .service-anchor-nav a,
  .service-anchor-nav a:not(:first-child) {
    flex-basis: 108px;
    min-height: 66px;
    padding-top: 11px;
    padding-bottom: 9px;
  }

  .service-anchor-nav strong {
    font-size: 10px;
  }

  #multimodal-service,
  #solution-service,
  #customs-service,
  #trade-train-service,
  #cold-chain-service,
  #transport-service,
  #supply-service {
    scroll-margin-top: 136px;
  }

  .section {
    padding-block: 78px;
  }

  .service-overview .section-heading,
  .transport-service-section .section-heading,
  .supply-service-section .section-heading,
  .cargo-types-section .section-heading {
    margin-bottom: 36px;
  }

  .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-overview-card:nth-child(n) {
    grid-column: span 1;
    min-height: 385px;
  }

  .service-overview-card:nth-child(7) {
    grid-column: span 1;
  }

  .service-card-media {
    height: 158px;
  }

  .service-card-body {
    padding: 17px 18px 16px;
  }

  .service-card-icon {
    width: 38px;
    height: 38px;
  }

  .service-card-body h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .service-card-body p {
    font-size: 11px;
  }

  .service-card-media-tag,
  .service-image-label {
    top: 15px;
    left: 16px;
    font-size: 7px;
  }

  .multimodal-service-layout,
  .solution-service-layout,
  .customs-service-layout,
  .trade-train-service-layout,
  .cold-chain-service-layout,
  .industry-connection-layout {
    gap: 43px;
  }

  .multimodal-service-visual {
    min-height: 430px;
  }

  .multimodal-route-board {
    right: 15px;
    bottom: 40px;
    left: 15px;
    padding: 15px 10px 13px;
  }

  .multimodal-route-board > span {
    margin-bottom: 12px;
    font-size: 7px;
  }

  .multimodal-route-line {
    top: 65px;
    right: 9%;
    left: 9%;
  }

  .multimodal-route-nodes {
    gap: 3px;
  }

  .multimodal-route-nodes i {
    gap: 6px;
  }

  .multimodal-route-nodes .icon {
    width: 27px;
    height: 27px;
    padding: 5px;
  }

  .multimodal-route-nodes i::before {
    top: 14px;
    width: 6px;
    height: 6px;
  }

  .multimodal-route-nodes b {
    font-size: 6px;
    letter-spacing: .05em;
  }


  .multimodal-service-copy h2,
  .solution-service-copy h2,
  .customs-service-copy h2,
  .trade-train-service-copy h2,
  .cold-chain-service-copy h2,
  .industry-connection-copy h2 {
    font-size: clamp(34px, 10.2vw, 48px);
  }

  .service-module-lead,
  .customs-service-copy .section-lead {
    font-size: 13px;
  }

  .service-benefit-list {
    margin-bottom: 25px;
  }

  .solution-process {
    display: flex;
    flex-direction: column;
    gap: 21px;
    min-height: 0;
    padding: 17px 0 17px 16px;
  }

  .solution-process article {
    display: grid;
    grid-template-columns: 49px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 16px;
    min-height: 64px;
    text-align: left;
  }

  .solution-process article > span {
    grid-column: 1 / -1;
    align-self: auto;
    margin-bottom: 2px;
  }

  .solution-process article > i {
    grid-row: 2;
    width: 49px;
    height: 49px;
    margin-top: 0;
    box-shadow: 0 0 0 6px var(--mist-blue);
  }

  .solution-process strong {
    grid-column: 2;
    max-width: none;
    margin: 0;
    font-size: 12px;
  }

  .solution-process small {
    grid-column: 2;
    max-width: none;
    margin-top: 2px;
    font-size: 9px;
  }

  .solution-process::before,
  .solution-process::after {
    position: absolute;
    left: 40px;
    width: 1px;
    content: "";
  }

  .solution-process::before {
    top: 66px;
    bottom: 66px;
    background: #c1d9ea;
  }

  .solution-process::after {
    z-index: 0;
    top: 66px;
    bottom: 66px;
    background: linear-gradient(180deg, var(--blue-bright), var(--orange));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s .15s var(--ease);
  }

  .solution-process.is-visible::after {
    transform: scaleY(1);
  }

  .customs-service-visual {
    min-height: 390px;
  }

  .customs-facility-stack {
    right: 15px;
    bottom: 17px;
    left: 15px;
    gap: 5px;
  }

  .customs-facility-stack span {
    padding: 5px 7px;
    font-size: 8px;
  }

  .customs-steps article {
    min-height: 90px;
    padding-right: 7px;
  }

  .customs-steps article:not(:first-child) {
    padding-left: 7px;
  }

  .customs-steps strong {
    font-size: 13px;
  }

  .customs-steps small {
    font-size: 6px;
  }

  .customs-area-count strong {
    font-size: 38px;
  }

  .customs-area-count small {
    font-size: 9px;
  }

  .trade-train-service-visual {
    min-height: 385px;
  }

  .trade-train-route {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
  }

  .trade-train-route article {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 54px;
  }

  .trade-train-route article > span {
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 3px;
  }

  .trade-train-route article strong {
    margin-top: 0;
    font-size: 12px;
  }

  .trade-train-route article small {
    margin-top: 1px;
  }

  .trade-train-route > i {
    width: 1px;
    height: 18px;
    flex: 0 0 18px;
    margin: 0 0 0 15px;
    background: linear-gradient(180deg, var(--blue-bright), var(--orange));
  }

  .trade-train-cooperation {
    font-size: 9px;
  }

  .trade-cost-reference {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 18px;
    padding: 18px 18px 19px;
  }

  .trade-cost-reference strong {
    font-size: 42px;
  }

  .trade-cost-reference > p {
    font-size: 10px;
  }

  .trade-cost-reference > span {
    grid-column: auto;
    margin-top: -5px;
    font-size: 8px;
  }

  .cold-chain-service-visual {
    min-height: 360px;
  }

  .cold-chain-visual-stamp {
    top: 16px;
    right: 16px;
    padding: 8px 9px;
    font-size: 7px;
  }

  .cold-chain-service-copy .section-lead {
    font-size: 13px;
  }

  .cold-chain-stats {
    gap: 9px;
  }

  .cold-chain-stats article {
    padding: 14px 12px 12px;
  }

  .cold-chain-stats strong {
    font-size: 34px;
  }

  .cold-chain-stats small {
    font-size: 9px;
  }

  .cold-chain-service-list span {
    padding: 6px 8px;
    font-size: 9px;
  }

  .cold-chain-date {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .transport-service-grid,
  .supply-service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .transport-service-card:last-child,
  .supply-service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .transport-card-media {
    height: 190px;
  }

  .transport-card-content h3 {
    font-size: 19px;
  }

  .transport-service-note,
  .supply-service-note,
  .cargo-types-note {
    font-size: 8px;
    text-align: left;
  }

  .supply-card-media {
    height: 171px;
  }

  .supply-card-content p {
    min-height: 0;
  }

  .service-process-heading {
    margin-bottom: 43px;
  }

  .service-process-heading > p:last-child {
    font-size: 13px;
  }

  .service-process-track {
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding: 0 0 0 16px;
    border-top: 0;
    border-bottom: 0;
  }

  .service-process-track::before,
  .service-process-progress {
    top: 29px;
    right: auto;
    bottom: 29px;
    left: 43px;
    width: 1px;
    height: auto;
  }

  .service-process-progress {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.35s .18s var(--ease);
  }

  .service-process-track.is-visible .service-process-progress {
    transform: scaleY(1);
  }

  .service-process-track article,
  .service-process-track article:not(:first-of-type) {
    display: grid;
    grid-template-columns: 55px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 17px;
    min-height: 70px;
    padding: 0;
  }

  .service-process-track article > span {
    grid-column: 2;
    margin-bottom: 3px;
    font-size: 8px;
  }

  .service-process-track article > i {
    grid-row: 1 / span 2;
    width: 55px;
    height: 55px;
    box-shadow: 0 0 0 7px var(--blue-deep);
  }

  .service-process-track article strong {
    grid-column: 2;
    max-width: none;
    margin: 0;
    font-size: 14px;
  }

  .service-process-track article small {
    grid-column: 2;
    max-width: none;
    margin-top: 2px;
    font-size: 9px;
  }

  .process-cta {
    margin-top: 32px;
  }

  .cargo-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cargo-type-card,
  .cargo-type-card:nth-child(4),
  .cargo-type-card:nth-child(5) {
    min-height: 260px;
  }

  .cargo-type-card h3 {
    bottom: 43px;
    font-size: 17px;
  }

  .cargo-type-card small {
    bottom: 19px;
    font-size: 7px;
  }

  .industry-connection-diagram {
    min-height: 565px;
    padding: 18px 15px 16px;
  }

  .industry-diagram-heading,
  .industry-diagram-foot {
    font-size: 7px;
  }

  .industry-source-list {
    top: 75px;
    left: 15px;
    width: 116px;
    gap: 10px;
  }

  .industry-source-list span {
    min-height: 32px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .industry-source-list span::after {
    left: 130px;
    width: 52px;
  }

  .industry-source-list span:nth-child(1)::after { top: 90px; }
  .industry-source-list span:nth-child(2)::after { top: 132px; }
  .industry-source-list span:nth-child(3)::after { top: 174px; }
  .industry-source-list span:nth-child(4)::after { top: 216px; }

  .industry-port-node {
    top: 211px;
    width: 108px;
    height: 108px;
  }

  .industry-port-node strong {
    font-size: 19px;
  }

  .industry-port-node small {
    font-size: 7px;
  }

  .industry-diagram-connector.connector-right {
    top: 235px;
    width: 27%;
  }

  .industry-market-node {
    top: 191px;
    right: 15px;
    width: 115px;
    gap: 12px;
  }

  .industry-market-node span {
    min-height: 32px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .industry-diagram-foot {
    right: 15px;
    bottom: 16px;
    left: 15px;
    gap: 7px;
    padding-top: 12px;
  }

  .industry-diagram-foot i {
    width: 12px;
  }

  .services-cta,
  .services-cta-content {
    min-height: 520px;
  }

  .services-cta-background > div:not(.image-slot) {
    background: linear-gradient(180deg, rgba(5,29,59,.78), rgba(5,29,59,.95));
  }

  .services-cta-content > p:not(.section-kicker) {
    max-width: 290px;
    font-size: 13px;
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .multimodal-route-line,
  .solution-process::after {
    transform: none;
  }
}
