:root {
  --navy-950: #061827;
  --navy-900: #0a2942;
  --navy-800: #0d3d61;
  --blue-700: #0b6da6;
  --blue-600: #1283bd;
  --blue-500: #1b98cf;
  --cyan-400: #41bfd8;
  --orange-500: #c65308;
  --orange-600: #a94203;
  --ink: #0b2539;
  --muted: #435d70;
  --line: #d5e0e8;
  --line-strong: #bfcfda;
  --soft: #f5f8fa;
  --soft-blue: #edf7fb;
  --white: #ffffff;
  --success: #157c5a;
  --danger: #ae3030;
  --shadow-xs: 0 4px 14px rgba(6, 24, 39, .06);
  --shadow-sm: 0 10px 28px rgba(6, 24, 39, .08);
  --shadow-md: 0 20px 48px rgba(6, 24, 39, .14);
  --radius-sm: .55rem;
  --radius: .9rem;
  --radius-lg: 1.2rem;
  --content: 1200px;
  --reading: 760px;
  --header-height: 78px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow: clip) { html, body { overflow-x: clip; } }
body.menu-open { overflow: hidden; }
main { position: relative; background: var(--white); }
figure { margin: 0; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a {
  color: var(--blue-700);
  text-decoration-thickness: .075em;
  text-underline-offset: .18em;
}
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(18, 131, 189, .48); outline-offset: 3px; }
::selection { color: var(--navy-950); background: #cfeefa; }

.skip-link {
  position: fixed;
  top: .7rem;
  left: 1rem;
  z-index: 9999;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

/* Layout */
.container,
.container--wide {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}
.container--wide { --content: 1360px; }
.reading { max-width: var(--reading); }
.section { padding: clamp(3.3rem, 6vw, 5rem) 0; }
.section--compact { padding: clamp(2.4rem, 4vw, 3.5rem) 0; }
.section--soft { background: var(--soft); }
.section--pattern {
  background-color: #f2f7fa;
  background-image:
    linear-gradient(rgba(11, 109, 166, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 109, 166, .035) 1px, transparent 1px);
  background-size: 36px 36px;
}
.section--navy,
.section--blue {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.center { text-align: center; }

/* Typography */
h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.026em;
  text-wrap: balance;
}
h1 { margin-bottom: 1rem; font-size: clamp(2.45rem, 5vw, 4.5rem); }
h2 { margin-bottom: .85rem; font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { margin-bottom: .55rem; font-size: clamp(1.22rem, 2vw, 1.55rem); }
h4 { margin-bottom: .45rem; font-size: 1.08rem; }
p { margin: 0 0 1rem; color: #304a60; }
p:last-child { margin-bottom: 0; }
.lead {
  color: #2e4a61;
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  line-height: 1.62;
}
.small { font-size: .9rem; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .72rem;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .115em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--orange-500);
}
.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
}
.section-heading p { color: #4a6275; font-size: 1.06rem; }
.section-heading::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--cyan-400));
}
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--blue h1,
.section--blue h2,
.section--blue h3,
.section--blue h4 { color: #fff; }
.section--navy p,
.section--navy li,
.section--blue p,
.section--blue li { color: #d7e7f0; }
.section--navy .eyebrow,
.section--blue .eyebrow,
.hero .eyebrow { color: #b9ecf6; }
.section--navy .section-heading p,
.section--blue .section-heading p { color: #cadee9; }
.section--navy a:not(.btn),
.section--blue a:not(.btn),
.page-hero a:not(.btn),
.hero a:not(.btn) { color: #9ce7f4; }
.section--navy a:not(.btn):hover,
.section--blue a:not(.btn):hover,
.page-hero a:not(.btn):hover,
.hero a:not(.btn):hover { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .72rem 1.05rem;
  border: 2px solid transparent;
  border-radius: .65rem;
  color: var(--navy-950);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn--primary {
  color: #fff;
  background: var(--orange-500);
  box-shadow: 0 9px 22px rgba(196, 84, 10, .25);
}
.btn--primary:hover { color: #fff; background: var(--orange-600); box-shadow: 0 12px 28px rgba(196, 84, 10, .3); }
.btn--blue { color: #fff; background: var(--blue-700); }
.btn--blue:hover { color: #fff; background: var(--navy-800); }
.btn--ghost { color: var(--navy-900); border-color: #9eb4c4; background: #fff; }
.btn--ghost:hover { border-color: var(--blue-600); background: var(--soft-blue); }
.btn--white { color: var(--navy-950); background: #fff; }
.btn--white:hover { color: var(--navy-950); background: #edf7fb; }
.btn--outline-white { color: #fff; border-color: rgba(255,255,255,.64); background: rgba(4, 22, 37, .28); }
.btn--outline-white:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.12); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; }

/* Top bar and header */
.topbar {
  color: #d2e1eb;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 34px;
}
.topbar__note { color: #b9cad6; }
.topbar__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 750; }
.topbar a:hover { color: #a5e6f1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(6, 24, 39, .12);
  background: rgba(255,255,255,.975);
  box-shadow: 0 5px 20px rgba(6, 24, 39, .055);
  backdrop-filter: blur(12px);
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400) 70%, var(--orange-500));
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: var(--header-height);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; color: var(--navy-950); text-decoration: none; }
.brand img { width: 300px; max-width: 45vw; height: auto; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: .65rem;
  color: var(--navy-950);
  background: #fff;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.site-nav { display: flex; align-items: center; gap: .05rem; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link,
.submenu-toggle {
  border: 0;
  color: var(--navy-900);
  background: transparent;
  text-decoration: none;
  font-weight: 780;
}
.nav-link {
  position: relative;
  padding: 1rem .62rem;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: .65rem;
  bottom: .55rem;
  left: .65rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--blue-700); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.submenu-toggle {
  width: 26px;
  height: 38px;
  margin-left: -.42rem;
  padding: 0;
  border-radius: .35rem;
}
.submenu-toggle::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: -4px auto 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.submenu {
  position: absolute;
  top: calc(100% - .2rem);
  left: 0;
  z-index: 30;
  width: 320px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-700);
  border-radius: 0 0 .85rem .85rem;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.submenu--wide { display: grid; grid-template-columns: 1fr 1fr; width: 560px; }
.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu,
.nav-item.is-open > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block;
  padding: .62rem .7rem;
  border-radius: .5rem;
  color: var(--ink);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}
.submenu a:hover { color: var(--blue-700); background: var(--soft-blue); }
.header-cta { min-height: 42px; margin-left: .5rem; padding: .62rem .9rem; }

/* Breadcrumbs */
.breadcrumbs { margin: 0 0 1rem; color: #63798b; font-size: .84rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .35rem; color: #8da0af; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-700); }
.hero .breadcrumbs,
.page-hero .breadcrumbs,
.hero .breadcrumbs a,
.page-hero .breadcrumbs a { color: #c7deea; }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}
.hero.hero--video {
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 72vh, 750px);
  padding: clamp(3.2rem, 6vw, 5.4rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero__background,
.hero__fallback,
.hero__background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__background { z-index: 0; overflow: hidden; background: var(--navy-950); }
.hero__fallback { z-index: 0; }
.hero__fallback img,
.hero__background-video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(.92) contrast(1.07) brightness(.81);
}
.hero__background-video { z-index: 1; background: transparent; }
.hero__background.video-unavailable .hero__background-video { display: none; }
.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,18,31,.96) 0%, rgba(4,22,38,.88) 31%, rgba(5,32,52,.58) 58%, rgba(4,20,34,.28) 78%, rgba(4,18,31,.42) 100%),
    linear-gradient(0deg, rgba(4,18,31,.58), transparent 48%, rgba(4,18,31,.18));
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; }
.hero__content { position: relative; max-width: 720px; }
.hero h1 {
  max-width: 710px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.7rem, 4.9vw, 4.75rem);
  line-height: 1.01;
  letter-spacing: -.038em;
  text-shadow: 0 4px 28px rgba(0,0,0,.56), 0 1px 2px rgba(0,0,0,.8);
}
.hero .lead {
  max-width: 650px;
  color: #f1f7fa;
  font-size: clamp(1.06rem, 1.55vw, 1.26rem);
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0,0,0,.58);
}
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.15rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .43rem .62rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 20, 34, .45);
  backdrop-filter: blur(6px);
  font-size: .78rem;
  font-weight: 750;
}
.hero__badge::before { content: "✓"; color: #77ddb7; font-weight: 900; }
.hero__watch-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .95rem;
  color: #a8e8f3;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0,0,0,.58);
}
.hero__watch-link:hover { color: #fff; }
.hero__video-toggle {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2.2rem);
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 40px;
  padding: .5rem .72rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 20, 34, .72);
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  backdrop-filter: blur(7px);
  font-size: .76rem;
  font-weight: 800;
}
.hero__video-toggle:hover { background: rgba(9, 61, 92, .9); }
.hero__video-toggle-icon { min-width: .9rem; text-align: center; }
.hero__grid,
.hero__showcase,
.hero__showcase-meta,
.hero__media-label,
.hero__scroll { display: none; }

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 4.8rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(65,191,216,.22), transparent 30%),
    linear-gradient(132deg, var(--navy-950), var(--navy-800));
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 62px solid rgba(255,255,255,.035);
  border-radius: 50%;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4.5rem);
}
.page-hero h1 { margin-bottom: .85rem; color: #fff; font-size: clamp(2.35rem, 4.5vw, 4.05rem); }
.page-hero .lead { color: #e1edf4; }
.page-hero__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #eef4f7);
  box-shadow: 0 22px 54px rgba(0,0,0,.25);
}
.page-hero__image img {
  width: 100%;
  height: 100%;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain;
  object-position: center;
}
.page-hero--text .page-hero__inner { grid-template-columns: 1fr; }
.page-hero--text .reading { max-width: 880px; }

/* Trust strip */
.trust-strip { position: relative; z-index: 5; margin-top: -1.4rem; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.trust-item {
  position: relative;
  padding: 1.05rem 1.2rem 1.05rem 1.4rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--blue-600);
}
.trust-item strong { display: block; color: var(--navy-950); font-size: .98rem; }
.trust-item span { display: block; margin-top: .12rem; color: var(--muted); font-size: .85rem; line-height: 1.45; }

/* Grids, cards and media */
.grid { display: grid; gap: 1.35rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
}
.split--reverse > :first-child { order: 2; }
.split--top { align-items: start; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: var(--blue-600);
}
.card:hover { transform: translateY(-2px); border-color: #a7c0d0; box-shadow: var(--shadow-sm); }
.card__image {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  height: clamp(220px, 18vw, 270px);
  padding: 1rem;
  background: linear-gradient(180deg, #fff, #f2f7f9);
}
.card__image::after {
  content: "";
  position: absolute;
  inset: .65rem;
  z-index: -1;
  border: 1px solid rgba(11, 109, 166, .09);
  border-radius: .7rem;
}
.card__image > img,
.card__image > img[data-media-fallback] {
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 90%;
  margin: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}
#machine-ranges .card__image { height: clamp(235px, 19vw, 280px); }
#machine-ranges .card:nth-child(6) .card__image > img { max-width: 96%; max-height: 78%; }
.card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem 1.25rem 1.35rem;
}
.card__body p { color: #4b6275; }
.card__body .card__link { margin-top: auto; }
.card__tag {
  display: inline-flex;
  margin-bottom: .65rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  color: #075d91;
  background: #e6f4fa;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 800;
}
.card__link::after { content: "→"; transition: transform .18s ease; }
.card__link:hover::after { transform: translateX(3px); }
.card--link a.card__stretched::before { content: ""; position: absolute; inset: 0; z-index: 4; }
.card--dark { color: #fff; border-color: rgba(255,255,255,.14); background: #0d304d; }
.card--dark h3 { color: #fff; }
.card--dark p { color: #c9dce7; }

.icon-card { padding: 1.25rem; }
.icon-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: .9rem;
  border-radius: .75rem;
  color: var(--blue-700);
  background: var(--soft-blue);
  box-shadow: inset 0 0 0 1px #d0e8f2;
  font-size: 1.2rem;
  font-weight: 900;
}
.icon-card p { color: #4b6275; }

.media-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.media-frame img {
  width: 100%;
  height: auto;
  max-height: 470px;
  aspect-ratio: 4 / 3;
  padding: 1rem;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(145deg, #fff, #eef4f7);
}
.media-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #04111d; }
.media-caption { padding: .75rem .95rem; color: #405a70; background: #edf4f7; font-size: .83rem; }
.media-caption a { font-weight: 750; }
.media-frame--automated-line > img,
.media-frame--automated-line > img[data-media-fallback] {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 455px;
  aspect-ratio: auto;
  margin: auto;
  padding: 1rem;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.media-fallback {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 2rem;
  color: #17364e;
  background: linear-gradient(145deg, #f3f8fb, #e5f1f7);
  text-align: center;
  font-weight: 800;
}
img.is-fallback-media {
  width: 100%;
  height: 100%;
  padding: .45rem;
  object-fit: contain;
  object-position: center;
  background: var(--navy-950);
}

/* Lists, stats, tables and process */
.check-list,
.plain-list { margin: 1.1rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .4rem 0 .4rem 1.7rem; color: #304d63; }
.check-list li::before {
  content: "✓";
  position: absolute;
  top: .44rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: .7rem;
  font-weight: 900;
}
.section--navy .check-list li,
.section--blue .check-list li { color: #d7e7f0; }
.plain-list li { padding: .46rem 0; border-bottom: 1px solid var(--line); }
.plain-list li:last-child { border-bottom: 0; }

.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.stat {
  padding: 1.05rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: .8rem;
  background: rgba(255,255,255,.07);
}
.stat strong { display: block; color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.2; }
.stat span { display: block; margin-top: .22rem; color: #c7dce8; font-size: .82rem; line-height: 1.45; }

.notice {
  padding: 1rem 1.1rem;
  border: 1px solid #c6dce9;
  border-left: 4px solid var(--blue-600);
  border-radius: .6rem;
  color: #29455b;
  background: var(--soft-blue);
}
.notice--warning { border-color: #efd6b8; border-left-color: var(--orange-500); background: #fff7ed; }
.notice strong { color: var(--navy-950); }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { padding: .8rem .9rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy-950); background: #edf4f7; font-weight: 800; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f8fbfc; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: #fff;
}
.spec { display: grid; grid-template-columns: minmax(125px, .7fr) 1.3fr; gap: .75rem; padding: .8rem .9rem; border-bottom: 1px solid var(--line); }
.spec:nth-child(odd) { border-right: 1px solid var(--line); }
.spec:last-child,
.spec:nth-last-child(2) { border-bottom: 0; }
.spec dt { color: var(--muted); font-weight: 700; }
.spec dd { margin: 0; color: var(--navy-950); font-weight: 750; }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process__item {
  position: relative;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.process__item::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: .65rem;
  color: var(--orange-600);
  font-size: 1.35rem;
  font-weight: 900;
}
.process__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -.8rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
  transform: translateY(-50%);
}
.process__item p { color: #405b70; }

/* FAQ */
.faq { display: grid; gap: .7rem; max-width: 900px; margin: 0 auto; }
.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.faq summary {
  position: relative;
  padding: .95rem 3rem .95rem 1rem;
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  top: .78rem;
  right: .8rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--soft-blue);
  font-size: 1.15rem;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); background: #f8fbfc; }
.faq__answer { padding: .95rem 1rem 1.05rem; color: #405b70; }
.faq__answer p { color: #405b70; }

/* Selector and forms */
.selector {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.selector__head { padding: 1.3rem 1.4rem; color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--blue-700)); }
.selector__head h3,
.selector__head p { color: #fff; }
.selector__body { padding: 1.35rem; }
.selector__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { color: var(--navy-950); font-size: .84rem; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: .72rem .8rem;
  border: 1px solid #a9bbc8;
  border-radius: .58rem;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #708392; opacity: 1; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue-600); outline: 3px solid rgba(18, 131, 189, .15); }
.field--full { grid-column: 1 / -1; }
.selector__result { display: none; margin-top: 1.2rem; padding: 1rem; border: 1px solid #b8d8e7; border-radius: .72rem; background: var(--soft-blue); }
.selector__result.is-visible { display: block; }
.selector__result h4 { margin-bottom: .35rem; }

.form-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; color: var(--muted); font-size: .86rem; }
.checkbox input { width: 1.05rem; height: 1.05rem; margin-top: .25rem; flex: 0 0 auto; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 1.5rem; margin-top: .8rem; font-weight: 750; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--success); }

.contact-list { margin: 1.1rem 0 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 34px 1fr; gap: .65rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list__icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: .5rem;
  color: var(--blue-700);
  background: var(--soft-blue);
  font-weight: 900;
}

/* Video and network grids */
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #04111d; }
.video-card__body { padding: 1.2rem; }
.video-card__body p { color: #405b70; }
.video-card--featured { grid-column: 1 / -1; }
.video-card--featured .video-card__body { max-width: 900px; }

.network-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.network-link {
  display: block;
  min-height: 100%;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}
.network-link:hover { border-color: #9bc2d6; color: var(--blue-700); background: var(--soft-blue); }
.network-link strong { display: block; overflow-wrap: anywhere; }
.network-link span { color: var(--muted); font-size: .78rem; }

.sitemap-list { columns: 3; column-gap: 2rem; }
.sitemap-list section { break-inside: avoid; margin-bottom: 1.5rem; }
.sitemap-list ul { padding-left: 1.05rem; }

/* Prose */
.prose > * + * { margin-top: .85rem; }
.prose h2 { margin-top: 2rem; margin-bottom: .65rem; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.prose h3 { margin-top: 1.55rem; }
.prose ul,
.prose ol { padding-left: 1.25rem; }
.prose li { margin: .4rem 0; }
.prose blockquote { margin: 1.4rem 0; padding: 1rem 1.15rem; border-left: 4px solid var(--orange-500); color: #344e63; background: #fff7ee; }

/* CTA and source strip */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 4.5vw, 3.6rem) 0;
  color: #fff;
  background: linear-gradient(120deg, var(--navy-900), var(--blue-700));
}
.cta-band::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -120px;
  width: 390px;
  height: 390px;
  border: 54px solid rgba(255,255,255,.045);
  border-radius: 50%;
}
.cta-band__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin-bottom: .45rem; color: #fff; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.cta-band p { max-width: 700px; color: #dceaf2; }
.cta-band .btn-row { margin: 0; flex: 0 0 auto; }

.source-bar {
  padding: .78rem 0;
  border-top: 1px solid #cee0e9;
  color: #24445b;
  background: #edf7fb;
  font-size: .88rem;
  text-align: center;
}
.source-bar a { color: var(--blue-700); font-weight: 800; }

/* Footer */
.site-footer {
  position: relative;
  color: #d3e0e8;
  background: #041421;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400) 75%, var(--orange-500));
}
.footer-main { padding: 3.2rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 2rem; }
.site-footer h3 { margin-bottom: .9rem; color: #fff; font-size: 1rem; letter-spacing: -.01em; }
.site-footer p { color: #bdd0dc; }
.footer-brand img { width: 290px; max-width: 100%; height: auto; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: .43rem 0; }
.footer-links a { color: #cbd9e2; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-address { color: #cbd9e2; font-style: normal; }
.footer-address a { color: #fff; text-decoration: none; }
.footer-bottom { padding: .95rem 0; border-top: 1px solid rgba(255,255,255,.11); background: #030e17; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #94aaba; font-size: .8rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .8rem; }
.footer-legal a { color: #c3d2dc; text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* Floating actions and cookie notice */
.quick-contact {
  position: fixed;
  right: .9rem;
  bottom: .9rem;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: .48rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}
.quick-contact.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.quick-contact a {
  display: grid;
  place-items: center;
  min-width: 112px;
  height: 43px;
  padding: 0 .9rem;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 9px 24px rgba(6, 24, 39, .2);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 850;
}
.quick-contact a:first-child { background: var(--orange-500); }
.quick-contact a:hover { color: #fff; transform: translateY(-1px); }

.back-to-top {
  position: fixed;
  bottom: .9rem;
  left: .9rem;
  z-index: 840;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.back-to-top.is-visible { display: grid; place-items: center; }

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  display: none;
  width: 100%;
  border-top: 2px solid var(--cyan-400);
  color: #fff;
  background: #061827;
  box-shadow: 0 -14px 38px rgba(0,0,0,.22);
}
.cookie-banner.is-visible { display: block; animation: cookie-in .25s ease-out; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(calc(100% - 2.5rem), var(--content));
  min-height: 68px;
  margin-inline: auto;
  padding: .7rem 0;
}
.cookie-banner p { flex: 1; margin: 0; color: #e9f3f8; font-size: .86rem; }
.cookie-banner a { color: #9ce7f4; font-weight: 800; }
.cookie-banner__actions { flex: 0 0 auto; }
.cookie-banner .btn { min-height: 40px; padding: .55rem .75rem; white-space: nowrap; font-size: .8rem; }
body.cookie-open { padding-bottom: 70px; }
body.cookie-open .quick-contact { bottom: 5.3rem; }
@keyframes cookie-in { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }


/* Version 10: stronger contrast, customer-first decision path and secure form states */
body { color: var(--ink); }
p { color: #263f54; }
.lead { color: #263f54; }
.section-heading p,
.card__body p,
.icon-card p { color: #3d5669; }
.muted { color: #435d70; }

.brand img { width: 326px; max-width: 48vw; }
.footer-brand img { width: min(100%, 360px); }

.btn--primary {
  color: #fff;
  background: var(--orange-500);
  box-shadow: 0 9px 22px rgba(166, 62, 0, .24);
}
.btn--primary:hover,
.btn--primary:focus-visible { color: #fff; background: var(--orange-600); }
.btn--outline-white {
  color: #fff;
  border-color: rgba(255,255,255,.82);
  background: rgba(4, 20, 34, .7);
  box-shadow: 0 7px 22px rgba(0,0,0,.2);
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible { color: #071e31; border-color: #fff; background: #fff; }

.hero--video::after {
  background:
    linear-gradient(90deg, rgba(3,15,26,.99) 0%, rgba(4,20,34,.95) 34%, rgba(5,31,50,.7) 58%, rgba(4,20,34,.38) 78%, rgba(3,15,26,.5) 100%),
    linear-gradient(0deg, rgba(3,15,26,.7), transparent 46%, rgba(3,15,26,.3));
}
.hero__content { isolation: isolate; }
.hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3.2rem -5rem -3.4rem -4.8rem;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 48%, rgba(3,15,26,.82) 0%, rgba(3,15,26,.58) 48%, rgba(3,15,26,.2) 67%, transparent 78%);
  filter: blur(8px);
}
.hero h1 { text-shadow: 0 5px 30px rgba(0,0,0,.8), 0 2px 4px rgba(0,0,0,.9); }
.hero .lead { color: #fff; font-weight: 520; text-shadow: 0 3px 18px rgba(0,0,0,.9), 0 1px 2px rgba(0,0,0,.9); }
.hero .eyebrow { color: #d2f6fb; text-shadow: 0 2px 12px rgba(0,0,0,.85); }
.hero__badge { border-color: rgba(255,255,255,.5); background: rgba(3,15,26,.72); }
.hero__watch-link { color: #b9f1fa; }

.page-hero .lead { color: #f2f8fb; }
.page-hero .breadcrumbs,
.page-hero .breadcrumbs a { color: #e2f1f7; }
.page-hero .eyebrow { color: #c6f2f8; }

.card,
.form-card,
.selector,
.media-frame { border-color: #c3d2dc; }
.card__body p,
.icon-card p { color: #354f63; }
.card__tag { color: #064d78; background: #dff1f8; }
.card--dark p { color: #e0edf3; }

.field label { color: #071e31; }
.field input,
.field textarea,
.field select {
  border-color: #8ea8ba;
  color: #071e31;
  background: #fff;
}
.field input::placeholder,
.field textarea::placeholder { color: #516a7d; }
.checkbox { color: #304b60; }
.checkbox a { font-weight: 800; }
.form-status { min-height: 1.6rem; color: #263f54; }
.form-status.is-error { color: #9b1c1c; }
.form-status.is-success { color: #0c664a; }
.form-status.is-info,
.form-status.is-pending { color: #075d91; }
.form-security-note {
  margin: 0 0 .85rem;
  padding: .72rem .82rem .72rem 2.25rem;
  border: 1px solid #b9d8e6;
  border-radius: .62rem;
  color: #244559;
  background: #eef8fb;
  font-size: .84rem;
  line-height: 1.45;
  position: relative;
}
.form-security-note::before {
  content: "✓";
  position: absolute;
  left: .8rem;
  top: .72rem;
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: .7rem;
  font-weight: 900;
}

.customer-path {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.5fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid #bed5e1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(65,191,216,.14), transparent 34%),
    linear-gradient(145deg, #f8fcfe, #edf6fa);
  box-shadow: var(--shadow-sm);
}
.customer-path__intro h2 { margin-bottom: .65rem; }
.customer-path__intro p { max-width: 560px; }
.customer-path__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.customer-step {
  min-width: 0;
  min-height: 100%;
  padding: 1.05rem;
  border: 1px solid #c8dbe5;
  border-radius: .8rem;
  background: rgba(255,255,255,.9);
}
.customer-step__number {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .72rem;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
  font-size: .78rem;
  font-weight: 900;
}
.customer-step:last-child .customer-step__number { background: var(--orange-600); }
.customer-step h3 { margin-bottom: .4rem; font-size: 1.06rem; }
.customer-step p { color: #3a5568; font-size: .9rem; line-height: 1.5; }

.source-bar { color: #eaf5fa; }
.source-bar a { color: #aeeaf4; }
.site-footer p,
.footer-links a,
.footer-address,
.footer-address a { color: #d3e1e9; }
.cookie-banner p { color: #fff; }
.cookie-banner a { color: #baf1fa; }

@media (max-width: 1040px) {
  .brand img { width: 300px; max-width: 43vw; }
  .customer-path { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .brand img { width: 270px; max-width: calc(100vw - 88px); }
  .hero__content::before { inset: -2.6rem -2rem -3rem -2rem; }
  .customer-path__steps { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 1100px) {
  .brand img { width: 278px; max-width: 42vw; }
  .nav-link { padding-inline: .48rem; font-size: .9rem; }
  .header-cta { display: none; }
  .submenu--wide { width: 500px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process__item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .topbar__note { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .site-header { backdrop-filter: none; }
  .brand img { width: 270px; max-width: 70vw; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: calc(34px + var(--header-height)) 0 0;
    display: block;
    padding: 1rem 1.1rem 3rem;
    overflow-y: auto;
    background: #fff;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .24s ease, visibility .24s ease;
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-item { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line); }
  .nav-link { padding: .92rem .2rem; font-size: .98rem; }
  .nav-link::after { display: none; }
  .submenu-toggle { width: 46px; margin: 0; }
  .submenu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    width: auto;
    padding: 0 0 .7rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .submenu--wide { grid-template-columns: 1fr; width: auto; }
  .nav-item.is-open > .submenu { display: block; }
  .hero.hero--video { min-height: 600px; padding: 3.1rem 0 4.5rem; }
  .hero__fallback img,
  .hero__background-video { object-position: 65% center; }
  .hero--video::after {
    background:
      linear-gradient(90deg, rgba(4,18,31,.95), rgba(5,31,51,.73)),
      linear-gradient(0deg, rgba(4,18,31,.62), transparent 55%);
  }
  .page-hero__inner,
  .split { grid-template-columns: 1fr; }
  .page-hero__image { width: min(100%, 620px); }
  .split--reverse > :first-child { order: initial; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selector__grid { grid-template-columns: 1fr; }
  .cta-band__inner { display: block; }
  .cta-band .btn-row { margin-top: 1.2rem; }
  .sitemap-list { columns: 2; }
}

@media (max-width: 640px) {
  .container,
  .container--wide { width: min(calc(100% - 1.3rem), var(--content)); }
  .section { padding: 2.55rem 0; }
  .section--compact { padding: 2rem 0; }
  .section-heading { margin-bottom: 1.45rem; text-align: left; }
  .section-heading::after { margin-left: 0; }
  .section-heading p { font-size: 1rem; }
  h1 { font-size: clamp(2.15rem, 10vw, 3.05rem); }
  h2 { font-size: clamp(1.72rem, 8vw, 2.45rem); }
  .topbar__inner { min-height: 40px; }
  .topbar__links { width: 100%; justify-content: space-between; gap: .5rem; }
  .site-nav { inset: calc(40px + var(--header-height)) 0 0; }
  .brand img { width: 245px; max-width: calc(100vw - 88px); }
  .hero.hero--video { min-height: 620px; padding: 2.7rem 0 4.6rem; }
  .hero__fallback img,
  .hero__background-video { object-position: 68% center; }
  .hero--video::after {
    background:
      linear-gradient(90deg, rgba(4,18,31,.93), rgba(5,31,51,.72)),
      linear-gradient(0deg, rgba(4,18,31,.82), rgba(4,18,31,.16) 58%, rgba(4,18,31,.25));
  }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3.45rem); }
  .hero .lead { font-size: 1rem; line-height: 1.54; }
  .hero__badges { display: flex; gap: .38rem; }
  .hero__badge { padding: .4rem .55rem; font-size: .7rem; }
  .hero__video-toggle { right: .65rem; bottom: .65rem; width: 42px; justify-content: center; padding-inline: 0; }
  .hero__video-toggle-text { display: none; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .page-hero { padding: 2.55rem 0 2.9rem; }
  .page-hero__image { aspect-ratio: 4 / 3; padding: .6rem; }
  .grid--2,
  .grid--3,
  .grid--4,
  .video-grid,
  .network-grid { grid-template-columns: 1fr; }
  .card__image,
  #machine-ranges .card__image { height: 245px; }
  .card__image > img,
  .card__image > img[data-media-fallback] { max-width: 91%; max-height: 89%; }
  .media-frame img { max-height: none; padding: .75rem; }
  .trust-strip { margin-top: -1rem; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec,
  .spec:nth-child(odd) { border-right: 0; }
  .spec:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; }
  .process__item::after { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-main { padding: 2.7rem 0 2rem; }
  .footer-bottom__inner { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .sitemap-list { columns: 1; }
  .source-bar { text-align: left; }
  .quick-contact { right: .65rem; bottom: .65rem; }
  .quick-contact a { width: 46px; min-width: 46px; height: 46px; padding: 0; font-size: 0; }
  .quick-contact a:first-child::before { content: "Q"; font-size: .84rem; }
  .quick-contact a:last-child::before { content: "☎"; font-size: 1rem; }
  .back-to-top { left: .65rem; bottom: .65rem; }
  .cookie-banner__inner { display: block; width: min(calc(100% - 1.3rem), var(--content)); padding: .8rem 0; }
  .cookie-banner__actions { margin-top: .65rem; }
  .cookie-banner .btn { width: 100%; }
  body.cookie-open { padding-bottom: 138px; }
  body.cookie-open .quick-contact { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__background-video,
  .hero__video-toggle { display: none !important; }
}

@media print {
  .topbar,
  .site-header,
  .quick-contact,
  .cookie-banner,
  .back-to-top,
  .cta-band,
  .source-bar,
  .site-footer,
  .hero__video-toggle { display: none !important; }
  .section,
  .page-hero { padding: 1.5rem 0; }
  .page-hero,
  .hero { color: #000; background: #fff; }
  .page-hero h1,
  .hero h1 { color: #000; text-shadow: none; }
  .page-hero .lead,
  .hero .lead { color: #333; text-shadow: none; }
  .hero__background { display: none; }
  .card,
  .media-frame,
  .table-wrap { box-shadow: none; break-inside: avoid; }
  a { color: #000; text-decoration: none; }
}
