@font-face {
  font-family: "Univers";
  src: url("../fonts/UniversLTStd-Light.otf") format("opentype");
  font-weight: 300;
}

@font-face {
  font-family: "Univers";
  src: url("../fonts/UniversLTStd.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Univers";
  src: url("../fonts/UniversLTStd-Bold.otf") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "Univers";
  src: url("../fonts/UniversLTStd-Black.otf") format("opentype");
  font-weight: 900;
}

:root {
  --ink: #343a3d;
  --ocean: #003546;
  --ocean-deep: #003546;
  --cyan: #00c9e8;
  --cyan-dark: #008fa5;
  --paper: #ffffff;
  --mist: #f1f7f8;
  --line: #b9c9ce;
  --content: 1464px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Univers", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.content-wrap {
  width: min(76.25%, var(--content));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(5rem, 7vw, 8.5rem);
}

.kicker {
  margin: 0 0 1.35rem;
  color: #007f91;
  font-size: clamp(0.72rem, 0.82vw, 1rem);
  letter-spacing: 0.015em;
}

.kicker::before {
  content: "• ";
  color: #04bcd1;
}

.kicker-bright {
  color: #00dcf5;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

sup {
  font-size: 0.55em;
  vertical-align: super;
}

.section-copy {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  font-size: clamp(0.88rem, 1.04vw, 1.25rem);
  font-weight: 300;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-width: clamp(13.35rem, 16.67vw, 20rem);
  min-height: clamp(2.4rem, 3vw, 3.6rem);
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: clamp(0.76rem, 0.94vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(0, 46, 60, 0.15);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.button span {
  transition: transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(0, 46, 60, 0.2);
}

.button:hover span,
.button:focus-visible span {
  transform: translateX(0.25rem);
}

.button-dark {
  color: white;
  background: var(--ocean);
}

.button-light {
  color: var(--ocean);
  background: white;
}

.patterned-light {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 75%, rgba(0, 63, 80, 0.075) 0 3px, transparent 4px) 0 0 / 54px 54px,
    linear-gradient(135deg, #f7fbfc, #eef7f8);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 8.35rem;
  color: white;
  transition: height 260ms ease, background-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

@media (min-width: 981px) {
  body .site-header.is-scrolled {
    height: 4.75rem;
    background: rgba(0, 30, 42, .94);
    box-shadow: 0 10px 30px rgba(0, 20, 30, .18);
    backdrop-filter: blur(12px);
  }

  body .site-header.is-scrolled .brand {
    top: 2.375rem;
    width: 6rem;
  }

  body .site-header.is-scrolled .utility-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-.5rem);
    pointer-events: none;
  }

  body .site-header.is-scrolled .main-nav {
    top: 2.375rem;
  }
}

.brand {
  position: absolute;
  top: 6.75rem;
  left: 4.1%;
  width: 8.8rem;
  transform: translateY(-50%);
}

.brand img {
  width: 100%;
}

.utility-nav {
  position: absolute;
  top: 2rem;
  right: 4.15%;
  display: flex;
  align-items: center;
  gap: 2.15rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  font-weight: 300;
}

.utility-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.search-link {
  width: 1.4rem;
}

.search-icon {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.6px solid white;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -0.34rem;
  bottom: -0.2rem;
  width: 0.48rem;
  height: 1px;
  background: white;
  transform: rotate(48deg);
}

.globe-icon {
  display: block;
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  background-color: currentColor;
  -webkit-mask: url("../img/icons/globe-europe-africa-fill.svg") center / contain no-repeat;
  mask: url("../img/icons/globe-europe-africa-fill.svg") center / contain no-repeat;
}

.chevron {
  display: inline-block;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-0.15rem);
}

.main-nav {
  position: absolute;
  top: 6.78rem;
  right: 4.15%;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.75vw, 3.25rem);
  transform: translateY(-50%);
  font-size: clamp(0.84rem, 1vw, 1.1rem);
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 44rem;
  overflow: hidden;
  color: white;
  background: url("../img/hero-clean-v1.png") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 15, 27, 0.08), transparent 60%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero-network {
  position: absolute;
  inset: -1.2%;
  z-index: 1;
  width: 102.4%;
  height: 102.4%;
  overflow: visible;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}

.mesh-drift {
  transform-origin: 50% 22%;
  animation: mesh-drift 42s ease-in-out infinite alternate;
  will-change: transform;
}

.mesh-lines path,
.mesh-glimmers path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.mesh-lines path {
  stroke: url("#meshFade");
  stroke-width: 1.25;
  stroke-dasharray: 8 10;
  animation: mesh-segment-flow 28s linear infinite;
}

.mesh-lines path:nth-child(even) {
  animation-duration: 34s;
}

.mesh-lines path:nth-child(3n) {
  animation-duration: 39s;
}

.mesh-lines-horizontal {
  opacity: 0.94;
  transform-box: fill-box;
  transform-origin: 52% 38%;
  animation: mesh-horizontal-weave 31s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.mesh-lines-radial {
  opacity: 0.82;
  transform-box: fill-box;
  transform-origin: 45% 24%;
  animation: mesh-radial-weave 37s ease-in-out infinite alternate-reverse;
  will-change: transform, opacity;
}

.mesh-glimmers path {
  opacity: 0;
  stroke: #9cedf5;
  stroke-width: var(--mesh-width, 1.3);
  stroke-dasharray: var(--mesh-dash, 0.008 0.01 0.008 0.01 0.052 0.902);
  animation-name: mesh-glimmer;
  animation-duration: var(--mesh-duration, 24s);
  animation-timing-function: linear;
  animation-delay: var(--mesh-delay, 0s);
  animation-iteration-count: infinite;
  animation-direction: normal;
}

@keyframes mesh-drift {
  0% { transform: translate3d(-0.65rem, -0.3rem, 0) rotate(-0.16deg) scale(1.006); }
  50% { transform: translate3d(0.2rem, 0.18rem, 0) rotate(0.08deg) scale(1.014); }
  100% { transform: translate3d(0.82rem, -0.08rem, 0) rotate(0.2deg) scale(1.008); }
}

@keyframes mesh-horizontal-weave {
  0% { opacity: 0.86; transform: translate3d(-0.7rem, -0.32rem, 0) skewY(-0.22deg) scaleY(0.975); }
  48% { opacity: 0.98; transform: translate3d(0.15rem, 0.22rem, 0) skewY(0.08deg) scaleY(1.018); }
  100% { opacity: 0.9; transform: translate3d(0.85rem, 0.5rem, 0) skewY(0.28deg) scaleY(1.04); }
}

@keyframes mesh-radial-weave {
  0% { opacity: 0.72; transform: translate3d(0.5rem, -0.2rem, 0) skewX(0.32deg) scaleX(0.985); }
  50% { opacity: 0.92; transform: translate3d(-0.08rem, 0.18rem, 0) skewX(-0.06deg) scaleX(1.008); }
  100% { opacity: 0.8; transform: translate3d(-0.72rem, 0.45rem, 0) skewX(-0.4deg) scaleX(1.022); }
}

@keyframes mesh-segment-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -180; }
}

