@charset "UTF-8";

:root {
  --navy-950: #061321;
  --navy-925: #071827;
  --navy-900: #081a2e;
  --navy-850: #0a2037;
  --navy-800: #0d2743;
  --yellow: #ffc20e;
  --yellow-hover: #e5aa00;
  --cyan: #ffc20e;
  --green: #ffc20e;
  --red: #ffc20e;
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f3f6f9;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 16px 40px rgba(15, 23, 42, .1);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 72px;
  color: var(--white);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-shell {
  width: min(calc(100% - 48px), 1390px);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 188px;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img,
.footer-brand > img {
  width: 188px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 24px);
}

.main-nav a {
  position: relative;
  padding: 25px 0 23px;
  color: rgba(255, 255, 255, .74);
  font-size: .84rem;
  font-weight: 610;
  white-space: nowrap;
  transition: color .2s ease;
}

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

.main-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
}

.button {
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 720;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--navy-950);
  background: var(--yellow);
  box-shadow: 0 8px 24px rgba(255, 194, 14, .18);
}

.button--primary:hover {
  background: var(--yellow-hover);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .02);
  border-color: rgba(255, 255, 255, .42);
}

.button--ghost:hover,
.button--outline-light:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .8);
}

.button--outline {
  color: var(--navy-950);
  background: transparent;
  border-color: #b9c5d2;
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
}

.button--wide {
  width: 100%;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding-inline: 16px;
  font-size: .78rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 6px;
  display: none;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  margin: 5px 0;
  display: block;
  background: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  margin-bottom: 13px;
  display: block;
  color: #9b7500;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow);
}

.breadcrumbs {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .56);
  font-size: .72rem;
}

.breadcrumbs .icon {
  width: 11px;
  height: 11px;
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
}

.hero__photo,
.case-hero .hero__photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero__veil,
.case-hero .hero__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 31, .98) 0%, rgba(5, 18, 31, .91) 39%, rgba(5, 18, 31, .38) 69%, rgba(5, 18, 31, .16) 100%),
    linear-gradient(180deg, rgba(6, 19, 33, .08) 55%, rgba(6, 19, 33, .85) 100%);
}

