:root {
  color-scheme: light;
  --ink: #061b3d;
  --ink-2: #0a2b58;
  --paper: #f6fbff;
  --paper-2: #ffffff;
  --muted: #5f7186;
  --line: rgba(6, 27, 61, 0.14);
  --line-light: rgba(246, 251, 255, 0.2);
  --cyan: #0a8fb3;
  --lime: #38c8df;
  --amber: #174c7b;
  --coral: #0e6f97;
  --header-height: 88px;
  --shadow: 0 24px 70px rgba(6, 27, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.intro-lock {
  overflow: hidden;
}

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

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 34%, rgba(56, 200, 223, 0.18), transparent 28%),
    radial-gradient(circle at 40% 74%, rgba(10, 143, 179, 0.14), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f6fbff 45%, #e9f4fb 100%);
  opacity: 1;
  pointer-events: auto;
  animation: introAutoHide 520ms ease 2450ms forwards;
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

.brand-intro[hidden] {
  display: none;
}

.brand-intro.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.brand-intro-mark {
  position: relative;
  width: min(560px, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 24px 46px rgba(6, 27, 61, 0.16));
  transform: translateY(0);
  animation: introMarkLift 1800ms ease both;
}

.brand-intro-mark img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  animation: introOriginalLogoSpin 2400ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.brand-intro-orbit {
  position: absolute;
  top: 13.5%;
  left: 25.5%;
  width: 49%;
  aspect-ratio: 1;
  border: 4px solid rgba(6, 27, 61, 0.9);
  border-right-color: transparent;
  border-bottom-color: rgba(10, 143, 179, 0.62);
  border-radius: 50%;
  transform-origin: 50% 50%;
  animation: introPlanetSpin 2200ms linear infinite;
}

.brand-intro-orbit::after {
  position: absolute;
  top: 16%;
  right: -3%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(10, 143, 179, 0.38);
  content: "";
}

.brand-intro-orbit.orbit-b {
  top: 20%;
  left: 21.5%;
  width: 56%;
  border-width: 3px;
  border-color: transparent rgba(6, 27, 61, 0.86) rgba(6, 27, 61, 0.86) transparent;
  animation-duration: 3200ms;
  animation-direction: reverse;
}

.brand-intro-orbit.orbit-b::after {
  top: 74%;
  right: 7%;
  width: 12px;
  height: 12px;
  background: var(--ink);
}

@keyframes introPlanetSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes introMarkLift {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introAutoHide {
  to {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes introOriginalLogoSpin {
  0% {
    transform: rotate(-12deg) scale(0.94);
  }

  72% {
    transform: rotate(360deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(6, 27, 61, 0.16);
  background: rgba(246, 251, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(6, 27, 61, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(246, 251, 255, 0.98);
  border-bottom-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  width: clamp(270px, 28vw, 390px);
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.brand-icon-wrap {
  position: relative;
  display: grid;
  width: clamp(54px, 4.8vw, 64px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
}

.brand-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(6, 27, 61, 0.14);
}

.brand-icon-original {
  animation: brandHeaderLogoMotion 6s ease-in-out infinite;
}

.brand:hover .brand-icon-original,
.brand:focus-visible .brand-icon-original {
  animation-duration: 3.5s;
}

.brand-word {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1;
}

.brand-word strong {
  font-size: clamp(1.08rem, 1.5vw, 1.42rem);
  font-weight: 950;
  letter-spacing: 0;
}

.brand-word small {
  font-size: clamp(0.64rem, 0.82vw, 0.82rem);
  font-weight: 950;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 100%;
  height: clamp(64px, 7vw, 78px);
  border: 1px solid rgba(6, 27, 61, 0.12);
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 30px rgba(6, 27, 61, 0.12);
}

.brand-logo-exact {
  aspect-ratio: 1;
}

.brand-icon-wrap::before,
.brand-icon-wrap::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.brand-icon-wrap::before {
  top: 13%;
  left: 22%;
  z-index: 3;
  width: 58%;
  aspect-ratio: 1;
  border: 2px solid rgba(6, 27, 61, 0.88);
  border-right-color: transparent;
  border-bottom-color: rgba(10, 143, 179, 0.72);
  border-radius: 50%;
  animation: headerLogoOrbit 2400ms linear infinite;
}

.brand-icon-wrap::after {
  top: 20%;
  left: 30%;
  z-index: 3;
  width: 45%;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-top-color: rgba(56, 200, 223, 0.9);
  border-left-color: rgba(6, 27, 61, 0.65);
  border-radius: 50%;
  animation: headerLogoOrbit 3200ms linear infinite reverse;
}

@keyframes headerLogoOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes brandOriginalSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes brandHeaderLogoMotion {
  0%,
  100% {
    transform: rotate(0deg);
  }

  35% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(-4deg);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(6, 27, 61, 0.13);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 8px 22px rgba(6, 27, 61, 0.06);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(6, 27, 61, 0.28);
  background: var(--ink);
  color: var(--paper-2);
  outline: none;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.nav-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.98) 0%, rgba(10, 15, 17, 0.86) 44%, rgba(10, 15, 17, 0.42) 100%),
    linear-gradient(140deg, #061b3d, #0a2b58 52%, #061b3d);
  color: var(--paper);
}

#tradeScene,
#engineCinematic {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 15, 17, 0.14), transparent 48%, rgba(10, 15, 17, 0.28)),
    linear-gradient(90deg, rgba(10, 15, 17, 0.22), transparent 58%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  align-self: center;
  margin-left: clamp(18px, 7vw, 98px);
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--cyan);
}

.section-kicker {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12.4ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 9.1rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 6px 30px rgba(10, 15, 17, 0.56);
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(247, 241, 230, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.32rem);
  text-shadow: 0 4px 20px rgba(10, 15, 17, 0.82);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: #10190d;
}

.button-ghost {
  border-color: rgba(247, 241, 230, 0.46);
  color: var(--paper);
}

.button-ghost.dark {
  border-color: rgba(10, 15, 17, 0.28);
  color: var(--ink);
}

.hero-status {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(22px, 5vw, 52px);
  z-index: 2;
  display: grid;
  width: min(720px, calc(100% - 36px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(247, 241, 230, 0.2);
  border-left: 1px solid rgba(247, 241, 230, 0.14);
}

.hero-status div {
  min-height: 106px;
  padding: 17px;
  border-right: 1px solid rgba(247, 241, 230, 0.14);
  background: rgba(10, 15, 17, 0.32);
  backdrop-filter: blur(10px);
}

.hero-status strong,
.hero-status span {
  display: block;
}

.hero-status strong {
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.hero-status span {
  margin-top: 10px;
  color: rgba(247, 241, 230, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.statement {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 32px clamp(18px, 5vw, 70px);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.statement p {
  width: min(1180px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2.3vw, 2rem);
  font-weight: 760;
  line-height: 1.22;
}

.firm-section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 82% 12%, rgba(56, 200, 223, 0.18), transparent 28%),
    #ffffff;
}

.firm-inner {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  margin: 0 auto;
  align-items: start;
}

.firm-copy h2,
.service-index-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.firm-copy p:not(.eyebrow),
.service-index-head p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

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

.firm-card,
.service-index-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 251, 255, 0.72);
  padding: clamp(20px, 3vw, 30px);
}

.firm-card span,
.service-index-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.firm-card strong,
.service-index-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.08;
}

.firm-card p,
.service-index-card p {
  margin: 0;
  color: var(--muted);
}

.engine-section,
.services-section,
.bridge-section,
.process-section,
.contact-section,
.legal-section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 70px);
}

.engine-section {
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.07) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(10, 15, 17, 0.065) 0 1px, transparent 1px 100%),
    #edf6fb;
  background-size: 42px 42px;
}

.engine-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  margin: 0 auto;
  align-items: start;
}

.engine-grid h2,
.section-head h2,
.process-intro h2,
.impact-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5.7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.engine-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signal-row span,
.impact-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 850;
}

.scroll-journey {
  position: relative;
  height: 520svh;
  margin-top: clamp(46px, 7vw, 88px);
  scroll-margin-top: calc(var(--header-height) + 18px);
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.scroll-journey-sticky {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  height: calc(100svh - var(--header-height) - 36px);
  min-height: 560px;
}

.cinematic-stage {
  position: relative;
  height: clamp(430px, 56vw, 660px);
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 17, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 34%, rgba(24, 213, 223, 0.22), transparent 33%),
    radial-gradient(circle at 24% 76%, rgba(246, 183, 67, 0.16), transparent 30%),
    linear-gradient(145deg, #071012, #101b1d 52%, #070b0c);
  box-shadow: 0 34px 80px rgba(10, 15, 17, 0.24);
  isolation: isolate;
}

.cinematic-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 12, 13, 0.02), rgba(7, 12, 13, 0.42)),
    linear-gradient(90deg, rgba(7, 12, 13, 0.42), transparent 45%, rgba(7, 12, 13, 0.12));
  content: "";
  pointer-events: none;
}

.story-frame-stack {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  z-index: 2;
  width: min(390px, 42%);
  aspect-ratio: 1.18;
  pointer-events: none;
}

.story-shot {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 230, 0.24);
  border-radius: 8px;
  background: #071012;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(18px) scale(0.96) rotateX(5deg);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.story-shot.is-active {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}

.story-shot::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(247, 241, 230, 0.05) 0 1px, transparent 1px 100%);
  background-size: 32px 32px;
  content: "";
}