@keyframes mesh-glimmer {
  0% { opacity: 0; stroke-dashoffset: 0; }
  12% { opacity: calc(var(--mesh-peak, 0.5) * 0.16); }
  32% { opacity: var(--mesh-peak, 0.5); }
  57% { opacity: calc(var(--mesh-peak, 0.5) * 0.38); }
  74%, 100% { opacity: 0; stroke-dashoffset: -1; }
}

.hero-copy,
.hero-teasers,
.hero-brands,
.scroll-cue {
  position: absolute;
  z-index: 2;
}

.hero-copy {
  left: 11.9%;
  top: 42.25%;
}

.hero-eyebrow {
  margin: 0 0 0.6rem;
  color: #5fd6e5;
  font-size: clamp(0.72rem, 0.92vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 3.8vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.hero-teasers {
  left: 11.9%;
  right: 19.3%;
  bottom: 9.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hero-teaser {
  height: 7.5rem;
  padding: 1.25rem 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: rgba(75, 101, 120, 0.42);
  backdrop-filter: blur(8px);
}

.hero-teaser p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-teaser p b {
  margin-right: 0.65rem;
}

.hero-teaser strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.86rem;
  font-weight: 300;
}

.hero-teaser span {
  display: block;
  height: 1px;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.25);
}

.hero-teaser.is-active span {
  background: linear-gradient(90deg, #14cce8 0 68%, rgba(255, 255, 255, 0.25) 68%);
}

.hero-brands {
  left: 11.9%;
  right: 19.3%;
  bottom: 2.3rem;
}

.hero-brands > p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-viewport {
  width: 82%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.logo-track {
  display: flex;
  width: 200%;
  animation: logo-marquee 26s linear infinite;
  animation-delay: 1.1s;
}

.logo-viewport:hover .logo-track,
.logo-viewport:focus-within .logo-track {
  animation-play-state: paused;
}

.brand-set {
  display: grid;
  flex: 0 0 50%;
  grid-template-columns: 1.05fr 0.8fr 1.55fr 1fr 1.15fr;
  align-items: center;
  gap: 3.8rem;
  margin: 0;
  padding: 0 3.8rem 0 0;
  list-style: none;
}

.brand-set li:nth-child(1) img { width: 9.2rem; }
.brand-set li:nth-child(2) img { width: 6rem; }
.brand-set li:nth-child(3) img { width: 12rem; }
.brand-set li:nth-child(4) img { width: 9rem; }
.brand-set li:nth-child(5) img { width: 10rem; }

.kaessbohrer-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10rem;
  color: white;
  line-height: 1;
}

.kaessbohrer-wordmark strong {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 900;
}

.kaessbohrer-wordmark small {
  margin-top: 0.15rem;
  font-size: 0.5rem;
  font-style: italic;
}

.scroll-cue {
  left: 50%;
  bottom: 0.6rem;
  width: 1.9rem;
  height: 1.9rem;
  border-right: 2px solid #00c9e8;
  border-bottom: 2px solid #00c9e8;
  transform: translateX(-50%) rotate(45deg);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes logo-marquee {
  to { transform: translateX(-50%); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(-4px) rotate(45deg); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px) rotate(45deg); }
}

.intro {
  height: 24.22vw;
  min-height: 19.4rem;
  max-height: 29rem;
  display: flex;
  align-items: center;
  padding-block: 3.2vw;
  background: #fff;
}

.narrow-content {
  padding-left: 0;
  transform: translateY(2rem);
}

.intro h2 {
  max-width: 59rem;
  font-size: clamp(2rem, 2.7vw, 3.25rem);
  line-height: 1.28;
}

.intro .button {
  margin-top: 3.1rem;
}

.factory-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 560;
  overflow: hidden;
}

.factory-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.factory-counters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.factory-counter {
  position: absolute;
  top: 15.3%;
  display: block;
  min-width: 1.15em;
  padding: 0.05em 0.08em 0.04em;
  color: #fff;
  background: transparent;
  font-size: 1.5vw;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
}

.factory-counter-years {
  left: 17.82%;
  width: 3.65%;
}

.factory-counter-locations {
  left: 40.94%;
  width: 1.6%;
}

.factory-counter-products {
  left: 64.32%;
  width: 3.65%;
}

.factory-mobile-stats {
  display: none;
}

.solutions {
  position: relative;
  height: auto;
  min-height: 0;
  max-height: none;
  padding-block: 8.2vw clamp(4rem, 5vw, 6rem);
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbfc, #eef7f8);
}

.solutions::before {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  z-index: 0;
  width: min(54vw, 54rem);
  aspect-ratio: 1;
  background: url("../img/design/hmi-network-background.svg") center / contain no-repeat;
  opacity: 0.42;
  pointer-events: none;
  animation: solutions-network-float 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes solutions-network-float {
  from { transform: translate3d(0, 0, 0) rotate(-0.4deg) scale(1); }
  to { transform: translate3d(-0.55rem, -0.4rem, 0) rotate(0.45deg) scale(1.01); }
}

.solutions-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
}

.solutions h2 {
  margin-top: 1.5rem;
}

.accordion {
  padding-top: 0.15rem;
}

.accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-trigger {
  min-height: 3.25rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.accordion-item.is-open .accordion-trigger {
  font-size: 1.5rem;
  font-weight: 700;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  color: var(--cyan-dark);
  outline: none;
}

.accordion-trigger i {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--ocean);
  border: 1px solid var(--ocean);
  border-radius: 50%;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 300ms ease;
}

.accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  height: 0;
  overflow: hidden;
  transition: height 460ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-panel-inner {
  padding-bottom: 0.01px;
}

.solution-card {
  margin-bottom: 1.5rem;
  padding: 1.45rem 1.8rem;
  border-radius: 0.85rem;
  background: white;
  box-shadow: 0 22px 38px rgba(0, 45, 57, 0.15);
}

.solution-card-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.line-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  color: var(--ocean);
  border-radius: 0.35rem;
  background: #e8f4f6;
  font-size: 2rem;
}