.hero__layout {
  min-height: inherit;
  padding-block: 70px 72px;
  display: grid;
  grid-template-columns: minmax(0, 670px) 1fr;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero__content h1 span,
.tech-hero h1 span,
.case-hero h1 span {
  color: var(--yellow);
}

.hero__content > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.location-card {
  position: absolute;
  right: 4.5%;
  bottom: 42px;
  width: 235px;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 11px;
  color: var(--white);
  background: rgba(6, 19, 33, .84);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.location-card__pin {
  grid-row: 1 / 4;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
}

.location-card > span:not(.location-card__pin) {
  color: var(--cyan);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.location-card strong {
  font-size: 1rem;
}

.location-card small {
  color: rgba(255, 255, 255, .6);
  font-size: .66rem;
}

.hero--compact {
  min-height: 395px;
}

.hero--compact .hero__layout {
  padding-block: 38px 48px;
}

.hero--compact .hero__content h1 {
  font-size: clamp(2.7rem, 4.5vw, 3.7rem);
}

.section {
  padding-block: 88px;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.section--navy p,
.section--navy .section-heading p {
  color: rgba(255, 255, 255, .66);
}

.section--navy .eyebrow,
.page-dark-flow .eyebrow,
.tech-hero .eyebrow {
  color: var(--cyan);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading--center p {
  margin-inline: auto;
}

.kpi-strip {
  color: var(--white);
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.kpi-grid {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kpi {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 14px;
}

.kpi:first-child {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.kpi__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(255, 194, 14, .08);
}

.kpi__icon .icon {
  width: 21px;
  height: 21px;
}

.kpi strong,
.kpi span {
  display: block;
}

.kpi strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}

.kpi div > span {
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
}

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

.benefit-card {
  min-height: 235px;
  padding: 28px 25px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .89rem;
}

.icon-tile {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 194, 14, .16);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(255, 194, 14, .075);
}

.icon-tile .icon {
  width: 23px;
  height: 23px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(440px, 1.16fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.split-layout p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.check-list {
  margin: 25px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: .87rem;
  font-weight: 650;
}

.check-list .icon {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--yellow);
  stroke-width: 2.5;
}

.map-section {
  position: relative;
  overflow: hidden;
}

.map-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .17;
  background-image: linear-gradient(rgba(255, 194, 14, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 194, 14, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.map-copy,
.map-visual {
  position: relative;
}

.map-visual {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 14, .14);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
}

.map-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.map-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: var(--white);
  background: rgba(6, 19, 33, .84);
  font-size: .65rem;
  font-weight: 820;
  letter-spacing: .1em;
}

.map-label small {
  margin-top: 2px;
  display: block;
  color: var(--cyan);
  font-size: .55rem;
  font-weight: 650;
  letter-spacing: .03em;
}

.map-label--hub {
  top: 49%;
  left: 50%;
  border-color: rgba(255, 194, 14, .5);
  transform: translate(-50%, -50%);
}

.map-label--de {
  top: 47%;
  left: 20%;
}

.map-label--pl {
  top: 38%;
  right: 16%;
}

.process-section {
  overflow: hidden;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.process-line::before {
  position: absolute;
  top: 33px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: var(--line);
}

.section--navy .process-line::before {
  background: rgba(255, 255, 255, .13);
}

.process-step {
  position: relative;
  padding: 0 13px;
  text-align: center;
}

.process-step__no {
  position: absolute;
  top: -10px;
  right: 16px;
  color: #cbd5e1;
  font-size: .62rem;
  font-weight: 800;
}

.section--navy .process-step__no {
  color: rgba(255, 255, 255, .35);
}

.process-step__icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border: 1px solid #d6dee7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--white);
}

.section--navy .process-step__icon {
  color: var(--yellow);
  background: var(--navy-900);
  border-color: rgba(255, 255, 255, .16);
}

.process-step__icon .icon {
  width: 24px;
  height: 24px;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: .95rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.integrations-showcase .section-heading {
  margin-bottom: 36px;
}

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

.integration-card {
  position: relative;
  min-height: 330px;
  padding: 37px 35px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-900), #092138);
}

.integration-card__content {
  position: relative;
  z-index: 2;
  max-width: 54%;
}

.integration-card h3 {
  margin-top: 22px;
  color: var(--white);
  font-size: 1.5rem;
}

.integration-card p {
  color: rgba(255, 255, 255, .63);
  font-size: .83rem;
}

.integration-wordmark {
  display: inline-block;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.integration-wordmark--emag {
  color: var(--yellow);
}

.integration-card > img {
  position: absolute;
  right: -9%;
  bottom: -10%;
  width: 68%;
  height: 104%;
  object-fit: cover;
  opacity: .78;
  mask-image: linear-gradient(90deg, transparent 0, #000 34%);
}

.integration-orbit {
  position: absolute;
  top: 46%;
  right: 12%;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(255, 194, 14, .45);
  border-radius: 50%;
}

.integration-orbit::before,
.integration-orbit::after {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
}

.integration-orbit span,
.integration-orbit b {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
  box-shadow: 0 0 30px rgba(255, 194, 14, .18);
}

.integration-orbit span {
  top: 55px;
  left: -8px;
  color: var(--navy-950);
  background: var(--yellow);
}

.integration-orbit b {
  top: 55px;
  right: -8px;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid var(--cyan);
}

.integration-orbit i {
  position: absolute;
  top: 88px;
  left: 60px;
  width: 60px;
  height: 2px;
  background: var(--cyan);
}

.mini-flow {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  gap: 12px;
  list-style: none;
}

.mini-flow li {
  position: relative;
  color: rgba(255, 255, 255, .55);
  font-size: .58rem;
  font-weight: 700;
}

.mini-flow li:not(:last-child)::after {
  margin-left: 10px;
  color: var(--cyan);
  content: "→";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7a5b00;
  font-size: .78rem;
  font-weight: 780;
}

.text-link--light {
  color: var(--yellow);
}

.technology-preview {
  padding-top: 30px;
}

.split-layout--technology {
  grid-template-columns: .78fr 1.22fr;
}

.wms-dashboard {
  min-height: 385px;
  border: 1px solid rgba(255, 194, 14, .24);
  border-radius: 13px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 122px 1fr;
  color: var(--white);
  background: #071827;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.wms-sidebar {
  padding: 22px 12px;
  background: #06131f;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.wms-sidebar > b {
  margin: 0 7px 26px;
  display: block;
  font-size: .68rem;
  letter-spacing: .04em;
}

.wms-sidebar > b span {
  color: var(--cyan);
}

.wms-sidebar i {
  margin: 5px 0;
  padding: 8px 8px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .42);
  font-size: .55rem;
  font-style: normal;
}

.wms-sidebar i span {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.wms-sidebar i.is-active {
  color: var(--white);
  background: rgba(255, 194, 14, .13);
}

.wms-main {
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
}

.wms-top,
.wms-orders span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wms-top {
  font-size: .72rem;
}

.wms-top span {
  padding: 3px 7px;
  border: 1px solid rgba(255, 194, 14, .28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: .48rem;
  letter-spacing: .12em;
}

.wms-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.wms-metrics i {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 6px;
  display: grid;
  font-style: normal;
  background: rgba(255, 255, 255, .025);
}

.wms-metrics span,
.wms-metrics em {
  color: rgba(255, 255, 255, .42);
  font-size: .48rem;
  font-style: normal;
}

.wms-metrics b {
  margin: 5px 0;
  color: var(--cyan);
  font-size: .78rem;
}

.wms-chart {
  min-height: 100px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, .015);
}

.chart-bars {
  height: 100%;
  display: flex;
  align-items: end;
  gap: 8px;
}

.chart-bars i {
  height: var(--h);
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(255, 194, 14, .15));
}

.wms-orders {
  display: grid;
  gap: 4px;
}

.wms-orders span {
  padding: 4px 8px;
  color: rgba(255, 255, 255, .5);
  font-size: .5rem;
}

.wms-orders span:first-child {
  padding-bottom: 6px;
  color: rgba(255, 255, 255, .75);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.wms-orders b,
.wms-orders em {
  font-style: normal;
  font-weight: 550;
}

.wms-orders .ok {
  color: var(--green);
}

.logo-section {
  padding-block: 62px;
}

.logo-section .section-heading {
  margin-bottom: 30px;
}

.platform-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.platform-logos span {
  min-height: 92px;
  border-right: 1px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
}

.platform-logos span:last-child {
  border: 0;
}

.platform-logos b {
  font-size: 1.3rem;
  letter-spacing: -.04em;
}

.platform-logos small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.clients-section {
  padding-block: 70px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.client-card__logo {
  height: 55px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.client-card__logo img {
  max-width: 160px;
  max-height: 46px;
  object-fit: contain;
}

.client-card p {
  min-height: 84px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: .79rem;
  line-height: 1.65;
}

.client-card > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
}

.client-card > span .icon {
  color: var(--green);
}

.cta-banner {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
}

.cta-banner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 33, .98) 0%, rgba(6, 19, 33, .86) 49%, rgba(6, 19, 33, .2) 78%);
}

.cta-banner__content {
  padding-block: 60px;
}

.cta-banner h2 {
  max-width: 680px;
  margin-bottom: 15px;
}

.cta-banner p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .68);
}

.site-footer {
  padding-top: 58px;
  color: rgba(255, 255, 255, .62);
  background: #04101c;
}

.footer-grid {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 58px;
}

.footer-brand p {
  max-width: 350px;
  margin: 18px 0;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

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

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: .74rem;
}

.footer-grid h3 {
  margin: 4px 0 17px;
  color: var(--white);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-grid > div:not(.footer-brand) a {
  margin: 9px 0;
  display: block;
  font-size: .72rem;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: .58rem;
}

.form-modal {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
}

.form-modal[open] {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
}

.form-modal::backdrop {
  background: rgba(2, 10, 18, .78);
  backdrop-filter: blur(7px);
}

.form-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  color: rgba(255, 255, 255, .65);
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.form-modal__intro {
  padding-top: 30px;
}

.form-modal__intro p {
  color: rgba(255, 255, 255, .65);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-field label {
  margin-bottom: 6px;
  display: block;
  color: inherit;
  font-size: .72rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--yellow);
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 47px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(255, 194, 14, .13);
}

.form-consent {
  margin: 0;
  color: inherit;
  opacity: .66;
  font-size: .62rem;
  line-height: 1.5;
}

.form-consent a {
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  font-size: .72rem;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--red);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.section--navy .faq-list {
  border-color: rgba(255, 255, 255, .13);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.section--navy .faq-item {
  border-color: rgba(255, 255, 255, .13);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  padding: 18px 5px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: inherit;
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  color: var(--yellow);
  font-size: 1.4rem;
}

.faq-panel p {
  padding: 0 45px 18px 5px;
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.section--navy .faq-panel p {
  color: rgba(255, 255, 255, .59);
}

/* Fulfillment PL–DE */
.page-dark-flow main {
  background: var(--navy-950);
}

.model-strip {
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.model-flow {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.model-flow > div:not(.model-split),
.model-split span {
  min-width: 145px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.model-flow .is-hub {
  border-color: rgba(255, 194, 14, .5) !important;
  box-shadow: 0 0 22px rgba(255, 194, 14, .08);
}

.model-flow b,
.model-flow span {
  display: block;
}

.model-flow b {
  font-size: .76rem;
}

.model-flow div > span,
.model-flow small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .48);
  font-size: .58rem;
}

.model-flow > .icon {
  color: var(--cyan);
}

.model-split {
  position: relative;
  display: grid;
  grid-template-columns: 20px repeat(2, 1fr);
  align-items: center;
  gap: 9px;
}

.model-split > .icon {
  color: var(--cyan);
}

.model-split span {
  min-width: 105px;
}

.map-section--large {
  padding-top: 74px;
}

.map-visual--wide {
  width: min(100%, 930px);
  min-height: 410px;
  margin-inline: auto;
}

.compact-benefits {
  padding-block: 28px;
}

.compact-benefits .benefit-card {
  min-height: 180px;
  box-shadow: none;
}

.compact-benefits .icon-tile {
  margin-bottom: 14px;
}

.carriers-section {
  padding-block: 70px;
}

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

.carrier-grid article {
  position: relative;
  min-height: 185px;
  padding: 28px 28px 26px 84px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: var(--navy-900);
}

.carrier-grid .flag {
  position: absolute;
  top: 28px;
  left: 27px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
  font-size: .72rem;
  font-weight: 850;
}

.carrier-grid h3 {
  color: var(--white);
}

.carrier-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carrier-logos b {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 5px;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .035);
  font-size: .65rem;
  letter-spacing: -.02em;
}

.dual-process {
  padding-block: 58px;
}

.dual-process .section-heading {
  margin-bottom: 30px;
}

.market-process {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: center;
  gap: 10px;
  background: var(--navy-900);
}

.market-process + .market-process {
  margin-top: 12px;
}

.market-process__label {
  display: flex;
  align-items: center;
  gap: 11px;
}

.market-process__label span {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
  font-size: .65rem;
  font-weight: 850;
}

.market-process__label b {
  font-size: .72rem;
}

.market-process i {
  position: relative;
  padding: 9px 10px 9px 35px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .62);
  font-size: .62rem;
  font-style: normal;
}

.market-process i em {
  position: absolute;
  top: 7px;
  left: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: .45rem;
  font-style: normal;
}

.outlined-benefits {
  padding-block: 55px 70px;
}

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

.outline-grid article {
  position: relative;
  min-height: 155px;
  padding: 24px;
  border: 1px solid rgba(255, 194, 14, .32);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 194, 14, .025), transparent);
}

.outline-grid article > span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255, 194, 14, .45);
  font-size: .61rem;
  font-weight: 800;
}

.outline-grid h3 {
  font-size: 1rem;
}

.outline-grid p {
  margin: 0;
  font-size: .72rem;
}

.page-plde .faq-section {
  padding-block: 54px 72px;
}

/* Services */
.services-catalog {
  padding-top: 75px;
}

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

.service-card {
  position: relative;
  min-height: 230px;
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(255, 194, 14, .55);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card__number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #b7c1cc;
  font-size: .58rem;
  font-weight: 800;
}

.service-card .icon-tile {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.03rem;
}

.service-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .73rem;
}

.service-card > a {
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-950);
}