.story-shot span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-shot i,
.story-shot b {
  position: absolute;
  display: block;
  content: "";
}

.shot-map {
  background:
    radial-gradient(circle at 22% 72%, rgba(24, 213, 223, 0.28), transparent 25%),
    radial-gradient(circle at 74% 30%, rgba(183, 240, 74, 0.22), transparent 26%),
    linear-gradient(135deg, #081112, #101d20);
}

.shot-map i {
  inset: 34% 12% 22% 12%;
  border: 3px solid rgba(24, 213, 223, 0.88);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 80px 0;
}

.shot-map b {
  right: 20%;
  bottom: 22%;
  width: 92px;
  height: 92px;
  border: 10px solid var(--lime);
  border-radius: 50%;
  box-shadow: -166px -40px 0 -34px var(--cyan), -80px -112px 0 -34px var(--amber);
}

.shot-brand {
  background:
    linear-gradient(120deg, rgba(247, 241, 230, 0.9), rgba(178, 219, 207, 0.82)),
    #f6fbff;
}

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

.shot-brand i {
  top: 30%;
  left: 18%;
  width: 48%;
  height: 40%;
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.9), rgba(10, 15, 17, 0.72)),
    var(--ink);
  transform: skewY(-10deg);
}

.shot-brand b {
  right: 15%;
  bottom: 15%;
  width: 36%;
  height: 46%;
  background:
    linear-gradient(90deg, var(--cyan) 0 12px, transparent 12px 100%),
    linear-gradient(180deg, var(--coral) 0 20%, var(--paper) 20% 100%);
  transform: rotateY(-28deg) rotateZ(7deg);
  box-shadow: -38px -34px 0 rgba(183, 240, 74, 0.72);
}