.solution-card h4 {
  margin: 0;
  font-size: 1.25rem;
}

.solution-card p {
  margin: 1rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.solution-card a,
.feature-cards a {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--ocean);
  color: var(--ocean);
  font-weight: 700;
}

.production-band {
  --parallax-y: 0px;
  position: relative;
  width: 100%;
  height: clamp(17rem, 21vw, 24rem);
  overflow: hidden;
  background: #003442;
}

.production-band img {
  position: absolute;
  inset: -18% 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.015);
  will-change: transform;
}

.production-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 52, 66, 0.14), transparent 42%, rgba(0, 52, 66, 0.06));
  pointer-events: none;
}

.manufacturing {
  height: 37.25vw;
  min-height: 29.8rem;
  max-height: 44.7rem;
  padding-block: 3.3vw;
  background-color: #e2e8eb;
}

.manufacturing h2 {
  line-height: 1.22;
}

.manufacturing-copy {
  max-width: 32rem;
  margin-top: 0.75rem;
  font-size: 1rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.feature-cards article {
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem;
  border: 1px solid #8caab3;
  border-radius: 0.85rem;
  background: white;
  box-shadow: 0 18px 28px rgba(0, 49, 62, 0.15);
}

.feature-icon {
  color: var(--ocean);
  font-size: 1.8rem;
}

.feature-cards h3 {
  margin: 0.45rem 0 0;
  color: var(--ocean);
  font-size: 1.25rem;
}

.feature-cards p {
  margin: 0.45rem 0 0.8rem;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}

.feature-cards a {
  align-self: flex-start;
  margin-top: auto;
}

.ecatalog {
  height: 40.9vw;
  min-height: 32.7rem;
  max-height: 49.1rem;
  padding-block: 3.6vw;
  color: white;
  background: var(--ocean);
}

.ecatalog-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5rem;
}