.service-card > a .icon {
  width: 14px;
  height: 14px;
}

.page-services .process-section,
.page-services .faq-section {
  padding-block: 68px;
}

/* Technology */
.tech-hero {
  min-height: 500px;
  padding-block: 26px 58px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 194, 14, .13), transparent 38%),
    var(--navy-950);
}

.tech-hero__grid {
  min-height: 405px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 55px;
}

.tech-hero h1 {
  font-size: clamp(3rem, 5vw, 4rem);
}

.tech-hero p {
  margin-bottom: 27px;
  color: rgba(255, 255, 255, .68);
  font-size: .98rem;
}

.tech-hero .wms-dashboard {
  min-height: 375px;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center right;
}

.tech-modules {
  padding-block: 62px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.module-grid article {
  min-height: 170px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  color: var(--white);
  background: var(--navy-900);
}

.module-grid .icon-tile {
  width: 39px;
  height: 39px;
  margin-bottom: 16px;
}

.module-grid h3 {
  font-size: .8rem;
}

.module-grid p {
  margin: 0;
  font-size: .62rem;
}

.tech-platforms {
  padding-block: 55px;
}

.platform-logos--dark {
  border-color: rgba(255, 255, 255, .1);
}

.platform-logos--dark span {
  border-color: rgba(255, 255, 255, .1);
}

.platform-logos--dark b {
  color: var(--white);
}

.platform-logos--dark small {
  color: rgba(255, 255, 255, .42);
}

.tech-capabilities {
  padding-block: 46px 70px;
}

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

.tech-feature-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  background: var(--navy-900);
}

.tech-feature-grid .icon-tile {
  margin: 0;
}

.tech-feature-grid h3 {
  font-size: 1.08rem;
}

.tech-feature-grid p {
  margin: 0;
  font-size: .73rem;
}

.analytics-section {
  padding-block: 50px 76px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 14px;
}

.analytics-grid article {
  min-height: 190px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: var(--navy-900);
}

.analytics-grid h3 {
  font-size: .83rem;
}

.line-chart {
  height: 115px;
  padding-top: 15px;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 100% 25%;
}

.line-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.line-chart path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
}

.line-chart .area {
  fill: rgba(255, 194, 14, .09);
  stroke: none;
}

.donut {
  position: relative;
  height: 130px;
  display: grid;
  place-items: center;
}

.donut i {
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 71%, var(--yellow) 71% 88%, rgba(255, 255, 255, .08) 88%);
}

.donut i::after {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  content: "";
  background: var(--navy-900);
}

.donut span {
  z-index: 1;
  font-size: .72rem;
  font-weight: 750;
  text-align: center;
}

.donut small {
  display: block;
  color: rgba(255, 255, 255, .42);
  font-size: .51rem;
}

.horizontal-bars {
  display: grid;
  gap: 12px;
}

.horizontal-bars span {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 8px;
  font-size: .58rem;
}

.horizontal-bars b {
  color: rgba(255, 255, 255, .58);
}

.horizontal-bars i {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.horizontal-bars i::after {
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  display: block;
  content: "";
  background: linear-gradient(90deg, var(--cyan), #9b7500);
}

/* Industries */
.industry-list {
  padding-block: 75px;
}

.industry-row {
  min-height: 230px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 270px 1fr 200px;
  align-items: center;
  gap: 32px;
  background: var(--white);
}

.industry-row + .industry-row {
  margin-top: 17px;
}

.industry-row--reverse {
  grid-template-columns: 200px 1fr 270px;
}

.industry-row--reverse .industry-photo {
  grid-column: 3;
  grid-row: 1;
}

.industry-row--reverse .industry-copy {
  grid-column: 2;
  grid-row: 1;
}

.industry-row--reverse aside {
  grid-column: 1;
  grid-row: 1;
}

.industry-photo {
  position: relative;
  min-height: 185px;
  border-radius: 9px;
  overflow: hidden;
  background: var(--soft);
}

.industry-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 50px rgba(6, 19, 33, .12);
}

.industry-photo > span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 10px;
  color: rgba(255, 255, 255, .83);
  font-size: .7rem;
  font-weight: 850;
}