.shot-campaign {
  background:
    radial-gradient(circle at 65% 42%, rgba(246, 183, 67, 0.34), transparent 26%),
    linear-gradient(145deg, #071012, #162428);
}

.shot-campaign i {
  left: 17%;
  top: 22%;
  width: 34%;
  height: 62%;
  border: 8px solid #050707;
  border-radius: 18px;
  background:
    linear-gradient(180deg, var(--lime) 0 9%, transparent 9% 100%),
    linear-gradient(135deg, rgba(24, 213, 223, 0.64), rgba(10, 15, 17, 0.84));
  box-shadow: 126px 34px 0 -24px rgba(247, 241, 230, 0.9);
}

.shot-campaign b {
  right: 14%;
  top: 24%;
  width: 30%;
  height: 18%;
  border: 3px solid var(--cyan);
  box-shadow: 0 76px 0 rgba(246, 183, 67, 0.9), -70px 118px 0 rgba(243, 107, 93, 0.9);
}

.shot-logistics {
  background:
    radial-gradient(circle at 40% 78%, rgba(24, 213, 223, 0.28), transparent 24%),
    linear-gradient(145deg, #091112, #101b1d);
}

.shot-logistics i {
  right: 10%;
  bottom: 25%;
  width: 58%;
  height: 24%;
  background: linear-gradient(90deg, var(--coral) 0 24%, var(--paper) 24% 100%);
  transform: perspective(220px) rotateY(-18deg) skewY(4deg);
}

.shot-logistics b {
  right: 15%;
  bottom: 17%;
  width: 28px;
  height: 28px;
  background: #050707;
  border-radius: 50%;
  box-shadow: 62px 0 0 #050707, 144px 0 0 #050707, -216px -20px 0 2px var(--amber);
}

.shot-growth {
  background:
    radial-gradient(circle at 34% 32%, rgba(183, 240, 74, 0.3), transparent 28%),
    linear-gradient(145deg, #071012, #111d20);
}

.shot-growth i {
  right: 12%;
  bottom: 18%;
  width: 74%;
  height: 48%;
  background:
    linear-gradient(90deg, transparent 0 9%, var(--coral) 9% 18%, transparent 18% 26%, var(--amber) 26% 37%, transparent 37% 47%, var(--cyan) 47% 59%, transparent 59% 70%, var(--lime) 70% 86%, transparent 86% 100%);
}

.shot-growth b {
  left: 16%;
  top: 30%;
  width: 68%;
  height: 34%;
  border-top: 5px solid var(--lime);
  border-right: 5px solid var(--cyan);
  border-radius: 0 70px 0 0;
  transform: rotate(-8deg);
}

.cinematic-caption {
  position: absolute;
  bottom: clamp(18px, 4vw, 36px);
  left: clamp(18px, 4vw, 42px);
  z-index: 2;
  width: min(520px, calc(100% - 36px));
  color: var(--paper);
}

.cinematic-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cinematic-caption em {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cinematic-caption strong {
  display: block;
  font-size: clamp(1.65rem, 3.3vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.52);
}

.cinematic-caption p {
  width: min(480px, 100%);
  margin: 14px 0 0;
  color: rgba(247, 241, 230, 0.76);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.story-progress {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 36px);
  z-index: 2;
  width: min(320px, 34%);
  height: 3px;
  overflow: hidden;
  background: rgba(247, 241, 230, 0.18);
}

.story-progress span {
  display: block;
  width: calc(var(--story-progress, 0) * 100%);
  height: 100%;
  background: var(--lime);
  transition: width 120ms linear;
}

.activity-split {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  padding: clamp(72px, 10vw, 120px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.07) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(10, 15, 17, 0.055) 0 1px, transparent 1px 100%),
    #edf6fb;
  background-size: 86px 86px, 100% 68px, auto;
}

.activity-head {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(360px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 68px);
  margin: 0 auto;
  align-items: end;
}

.activity-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.activity-head h2 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(2.8rem, 5.25vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.activity-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.activity-lanes {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.activity-lane {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.activity-lane::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.marketing-lane {
  background:
    linear-gradient(135deg, rgba(24, 213, 223, 0.14), transparent 52%),
    var(--paper-2);
}

.marketing-lane::before {
  background:
    linear-gradient(90deg, rgba(24, 213, 223, 0.2) 0 2px, transparent 2px 100%) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(24, 213, 223, 0.14) 0 2px, transparent 2px 100%) 0 0 / 72px 72px;
  opacity: 0.46;
}

.logistics-lane {
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.16), transparent 44%),
    linear-gradient(145deg, #091012, #172426 74%);
  color: var(--paper);
}

.logistics-lane::before {
  background:
    linear-gradient(90deg, rgba(246, 183, 67, 0.2) 0 2px, transparent 2px 100%) 0 0 / 86px 86px,
    linear-gradient(0deg, rgba(247, 241, 230, 0.09) 0 2px, transparent 2px 100%) 0 0 / 86px 86px;
  opacity: 0.38;
}

.activity-lane span,
.activity-lane h3,
.activity-lane p,
.activity-lane a {
  position: relative;
  z-index: 1;
}

.activity-lane span {
  color: #08727a;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logistics-lane span {
  color: var(--amber);
}

.activity-lane h3 {
  width: min(580px, 100%);
  margin: 56px 0 18px;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.activity-lane p {
  width: min(520px, 100%);
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.06rem;
}

.logistics-lane p {
  color: rgba(247, 241, 230, 0.76);
}

.activity-lane a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid currentColor;
  color: inherit;
  font-weight: 950;
}

.dock-run-section {
  position: relative;
  height: 540svh;
  background:
    linear-gradient(180deg, #080d0e, #10191b 44%, #070b0c);
  color: var(--paper);
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.dock-run-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
}

.dock-run-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 48%, rgba(24, 213, 223, 0.18), transparent 30%),
    radial-gradient(circle at 26% 82%, rgba(246, 183, 67, 0.18), transparent 28%),
    linear-gradient(115deg, #071012, #122022 54%, #090d0e);
  isolation: isolate;
}

.dock-wall {
  position: absolute;
  inset: 0 0 38%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(247, 241, 230, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(120deg, rgba(247, 241, 230, 0.04), transparent 44%),
    #111d20;
  background-size: 92px 100%, 100% 68px, auto, auto;
}

.dock-wall span {
  position: absolute;
  top: 18%;
  width: clamp(120px, 16vw, 240px);
  height: clamp(74px, 10vw, 140px);
  border: 1px solid rgba(247, 241, 230, 0.08);
  background: rgba(6, 12, 13, 0.38);
  box-shadow: inset 0 0 40px rgba(24, 213, 223, 0.05);
}

.dock-wall span:nth-child(1) {
  left: 7%;
}

.dock-wall span:nth-child(2) {
  left: 28%;
  top: 28%;
}

.dock-wall span:nth-child(3) {
  right: 9%;
  top: 16%;
}

.dock-canopy {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 2;
  width: min(48vw, 720px);
  height: 26px;
  background: linear-gradient(90deg, #1b282b, #3f5356 50%, #172226);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%) perspective(320px) rotateX(12deg);
}

.dock-door {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: var(--dock-door-z, 4);
  width: min(46vw, 720px);
  height: min(40vh, 410px);
  overflow: hidden;
  border: 1px solid rgba(247, 241, 230, 0.16);
  background: transparent;
  box-shadow:
    inset 0 0 90px rgba(0, 0, 0, 0.76),
    0 36px 96px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

.dock-door::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(
      180deg,
      #27393d 0 28px,
      #1a2a2d 28px 32px
  );
  content: "";
  transform: translateY(var(--dock-door-shift, 0%));
  transition: transform 180ms linear;
}

.warehouse-interior {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 2;
  width: min(46vw, 720px);
  height: min(40vh, 410px);
  overflow: hidden;
  border: 1px solid rgba(24, 213, 223, 0.08);
  background:
    linear-gradient(90deg, rgba(3, 8, 9, 0.48), transparent 18% 82%, rgba(3, 8, 9, 0.5)),
    linear-gradient(180deg, rgba(2, 6, 7, 0.04), transparent 42%, rgba(1, 3, 4, 0.18)),
    url("../images/warehouse-interior-realistic.png") center 49% / cover no-repeat;
  box-shadow:
    inset 0 -30px 62px rgba(0, 0, 0, 0.36),
    inset 0 0 74px rgba(0, 0, 0, 0.22),
    0 36px 90px rgba(0, 0, 0, 0.42);
  opacity: var(--warehouse-opacity, 0.5);
  transform: translateX(-50%) scaleY(var(--warehouse-depth, 0.96));
  transform-origin: bottom;
}

.warehouse-interior::before,
.warehouse-interior::after {
  position: absolute;
  content: "";
}

.warehouse-interior::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 58%, transparent 0 50%, rgba(0, 0, 0, 0.22) 92%),
    linear-gradient(90deg, rgba(24, 213, 223, 0.035), transparent 30% 70%, rgba(246, 183, 67, 0.035));
  opacity: 0.4;
}

.warehouse-interior::after {
  inset: 52% 4% 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(247, 241, 230, 0.18) 48% 49%, transparent 49% 51%, rgba(247, 241, 230, 0.16) 51% 52%, transparent 52%),
    linear-gradient(180deg, rgba(247, 241, 230, 0.045), transparent 62%);
  clip-path: polygon(36% 0, 64% 0, 100% 100%, 0 100%);
  opacity: 0.22;
}

.warehouse-ceiling {
  display: none;
}

.warehouse-ceiling span {
  position: absolute;
  top: 0;
  width: 28%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(247, 241, 230, 0.78), transparent);
  box-shadow: 0 0 28px rgba(24, 213, 223, 0.28);
}

.warehouse-ceiling span:nth-child(1) {
  left: 2%;
}

.warehouse-ceiling span:nth-child(2) {
  left: 36%;
}

.warehouse-ceiling span:nth-child(3) {
  right: 2%;
}

.warehouse-aisle {
  display: none;
}

.warehouse-aisle span {
  position: absolute;
  bottom: 16%;
  left: 18%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 142px -34px 0 var(--cyan), 212px 30px 0 var(--lime);
}

.warehouse-rack {
  display: none;
}

.rack-left {
  left: 7%;
  transform: perspective(260px) rotateY(18deg);
}

.rack-right {
  right: 7%;
  transform: perspective(260px) rotateY(-18deg);
}

.warehouse-rack i {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 18%;
  background:
    linear-gradient(90deg, #d0b468 0 28%, #8fb85c 28% 52%, #74c9ce 52% 74%, #d36f62 74% 100%);
  box-shadow: 0 12px 0 rgba(10, 15, 17, 0.5);
}

.warehouse-rack i:nth-child(1) {
  top: 4%;
}

.warehouse-rack i:nth-child(2) {
  top: 30%;
}

.warehouse-rack i:nth-child(3) {
  top: 56%;
}

.warehouse-rack i:nth-child(4) {
  top: 82%;
  height: 9%;
}

.warehouse-scan {
  position: absolute;
  top: 50%;
  right: 19%;
  z-index: 5;
  width: 42%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(163, 255, 75, 0.82), rgba(24, 213, 223, 0.72), transparent);
  box-shadow:
    0 0 24px rgba(163, 255, 75, 0.44),
    0 26px 34px rgba(24, 213, 223, 0.18);
  opacity: var(--scan-opacity, 0);
  transform:
    translateX(calc(var(--loader-run, 0) * -84px))
    scaleX(calc(0.28 + var(--loader-run, 0) * 0.72));
  transform-origin: right center;
}

.warehouse-loader {
  display: none;
}

.warehouse-loader::before,
.warehouse-loader::after {
  position: absolute;
  bottom: -8px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #050707;
  content: "";
}

.warehouse-loader::before {
  left: 8px;
}

.warehouse-loader::after {
  right: 8px;
}

.dock-door span {
  position: absolute;
  bottom: 20%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(246, 183, 67, 0.76);
}

.dock-door span:nth-child(1) {
  left: 16px;
}

.dock-door span:nth-child(2) {
  right: 16px;
}

.dock-door span:nth-child(3) {
  left: 50%;
  background: var(--cyan);
}

.dock-frame {
  position: absolute;
  top: 17%;
  left: 50%;
  z-index: var(--dock-frame-z, 7);
  width: min(50vw, 790px);
  height: min(45vh, 460px);
  pointer-events: none;
  transform: translateX(-50%);
}

.dock-frame::before {
  position: absolute;
  inset: 0;
  border: 18px solid rgba(18, 30, 33, 0.92);
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, 0.54),
    0 24px 44px rgba(0, 0, 0, 0.24);
  content: "";
}

.dock-frame span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22px;
  background:
    linear-gradient(180deg, #2a3c40, #10191b);
}

.dock-frame span:first-child {
  left: -3px;
}

.dock-frame span:last-child {
  right: -3px;
}

.dock-bay-mask {
  position: absolute;
  top: 17%;
  left: 50%;
  z-index: 6;
  width: min(50vw, 790px);
  height: min(45vh, 460px);
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50%);
}

