:root {
  --ink: #101112;
  --charcoal: #191b1f;
  --graphite: #2b2f35;
  --steel: #66717d;
  --ash: #eef0f2;
  --cloud: #f8f8f6;
  --white: #ffffff;
  --amber: #ffad16;
  --amber-dark: #de8500;
  --teal: #1f7a76;
  --line: rgba(16, 17, 18, 0.1);
  --shadow: 0 22px 70px rgba(16, 17, 18, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 173, 22, 0.16), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f4f4f1 46%, #ffffff 100%);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(16, 17, 18, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 55px rgba(16, 17, 18, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 124px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--graphite);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--amber);
  transition: width 0.24s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 142px max(24px, calc((100vw - 1180px) / 2)) 48px;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto auto;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(255, 173, 22, 0.18) 28% 32%, transparent 32% 100%),
    linear-gradient(45deg, transparent 0 54%, rgba(31, 122, 118, 0.12) 54% 58%, transparent 58% 100%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 210px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 24px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.2vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions,
.insight-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 14px 32px rgba(255, 173, 22, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc04d;
}

.button-secondary {
  border: 1px solid rgba(16, 17, 18, 0.14);
  color: var(--ink);
  background: var(--white);
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button svg,
.header-cta svg,
.value-card svg,
.solution-card svg,
.consultation-points svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
}

.logistics-stage {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 246, 0.78)),
    linear-gradient(135deg, transparent 0 45%, rgba(255, 173, 22, 0.12) 45% 47%, transparent 47% 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.motion-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.map-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(16, 17, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 18, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 52% 50%, black 35%, transparent 78%);
}

.scan-beam {
  position: absolute;
  z-index: 1;
  top: -28%;
  left: 10%;
  width: 22%;
  height: 156%;
  background: linear-gradient(90deg, transparent, rgba(255, 173, 22, 0.2), transparent);
  transform: rotate(22deg);
  animation: scan-beam 4.8s ease-in-out infinite;
}

.motion-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(31, 122, 118, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(31, 122, 118, 0.1);
}

.ring-a {
  top: 12%;
  right: 14%;
  width: 170px;
  height: 170px;
  animation: ring-pulse 4.8s ease-in-out infinite;
}

.ring-b {
  left: 8%;
  bottom: 14%;
  width: 220px;
  height: 220px;
  animation: ring-pulse 5.4s ease-in-out infinite reverse;
}

.ring-c {
  top: 42%;
  left: 40%;
  width: 112px;
  height: 112px;
  border-color: rgba(255, 173, 22, 0.34);
  animation: ring-pulse 4s ease-in-out infinite;
}

.route-line {
  position: absolute;
  z-index: 2;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ink), var(--amber), transparent);
  background-size: 240px 100%;
  transform-origin: left center;
  opacity: 0.86;
}

.conveyor {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(16, 17, 18, 0.08);
  box-shadow: inset 0 0 0 1px rgba(16, 17, 18, 0.08);
}

.conveyor span {
  width: 18px;
  height: 10px;
  border-radius: 3px;
  background: var(--amber);
  animation: conveyor-pulse 1.4s ease-in-out infinite;
}

.conveyor span:nth-child(2) {
  animation-delay: 0.18s;
}

.conveyor span:nth-child(3) {
  animation-delay: 0.36s;
}

.conveyor span:nth-child(4) {
  animation-delay: 0.54s;
}

.conveyor-a {
  top: 15%;
  left: 44%;
  transform: rotate(-14deg);
}

.conveyor-b {
  right: 11%;
  bottom: 34%;
  transform: rotate(18deg);
}