.industry-photo picture,
.industry-photo img {
  width: 100%;
  height: 100%;
}

.industry-photo picture {
  position: absolute;
  inset: 0;
  display: block;
}

.industry-photo img {
  object-fit: cover;
}

.industry-copy h3 {
  font-size: 1.45rem;
}

.industry-copy > p {
  font-size: .78rem;
}

.industry-copy ul {
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.industry-copy li {
  padding: 5px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--slate);
  background: var(--soft);
  font-size: .58rem;
  font-weight: 700;
}

.industry-copy li .icon {
  color: var(--green);
}

.industry-row aside {
  min-height: 170px;
  padding: 21px;
  border-left: 1px solid var(--line);
}

.industry-row aside > span {
  color: var(--muted);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.industry-row aside img {
  max-width: 130px;
  max-height: 42px;
  margin: 20px 0;
  object-fit: contain;
}

.industry-row aside p {
  margin: 0;
  font-size: .68rem;
}

.industry-advantages {
  padding-block: 65px;
}

.industry-advantages .module-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-advantages .module-grid article > .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 17px;
  color: var(--yellow);
}

/* Case study */
.case-hero {
  min-height: 470px;
  padding-block: 26px 55px;
}

.case-hero__grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 80px;
}

.case-hero h1 {
  font-size: clamp(3rem, 5vw, 4rem);
}

.case-hero__grid > div > p {
  max-width: 620px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, .69);
}