.dock-bay-mask::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 56%, transparent 0 42%, rgba(2, 5, 6, 0.5) 72%),
    linear-gradient(90deg, rgba(3, 8, 9, 0.72), transparent 26% 74%, rgba(3, 8, 9, 0.72));
  box-shadow:
    inset 0 46px 58px rgba(0, 0, 0, 0.52),
    inset 0 -36px 46px rgba(0, 0, 0, 0.46);
  content: "";
  opacity: var(--bay-mask-opacity, 0.16);
}

.dock-bay-mask span {
  position: absolute;
  top: 9%;
  bottom: 4%;
  width: 18%;
  background: linear-gradient(90deg, rgba(8, 15, 16, 0.78), rgba(8, 15, 16, 0.05));
  opacity: var(--bay-mask-opacity, 0.16);
}

.dock-bay-mask span:first-child {
  left: -4%;
  transform: skewY(-7deg);
}

.dock-bay-mask span:last-child {
  right: -4%;
  transform: skewY(7deg) scaleX(-1);
}

.dock-floor {
  position: absolute;
  inset: 43% -10% -16%;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 213, 223, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(247, 241, 230, 0.05) 0 1px, transparent 1px 100%),
    radial-gradient(ellipse at 58% 58%, rgba(24, 213, 223, 0.16), transparent 30%),
    radial-gradient(ellipse at 28% 72%, rgba(246, 183, 67, 0.2), transparent 28%),
    #090f10;
  background-size: 86px 86px, 100% 70px, auto, auto, auto;
  transform: perspective(650px) rotateX(62deg);
  transform-origin: top;
}

.dock-ramp {
  position: absolute;
  left: 50%;
  bottom: 20%;
  z-index: 3;
  width: min(48vw, 680px);
  height: 138px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.12), transparent 18% 82%, rgba(247, 241, 230, 0.08)),
    linear-gradient(180deg, rgba(31, 48, 52, 0.96), rgba(9, 14, 15, 0.42));
  box-shadow:
    inset 0 2px 0 rgba(247, 241, 230, 0.2),
    0 28px 42px rgba(0, 0, 0, 0.22);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  opacity: calc(0.5 + var(--ramp-light, 0) * 0.28);
  transform: translateX(-50%) perspective(620px) rotateX(62deg) translateY(26%);
  transform-origin: top;
}

.dock-ramp span {
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(24, 213, 223, 0.22);
}

.dock-ramp span:first-child {
  left: 34%;
}

.dock-ramp span:last-child {
  right: 34%;
}

.dock-route {
  position: absolute;
  right: -6%;
  bottom: 20%;
  left: -6%;
  z-index: 3;
  height: 22%;
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(246, 183, 67, 0.82) 5% 8%, transparent 8% 14%) 0 54% / 230px 6px repeat-x;
  opacity: 0.84;
  transform: perspective(620px) rotateX(60deg) translateY(30%);
}

.dock-glow {
  position: absolute;
  right: 24%;
  bottom: 18%;
  z-index: 2;
  width: min(32vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 213, 223, 0.25), transparent 60%);
  filter: blur(16px);
  opacity: var(--dock-glow-opacity, 0.38);
}

.dock-truck {
  position: absolute;
  right: 9%;
  bottom: 11%;
  z-index: 8;
  width: min(72vw, 1160px);
  max-width: none;
  transform:
    translate3d(var(--truck-x, -36%), var(--truck-y, 0), 0)
    scale(var(--truck-scale, 0.84));
  transform-origin: 52% 76%;
  filter:
    brightness(var(--truck-brightness, 1))
    blur(var(--truck-blur, 0px))
    drop-shadow(0 34px 34px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 var(--truck-glow, 12px) rgba(24, 213, 223, 0.24));
  opacity: var(--truck-opacity, 1);
  transition: filter 160ms linear;
}

.dock-pallets {
  position: absolute;
  bottom: 22%;
  left: 11%;
  z-index: 4;
  width: min(34vw, 520px);
  height: 180px;
  transform: perspective(600px) rotateX(58deg) rotateZ(-2deg);
  transform-origin: bottom left;
}