.data-stream {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.data-stream span {
  display: block;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(31, 122, 118, 0.58);
  animation: stream-slide 1.8s ease-in-out infinite;
}

.data-stream span:nth-child(2) {
  width: 66px;
  animation-delay: 0.2s;
}

.data-stream span:nth-child(3) {
  width: 30px;
  animation-delay: 0.4s;
}

.stream-a {
  top: 34%;
  left: 9%;
}

.stream-b {
  right: 10%;
  bottom: 18%;
}

.route-line-a {
  top: 44%;
  left: 9%;
  width: 82%;
  transform: rotate(-12deg);
}

.route-line-b {
  top: 58%;
  left: 12%;
  width: 74%;
  transform: rotate(20deg);
}

.route-line-c {
  top: 25%;
  left: 16%;
  width: 54%;
  transform: rotate(35deg);
}

.route-line-d {
  top: 73%;
  left: 35%;
  width: 48%;
  transform: rotate(-34deg);
}

.shipment,
.node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.shipment {
  z-index: 3;
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 18px 35px rgba(16, 17, 18, 0.18);
}

.shipment svg {
  width: 26px;
  height: 26px;
}

.shipment-a {
  top: 19%;
  left: 16%;
  animation: shipment-a 9s ease-in-out infinite alternate;
}

.shipment-b {
  top: 62%;
  left: 43%;
  animation: shipment-b 8s ease-in-out infinite alternate;
}

.shipment-c {
  top: 34%;
  right: 13%;
  animation: shipment-c 10s ease-in-out infinite alternate;
}

.node {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(31, 122, 118, 0.13);
}

.node-one {
  top: 41%;
  left: 11%;
}

.node-two {
  top: 23%;
  right: 29%;
}

.node-three {
  right: 16%;
  bottom: 22%;
}

.node-four {
  left: 34%;
  bottom: 15%;
}

.tower-panel {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 17, 18, 0.9);
  box-shadow: 0 24px 60px rgba(16, 17, 18, 0.25);
  backdrop-filter: blur(14px);
  animation: panel-float 3.2s ease-in-out infinite alternate;
}

.panel-primary {
  right: 32px;
  bottom: 34px;
  width: min(310px, calc(100% - 64px));
  padding: 20px;
}

.panel-head,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head span,
.metric-row span,
.panel-secondary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.panel-head strong {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.metric-row {
  margin-top: 12px;
}

.metric-bar {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.metric-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), #fff2c9);
}

.panel-secondary {
  top: 42px;
  left: 34px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  animation-delay: 0.55s;
}

.panel-tertiary {
  top: 25%;
  right: 26%;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 17, 18, 0.1);
  animation-delay: 0.95s;
}

.panel-tertiary span {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
}

.panel-tertiary strong {
  font-size: 1.2rem;
}

body.gsap-ready .shipment,
body.gsap-ready .tower-panel {
  animation: none;
}

.panel-secondary strong {
  font-size: 1.05rem;
}

.hero-ticker {
  position: relative;
  display: flex;
  gap: 12px;
  margin-top: 28px;
  overflow: hidden;
}

@media only screen and (max-width: 420px) {
  .hero-ticker {
    flex-direction: column;
  }

}

.hero-ticker span {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

@keyframes shipment-a {
  to {
    transform: translate(42vw, 15vh) rotate(8deg);
  }
}

@keyframes shipment-b {
  to {
    transform: translate(16vw, -22vh) rotate(-7deg);
  }
}

@keyframes shipment-c {
  to {
    transform: translate(-34vw, 18vh) rotate(5deg);
  }
}

@keyframes panel-float {
  to {
    transform: translateY(-12px);
  }
}

@keyframes scan-beam {
  0% {
    transform: translateX(-130%) rotate(22deg);
    opacity: 0;
  }

  20%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(260%) rotate(22deg);
    opacity: 0;
  }
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.48;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes conveyor-pulse {

  0%,
  100% {
    transform: translateX(-5px);
    opacity: 0.35;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

@keyframes stream-slide {

  0%,
  100% {
    transform: translateX(-14px);
    opacity: 0.35;
  }

  50% {
    transform: translateX(14px);
    opacity: 0.95;
  }
}

.section {
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

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

.stacked-copy {
  display: grid;
  gap: 16px;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 42px;
}

.section-heading.compact {
  width: min(720px, 100%);
}

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

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

.value-card,
.solution-card,
.industry-grid article,
.assessment-list article,
.benefits-panel {
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(16, 17, 18, 0.06);
}

.value-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 22px;
  font-weight: 800;
}

.value-card svg {
  flex: 0 0 auto;
  color: var(--amber-dark);
}

.why-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 173, 22, 0.08), transparent 28%),
    var(--ink);
}

.why-section p,
.why-section .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.why-section .section-kicker {
  color: var(--amber);
}

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

.why-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.why-grid span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--amber);
  font-weight: 800;
}