.case-reference {
  min-height: 275px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.case-reference img {
  max-width: 150px;
  max-height: 50px;
  margin-bottom: 24px;
  object-fit: contain;
}

.case-reference > span {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.case-reference blockquote {
  margin: 13px 0 20px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.case-reference small {
  color: var(--muted);
  font-size: .58rem;
}

.case-meta {
  background: var(--white);
  box-shadow: 0 10px 35px rgba(15, 23, 42, .08);
}

.case-meta .container {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.case-meta .container > div {
  padding: 22px 25px;
  border-right: 1px solid var(--line);
}

.case-meta .container > div:first-child {
  border-left: 1px solid var(--line);
}

.case-meta span,
.case-meta b {
  display: block;
}

.case-meta span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.case-meta b {
  font-size: .76rem;
}

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

.case-columns article {
  min-height: 310px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}

.case-columns article.is-featured {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateY(-14px);
}

.case-columns article > span {
  color: var(--yellow-hover);
  font-size: .65rem;
  font-weight: 850;
}

.case-columns h2 {
  margin-top: 13px;
  font-size: 1.5rem;
}

.case-columns p,
.case-columns li {
  font-size: .75rem;
}

.case-columns .is-featured p {
  color: rgba(255, 255, 255, .67);
}

.case-columns ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.case-columns li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.case-columns li .icon {
  color: var(--green);
}

.testimonial-section {
  padding-block: 68px;
  text-align: center;
}

.testimonial-section .container {
  max-width: 900px;
}

.quote-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(255, 194, 14, .09);
}

.testimonial-section blockquote {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-section .container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.testimonial-section img {
  width: 105px;
  max-height: 35px;
  padding: 6px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
}

.testimonial-section .container > div span {
  color: rgba(255, 255, 255, .46);
  font-size: .64rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.timeline::before {
  position: absolute;
  top: 19px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: var(--line);
}

.timeline article {
  position: relative;
  padding-top: 55px;
  text-align: center;
}

.timeline article > span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid #d5dde7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--white);
  font-size: .55rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.timeline article:nth-child(3) > span {
  color: var(--navy-950);
  background: var(--yellow);
  border-color: var(--yellow);
}

.timeline h3 {
  font-size: .9rem;
}

.timeline p {
  font-size: .68rem;
}

.other-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-case-grid a {
  min-height: 145px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  background: var(--white);
}

.other-case-grid img {
  grid-column: 1 / 3;
  max-width: 150px;
  max-height: 47px;
  margin-bottom: 20px;
  object-fit: contain;
}

.other-case-grid span {
  font-weight: 700;
}

/* Analysis / contact */
.analysis-overlap {
  position: relative;
  z-index: 3;
  padding-bottom: 60px;
  background: var(--soft);
}

.analysis-grid {
  margin-top: -68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.analysis-form-card,
.analysis-benefits {
  padding: 38px 42px;
}

.analysis-form-card {
  background: var(--white);
}

.analysis-form-card > p {
  font-size: .8rem;
}

.analysis-benefits {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 194, 14, .15), transparent 45%),
    var(--navy-900);
}

.analysis-benefits > ul {
  margin: 25px 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.analysis-benefits li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
}

.analysis-benefits li > .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(255, 194, 14, .08);
}

.analysis-benefits b,
.analysis-benefits small {
  display: block;
}

.analysis-benefits b {
  margin-bottom: 3px;
  font-size: .79rem;
}

.analysis-benefits small {
  color: rgba(255, 255, 255, .53);
  font-size: .64rem;
}

.secure-note {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .5);
  font-size: .58rem;
}

.analysis-form-card .lead-form {
  margin-top: 23px;
}

.analysis-form-card .form-consent {
  color: var(--muted);
  opacity: 1;
}

.after-submit {
  padding-block: 68px;
}

.consultant-section {
  padding-block: 70px;
}

.consultant-section .split-layout {
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.consultant-card {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consultant-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultant-card > div {
  padding: 32px 26px;
  align-self: center;
}

.consultant-card p {
  font-size: .74rem;
}

.consultant-card a {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  font-size: .71rem;
  font-weight: 700;
}

.consultant-section .map-visual {
  min-height: 390px;
}

/* Listing / supporting pages */
.case-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-list-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}

.case-list-card img {
  max-width: 165px;
  height: 56px;
  margin-bottom: 25px;
  object-fit: contain;
}

.case-list-card p {
  font-size: .75rem;
}

.case-list-card > span {
  color: var(--muted);
  font-size: .6rem;
}

.case-list-card--featured {
  grid-column: span 2;
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.case-list-card--featured img {
  padding: 8px;
  border-radius: 5px;
  background: var(--white);
}

.case-list-card--featured h2 {
  font-size: 1.75rem;
}

.case-list-card--featured p {
  color: rgba(255, 255, 255, .62);
}

.case-list-card--featured b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
  font-size: .72rem;
}

.knowledge-toolbar {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.knowledge-toolbar .section-heading {
  margin: 0;
}

.search-field input {
  width: 300px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

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

.article-card {
  min-height: 300px;
  padding: 20px 23px 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.article-card__visual {
  position: relative;
  height: 105px;
  margin: -20px -23px 22px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 194, 14, .22), transparent 36%),
    var(--navy-900);
}

.article-card__visual .icon {
  width: 42px;
  height: 42px;
}

.article-card__visual span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(255, 255, 255, .35);
  font-size: .6rem;
  font-weight: 800;
}

.article-card h3 {
  font-size: 1.05rem;
}

.article-card p {
  font-size: .72rem;
}

.legal-hero {
  padding-block: 35px 70px;
  color: var(--white);
}

.legal-hero h1 {
  font-size: 3rem;
}

.legal-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .62);
}

.legal-copy {
  max-width: 850px;
}

.legal-copy p {
  line-height: 1.75;
}

/* Precision scaling for the supplied 913 px mockups */
@media (max-width: 1100px) and (min-width: 761px) {
  html {
    font-size: 13px;
  }

  .container {
    width: calc(100% - 56px);
  }

  .site-header,
  .header-shell {
    min-height: 56px;
  }

  .header-shell {
    width: calc(100% - 30px);
    gap: 13px;
  }

  .brand {
    flex-basis: 145px;
    height: 34px;
  }

  .brand img {
    width: 145px;
    height: 34px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    padding-block: 19px 17px;
    font-size: .67rem;
  }

  .header-cta {
    min-height: 34px;
    padding-inline: 10px;
    font-size: .62rem;
  }

  .hero {
    min-height: 380px;
  }

  .hero__layout {
    padding-block: 43px 50px;
    grid-template-columns: minmax(0, 540px) 1fr;
  }

  .hero__content h1 {
    max-width: 590px;
    margin-bottom: 17px;
    font-size: 3.12rem;
  }

  .hero__content > p {
    max-width: 555px;
    margin-bottom: 22px;
    font-size: .9rem;
  }

  .hero--compact {
    min-height: 320px;
  }

  .hero--compact .hero__layout {
    padding-block: 25px 36px;
  }

  .hero--compact .hero__content h1 {
    font-size: 2.75rem;
  }

  .breadcrumbs {
    margin-bottom: 16px;
  }

  .location-card {
    right: 3%;
    bottom: 24px;
    width: 190px;
    padding: 13px;
    grid-template-columns: 31px 1fr;
  }

  .location-card__pin {
    width: 31px;
    height: 31px;
  }

  .button {
    min-height: 38px;
    padding-inline: 15px;
    font-size: .73rem;
  }

  .section {
    padding-block: 57px;
  }

  .section-heading {
    max-width: 650px;
    margin-bottom: 31px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .section-heading p {
    font-size: .86rem;
  }

  .kpi-grid {
    min-height: 82px;
  }

  .kpi {
    padding: 14px 15px;
    gap: 10px;
  }

  .kpi__icon {
    width: 31px;
    height: 31px;
  }

  .kpi__icon .icon {
    width: 17px;
    height: 17px;
  }

  .benefit-card {
    min-height: 178px;
    padding: 20px 18px;
  }

  .icon-tile {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: .72rem;
  }

  .map-visual {
    min-height: 295px;
  }

  .process-step__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .process-line::before {
    top: 26px;
  }

  .process-step__icon .icon {
    width: 19px;
    height: 19px;
  }

  .process-step h3 {
    font-size: .76rem;
  }

  .process-step p {
    font-size: .58rem;
  }

  .integration-card {
    min-height: 255px;
    padding: 27px;
  }

  .integration-card h3 {
    font-size: 1.22rem;
  }

  .integration-orbit {
    right: 9%;
    width: 140px;
    height: 140px;
  }

  .integration-orbit::before,
  .integration-orbit::after {
    inset: 20px;
  }

  .integration-orbit span,
  .integration-orbit b {
    top: 43px;
    width: 54px;
    height: 54px;
  }

  .integration-orbit i {
    top: 69px;
    left: 47px;
    width: 47px;
  }

  .wms-dashboard {
    min-height: 300px;
    grid-template-columns: 94px 1fr;
  }

  .wms-main {
    padding: 14px;
    gap: 9px;
  }

  .wms-sidebar {
    padding: 15px 9px;
  }

  .wms-sidebar > b {
    margin-bottom: 17px;
  }

  .wms-chart {
    min-height: 76px;
  }

  .logo-section {
    padding-block: 42px;
  }

  .platform-logos span {
    min-height: 67px;
  }

  .clients-section {
    padding-block: 48px;
  }

  .client-card {
    padding: 18px 16px;
  }

  .client-card__logo {
    height: 42px;
    margin-bottom: 12px;
  }

  .client-card__logo img {
    max-width: 125px;
    max-height: 34px;
  }

  .client-card p {
    min-height: 61px;
    font-size: .63rem;
  }

  .cta-banner {
    min-height: 250px;
  }

  .cta-banner__content {
    padding-block: 42px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    padding-bottom: 32px;
    gap: 34px;
  }

  .footer-bottom {
    min-height: 45px;
  }

  .model-flow {
    min-height: 86px;
  }

  .map-visual--wide {
    min-height: 315px;
  }

  .compact-benefits .benefit-card {
    min-height: 145px;
  }

  .carrier-grid article {
    min-height: 138px;
    padding: 19px 19px 18px 63px;
  }

  .carrier-grid .flag {
    top: 19px;
    left: 19px;
    width: 32px;
    height: 32px;
  }

  .outline-grid article {
    min-height: 118px;
    padding: 18px;
  }

  .service-card {
    min-height: 175px;
    padding: 18px 16px;
  }

  .tech-hero {
    min-height: 395px;
    padding-bottom: 40px;
  }

  .tech-hero__grid {
    min-height: 315px;
    gap: 37px;
  }

  .tech-hero h1 {
    font-size: 3.1rem;
  }

  .tech-hero .wms-dashboard {
    min-height: 300px;
  }

  .module-grid article {
    min-height: 130px;
    padding: 14px 11px;
  }

  .tech-feature-grid article {
    min-height: 145px;
    padding: 19px;
  }

  .analytics-grid article {
    min-height: 145px;
    padding: 15px;
  }

  .line-chart,
  .donut {
    height: 92px;
  }

  .donut i {
    width: 79px;
    height: 79px;
  }

  .industry-row {
    min-height: 175px;
    padding: 17px;
    grid-template-columns: 210px 1fr 155px;
    gap: 22px;
  }

  .industry-row--reverse {
    grid-template-columns: 155px 1fr 210px;
  }

  .industry-photo {
    min-height: 142px;
  }

  .industry-row aside {
    min-height: 130px;
    padding: 15px;
  }

  .case-hero {
    min-height: 375px;
  }

  .case-hero__grid {
    min-height: 285px;
    grid-template-columns: 1fr 300px;
    gap: 55px;
  }

  .case-reference {
    min-height: 218px;
    padding: 22px;
  }

  .case-meta .container {
    min-height: 76px;
  }

  .case-columns article {
    min-height: 238px;
    padding: 22px 20px;
  }

  .consultant-card,
  .consultant-section .map-visual {
    min-height: 310px;
  }

  .analysis-form-card,
  .analysis-benefits {
    padding: 28px 32px;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .header-shell {
    gap: 8px;
  }

  .brand {
    flex-basis: 125px;
  }

  .brand img {
    width: 125px;
  }

  .main-nav {
    gap: 7px;
  }

  .main-nav a {
    font-size: .58rem;
  }

  .header-cta {
    padding-inline: 8px;
    font-size: .56rem;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 525px) 1fr;
  }

  .split-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 35px;
  }
}

@media (max-width: 760px) {
  html {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 36px);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header,
  .header-shell {
    min-height: 62px;
  }

  .header-shell {
    width: calc(100% - 28px);
  }

  .brand,
  .brand img {
    width: 150px;
    height: 35px;
    flex-basis: 150px;
  }

  .menu-toggle {
    margin-left: auto;
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 62px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px;
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    flex-direction: column;
    background: var(--navy-950);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero--compact {
    min-height: 570px;
  }

  .hero__photo {
    background-position: 64% center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(5, 18, 31, .85) 0%, rgba(5, 18, 31, .95) 52%, var(--navy-950) 100%);
  }

  .hero__layout,
  .hero--compact .hero__layout {
    padding-block: 48px 128px;
    display: block;
  }

  .hero__content h1,
  .hero--compact .hero__content h1 {
    font-size: 2.65rem;
  }

  .hero__content > p {
    font-size: 1rem;
  }

  .location-card {
    right: 18px;
    bottom: 30px;
    left: 18px;
    width: auto;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .section {
    padding-block: 62px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .kpi-grid,
  .benefit-grid,
  .integration-grid,
  .client-grid,
  .service-grid,
  .carrier-grid,
  .outline-grid,
  .tech-feature-grid,
  .analytics-grid,
  .case-columns,
  .other-case-grid,
  .case-list-grid,
  .article-grid,
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    padding-block: 8px;
  }

  .kpi {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .kpi:first-child {
    border-left: 0;
  }

  .split-layout,
  .split-layout--technology,
  .consultant-section .split-layout,
  .tech-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .map-visual,
  .map-visual--wide {
    min-height: 270px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 8px;
  }

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

  .integration-card {
    min-height: 400px;
  }

  .integration-card__content {
    max-width: 100%;
  }

  .integration-card > img {
    right: -8%;
    width: 90%;
    height: 58%;
  }

  .integration-orbit {
    top: auto;
    right: 50%;
    bottom: 35px;
    transform: translateX(50%);
  }

  .wms-dashboard {
    min-height: 330px;
    grid-template-columns: 82px 1fr;
  }

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

  .platform-logos span {
    border-bottom: 1px solid var(--line);
  }

  .platform-logos--dark span {
    border-color: rgba(255, 255, 255, .1);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 25px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: start;
    flex-direction: column;
  }

  .form-modal[open] {
    padding: 28px 22px;
    display: block;
  }

  .form-modal__intro {
    padding-top: 10px;
  }

  .model-flow {
    padding-block: 25px;
    flex-direction: column;
  }

  .model-flow > div:not(.model-split) {
    width: 100%;
  }

  .model-flow > .icon {
    transform: rotate(90deg);
  }

  .model-split {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .model-split > .icon {
    display: none;
  }

  .model-split span {
    min-width: 0;
  }

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

  .market-process i {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }

  .module-grid,
  .industry-advantages .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-hero {
    padding-top: 25px;
  }

  .tech-hero__grid {
    padding-top: 30px;
  }

  .tech-hero .wms-dashboard {
    min-height: 330px;
    transform: none;
  }

  .industry-row,
  .industry-row--reverse {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .industry-row--reverse .industry-photo,
  .industry-row--reverse .industry-copy,
  .industry-row--reverse aside {
    grid-column: auto;
    grid-row: auto;
  }

  .industry-photo {
    min-height: 240px;
  }

  .industry-row aside {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-hero {
    padding-block: 24px 50px;
  }

  .case-hero__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .case-meta .container {
    grid-template-columns: 1fr 1fr;
  }

  .case-meta .container > div {
    border-bottom: 1px solid var(--line);
  }

  .case-columns article.is-featured {
    transform: none;
  }

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

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 19px;
    width: 1px;
    height: auto;
  }

  .timeline article {
    padding: 0 0 22px 60px;
    text-align: left;
  }

  .timeline article > span {
    top: 0;
    left: 0;
    transform: none;
  }

  .analysis-grid {
    margin-top: -40px;
  }

  .analysis-form-card,
  .analysis-benefits {
    padding: 30px 23px;
  }

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

  .consultant-card > img {
    max-height: 360px;
  }

  .case-list-card--featured {
    grid-column: auto;
  }

  .knowledge-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field input {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .module-grid,
  .industry-advantages .module-grid {
    grid-template-columns: 1fr;
  }

  .wms-dashboard {
    grid-template-columns: 70px 1fr;
  }

  .wms-sidebar i {
    font-size: 0;
  }

  .wms-metrics {
    grid-template-columns: 1fr;
  }

  .wms-metrics i:nth-child(n+2) {
    display: none;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Corrections package 2026-07-30 */
.header-shell {
  gap: 16px;
}

.main-nav {
  gap: clamp(9px, .82vw, 14px);
}

.main-nav > a,
.nav-item--mega > a {
  font-size: .73rem;
}

.header-cta {
  min-height: 42px;
  padding-inline: 15px;
  font-size: .71rem;
  white-space: nowrap;
}

.nav-item--mega {
  position: relative;
  display: flex;
  align-items: center;
}

.mega-toggle {
  width: 28px;
  height: 40px;
  margin-left: -4px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .7);
  background: transparent;
  cursor: pointer;
}

.mega-toggle .icon {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.mega-toggle[aria-expanded="true"] .icon {
  transform: rotate(-90deg);
}

.mega-menu {
  position: fixed;
  z-index: 120;
  top: 72px;
  left: 50%;
  width: min(900px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0 0 14px 14px;
  display: none;
  grid-template-columns: 1.55fr .85fr;
  gap: 26px;
  color: var(--white);
  background: rgba(6, 19, 33, .98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.mega-menu.is-open {
  display: grid;
}

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

.mega-menu__secondary {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
}

.mega-menu__label {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-nav .mega-menu a {
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  white-space: normal;
}

.main-nav .mega-menu a::after {
  display: none;
}

.main-nav .mega-menu a:hover,
.main-nav .mega-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 194, 14, .18);
}

.mega-menu__primary > a > .icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(255, 194, 14, .08);
}

.mega-menu__primary b,
.mega-menu__primary small {
  display: block;
}

.mega-menu__primary small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .47);
  font-size: .66rem;
}

.mega-menu__secondary > a {
  min-height: 42px;
  justify-content: space-between;
}

.mega-menu__secondary > a .icon {
  width: 14px;
  height: 14px;
}

.mega-menu__cta {
  margin-top: auto;
  padding: 18px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--yellow);
}

.mega-menu__cta b {
  font-size: .92rem;
}

.mega-menu__cta p {
  margin: 5px 0 12px;
  color: rgba(6, 19, 33, .76);
  font-size: .72rem;
}

.mega-menu__cta button {
  min-height: 38px;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.home-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 42% 20%, rgba(255, 194, 14, .12), transparent 38%),
    var(--navy-950);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .16;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 194, 14, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 194, 14, .08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.home-hero__grid {
  min-height: 680px;
  padding: 64px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 4.8vw, 4.75rem);
  text-wrap: balance;
}

.home-hero h1 span {
  color: var(--yellow);
}

.home-hero__copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .74);
  font-size: 1.05rem;
}

.home-hero__media {
  position: relative;
  min-height: 530px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.home-hero__media > img,
.home-hero__media > picture,
.home-hero__media > picture > img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 19, 33, .88));
}

.home-hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
}