.dock-pallet {
  position: absolute;
  display: block;
  width: 118px;
  height: 78px;
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.18), transparent),
    #d9c18a;
  box-shadow:
    0 12px 0 #8f693a,
    0 28px 30px rgba(0, 0, 0, 0.28);
  transform:
    translate3d(var(--pallet-a-x, 0px), var(--pallet-a-y, 0px), 0)
    scale(var(--pallet-a-scale, 1));
  opacity: var(--pallet-opacity, 1);
  transition:
    opacity 120ms linear,
    transform 120ms linear;
}

.dock-pallet i,
.dock-pallet b {
  position: absolute;
  display: block;
  content: "";
}

.dock-pallet i {
  inset: 10px 14px auto;
  height: 8px;
  background: rgba(10, 15, 17, 0.28);
}

.dock-pallet b {
  right: 14px;
  bottom: 12px;
  width: 42px;
  height: 28px;
  background:
    repeating-linear-gradient(90deg, rgba(10, 15, 17, 0.55) 0 3px, transparent 3px 7px);
}

.pallet-a {
  left: 0;
  top: 42px;
}

.pallet-b {
  left: 112px;
  top: 0;
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.18), transparent),
    #b7c976;
  transform:
    translate3d(var(--pallet-b-x, 0px), var(--pallet-b-y, 0px), 0)
    scale(var(--pallet-b-scale, 1));
}

.pallet-c {
  left: 228px;
  top: 64px;
  background:
    linear-gradient(90deg, rgba(10, 15, 17, 0.18), transparent),
    #73c5c8;
  transform:
    translate3d(var(--pallet-c-x, 0px), var(--pallet-c-y, 0px), 0)
    scale(var(--pallet-c-scale, 1));
}

.dock-copy {
  position: absolute;
  bottom: clamp(28px, 6vw, 82px);
  left: clamp(20px, 6vw, 86px);
  z-index: 10;
  width: min(560px, calc(100% - 40px));
}

.dock-copy .eyebrow {
  margin-bottom: 12px;
}

.dock-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.dock-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.62);
}

.dock-copy p:not(.eyebrow) {
  width: min(520px, 100%);
  margin: 18px 0 0;
  color: rgba(247, 241, 230, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.dock-progress {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: clamp(28px, 6vw, 82px);
  z-index: 10;
  width: min(360px, 28vw);
  height: 3px;
  background: rgba(247, 241, 230, 0.2);
}

.dock-progress span {
  display: block;
  width: var(--dock-progress-width, 0%);
  height: 100%;
  background: var(--lime);
}

.services-section {
  background: var(--paper);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.division-panel,
.bridge-section,
.process-section,
.contact-section,
.legal-section,
.legal-grid article {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-head {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(280px, 0.62fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  margin: 0 auto 42px;
  align-items: end;
}

.service-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent);
  content: "";
}

.service-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.38rem;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card.cyan {
  --accent: var(--cyan);
  --accent-dark: #08727a;
}

.service-card.lime {
  --accent: var(--lime);
  --accent-dark: #537516;
}

.service-card.amber {
  --accent: var(--amber);
  --accent-dark: #8b5d08;
}

.service-card.coral {
  --accent: var(--coral);
  --accent-dark: #974034;
}

.division-grid {
  display: grid;
  width: min(1240px, 100%);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  margin: 0 auto;
}

.division-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.marketing-panel {
  background:
    linear-gradient(135deg, rgba(24, 213, 223, 0.12), transparent 44%),
    var(--paper-2);
}

.logistics-panel {
  background:
    linear-gradient(135deg, rgba(246, 183, 67, 0.12), transparent 48%),
    linear-gradient(145deg, #061b3d, #0a2b58 74%);
  color: var(--paper);
}

.division-intro {
  max-width: 680px;
  margin-bottom: 28px;
}

.division-intro h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.division-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.logistics-panel .division-intro p,
.logistics-panel .eyebrow {
  color: rgba(247, 241, 230, 0.76);
}

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

.package-card,
.logistics-list div,
.bridge-flow article,
.legal-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card {
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 16px;
  background: rgba(255, 250, 241, 0.82);
  padding: 20px;
}

.package-card.featured {
  border-color: rgba(24, 213, 223, 0.55);
  background:
    linear-gradient(180deg, rgba(24, 213, 223, 0.14), rgba(255, 250, 241, 0.92));
}

.package-card span,
.logistics-list span,
.bridge-flow span,
.legal-grid span {
  color: #08727a;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.12;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
}

.package-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

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

.logistics-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  align-items: start;
  border-color: rgba(247, 241, 230, 0.14);
  background: rgba(247, 241, 230, 0.055);
  padding: 18px;
}

.logistics-list span {
  grid-row: span 2;
  color: var(--amber);
}

.logistics-list strong {
  font-size: 1.08rem;
}

.logistics-list p {
  margin: 0;
  color: rgba(247, 241, 230, 0.7);
}

.bridge-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 68px);
  background:
    linear-gradient(90deg, rgba(24, 213, 223, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(10, 15, 17, 0.08) 0 1px, transparent 1px 100%),
    #0d1517;
  background-size: 82px 82px, 100% 64px, auto;
  color: var(--paper);
}

.bridge-copy {
  align-self: center;
  justify-self: end;
  width: min(560px, 100%);
}

.bridge-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5.6vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.bridge-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(247, 241, 230, 0.76);
  font-size: 1.06rem;
}

.bridge-flow {
  display: grid;
  gap: 10px;
  align-self: center;
}

.bridge-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 160px 1fr;
  gap: 18px;
  align-items: center;
  border-color: rgba(247, 241, 230, 0.14);
  background: rgba(247, 241, 230, 0.055);
  padding: 18px;
}

.bridge-flow article::after {
  position: absolute;
  top: 100%;
  left: 38px;
  width: 2px;
  height: 10px;
  background: var(--lime);
  content: "";
}

.bridge-flow article:last-child::after {
  display: none;
}

.bridge-flow span {
  color: var(--lime);
}

.bridge-flow strong {
  font-size: 1.1rem;
}

.bridge-flow p {
  margin: 0;
  color: rgba(247, 241, 230, 0.7);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  background: var(--paper-2);
}

.process-intro {
  position: sticky;
  top: 108px;
  align-self: start;
  width: min(520px, 100%);
  justify-self: end;
}

.process-list {
  display: grid;
  width: min(680px, 100%);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 138px;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  background: rgba(247, 241, 230, 0.62);
  border-radius: 8px;
  padding: 24px;
}

.process-list span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  border-radius: 8px;
  font-weight: 950;
}

.process-list strong {
  display: block;
  grid-column: 2;
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.process-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, #061b3d, #0a2b58 58%, #061b3d);
  color: var(--paper);
}