.why-grid h3 {
  font-size: 1.45rem;
}

.solutions-section {
  overflow: hidden;
}

.solution-scroll-window {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.solution-scroll-window::-webkit-scrollbar {
  display: none;
}

body.gsap-ready .solution-scroll-window {
  overflow: visible;
}

.solution-rail {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}


/* .solution-card {
  flex: 0 0 min(360px, 72vw);
  min-height: 316px;
  padding: 26px;
} */

@media only screen and (max-height: 600px) {
  .solution-card {
    flex: 0 0 min(556px, 82vw);
    min-height: 200px;
    padding: 26px;
  }
}


@media only screen and (min-height: 601px) {
  .solution-card {
    flex: 0 0 min(360px, 72vw);
    min-height: 316px;
    padding: 26px;
  }
}

.rail-progress {
  height: 4px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 17, 18, 0.1);
}

.rail-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  transform: scaleX(0.08);
  transform-origin: left center;
}

@keyframes mobile-solution-slide {

  0%,
  14% {
    transform: translateX(0);
  }

  86%,
  100% {
    transform: translateX(calc(-100% + min(342px, calc(100vw - 48px))));
  }
}

.solution-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 54px;
  color: var(--amber-dark);
}

.solution-card h3 {
  font-size: 1.28rem;
}

.industries-section {
  background:
    linear-gradient(180deg, rgba(31, 122, 118, 0.08), transparent 46%),
    #ffffff;
}

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

.industry-grid article {
  min-height: 190px;
  padding: 24px;
}

.industry-grid h3 {
  font-size: 1.32rem;
}

.insights-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 173, 22, 0.28), transparent 34%),
    linear-gradient(90deg, var(--ink), #34302a);
}

.insights-band h2 {
  max-width: 830px;
}

.insights-band .section-kicker,
.insights-band p {
  color: var(--amber);
}

.insight-actions {
  justify-content: flex-start;
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

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

.assessment-list article,
.benefits-panel {
  padding: 24px;
}

.benefits-panel {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: var(--white);
}

.benefits-panel ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefits-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.benefits-panel li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 2px;
  background: var(--amber);
  transform: rotate(45deg);
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: start;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 173, 22, 0.18), transparent 28%),
    var(--white);
}

.consultation-copy {
  position: sticky;
  top: 128px;
}

.consultation-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.consultation-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
  font-weight: 800;
}

.consultation-points svg {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(16, 17, 18, 0.1);
  border-radius: 8px;
  background: #fcfcfb;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 17, 18, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 128px;
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--amber-dark);
  box-shadow: 0 0 0 4px rgba(255, 173, 22, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--teal);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, auto);
  gap: 42px;
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 156px;
  height: 88px;
  padding: 8px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  /* background: var(--white); */
}

.site-footer p {
  max-width: 410px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--amber);
}

.footer-credit {
  grid-column: 1 / -1;
  max-width: none;
  margin: 8px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(16, 17, 18, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 48px rgba(16, 17, 18, 0.12);
  }

  .site-header.is-open .nav-links a {
    padding: 14px;
  }

  .hero-grid,
  .split,
  .insights-band,
  .assessment-layout,
  .consultation-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .logistics-stage {
    min-height: 520px;
  }

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

  .benefits-panel,
  .consultation-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 72px;
    padding: 8px 10px 8px 12px;
  }

  .brand img {
    width: 94px;
    height: 54px;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-actions,
  .insight-actions,
  .form-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .insight-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .logistics-stage {
    min-height: 430px;
  }

  .shipment {
    width: 48px;
    height: 48px;
  }

  .panel-primary {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .panel-secondary {
    top: 18px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .panel-tertiary {
    top: 124px;
    right: 16px;
  }

  .section,
  .consultation-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.1rem);
  }

  .value-grid,
  .why-grid,
  .industry-grid,
  .assessment-list,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .solution-card {
    flex-basis: min(318px, 82vw);
  }

  body.motion-fallback .solution-rail {
    animation: mobile-solution-slide 16s ease-in-out infinite alternate;
  }

  .solution-card,
  .why-grid article {
    min-height: auto;
  }

  .solution-card svg,
  .why-grid span {
    margin-bottom: 28px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

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