.integration-card__visual {
  position: absolute;
  right: -9%;
  bottom: -10%;
  width: 68%;
  height: 104%;
  opacity: .78;
  mask-image: linear-gradient(90deg, transparent 0, #000 34%);
}

.integration-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media .location-card {
  z-index: 3;
  top: 24px;
  right: 24px;
  bottom: auto;
}

.kpi-overlap {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 64px), var(--container));
  margin: -54px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(6, 19, 33, .24);
}

.kpi-overlap .container {
  width: 100%;
}

.hero__photo img,
.case-hero .hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plde-map-svg {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.map-country {
  stroke: rgba(255, 194, 14, .23);
  stroke-width: 2;
}

.map-routes path {
  fill: none;
  stroke: rgba(255, 194, 14, .42);
  stroke-width: 2;
  stroke-dasharray: 5 7;
}

.map-nodes circle {
  fill: var(--cyan);
  stroke: rgba(255, 255, 255, .8);
  stroke-width: 1.5;
}

.map-hub-glow {
  fill: rgba(255, 194, 14, .35);
}

.map-hub {
  fill: var(--yellow);
  stroke: var(--white);
  stroke-width: 3;
}

.returns-plde {
  position: relative;
}

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

.returns-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.returns-grid .flag {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
  font-weight: 850;
}

.returns-grid ol {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.returns-grid li {
  min-height: 52px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--slate);
}

.returns-grid li b {
  color: var(--cyan);
  font-size: .72rem;
}

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

.service-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
}

