:root {
  --ink: #082d3d;
  --ink-2: #0d3b4e;
  --paper: #f4f2ec;
  --paper-2: #eae8e1;
  --white: #fffefb;
  --mint: #68e2bb;
  --mint-dark: #1d9d7f;
  --sky: #83b8ff;
  --line: rgba(8, 45, 61, 0.15);
  --muted: #60727a;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(8, 45, 61, 0.12);
  --max: 1180px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 76px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--mint-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.display {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.55rem, 6.5vw, 5.8rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4.2rem);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-link:focus-visible,
.language-current:focus-visible,
.language-menu a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(104, 226, 187, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--mint);
  color: var(--ink);
}

.btn-primary:hover {
  background: #7cebc7;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-2);
}

.arrow {
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.nav-wrap {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.03rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-logo {
  width: 146px;
  height: 70px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2px solid var(--mint);
  border-radius: 11px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  top: 8px;
  right: 7px;
  bottom: 8px;
  left: 7px;
  border: 2px solid var(--white);
  border-right-color: transparent;
  border-radius: 50%;
}

.brand-mark::after {
  top: 16px;
  right: -5px;
  width: 13px;
  height: 2px;
  background: var(--mint);
}

.brand span:last-child {
  color: var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(8, 45, 61, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 42px;
  padding: 0 17px;
  background: var(--ink);
  color: var(--white);
}

.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.language-current {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 800;
}

.language-flag {
  display: block;
  width: 24px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(8, 45, 61, 0.12);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 210px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(8, 45, 61, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.language-switcher.open .language-menu {
  display: block;
}

.language-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 650;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 180px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(131, 184, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(131, 184, 255, 0.025), 0 0 0 160px rgba(131, 184, 255, 0.018);
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 60%;
  background-image: linear-gradient(rgba(104, 226, 187, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(104, 226, 187, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to top left, #000, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.hero-copy {
  max-width: 730px;
}

.hero-copy .eyebrow {
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.65vw, 1.25rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 42px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.delivery-map {
  position: relative;
  min-height: 480px;
}

.map-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(104, 226, 187, 0.5);
  border-radius: 50%;
  background: rgba(8, 45, 61, 0.82);
  box-shadow: 0 0 0 24px rgba(104, 226, 187, 0.035), 0 0 80px rgba(104, 226, 187, 0.13);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-core::before {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--mint);
  border-radius: 9px;
  content: "";
  transform: rotate(45deg);
}

.map-core strong {
  z-index: 1;
  margin-top: 118px;
  color: var(--mint);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-card {
  position: absolute;
  z-index: 4;
  width: 175px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(16, 61, 78, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.map-card::before {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(104, 226, 187, 0.12);
  content: "";
}

.map-card strong {
  display: block;
  font-size: 0.93rem;
}

.map-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.map-card-1 {
  top: 16px;
  left: 6px;
}

.map-card-2 {
  top: 86px;
  right: -10px;
}

.map-card-3 {
  right: 35px;
  bottom: 8px;
}

.map-card-3::before {
  background: var(--sky);
  box-shadow: 0 0 0 5px rgba(131, 184, 255, 0.12);
}

.map-note {
  position: absolute;
  z-index: 2;
  bottom: 54px;
  left: -6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-note::before {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  content: "";
}

/* Value ribbon */
.value-ribbon {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.value-list {
  display: grid;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.value-list li {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.value-list li:first-child {
  border-left: 1px solid var(--line);
}

.value-list strong {
  display: block;
  font-size: 0.92rem;
}

.value-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Clients */
.clients-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.clients-heading {
  display: grid;
  align-items: end;
  gap: 52px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
}

.clients-heading .section-title {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.clients-heading .section-intro {
  max-width: 560px;
  margin: 0 0 4px;
}

.clients-grid {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.client-card {
  display: flex;
  min-width: 0;
  height: 152px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.client-card:hover {
  z-index: 1;
  background: var(--paper);
}

.client-card .client-logo {
  display: block;
  width: min(82%, 196px);
  height: 82px;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
}

.client-card:hover .client-logo {
  transform: scale(1.04);
}

.client-card .client-logo-mark {
  width: min(58%, 112px);
  height: 94px;
}

.client-card .client-logo-wide {
  width: min(90%, 216px);
  height: 68px;
}

.client-card .client-logo-sts {
  width: 112px;
  height: 104px;
}

.client-card-basf,
.client-card-basf:hover {
  background: #004a96;
}

.client-card-butcherbox,
.client-card-butcherbox:hover {
  background: #18362e;
}

.client-card-krunchbox,
.client-card-krunchbox:hover {
  background: #082d3d;
}

/* Service models */
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row .section-intro {
  max-width: 450px;
  margin: 0 0 4px;
}

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

.model-card {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.model-card:hover {
  border-color: rgba(29, 157, 127, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.model-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(8, 45, 61, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(8, 45, 61, 0.025), 0 0 0 56px rgba(8, 45, 61, 0.018);
  content: "";
}

.card-number {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.model-card h3 {
  margin: 62px 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

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

.card-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 620;
}

.card-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--mint-dark);
  border-radius: 50%;
  content: "";
}

.best-for {
  margin-top: auto;
  padding-top: 30px;
  color: var(--muted);
  font-size: 0.75rem;
}

.best-for strong {
  color: var(--ink);
  text-transform: uppercase;
}

/* Capabilities */
.capabilities {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.capabilities::before {
  position: absolute;
  top: -300px;
  left: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(104, 226, 187, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(104, 226, 187, 0.02), 0 0 0 140px rgba(104, 226, 187, 0.012);
  content: "";
}

.capabilities .section-intro {
  color: rgba(255, 255, 255, 0.62);
}

.capability-list {
  position: relative;
  z-index: 1;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-row {
  display: grid;
  align-items: start;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 52px minmax(210px, 0.8fr) minmax(0, 1.45fr);
}

.capability-index {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
}

.capability-content p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 650;
}

/* Process */
.process-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.process-copy {
  position: sticky;
  top: 130px;
}

.process-steps {
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 170px;
  padding: 4px 0 38px 84px;
  counter-increment: process;
}

.process-step:not(:last-child)::before {
  position: absolute;
  top: 43px;
  bottom: -2px;
  left: 25px;
  width: 1px;
  background: var(--line);
  content: "";
}

.process-step::after {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--mint-dark);
  content: "0" counter(process);
  font-size: 0.72rem;
  font-weight: 850;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}

.process-step p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

/* Why */
.why-section {
  background: var(--paper-2);
}

.why-layout {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.why-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.why-item {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(29, 157, 127, 0.1);
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.why-item h3 {
  margin: 34px 0 8px;
  font-size: 1rem;
}

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

/* CTA */
.cta-section {
  padding: 32px 0 48px;
  background: var(--paper-2);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(29, 157, 127, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(29, 157, 127, 0.035), 0 0 0 110px rgba(29, 157, 127, 0.02);
  content: "";
}

.cta-panel .section-title {
  position: relative;
  max-width: 800px;
}

.cta-panel p {
  position: relative;
  max-width: 590px;
  margin: 24px 0 34px;
  color: var(--muted);
}

.contact-options {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
}

/* Footer */
.site-footer {
  padding: 72px 0 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  gap: 60px;
  padding-bottom: 60px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.footer-brand p {
  max-width: 380px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
}

.site-footer .brand-logo {
  width: 158px;
  height: 94px;
  border-radius: 12px;
  background: var(--white);
}

.footer-title {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 95;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(84vw, 380px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 118px 36px 40px;
    background: var(--ink-2);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.24);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
  }

  .site-nav .nav-cta {
    width: 100%;
    margin-top: 10px;
    background: var(--white);
    color: var(--ink);
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .delivery-map {
    width: min(100%, 570px);
    min-height: 430px;
    margin: 0 auto;
  }

  .section-heading-row,
  .clients-heading,
  .why-layout {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: block;
  }

  .clients-heading {
    display: grid;
    gap: 24px;
  }

  .clients-heading .section-intro {
    margin: 0;
  }

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

  .section-heading-row .section-intro {
    max-width: 650px;
    margin-top: 24px;
  }

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

  .model-card {
    min-height: auto;
  }

  .model-card h3 {
    margin-top: 42px;
  }

  .best-for {
    margin-top: 20px;
  }

  .process-layout {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 76px;
    gap: 16px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-logo {
    width: 112px;
    height: 62px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .language-current {
    padding-inline: 6px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero::before {
    width: 100vw;
    height: 100vw;
  }

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

  .delivery-map {
    min-height: 380px;
    transform: scale(0.9);
    transform-origin: center;
  }

  .orbit {
    width: 340px;
    height: 340px;
  }

  .map-core {
    width: 155px;
    height: 155px;
  }

  .map-core strong {
    margin-top: 108px;
  }

  .map-card {
    width: 150px;
    padding: 14px;
  }

  .map-card-2 {
    right: -5px;
  }

  .map-card-3 {
    right: 18px;
  }

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

  .clients-section {
    padding: 72px 0;
  }

  .client-card {
    height: 124px;
    padding: 12px;
  }

  .client-card .client-logo {
    width: min(88%, 176px);
    height: 70px;
  }

  .client-card .client-logo-mark {
    width: min(58%, 94px);
    height: 82px;
  }

  .client-card .client-logo-wide {
    width: min(92%, 184px);
    height: 60px;
  }

  .client-card .client-logo-sts {
    width: 94px;
    height: 86px;
  }

  .value-list li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .value-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .capability-row {
    gap: 16px;
    grid-template-columns: 36px 1fr;
  }

  .capability-content {
    grid-column: 2;
  }

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

  .why-item {
    min-height: auto;
  }

  .cta-panel {
    border-radius: 24px;
  }

  .contact-options {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-options .btn {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 410px) {
  .nav-wrap {
    gap: 8px;
  }

  .language-current {
    gap: 5px;
  }

  .delivery-map {
    margin-inline: -16px;
    transform: scale(0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