.impact-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.impact-grid {
  display: grid;
  width: min(640px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.impact-grid span {
  display: grid;
  min-height: 72px;
  align-items: center;
  border-color: rgba(247, 241, 230, 0.15);
  background: rgba(247, 241, 230, 0.045);
  border-radius: 8px;
  color: rgba(247, 241, 230, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  background:
    linear-gradient(120deg, rgba(10, 143, 179, 0.12), transparent 45%),
    #edf6fb;
}

.contact-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  width: min(560px, 100%);
  gap: 14px;
  justify-self: start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344046;
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 15, 17, 0.17);
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #08727a;
  box-shadow: 0 0 0 3px rgba(24, 213, 223, 0.18);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.legal-section {
  display: grid;
  gap: 38px;
  background: var(--paper-2);
}

.legal-head {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.legal-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.legal-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(246, 251, 255, 0.86);
  padding: clamp(18px, 3vw, 28px);
}

.legal-grid h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.1;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.text-button {
  justify-self: start;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: #08727a;
  padding: 0 0 3px;
  font-weight: 900;
  cursor: pointer;
}

.division-link {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px);
  background: #061b3d;
  color: rgba(247, 241, 230, 0.74);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--paper);
  font-weight: 850;
}

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

.cookie-banner {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 30;
  display: grid;
  width: min(470px, calc(100% - 28px));
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(10, 15, 17, 0.18);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 18px 48px rgba(10, 15, 17, 0.2);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-panel[hidden] {
  display: none;
}

.cookie-banner strong,
.cookie-panel-card > .cookie-panel-head strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 31;
  display: grid;
  place-items: center;
  background: rgba(10, 15, 17, 0.62);
  padding: 18px;
}

.cookie-panel-card {
  display: grid;
  width: min(560px, 100%);
  gap: 14px;
  border: 1px solid rgba(247, 241, 230, 0.16);
  background: var(--paper-2);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
}

.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-panel-head button {
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: #344046;
  font-weight: 850;
  cursor: pointer;
}

.cookie-panel-card label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  background: rgba(246, 251, 255, 0.72);
  border-radius: 8px;
  padding: 14px;
}

.cookie-panel-card input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #08727a;
}

.cookie-panel-card label strong {
  display: block;
  margin-bottom: 2px;
}

.cookie-panel-card label span {
  color: var(--muted);
}

.subpage-main {
  padding-top: var(--header-height);
  background: var(--paper);
}

.subpage-hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 18%, rgba(56, 200, 223, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff, #f6fbff 56%, #e9f4fb);
}