.service-card--featured {
  min-height: 330px;
  color: var(--white);
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.service-card--featured p {
  color: rgba(255, 255, 255, .66);
}

.service-card--featured .service-card__number {
  color: var(--yellow);
}

.service-benefit {
  margin: auto 48px 0 0;
  padding-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #9b7500;
  font-size: .78rem;
  line-height: 1.4;
}

.service-card--featured .service-benefit {
  color: var(--yellow);
}

.service-benefit .icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.services-flow__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}

.services-flow__line article {
  min-height: 170px;
  padding: 28px 22px;
  background: var(--navy-925);
}

.services-flow__line article > span {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 800;
}

.services-flow__line article > .icon {
  width: 30px;
  height: 30px;
  margin: 30px 0 18px;
  color: var(--yellow);
}

.services-flow__line h3 {
  font-size: 1rem;
}

.comparison-grid article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.comparison-grid article.is-featured {
  color: var(--white);
  background: var(--navy-950);
  border-color: var(--navy-950);
  box-shadow: 0 22px 60px rgba(6, 19, 33, .18);
}

.comparison-grid ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  min-height: 50px;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--slate);
}

.comparison-grid li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
}

.comparison-grid .is-featured li {
  color: rgba(255, 255, 255, .72);
  border-color: rgba(255, 255, 255, .1);
}

.comparison-grid .is-featured .eyebrow {
  color: var(--yellow);
}

.dashboard-figure {
  margin: 0;
}

.dashboard-figure figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, .54);
  font-size: .68rem;
  text-align: right;
}

.wms-top span {
  color: var(--navy-950);
  background: var(--yellow);
}

.wms-metrics i b {
  font-size: .82rem;
}

.industry-outcome {
  min-height: 175px;
  padding: 24px !important;
  border: 1px solid rgba(255, 194, 14, .17) !important;
  border-radius: 11px;
  background: rgba(255, 194, 14, .05);
}

.industry-outcome > span {
  color: #876800 !important;
}

.industry-outcome strong,
.industry-outcome small {
  display: block;
}

.industry-outcome strong {
  margin: 18px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.industry-outcome small {
  color: var(--muted);
  line-height: 1.45;
}

.reference-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.reference-logo-row > span {
  min-height: 105px;
  padding: 20px;
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.reference-logo-row > span:last-child {
  border-right: 0;
}

.reference-logo-row img {
  max-width: 160px;
  max-height: 52px;
  object-fit: contain;
}

.reference-summary,
.reference-statement {
  color: inherit;
  font-size: 1.04rem;
  line-height: 1.65;
}

.testimonial-section .reference-statement {
  max-width: 900px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  text-align: center;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .45fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.about-fact-card {
  padding: 36px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 22px 60px rgba(6, 19, 33, .18);
}

.about-fact-card > span {
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.about-fact-card strong,
.about-fact-card b {
  display: block;
}

.about-fact-card strong {
  margin-top: 18px;
  color: var(--yellow);
  font-size: 3.2rem;
  line-height: 1;
}

.about-fact-card hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.about-fact-card p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: .78rem;
}

.responsibility-grid,
.principles-grid,
.knowledge-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.responsibility-grid article {
  min-height: 275px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: var(--navy-925);
}

.responsibility-grid article > .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 45px;
  color: var(--yellow);
}

.responsibility-grid article > span {
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.responsibility-grid p {
  font-size: .86rem;
}

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

.principles-grid article {
  min-height: 235px;
  padding: 28px 24px;
  border-top: 3px solid var(--yellow);
  background: var(--soft);
}

.principles-grid article > span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
}

.principles-grid h3 {
  margin-top: 36px;
}

.principles-grid p {
  font-size: .84rem;
}

.about-contact,
.team-contact-card > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-contact a,
.team-contact-card a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 750;
}

.about-contact .icon,
.team-contact-card a .icon {
  width: 20px;
  height: 20px;
}

.knowledge-pillar-grid article {
  min-height: 315px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
}

.knowledge-pillar-grid article > .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 35px;
  color: var(--cyan);
}

.knowledge-pillar-grid article > span {
  color: var(--yellow-hover);
  font-size: .72rem;
  font-weight: 850;
}

.knowledge-pillar-grid p {
  font-size: .88rem;
}

.knowledge-pillar-grid a {
  min-height: 44px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 800;
}

.knowledge-contact .split-layout {
  grid-template-columns: .85fr 1fr;
}

.knowledge-contact .lead-form {
  padding: 32px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
}

.team-contact-card {
  min-height: 390px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  color: var(--white);
  background: var(--navy-950);
}

.team-contact-card > .icon-tile {
  width: 72px;
  height: 72px;
  margin: 0;
}

.team-contact-card h2 {
  margin-top: 8px;
}