.ecatalog-grid > img {
  width: 100%;
}

.ecatalog-copy h2 {
  color: white;
}

.ecatalog-copy > p:not(.kicker) {
  max-width: 30rem;
  margin: 1.5rem 0 3.3rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.58;
}

.industries {
  height: auto;
  min-height: 50rem;
  max-height: none;
  padding-block: 4.4vw;
  background-color: white;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.6rem;
}

.industry-grid article {
  min-height: 8.3rem;
  padding: 1rem 1.2rem;
  border: 1px solid #6b929d;
  border-radius: 0.8rem;
  background: rgba(247, 250, 251, 0.86);
  box-shadow: 0 16px 24px rgba(0, 50, 64, 0.11);
}

.industry-grid span {
  color: #648691;
  font-size: 1.6rem;
}

.industry-icon {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
}

.industry-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-grid h3 {
  margin: 0.75rem 0 0;
  color: var(--ocean);
  font-size: 1rem;
  line-height: 1.4;
}

.testimonial-slider {
  --drag-x: 0px;
  position: relative;
  margin-top: 5rem;
  user-select: none;
}

.testimonials {
  position: relative;
  height: 19rem;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.testimonial-card {
  --card-x: 0px;
  --card-scale: 0.62;
  --card-opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(47rem, 66vw);
  min-height: 14.5rem;
  margin: 0;
  padding: 1.65rem 1.75rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 20px 42px rgba(0, 49, 62, 0.18);
  opacity: var(--card-opacity);
  transform: translate3d(calc(-50% + var(--card-x) + var(--drag-x)), -50%, 0) scale(var(--card-scale));
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease, box-shadow 280ms ease;
  will-change: transform, opacity;
}

.testimonial-card[data-position="active"] {
  --card-x: 0px;
  --card-scale: 1;
  --card-opacity: 1;
  z-index: 4;
}

.testimonial-card[data-position="prev"] {
  --card-x: calc(-1 * min(38vw, 28rem));
  --card-scale: 0.78;
  --card-opacity: 0.68;
  z-index: 2;
}

.testimonial-card[data-position="next"] {
  --card-x: min(38vw, 28rem);
  --card-scale: 0.78;
  --card-opacity: 0.68;
  z-index: 2;
}

.testimonial-card[data-position="far-prev"] {
  --card-x: calc(-1 * min(66vw, 50rem));
  --card-scale: 0.58;
  --card-opacity: 0;
}

.testimonial-card[data-position="far-next"] {
  --card-x: min(66vw, 50rem);
  --card-scale: 0.58;
  --card-opacity: 0;
}

.testimonial-slider.is-ready .testimonial-card[data-position="active"]:hover {
  box-shadow: 0 25px 50px rgba(0, 49, 62, 0.23);
}

.testimonial-slider.is-dragging .testimonials {
  cursor: grabbing;
}

.testimonial-slider.is-dragging .testimonial-card {
  transition: none;
}

.quote-mark {
  color: var(--ocean);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.8;
}

.testimonial-card > p {
  margin: 0.7rem 0 1.5rem;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.55;
}

.testimonial-card footer {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  column-gap: 0.75rem;
}

.avatar {
  grid-row: 1 / 3;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5b68b, #6a8390);
}

.avatar-two {
  background: linear-gradient(135deg, #9a6649, #132d39);
}

.testimonial-card footer strong {
  color: var(--ocean);
}

.testimonial-card footer small {
  font-size: 0.85rem;
  font-weight: 300;
}

.testimonial-controls {
  position: relative;
  display: grid;
  width: min(100%, 44rem);
  min-height: 2.85rem;
  grid-template-columns: 3.5rem 1fr 3.5rem;
  align-items: center;
  margin: 1.5rem auto 0;
  padding-inline: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 24px rgba(0, 51, 66, 0.16);
}

.testimonial-button {
  display: grid;
  width: 2.6rem;
  height: 2.1rem;
  place-items: center;
  padding: 0;
  color: var(--ocean);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.testimonial-next {
  justify-self: end;
}

.testimonial-button svg {
  width: 1.65rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-button:hover,
.testimonial-button:focus-visible {
  color: var(--cyan-dark);
  outline: none;
  transform: scale(1.08);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.testimonial-dot {
  width: 0.35rem;
  height: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease;
}

.testimonial-dot.is-active {
  width: 1.6rem;
  background: var(--cyan-dark);
}

.testimonial-dot.is-next {
  width: 1.35rem;
  background: var(--ocean);
}

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

.contact-cta {
  height: 38vw;
  min-height: 30.4rem;
  max-height: 45.6rem;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 63, 80, 0.9), rgba(0, 63, 80, 0.9)),
    url("../img/group-34304.jpg") center / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 5rem;
}

.contact-grid h2 {
  color: white;
}

.contact-grid .button {
  margin-top: 2.8rem;
}

.contact-grid > img {
  justify-self: center;
  width: clamp(18.5rem, 23vw, 27.7rem);
  height: clamp(24.2rem, 30.26vw, 36.3rem);
  object-fit: cover;
  object-position: center;
}

.career {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: 32vw;
  min-height: 25.5rem;
  max-height: 38.5rem;
  overflow: hidden;
  background: #f3f4f5;
}

.career-copy {
  width: 76.25%;
  justify-self: end;
  padding-block: clamp(3.5rem, 5vw, 6rem);
  padding-right: 5rem;
}

.career-copy > p:not(.kicker) {
  max-width: 32rem;
  margin: 1.4rem 0 2.8rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.65;
}

.career-image {
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
}

.career-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
}

.career-mobile-action,
.location-mobile-list {
  display: none;
}

.locations {
  position: relative;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  padding-top: clamp(4.5rem, 5.7vw, 7rem);
  padding-bottom: clamp(2.5rem, 3.5vw, 4.25rem);
  background: white;
}

.location-map-shell {
  position: relative;
  width: min(94%, 1800px);
  margin: clamp(1.25rem, 2vw, 2.4rem) auto 0;
}

.location-map-scroll {
  overflow: visible;
}

.location-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 520;
}

.location-map {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.location-map-dots {
  fill: #064457;
  opacity: 0.86;
}

.location-map-wave {
  fill: url("#location-wave-gradient");
  opacity: 0.42;
  pointer-events: none;
}

.location-map-loading {
  position: absolute;
  inset: 48% auto auto 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #54808b;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-map-stage.is-ready .location-map-loading {
  display: none;
}

.location-marker {
  color: var(--ocean);
  cursor: pointer;
  outline: none;
}

.location-marker-hit {
  fill: transparent;
}

.location-marker-connector {
  fill: none;
  stroke: #0f7182;
  stroke-width: 1;
  stroke-dasharray: 2 3;
  opacity: 0.42;
  pointer-events: none;
}

.location-marker-dot {
  fill: var(--ocean);
  stroke: white;
  stroke-width: 2.3;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 260ms ease, transform 260ms ease, filter 260ms ease;
}

.location-marker-ring {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  opacity: 0;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
}

.location-marker-label {
  fill: #354044;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  paint-order: stroke;
  stroke: white;
  stroke-width: 5px;
  stroke-linejoin: round;
}

.location-marker:hover .location-marker-dot,
.location-marker:focus-visible .location-marker-dot,
.location-marker.is-active .location-marker-dot {
  fill: var(--cyan-dark);
  transform: scale(1.22);
  filter: drop-shadow(0 0 6px rgba(0, 201, 232, 0.65));
}

.location-marker:focus-visible .location-marker-dot {
  stroke: var(--cyan);
  stroke-width: 3.5;
}

.location-marker.is-active .location-marker-ring {
  animation: location-pulse 2.7s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.location-card {
  position: absolute;
  z-index: 8;
  width: min(21rem, calc(100% - 2rem));
  overflow: hidden;
  border: 1px solid rgba(0, 53, 70, 0.1);
  border-radius: 0.8rem;
  background: white;
  box-shadow: 0 1.8rem 4rem rgba(0, 53, 70, 0.2);
  animation: location-card-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.location-card-close {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: white;
  background: rgba(0, 53, 70, 0.42);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.location-card-close:hover,
.location-card-close:focus-visible {
  background: var(--ocean);
  transform: rotate(5deg);
}

.location-card-visual {
  position: relative;
  height: 4.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(0, 220, 245, 0.7), transparent 25%),
    linear-gradient(135deg, #002d3d 0%, #006c80 100%);
}

.location-card-visual::before,
.location-card-visual::after {
  content: "";
  position: absolute;
  width: 13rem;
  height: 6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.location-card-visual::before {
  right: -1rem;
  bottom: -3rem;
}

.location-card-visual::after {
  right: 1rem;
  bottom: -4rem;
}

.location-card-visual span {
  position: absolute;
  right: 1.4rem;
  bottom: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 0.55rem rgba(0, 220, 245, 0.18), 0 0 1.2rem rgba(0, 220, 245, 0.9);
}

.location-card-content {
  padding: 0.95rem 1.15rem 1.15rem;
}

.location-card-eyebrow {
  margin: 0 0 0.25rem;
  color: var(--cyan-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0 2rem 0.55rem 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.location-card p,
.location-card a {
  display: block;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.38;
}

.location-card-address {
  white-space: pre-line;
}

.location-card-focus {
  margin-top: 0.35rem !important;
  color: #536368;
}

.location-card-phone {
  margin-top: 0.45rem !important;
}

.location-card-email {
  overflow: hidden;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-card-more {
  width: fit-content;
  margin-top: 0.65rem !important;
  border-bottom: 1px solid var(--ocean);
  color: var(--ocean);
  font-weight: 700;
}

.location-card-more span {
  color: var(--cyan-dark);
}

@keyframes location-pulse {
  0% { opacity: 0; transform: scale(0.65); }
  18% { opacity: 0.75; }
  70%, 100% { opacity: 0; transform: scale(2.35); }
}

@keyframes location-card-in {
  from { opacity: 0; transform: translateY(0.65rem) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-footer {
  height: 32.3vw;
  min-height: 25.8rem;
  max-height: 38.8rem;
  padding: 3vw 0 2rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ocean);
  font-size: clamp(0.68rem, 0.62vw, 0.75rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1.65fr;
  gap: 1rem 2rem;
}

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

.footer-brand img {
  width: 6.2rem;
}

.footer-brand p {
  margin: 0.7rem 0 0;
}

.footer-brand b,
.site-footer h3 {
  color: #00dff3;
}

.site-footer h3 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
}

.site-footer h3:not(:first-child) {
  margin-top: 0.8rem;
}

.site-footer a {
  display: block;
  margin-top: 0.28rem;
}

.site-footer p {
  margin: 0;
  line-height: 1.48;
}

.footer-underline {
  margin-top: 0.8rem !important;
  font-weight: 700;
  text-decoration: underline;
}

.footer-meta {
  position: relative;
  min-height: 18rem;
}

.socials {
  display: flex;
  gap: 2rem;
}

.socials a {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(0, 115, 139, 0.3);
}

.language-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid #00e3f6;
  border-radius: 3px;
  color: #00e3f6;
  font-weight: 700;
}

.legal {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.legal a {
  display: inline;
  margin: 0;
  text-decoration: underline;
}

.legal small {
  flex-basis: 100%;
  margin-top: 0.6rem;
}

@media (max-width: 1320px) {
  .site-header {
    height: 7rem;
  }

  .brand {
    top: 5rem;
    left: 4.1%;
    width: 6.7rem;
  }

  .utility-nav {
    top: 1.6rem;
    gap: 1.75rem;
    font-size: 0.82rem;
  }

  .main-nav {
    top: 5rem;
    gap: clamp(1rem, 2.25vw, 2rem);
    font-size: 0.82rem;
  }

  .hero-copy {
    top: 42.15%;
  }

  .hero-teasers {
    right: 18.9%;
    bottom: 9.5rem;
    gap: 0.9rem;
  }

  .hero-teaser {
    height: 5rem;
    padding: 0.75rem 1rem;
  }

  .hero-teaser p {
    font-size: 0.62rem;
  }

  .hero-teaser strong {
    margin-top: 0.55rem;
    font-size: 0.7rem;
  }

  .hero-teaser span {
    margin-top: 0.8rem;
  }

  .brand-set {
    gap: 2.25rem;
    padding-right: 2.25rem;
  }

  .brand-set li:nth-child(1) img { width: 6.5rem; }
  .brand-set li:nth-child(2) img { width: 4.2rem; }
  .brand-set li:nth-child(3) img { width: 8.2rem; }
  .brand-set li:nth-child(4) img { width: 6.2rem; }
  .brand-set li:nth-child(5) img { width: 7.2rem; }
}

@media (max-width: 980px) {
  .content-wrap {
    width: min(calc(100% - 3rem), var(--content));
  }

  .site-header {
    height: 5rem;
    background: rgba(0, 30, 42, .9);
    backdrop-filter: blur(10px);
  }

  body .site-header.is-scrolled { height: 4.25rem; box-shadow: 0 8px 24px rgba(0, 20, 30, .2); }
  body .site-header.is-scrolled .brand { top: 2.125rem; width: 5.5rem; }
  body .site-header.is-scrolled .menu-button { top: 1.15rem; }

  .brand {
    top: 2.5rem;
    left: 1.5rem;
    z-index: 70;
  }

  .utility-nav {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 6.5rem 1.5rem 2rem;
    overflow-y: auto;
    background: linear-gradient(155deg, rgba(0, 55, 72, 0.995), rgba(0, 35, 49, 0.995));
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 280ms ease, visibility 380ms;
  }

  .main-nav a {
    width: 100%;
    justify-content: space-between;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 1rem;
  }

  .menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 15, 24, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease, visibility 280ms;
  }

  body.menu-open::before {
    opacity: 1;
    visibility: visible;
  }

  .menu-button {
    position: absolute;
    top: 1.55rem;
    right: 1.5rem;
    display: grid;
    gap: 0.3rem;
    width: 2.5rem;
    padding: 0.4rem;
    border: 0;
    background: transparent;
    z-index: 60;
    cursor: pointer;
  }

  .menu-button:focus {
    outline: none;
  }

  .menu-button span {
    height: 2px;
    background: white;
    transform-origin: center;
    transition: transform 300ms ease, opacity 220ms ease;
  }

  .menu-open .menu-button span:nth-child(1) { transform: translateY(0.45rem) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button span:nth-child(3) { transform: translateY(-0.45rem) rotate(-45deg); }

  .hero {
    min-height: 52rem;
    background-position: 57% center;
  }

  .hero-network {
    left: -40%;
    width: 180%;
    opacity: 0.5;
  }

  .hero-copy {
    left: 1.5rem;
    top: 26%;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.6rem);
  }

  .hero-teasers {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 11rem;
    grid-template-columns: 1fr;
  }

  .hero-teaser:not(:first-child) {
    display: none;
  }

  .hero-teaser {
    height: auto;
    min-height: 6rem;
  }

  .hero-brands {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 3.5rem;
  }

  .logo-viewport {
    width: 100%;
  }

  .brand-set {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding-right: 1rem;
  }

  .brand-set li img {
    width: 100% !important;
    max-height: 2.5rem;
  }

  .intro,
  .solutions,
  .manufacturing,
  .ecatalog,
  .industries,
  .contact-cta,
  .career,
  .locations,
  .site-footer {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .contact-cta {
    padding-block: 4.5rem;
  }

  .intro h2 br {
    display: none;
  }

  .solutions-grid,
  .ecatalog-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .solutions {
    padding-bottom: 5rem;
  }

  .solutions::before {
    right: -24rem;
    bottom: -11rem;
    width: 46rem;
    opacity: 0.28;
  }

  .feature-cards,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .ecatalog-grid > img {
    max-width: 42rem;
    margin-inline: auto;
  }

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

  .contact-grid > img {
    width: min(100%, 27rem);
    height: auto;
  }

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

  .career-copy {
    width: min(calc(100% - 3rem), var(--content));
    justify-self: center;
    padding-right: 0;
  }

  .career-image {
    height: auto;
    min-height: 30rem;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding-block: 4.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .button {
    min-width: min(100%, 20rem);
  }

  .hero {
    min-height: 49rem;
    background-color: #001d2a;
    background-position: 59% calc(50% + 2.5rem);
  }

  .hero-copy {
    top: 7.05rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11.25vw, 2.75rem);
    line-height: 1.14;
  }

  .site-header {
    background: rgba(0, 30, 42, 0.16);
    backdrop-filter: none;
  }

  body .site-header.is-scrolled {
    background: rgba(0, 30, 42, 0.94);
    backdrop-filter: blur(10px);
  }

  .brand {
    top: 2.2rem;
    width: 7.8rem;
  }

  .menu-button {
    top: 1.2rem;
  }

  .hero-teasers {
    right: 0;
    bottom: 10.2rem;
    display: flex;
    gap: 1rem;
    padding-right: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-teasers::-webkit-scrollbar {
    display: none;
  }

  .hero-teaser,
  .hero-teaser:not(:first-child) {
    display: block;
    flex: 0 0 calc(100% - 1rem);
    height: 4.1rem;
    min-height: 0;
    padding: 0.7rem 1.15rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hero-teaser p {
    font-size: 0.6rem;
  }

  .hero-teaser strong {
    margin-top: 0.42rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .hero-teaser span {
    margin-top: 0.58rem;
  }

  .hero-brands {
    bottom: 0.5rem;
  }

  .hero-brands > p {
    text-align: center;
  }

  .scroll-cue {
    display: none;
  }

  .brand-set li:nth-child(3),
  .brand-set li:nth-child(5) {
    display: none;
  }

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

  .factory-visual {
    aspect-ratio: 4 / 3;
  }

  .production-band {
    height: clamp(13rem, 58vw, 18rem);
  }

  .factory-counters {
    display: none;
  }

  .factory-visual::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: 5.9rem;
    background: linear-gradient(180deg, rgba(17, 75, 90, 0.98), rgba(104, 143, 153, 0.96));
    pointer-events: none;
  }

  .factory-mobile-stats {
    position: absolute;
    inset: 1.5rem 0 auto;
    z-index: 2;
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 0.75rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .factory-mobile-stats::-webkit-scrollbar {
    display: none;
  }

  .factory-mobile-stat {
    flex: 0 0 calc(100% - 3rem);
    min-height: 4.7rem;
    padding: 0.85rem 1rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 0.45rem;
    background: rgba(115, 147, 157, 0.56);
    box-shadow: 0 0.65rem 1.4rem rgba(0, 40, 52, 0.12);
    backdrop-filter: blur(7px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .factory-mobile-stat strong,
  .factory-mobile-stat span {
    display: block;
  }

  .factory-mobile-stat strong {
    font-size: 0.86rem;
    letter-spacing: 0.035em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .factory-mobile-stat strong b {
    margin-right: 0.2rem;
    font-size: 1.1rem;
  }

  .factory-mobile-stat span {
    margin-top: 0.42rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 300;
    white-space: nowrap;
  }

  .factory-visual img {
    object-position: center top;
    transform: scale(1.35);
    transform-origin: center top;
  }

  .production-band img {
    object-position: center;
  }

  .solutions-grid {
    gap: 3.5rem;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .industries {
    padding-block: 4rem;
  }

  .industries .section-copy {
    max-width: 20rem;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .industry-grid article {
    min-height: 7.1rem;
    padding: 0.9rem 0.8rem;
    border-radius: 0.7rem;
    box-shadow: 0 0.7rem 1.35rem rgba(0, 50, 64, 0.11);
  }

  .industry-grid article:last-child {
    grid-column: 1 / -1;
    display: flex;
    min-height: 3.35rem;
    align-items: center;
    gap: 0.8rem;
    padding: 0.78rem 0.95rem;
  }

  .industry-grid h3 {
    margin-top: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .industry-grid article:last-child h3 {
    margin: 0;
  }

  .industry-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .testimonial-slider {
    margin-top: 3rem;
  }

  .testimonials {
    height: 20rem;
    margin-inline: -1.5rem;
  }

  .testimonial-card {
    width: min(82vw, 38rem);
    min-height: 15.5rem;
  }

  .testimonial-card[data-position="prev"] {
    --card-x: -72vw;
  }

  .testimonial-card[data-position="next"] {
    --card-x: 72vw;
  }

  .contact-cta {
    padding: 3.75rem 0 0;
  }

  .contact-grid {
    gap: 0;
  }

  .contact-grid > div {
    display: contents;
  }

  .contact-grid .kicker {
    order: 1;
  }

  .contact-grid h2 {
    order: 2;
    margin-bottom: 1.6rem;
  }

  .contact-grid > img {
    order: 3;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .contact-grid .button {
    order: 4;
    width: calc(100% - 1.5rem);
    margin: 2rem auto 3.25rem;
  }

  .career {
    background: #f3f4f5;
  }

  .career-copy {
    padding-bottom: 2.1rem;
  }

  .career-copy .button {
    display: none;
  }

  .career-image {
    width: 100%;
    height: auto;
    min-height: 0;
    background: white;
  }

  .career-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .career-mobile-action {
    display: grid;
    padding: 2rem 1.5rem 3.25rem;
    place-items: center;
    background: white;
  }

  .career-mobile-action .button {
    width: 100%;
  }

  .locations {
    overflow: hidden;
    padding-bottom: 3.5rem;
  }

  .location-map-shell {
    width: 100%;
    margin-top: 1.5rem;
  }

  .location-map-scroll {
    overflow: hidden;
  }

  .location-map-stage {
    width: 100%;
    aspect-ratio: 1200 / 520;
  }

  .location-card {
    display: none !important;
  }

  .location-marker-label {
    display: none;
  }

  .location-marker-connector {
    display: none;
  }

  .location-marker {
    pointer-events: none;
  }

  .location-marker-dot {
    transform: scale(1.7);
  }

  .location-marker.is-active .location-marker-dot {
    transform: scale(2.15);
  }

  .location-mobile-list {
    display: block;
    margin-top: 1.7rem;
  }

  .location-mobile-item {
    border-top: 1px solid rgba(0, 52, 66, 0.22);
  }

  .location-mobile-item:last-child {
    border-bottom: 1px solid rgba(0, 52, 66, 0.22);
  }

  .location-mobile-item summary {
    position: relative;
    padding: 1rem 2.25rem 1rem 0;
    color: var(--ocean);
    font-size: 0.93rem;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
  }

  .location-mobile-item summary::-webkit-details-marker {
    display: none;
  }

  .location-mobile-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0.25rem;
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    place-items: center;
    border: 1px solid rgba(0, 52, 66, 0.48);
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 1.05rem;
    font-weight: 400;
  }

  .location-mobile-item[open] summary::after {
    content: "−";
  }

  .location-mobile-content {
    padding: 0 2.5rem 1.25rem 0;
    color: #43565d;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .location-mobile-content p,
  .location-mobile-content a {
    display: block;
    margin: 0;
  }

  .location-mobile-content .location-mobile-focus {
    margin: 0.35rem 0 0.55rem;
    color: #60747a;
  }

  .location-mobile-content a {
    width: fit-content;
    color: var(--ocean);
    text-decoration: underline;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.2rem;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 1rem;
  }

  .socials {
    gap: 0.7rem;
  }

  .socials a {
    width: 2.25rem;
    height: 2.25rem;
  }

  .legal {
    position: static;
    margin-top: 1.6rem;
  }

  .language-button {
    position: static;
    display: inline-block !important;
    margin-top: 1.5rem !important;
  }
}

.motion-ready .hero-copy,
.motion-ready .hero-teasers,
.motion-ready .hero-brands {
  animation: hero-enter 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .hero-teasers { animation-delay: 140ms; }
.motion-ready .hero-brands { animation-delay: 260ms; }

@media (max-width: 600px) {
  .motion-ready .hero-teasers {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-map-wave {
    display: none;
  }

  .location-marker.is-active .location-marker-ring {
    animation: none;
    opacity: 0.45;
    transform: scale(1.6);
  }
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .intro .narrow-content.motion-reveal {
  transform: translateY(4rem);
}

.motion-ready .intro .narrow-content.motion-reveal.is-visible {
  transform: translateY(2rem);
}

.feature-cards article,
.industry-grid article {
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-cards article:hover,
.industry-grid article:hover {
  transform: translateY(-0.3rem);
}

.motion-ready .feature-cards article.motion-reveal.is-visible:hover,
.motion-ready .industry-grid article.motion-reveal.is-visible:hover {
  transform: translateY(-0.3rem);
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(1.2rem); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