.subpage-hero.dark {
  background:
    radial-gradient(circle at 80% 16%, rgba(56, 200, 223, 0.18), transparent 32%),
    radial-gradient(circle at 20% 74%, rgba(10, 143, 179, 0.22), transparent 30%),
    linear-gradient(135deg, #061b3d, #0a2b58);
  color: #ffffff;
}

.subpage-copy {
  max-width: 760px;
}

.subpage-copy h1 {
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.subpage-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.subpage-hero.dark .subpage-copy p:not(.eyebrow) {
  color: rgba(246, 251, 255, 0.78);
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.subpage-visual {
  position: relative;
  min-height: min(560px, 58vw);
  overflow: hidden;
  border: 1px solid rgba(6, 27, 61, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(6, 27, 61, 0.18);
}

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

.marketing-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(56, 200, 223, 0.22), transparent 30%),
    #ffffff;
}

.marketing-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.company-visual,
.process-visual,
.contact-visual {
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(6, 27, 61, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(6, 27, 61, 0.05) 0 1px, transparent 1px 100%),
    #ffffff;
  background-size: 54px 54px;
}

.brand-emblem {
  position: relative;
  display: grid;
  width: min(360px, 72%);
  aspect-ratio: 1;
  place-items: center;
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
  object-fit: contain;
  animation: brandOriginalSpin 22s linear infinite;
  filter: drop-shadow(0 24px 44px rgba(6, 27, 61, 0.2));
}

.brand-emblem::before,
.brand-emblem::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.brand-emblem::before {
  inset: -10%;
  border: 2px solid rgba(10, 143, 179, 0.24);
  border-right-color: transparent;
  animation: headerLogoOrbit 8s linear infinite;
}

.brand-emblem::after {
  inset: 10%;
  border: 2px solid rgba(6, 27, 61, 0.22);
  border-left-color: transparent;
  animation: headerLogoOrbit 12s linear infinite reverse;
}

.process-orbit {
  display: grid;
  width: min(430px, 86%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(6, 27, 61, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(56, 200, 223, 0.2), transparent 44%),
    rgba(255, 255, 255, 0.72);
}

.process-orbit span {
  display: grid;
  width: 42%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  animation: headerLogoOrbit 18s linear infinite reverse;
}

.policy-hero {
  min-height: auto;
}

.policy-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: clamp(22px, 4vw, 48px);
  background:
    radial-gradient(circle at 30% 22%, rgba(56, 200, 223, 0.25), transparent 32%),
    radial-gradient(circle at 75% 74%, rgba(23, 76, 123, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(6, 27, 61, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(6, 27, 61, 0.05) 0 1px, transparent 1px 100%),
    #ffffff;
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.policy-visual::before,
.policy-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.policy-visual::before {
  width: min(360px, 72%);
  aspect-ratio: 1;
  border: 2px solid rgba(10, 143, 179, 0.24);
  border-left-color: transparent;
  animation: headerLogoOrbit 20s linear infinite;
}

.policy-visual::after {
  width: min(250px, 54%);
  aspect-ratio: 1;
  border: 2px solid rgba(6, 27, 61, 0.18);
  border-right-color: transparent;
  animation: headerLogoOrbit 14s linear infinite reverse;
}

.terms-visual {
  background:
    radial-gradient(circle at 74% 26%, rgba(56, 200, 223, 0.25), transparent 30%),
    radial-gradient(circle at 22% 78%, rgba(10, 143, 179, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(6, 27, 61, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(6, 27, 61, 0.05) 0 1px, transparent 1px 100%),
    #ffffff;
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.policy-orbit-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(380px, 90%);
  gap: 18px;
  border: 1px solid rgba(6, 27, 61, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 24px 58px rgba(6, 27, 61, 0.14);
  backdrop-filter: blur(12px);
}

.policy-orbit-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.policy-orbit-card strong {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

.policy-section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.policy-article {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(6, 27, 61, 0.08);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 18px clamp(20px, 4vw, 34px);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-article section {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(6, 27, 61, 0.1);
}

.policy-article section:last-child {
  border-bottom: 0;
}

.policy-article h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.policy-article p {
  max-width: 78ch;
  margin: 0;
  color: var(--muted);
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-note {
  border-left: 4px solid var(--lime);
  background: rgba(56, 200, 223, 0.08);
  padding: 16px 18px;
  color: var(--ink) !important;
  font-weight: 750;
}

.contact-visual {
  align-content: center;
  justify-items: stretch;
}

.contact-card {
  display: grid;
  gap: 16px;
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.contact-card strong {
  font-size: 1.28rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.europe-coverage-visual {
  align-content: stretch;
  justify-items: stretch;
  padding: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(56, 200, 223, 0.26), transparent 38%),
    linear-gradient(135deg, #061b3d, #0a2b58);
  color: #ffffff;
}

.europe-orbit-map {
  position: relative;
  display: grid;
  min-height: inherit;
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 4vw, 44px);
}

.europe-orbit-map::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(246, 251, 255, 0.14);
  border-radius: 50%;
  content: "";
  animation: headerLogoOrbit 26s linear infinite reverse;
}

.europe-orbit-map::after {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(56, 200, 223, 0.22);
  border-radius: 50%;
  content: "";
  animation: headerLogoOrbit 18s linear infinite;
}

.europe-orbit-map svg {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.24));
}

.europe-map-disc {
  transform-origin: 310px 260px;
  animation: europeCoverageSpin 24s linear infinite;
}

.map-globe {
  fill: rgba(246, 251, 255, 0.06);
  stroke: rgba(246, 251, 255, 0.18);
  stroke-width: 2;
}

.map-shape {
  fill: rgba(246, 251, 255, 0.18);
  stroke: rgba(246, 251, 255, 0.42);
  stroke-width: 2;
}

.map-shape.main {
  fill: rgba(56, 200, 223, 0.18);
}

.map-route {
  fill: none;
  stroke: url(#routeGlow);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 16 16;
  opacity: 0.9;
  animation: routeDash 1400ms linear infinite;
}

.route-b,
.route-d {
  animation-duration: 1900ms;
}

.route-c,
.route-e {
  animation-duration: 2400ms;
}

.map-points circle {
  fill: #38c8df;
  stroke: #ffffff;
  stroke-width: 3;
  animation: mapPulse 1600ms ease-in-out infinite;
}

.map-points circle:first-child {
  fill: #ffffff;
  stroke: #38c8df;
}

.coverage-label {
  position: absolute;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 2;
  width: min(340px, calc(100% - 32px));
  border: 1px solid rgba(246, 251, 255, 0.18);
  border-radius: 8px;
  background: rgba(6, 27, 61, 0.72);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.coverage-label span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-label strong {
  display: block;
  line-height: 1.25;
}

@keyframes europeCoverageSpin {
  0% {
    transform: rotateX(0deg) rotateZ(0deg);
  }

  50% {
    transform: rotateX(8deg) rotateZ(180deg);
  }

  100% {
    transform: rotateX(0deg) rotateZ(360deg);
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -64;
  }
}

@keyframes mapPulse {
  50% {
    opacity: 0.55;
  }
}

.calculator-section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(6, 27, 61, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(6, 27, 61, 0.045) 0 1px, transparent 1px 100%),
    #f6fbff;
  background-size: 82px 82px, 100% 70px, auto;
}

.calculator-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.calculator-head {
  max-width: 900px;
}

.calculator-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.calculator-head p:not(.eyebrow) {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

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

.calculator-card {
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 54px rgba(6, 27, 61, 0.1);
}

.calculator-card.featured {
  background: #061b3d;
  color: #ffffff;
}

.calculator-card > span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.calculator-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
  line-height: 1;
}

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

.calculator-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.calculator-card.featured .calculator-fields label {
  color: rgba(246, 251, 255, 0.7);
}

.calculator-fields input,
.calculator-fields select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(6, 27, 61, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.calculator-fields input:focus,
.calculator-fields select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 200, 223, 0.16);
}

.calculator-result {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: center;
  border: 1px solid rgba(10, 143, 179, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 20%, rgba(56, 200, 223, 0.2), transparent 30%),
    rgba(246, 251, 255, 0.92);
  padding: 18px;
}

.calculator-card.featured .calculator-result {
  border-color: rgba(246, 251, 255, 0.14);
  background: rgba(246, 251, 255, 0.08);
}

.calculator-result strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.96;
}

.calculator-card.featured .calculator-result strong {
  color: #ffffff;
}

.calculator-result span {
  color: var(--cyan);
  font-weight: 900;
}

.calculator-result p {
  margin: 0;
  color: var(--muted);
}

.calculator-card.featured .calculator-result p {
  color: rgba(246, 251, 255, 0.72);
}

.survey-section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #061b3d;
  color: #ffffff;
}

.survey-inner {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  margin: 0 auto;
  align-items: start;
}

.survey-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.survey-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(246, 251, 255, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.survey-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(246, 251, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(56, 200, 223, 0.18), transparent 30%),
    rgba(246, 251, 255, 0.08);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

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

.survey-fields label {
  display: grid;
  gap: 8px;
  color: rgba(246, 251, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
}

.survey-fields select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(246, 251, 255, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.survey-fields select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 200, 223, 0.16);
}

.survey-result {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: center;
  border: 1px solid rgba(56, 200, 223, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 18px;
}

.survey-result span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.survey-result strong {
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 0.96;
}

.survey-result p {
  margin: 0;
  color: var(--muted);
}

.service-index {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.service-index-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-index-head {
  max-width: 860px;
}

.service-index-grid {
  margin-top: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

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

.brief-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.brief-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.logistics-visual {
  background:
    linear-gradient(180deg, rgba(6, 27, 61, 0.12), rgba(6, 27, 61, 0.42)),
    #061b3d;
}

.logistics-visual .warehouse-photo {
  position: absolute;
  inset: 0;
  opacity: 0.82;
}

.logistics-visual .truck-photo {
  position: absolute;
  right: -18%;
  bottom: 3%;
  width: 118%;
  height: auto;
  min-height: 0;
  filter: drop-shadow(0 24px 38px rgba(6, 27, 61, 0.48));
}

.detail-section,
.pricing-section,
.workflow-section,
.cta-section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.detail-section {
  background: #ffffff;
}

.pricing-section {
  background:
    linear-gradient(90deg, rgba(6, 27, 61, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(6, 27, 61, 0.045) 0 1px, transparent 1px 100%),
    #f6fbff;
  background-size: 82px 82px, 100% 70px, auto;
}

.workflow-section {
  background: #061b3d;
  color: #ffffff;
}

.cta-section {
  background: #ffffff;
}

.detail-inner,
.pricing-inner,
.workflow-inner,
.cta-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.detail-inner > h2,
.pricing-inner > h2,
.workflow-inner > h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.detail-inner > p,
.pricing-inner > p,
.workflow-inner > p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.workflow-inner > p {
  color: rgba(246, 251, 255, 0.72);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.detail-card,
.price-card,
.workflow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 34px);
}

.detail-card span,
.price-card span,
.workflow-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-card h3,
.price-card h3,
.workflow-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.detail-card p,
.workflow-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.price-card {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 18px;
  box-shadow: 0 18px 54px rgba(6, 27, 61, 0.1);
}

.price-card.featured {
  background: #061b3d;
  color: #ffffff;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(246, 251, 255, 0.78);
}

.price-value {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  font-weight: 950;
}

.price-card.featured .price-value {
  color: #ffffff;
}

.price-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card ul,
.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.workflow-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li::before,
.workflow-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.workflow-card {
  background: rgba(246, 251, 255, 0.08);
  border-color: rgba(246, 251, 255, 0.16);
}

.workflow-card p {
  color: rgba(246, 251, 255, 0.72);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(56, 200, 223, 0.2), transparent 28%),
    #ffffff;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.92;
}

.cta-inner p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
}

.site-nav a.is-active {
  border-color: rgba(10, 143, 179, 0.42);
  background: #061b3d;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 260px;
  }

  .hero-status {
    left: clamp(18px, 4vw, 56px);
  }

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

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

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

@media (max-width: 850px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 12px 18px;
  }

  .brand {
    width: min(300px, calc(100vw - 96px));
    gap: 11px;
  }

  .brand-icon-wrap {
    width: 52px;
  }

  .brand-icon {
    border-radius: 10px;
  }

  .brand-word strong {
    font-size: 1.02rem;
  }

  .brand-word small {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    background: rgba(246, 251, 255, 0.98);
    color: var(--ink);
    font-size: 1.28rem;
    opacity: 0;
    padding: calc(var(--header-height) + 28px) 20px 34px;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav a {
    width: min(360px, 100%);
    min-height: 58px;
    justify-content: center;
    border-color: rgba(10, 15, 17, 0.18);
    background: #ffffff;
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(10, 15, 17, 0.1);
  }

  .site-nav a:nth-child(1) {
    border-left: 6px solid var(--cyan);
  }

  .site-nav a:nth-child(2) {
    border-left: 6px solid var(--amber);
  }

  .site-nav a:nth-child(3) {
    border-left: 6px solid var(--lime);
  }

  .site-nav a:nth-child(4) {
    border-left: 6px solid var(--coral);
  }

  .site-nav a:nth-child(5) {
    border-left: 6px solid var(--ink);
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 92svh;
    background:
      linear-gradient(180deg, rgba(10, 15, 17, 0.98) 0%, rgba(10, 15, 17, 0.78) 52%, rgba(10, 15, 17, 0.38) 100%),
      linear-gradient(140deg, #061b3d, #0a2b58 52%, #061b3d);
  }

  .hero-content {
    width: calc(100% - 36px);
    align-self: start;
    margin: 0 18px;
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 6.4rem);
  }

  .hero-status {
    display: none;
  }

  .engine-grid,
  .activity-head,
  .activity-lanes,
  .firm-inner,
  .firm-grid,
  .service-index-grid,
  .calculator-grid,
  .survey-inner,
  .section-head,
  .division-grid,
  .subpage-hero,
  .detail-grid,
  .price-grid,
  .workflow-grid,
  .cta-inner,
  .contact-page-grid,
  .bridge-section,
  .process-section,
  .impact-section,
  .contact-section,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .package-card {
    min-height: 0;
  }

  .price-card {
    min-height: 0;
  }

  .subpage-copy h1 {
    font-size: clamp(3.1rem, 15vw, 5.8rem);
  }

  .subpage-visual {
    min-height: 420px;
  }

  .coverage-label {
    right: 18px;
    bottom: 18px;
  }

  .bridge-copy {
    justify-self: stretch;
  }

  .bridge-flow article {
    grid-template-columns: 58px 1fr;
  }

  .bridge-flow p {
    grid-column: 2;
  }

  .scroll-journey {
    height: 540svh;
    width: 100%;
  }

  .scroll-journey-sticky {
    top: calc(var(--header-height) + 12px);
    height: calc(100svh - var(--header-height) - 24px);
    min-height: 620px;
  }

  .cinematic-stage {
    height: 100%;
  }

  .story-frame-stack {
    width: min(290px, 60%);
    opacity: 0.9;
  }

  .story-progress {
    width: min(260px, 42%);
  }

  .dock-run-section {
    height: 560svh;
  }

  .dock-run-sticky {
    min-height: 680px;
  }

  .dock-door,
  .warehouse-interior {
    top: 18%;
    width: min(78vw, 640px);
    height: min(34vh, 340px);
  }

  .dock-frame,
  .dock-bay-mask {
    top: 15%;
    width: min(84vw, 700px);
    height: min(39vh, 390px);
  }

  .dock-canopy {
    top: 17%;
    width: min(78vw, 600px);
  }

  .dock-truck {
    right: -26%;
    bottom: 18%;
    width: 138vw;
  }

  .dock-pallets {
    left: 4%;
    bottom: 27%;
    width: 58vw;
    transform: perspective(600px) rotateX(56deg) rotateZ(-4deg) scale(0.78);
  }

  .dock-ramp {
    bottom: 25%;
    width: min(76vw, 620px);
  }

  .warehouse-rack {
    width: 28%;
  }

  .dock-progress {
    width: min(260px, 42%);
  }

  .process-intro,
  .impact-copy,
  .contact-copy,
  .contact-form {
    position: static;
    justify-self: stretch;
    width: 100%;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .brand {
    width: min(270px, calc(100vw - 88px));
    gap: 9px;
  }

  .brand-icon-wrap {
    width: 48px;
  }

  .brand-icon {
    border-radius: 8px;
  }

  .brand-word strong {
    font-size: 0.96rem;
  }

  .brand-word small {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

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

  .subpage-hero {
    padding-top: 44px;
  }

  .subpage-visual {
    min-height: 320px;
  }

  .logistics-visual .truck-photo {
    right: -40%;
    bottom: 8%;
    width: 145%;
  }

  .subpage-actions,
  .cta-inner .subpage-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .survey-fields {
    grid-template-columns: 1fr;
  }

  .europe-orbit-map svg {
    width: 125%;
  }

  .activity-head h2 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .activity-lane {
    min-height: 280px;
    padding: 22px;
  }

  .activity-lane h3 {
    margin-top: 42px;
    font-size: clamp(2.5rem, 15vw, 4.5rem);
  }

  .scroll-journey {
    height: 560svh;
  }

  .scroll-journey-sticky {
    min-height: 590px;
  }

  .cinematic-stage {
    height: 100%;
  }

  .story-frame-stack {
    top: 14px;
    right: 14px;
    width: min(238px, 72%);
  }

  .cinematic-caption {
    bottom: 34px;
    width: calc(100% - 36px);
  }

  .cinematic-caption strong {
    font-size: clamp(1.42rem, 9vw, 2.45rem);
  }

  .cinematic-caption p {
    font-size: 0.94rem;
  }

  .story-progress {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .dock-run-sticky {
    min-height: 620px;
  }

  .dock-door,
  .warehouse-interior {
    top: 17%;
    width: 90vw;
    height: 238px;
  }

  .dock-frame,
  .dock-bay-mask {
    top: 14%;
    width: 94vw;
    height: 284px;
  }

  .dock-canopy {
    top: 15%;
    width: 86vw;
  }

  .dock-truck {
    right: -58%;
    bottom: 28%;
    width: 182vw;
  }

  .dock-pallets {
    left: -6%;
    bottom: 37%;
    width: 78vw;
    transform: perspective(580px) rotateX(58deg) rotateZ(-4deg) scale(0.52);
  }

  .dock-ramp {
    bottom: 34%;
    width: 92vw;
    height: 112px;
  }

  .warehouse-rack {
    width: 32%;
  }

  .warehouse-loader {
    right: 16%;
    transform: translateX(calc(var(--loader-run, 0) * -70px)) scale(0.72);
  }

  .dock-copy {
    bottom: 58px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .dock-copy h2 {
    max-width: 9ch;
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .dock-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .dock-progress {
    right: 18px;
    bottom: 24px;
    left: 18px;
    width: auto;
  }

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

  .division-panel {
    padding: 20px;
  }

  .division-intro h3 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .bridge-flow article {
    grid-template-columns: 48px 1fr;
    gap: 8px 14px;
    padding: 16px;
  }

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

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .process-list span {
    width: 56px;
    height: 56px;
  }

  .site-footer {
    display: grid;
  }
}

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

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