.team-contact-card p {
  color: rgba(255, 255, 255, .66);
}

.production-legal > p:first-child {
  padding: 22px;
  border-left: 4px solid var(--yellow);
  background: var(--soft);
}

.production-legal ol {
  padding-left: 24px;
}

.production-legal li {
  margin-bottom: 8px;
}

.legal-copy a {
  color: #9b7500;
  text-decoration: underline;
}

.legal-copy code {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--soft);
}

.legal-source-note {
  color: var(--muted);
  font-size: .74rem;
}

.form-modal {
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
}

.honeypot {
  position: fixed !important;
  top: -10000px !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(calc(100% - 48px), 1060px);
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: rgba(6, 19, 33, .98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  font-size: 1rem;
}

.cookie-consent p {
  max-width: 680px;
  margin: 4px 0;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
}

.cookie-consent a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 750;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
}

.cookie-consent__actions .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
}

@media (max-width: 1180px) {
  .header-shell {
    width: calc(100% - 30px);
    gap: 10px;
  }

  .brand {
    flex-basis: 150px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav > a,
  .nav-item--mega > a {
    font-size: .63rem;
  }

  .header-cta {
    padding-inline: 9px;
    font-size: .61rem;
  }
}

@media (max-width: 1080px) and (min-width: 761px) {
  html {
    font-size: 14px;
  }

  .site-header,
  .header-shell {
    min-height: 64px;
  }

  .brand,
  .brand img {
    width: 160px;
    flex-basis: 160px;
  }

  .brand {
    height: 44px;
  }

  .brand img {
    height: 37px;
  }

  .menu-toggle {
    margin-left: auto;
    display: block;
    width: 44px;
    height: 44px;
  }

  .header-cta {
    min-height: 40px;
    font-size: .7rem;
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px;
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    flex-direction: column;
    background: var(--navy-950);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-item--mega > a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    font-size: 1rem;
  }

  .nav-item--mega {
    display: grid;
    grid-template-columns: 1fr 48px;
  }

  .mega-toggle {
    width: 48px;
    height: 48px;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: auto;
    grid-column: 1 / -1;
    margin-bottom: 12px;
    grid-template-columns: 1fr;
  }

  .mega-menu__secondary {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }

  .home-hero__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 35px;
  }

  .home-hero h1 {
    font-size: 3.15rem;
  }
}

@media (max-width: 760px) {
  .brand {
    height: 44px;
  }

  .brand img {
    height: 35px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-item--mega {
    display: grid;
    grid-template-columns: 1fr 48px;
  }

  .nav-item--mega > a {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .mega-toggle {
    width: 48px;
    height: 48px;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: auto;
    max-height: none;
    margin-bottom: 12px;
    padding: 16px;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    border-radius: 0 0 10px 10px;
  }

  .mega-menu__primary {
    grid-template-columns: 1fr;
  }

  .mega-menu__secondary {
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }

  .home-hero,
  .home-hero__grid {
    min-height: 0;
  }

  .home-hero__grid {
    padding: 54px 0 95px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.2rem);
  }

  .home-hero__media,
  .home-hero__media > img,
  .home-hero__media > picture,
  .home-hero__media > picture > img {
    height: 430px;
    min-height: 430px;
  }

  .home-hero__media .location-card {
    top: 18px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .kpi-overlap {
    width: calc(100% - 36px);
    margin-top: -48px;
  }

  .returns-grid,
  .comparison-grid,
  .responsibility-grid,
  .principles-grid,
  .knowledge-pillar-grid,
  .about-story__grid,
  .reference-logo-row,
  .services-flow__line {
    grid-template-columns: 1fr;
  }

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

  .service-card--featured,
  .service-card {
    min-height: 275px;
  }

  .services-flow__line article {
    min-height: 130px;
  }

  .services-flow__line article > .icon {
    margin: 18px 0 12px;
  }

  .reference-logo-row > span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reference-logo-row > span:last-child {
    border-bottom: 0;
  }

  .industry-outcome {
    min-height: 0;
  }

  .knowledge-contact .split-layout {
    grid-template-columns: 1fr;
  }

  .team-contact-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .team-contact-card > .icon-tile {
    width: 60px;
    height: 60px;
  }

  .plde-map-svg {
    min-height: 270px;
  }

  .dashboard-figure figcaption {
    text-align: left;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cookie-consent__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent__actions .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .wms-sidebar > b {
    font-size: .55rem;
    letter-spacing: -.03em;
  }

  .wms-top strong {
    font-size: .64rem;
  }

  .wms-top span {
    padding-inline: 6px;
    font-size: .45rem;
  }
}

/* Audit 2: official branding, honest photography and production-ready cards */
.staging-bar {
  min-height: 26px;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .78);
  background: #020b13;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand {
  flex-basis: 154px;
  height: 46px;
  overflow: visible;
}

.brand img {
  flex: 0 0 auto;
  width: auto;
  height: 40px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.footer-brand > img {
  width: auto;
  height: 42px;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
}

.home-hero__media > picture {
  display: block;
}

.home-industries {
  overflow: hidden;
}

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

.home-industry-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 19, 33, .08);
}

.home-industry-card:nth-child(1),
.home-industry-card:nth-child(2) {
  grid-column: span 3;
}

.home-industry-card:nth-child(n+3) {
  grid-column: span 2;
}

.home-industry-card picture,
.home-industry-card img {
  width: 100%;
  display: block;
}

.home-industry-card picture {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
}

.home-industry-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-industry-card:hover img {
  transform: scale(1.025);
}

.home-industry-card > div {
  min-height: 142px;
  padding: 22px 24px 24px;
}

.home-industry-card h3 {
  margin-bottom: 9px;
}

.home-industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.section-action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.service-card {
  padding: 32px 28px 30px;
}

.service-card p {
  color: #526274;
  font-size: .92rem;
  line-height: 1.6;
}

.service-card--featured p {
  color: rgba(255, 255, 255, .78);
}

.service-card > a {
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
}

@media (max-width: 1080px) and (min-width: 761px) {
  .brand {
    width: 146px;
    flex-basis: 146px;
    height: 42px;
  }

  .brand img {
    width: auto;
    height: 38px;
  }

  .main-nav {
    top: 90px;
  }

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

  .home-industry-card,
  .home-industry-card:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .staging-bar {
    min-height: 26px;
    font-size: 10px;
  }

  .brand {
    width: 130px;
    flex-basis: 130px;
    height: 42px;
  }

  .brand img {
    width: auto;
    height: 35px;
  }

  .main-nav {
    top: 88px;
  }

  .home-industry-grid {
    grid-template-columns: 1fr;
  }

  .home-industry-card,
  .home-industry-card:nth-child(n) {
    grid-column: auto;
  }

  .home-industry-card > div {
    min-height: 0;
  }

  .home-industry-card p,
  .service-card p {
    font-size: 16px;
  }

  .service-card {
    padding: 30px 24px 28px;
  }
}
