:root {
  --blue-950: #031d42;
  --blue-900: #052b61;
  --blue-800: #073a7d;
  --blue-700: #0a4c9b;
  --blue-600: #1261b8;
  --cyan-500: #17a8d7;
  --cyan-100: #dff6fd;
  --lime-500: #b7d900;
  --lime-400: #cbe71f;
  --lime-100: #f2f9cb;
  --ink-950: #0a1424;
  --ink-800: #1d2c40;
  --ink-650: #45566c;
  --ink-500: #68778a;
  --line: #dbe3ec;
  --surface: #f4f7fa;
  --white: #ffffff;
  --danger: #d63d3d;
  --shadow-sm: 0 8px 24px rgba(10, 29, 55, 0.08);
  --shadow-md: 0 22px 55px rgba(4, 28, 65, 0.14);
  --shadow-lg: 0 35px 90px rgba(3, 22, 51, 0.24);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-height: 80px;
  --transition: 220ms cubic-bezier(.2, .7, .3, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: clip;
  min-width: 320px;
  color: var(--ink-800);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--blue-950);
  background: var(--lime-400);
}

:focus-visible {
  outline: 3px solid rgba(23, 168, 215, 0.58);
  outline-offset: 3px;
}

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

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.button--primary {
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 10px 24px rgba(7, 58, 125, 0.2);
}

.button--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 14px 32px rgba(7, 58, 125, 0.25);
}

.button--lime {
  color: var(--blue-950);
  background: var(--lime-500);
  box-shadow: 0 12px 30px rgba(183, 217, 0, 0.22);
}

.button--lime:hover {
  background: var(--lime-400);
  box-shadow: 0 16px 36px rgba(183, 217, 0, 0.28);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.58);
}

.button--outline {
  color: var(--blue-800);
  background: transparent;
  border-color: rgba(7, 58, 125, 0.25);
}

.button--outline:hover {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  font-weight: 750;
  transition: gap var(--transition), color var(--transition);
}

.text-link:hover {
  gap: 12px;
  color: var(--blue-600);
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover {
  color: var(--lime-400);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--lime-500);
}

.eyebrow--dark {
  color: var(--blue-700);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading h2,
.intro-grid h2,
.efficiency h2,
.region h2,
.contact h2,
.technology h2 {
  margin-bottom: 22px;
  color: var(--ink-950);
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--ink-650);
  font-size: 1.08rem;
}

.section-heading--center {
  max-width: 840px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

/* Top strip and header */
.service-strip {
  position: relative;
  z-index: 60;
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-950);
  font-size: 0.78rem;
}

.service-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.service-strip a {
  transition: color var(--transition);
}

.service-strip a:hover {
  color: var(--lime-400);
}

.service-strip__emergency,
.service-strip__links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-strip__emergency strong {
  color: var(--white);
}

.service-strip__emergency span:last-child {
  color: var(--lime-400);
  font-weight: 750;
}

.service-strip__links a {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--lime-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(183, 217, 0, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 43, 93, 0.09);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(4, 29, 66, 0.09);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__copy strong {
  color: var(--blue-800);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__copy span {
  margin-top: 6px;
  color: var(--ink-650);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-left: 34px;
}

.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: static;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 10px;
  color: var(--ink-800);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition), background-color var(--transition);
}

.nav-link svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-item.is-open > .nav-link {
  color: var(--blue-700);
  background: var(--surface);
}

.nav-item.is-open > .nav-link svg {
  transform: rotate(180deg);
}

.nav-item--shop .nav-link {
  color: var(--blue-700);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding-inline: 18px;
}

.nav-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) 2fr;
  gap: 34px;
  width: min(1080px, calc(100vw - 48px));
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid rgba(7, 58, 125, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
}

.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mega-menu--compact {
  width: min(900px, calc(100vw - 48px));
}

.mega-menu--small {
  grid-template-columns: 1fr;
  width: min(640px, calc(100vw - 48px));
  padding: 24px;
}

.mega-menu__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 205px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(23, 168, 215, 0.35), transparent 34%),
    linear-gradient(145deg, var(--blue-800), var(--blue-950));
  border-radius: 10px;
}

.mega-menu__intro::after {
  content: "";
  position: absolute;
  top: -45px;
  right: -34px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035), 0 0 0 58px rgba(255, 255, 255, 0.025);
}

.mega-menu__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: auto;
  padding: 5px 9px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 4px;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mega-menu__eyebrow--lime {
  color: var(--blue-950);
  background: var(--lime-500);
}

.mega-menu__eyebrow--cyan {
  background: var(--cyan-500);
}

.mega-menu__intro strong {
  position: relative;
  z-index: 1;
  max-width: 240px;
  margin-bottom: 14px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.mega-menu__intro a {
  position: relative;
  z-index: 1;
  color: var(--lime-400);
  font-size: 0.78rem;
  font-weight: 750;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 6px;
}

.mega-menu--compact .mega-menu__links {
  grid-template-columns: 1fr;
}

.mega-menu--small .mega-menu__links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu__links > a {
  display: flex;
  flex-direction: column;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.mega-menu__links > a:hover {
  background: var(--surface);
  border-color: var(--line);
  transform: translateY(-2px);
}

.mega-menu__links strong {
  color: var(--ink-950);
  font-size: 0.9rem;
}

.mega-menu__links span {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 0.75rem;
  line-height: 1.35;
}

.mega-menu__links .mega-menu__alert {
  color: var(--white);
  background: var(--blue-950);
}

.mega-menu__links .mega-menu__alert strong,
.mega-menu__links .mega-menu__alert span {
  color: var(--white);
}

.mega-menu__links .mega-menu__alert:hover {
  background: var(--blue-900);
  border-color: var(--blue-900);
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  padding: 110px 0 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, var(--blue-950) 0%, var(--blue-900) 55%, #092d5a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 29, 66, 1) 0%, rgba(3, 29, 66, 0.92) 39%, rgba(3, 29, 66, 0.45) 66%, rgba(3, 29, 66, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 29, 66, 0.2), rgba(3, 29, 66, 0.05));
}

.hero::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -330px;
  z-index: 1;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.018), 0 0 0 170px rgba(255, 255, 255, 0.012);
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  background-repeat: no-repeat;
  background-position: 80% 42%;
  background-size: cover;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.04);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black 0%, transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 68px;
  align-items: center;
  min-height: 500px;
}

.hero__content {
  max-width: 720px;
  padding-bottom: 55px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--lime-400);
  font-style: normal;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--lime-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 510px;
}

.hero-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

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

.hero-card span:not(.hero-card__icon):not(.status-dot) {
  color: var(--ink-500);
  font-size: 0.69rem;
  font-weight: 650;
}

.hero-card strong,
.hero-card a {
  color: var(--blue-800);
  font-size: 0.88rem;
  line-height: 1.25;
}

.hero-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-800);
  background: var(--lime-100);
  border-radius: 9px;
}

.hero-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-card--insight {
  top: 80px;
  right: 8px;
  width: 280px;
}

.hero-card--service {
  right: 86px;
  bottom: 78px;
  width: 230px;
}

.hero-card--service .status-dot {
  margin-inline: 5px;
}

.hero__badge {
  position: absolute;
  bottom: 98px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 152px;
  height: 152px;
  padding: 26px;
  color: var(--blue-950);
  background: var(--lime-500);
  border: 10px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.hero__badge strong {
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero__badge span {
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__quicklinks {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  color: var(--ink-800);
  background: var(--white);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -20px 60px rgba(3, 22, 51, 0.19);
}

.hero__quicklinks > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
  transition: background-color var(--transition), color var(--transition);
}

.hero__quicklinks > a:last-child {
  border-right: 0;
}

.hero__quicklinks > a:hover {
  color: var(--blue-800);
  background: var(--surface);
}

.hero__quicklinks > a > span:last-child {
  color: var(--blue-600);
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.hero__quicklinks > a:hover > span:last-child {
  transform: translateX(4px);
}

.hero__quicklinks strong,
.hero__quicklinks small {
  display: block;
}

.hero__quicklinks strong {
  color: var(--ink-950);
  font-size: 0.92rem;
}

.hero__quicklinks small {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 0.7rem;
  line-height: 1.35;
}

.quicklink-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 10px;
}

.quicklink-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quicklink-icon--blue {
  color: var(--blue-700);
  background: #e6effa;
}

.quicklink-icon--lime {
  color: #5c6e00;
  background: var(--lime-100);
}

.quicklink-icon--cyan {
  color: #047f9f;
  background: var(--cyan-100);
}

.quicklink-icon--dark {
  color: var(--white);
  background: var(--blue-950);
}

/* Intro and stats */
.section--intro {
  padding-top: 130px;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 8px;
}

.intro-copy p {
  color: var(--ink-650);
  font-size: 1.04rem;
}

.intro-copy .text-link {
  margin-top: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stat-card {
  position: relative;
  min-height: 218px;
  padding: 30px 28px;
  background: var(--white);
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--lime-500);
  transition: width 500ms ease;
}

.stat-card:hover::after {
  width: 100%;
}

.stat-card__number {
  display: block;
  margin-bottom: 38px;
  color: var(--blue-800);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card strong {
  display: block;
  color: var(--ink-950);
  font-size: 0.95rem;
}

.stat-card p {
  margin: 7px 0 0;
  color: var(--ink-500);
  font-size: 0.8rem;
}

/* Efficiency */
.efficiency {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 14%, rgba(23, 168, 215, 0.24), transparent 30%),
    linear-gradient(135deg, var(--blue-950), #082a55 70%, #0c3766);
}

.efficiency::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.02), 0 0 0 130px rgba(255, 255, 255, 0.015);
}

.efficiency__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: 82px;
  align-items: center;
}

.efficiency h2 {
  color: var(--white);
}

.efficiency__content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.efficiency__offer {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 590px;
  margin: 30px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.efficiency__offer-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 10px;
}

.efficiency__offer-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.efficiency__offer strong,
.efficiency__offer span {
  display: block;
}

.efficiency__offer strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.94rem;
}

.efficiency__offer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.efficiency__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.efficiency__steps {
  display: grid;
  gap: 12px;
}

.efficiency__steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  color: var(--ink-800);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.efficiency__steps article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue-800);
  background: var(--surface);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 850;
}

.efficiency__steps h3 {
  margin-bottom: 4px;
  color: var(--ink-950);
  font-size: 1.02rem;
}

.efficiency__steps p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.8rem;
}

.efficiency__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 4px 0;
  color: rgba(255, 255, 255, 0.57);
}

.efficiency__note svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.efficiency__note p {
  margin: 0;
  font-size: 0.7rem;
}

/* Solutions */
.solutions {
  background: var(--surface);
}

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

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 58, 125, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(4, 29, 66, 0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 170px;
  height: 170px;
  background: var(--surface);
  border-radius: 50%;
  transition: transform 500ms ease, background-color var(--transition);
}

.solution-card:hover {
  z-index: 2;
  border-color: rgba(7, 58, 125, 0.16);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.solution-card:hover::before {
  background: var(--lime-100);
  transform: scale(1.25);
}

.solution-card__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #c7d0dc;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.solution-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--blue-800);
  background: #e9f0fa;
  border-radius: 12px;
  transition: color var(--transition), background-color var(--transition);
}

.solution-card:hover .solution-card__icon {
  color: var(--blue-950);
  background: var(--lime-500);
}

.solution-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.solution-card h3 {
  margin-bottom: 12px;
  color: var(--ink-950);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.solution-card p {
  margin-bottom: 24px;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.solution-card__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 800;
}

.solution-card--accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-800), var(--blue-950));
}

.solution-card--accent::before {
  background: rgba(255, 255, 255, 0.05);
}

.solution-card--accent .solution-card__number {
  color: rgba(255, 255, 255, 0.46);
}

.solution-card--accent .solution-card__icon {
  color: var(--blue-950);
  background: var(--lime-500);
}

.solution-card--accent h3,
.solution-card--accent .solution-card__link {
  color: var(--white);
}

.solution-card--accent p {
  color: rgba(255, 255, 255, 0.68);
}

/* Technology */
.technology {
  background: var(--white);
}

.technology__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.technology__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 34px;
}

.technology__intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.technology__intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-650);
}

.technology-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.technology-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.technology-card__visual {
  position: relative;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
  background-size: 28px 28px, 28px 28px, auto;
}

.technology-card--vsd .technology-card__visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #052c4d, #0879a2);
  background-size: 28px 28px, 28px 28px, auto;
}

.machine {
  position: relative;
  width: 190px;
  height: 128px;
  background: linear-gradient(145deg, #dce7f2, #f7fafc 55%, #c8d5e3);
  border: 5px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.25);
  transform: perspective(600px) rotateY(-8deg) rotateX(2deg);
}

.machine::before {
  content: "MERZ";
  position: absolute;
  top: 20px;
  left: 18px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--blue-800);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.machine::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 16px;
  left: 15px;
  height: 17px;
  background: repeating-linear-gradient(90deg, #8090a0 0 2px, transparent 2px 5px);
  border-top: 1px solid #8b9aaa;
}

.machine span:nth-child(1) {
  position: absolute;
  top: 48px;
  left: 18px;
  width: 64px;
  height: 38px;
  background: linear-gradient(90deg, #b9c7d5, #e8eef4);
  border: 1px solid #9babbc;
}

.machine span:nth-child(2) {
  position: absolute;
  top: 26px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: #152a42;
  border: 6px solid #7f91a5;
  border-radius: 50%;
}

.machine span:nth-child(3) {
  position: absolute;
  right: 34px;
  bottom: -11px;
  left: 34px;
  height: 12px;
  background: #1c2d3f;
  border-radius: 0 0 4px 4px;
}

.machine--vsd::before {
  background: var(--cyan-500);
}

.technology-card__content {
  padding: 26px;
}

.tag {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 9px;
  color: #556600;
  background: var(--lime-100);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag--cyan {
  color: #036785;
  background: var(--cyan-100);
}

.technology-card h3 {
  margin-bottom: 10px;
  color: var(--ink-950);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.technology-card p {
  color: var(--ink-500);
  font-size: 0.85rem;
}

.technology-card .text-link {
  margin-top: 8px;
  font-size: 0.8rem;
}

/* Process */
.process {
  overflow: hidden;
  background: var(--surface);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
}

.process-list li {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--surface);
  font-size: 0.72rem;
  font-weight: 850;
}

.process-list li:hover > span {
  color: var(--blue-950);
  background: var(--lime-500);
  border-color: var(--lime-500);
}

.process-list h3 {
  margin-bottom: 8px;
  color: var(--ink-950);
  font-size: 1.05rem;
}

.process-list p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.8rem;
}

/* Region */
.region {
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-950), var(--blue-900));
}

.region::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 29, 66, 1) 0%, rgba(3, 29, 66, 0.91) 40%, rgba(3, 29, 66, 0.3) 68%, rgba(3, 29, 66, 0.08) 100%);
}

.region__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.region__content {
  max-width: 610px;
}

.region h2 {
  color: var(--white);
}

.region__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.04rem;
}

.region__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.region__map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background:
    radial-gradient(circle at 56% 42%, rgba(23, 168, 215, 0.18), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #0a3769;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.region__map::before,
.region__map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 48% 52% 40% 60% / 55% 35% 65% 45%;
  transform: rotate(-14deg);
}

.region__map::before {
  inset: 8% 7% 9% 12%;
}

.region__map::after {
  inset: 17% 16% 18% 21%;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(183, 217, 0, 0.8), transparent);
  transform-origin: left center;
}

.map-line--1 {
  top: 42%;
  left: 25%;
  width: 54%;
  transform: rotate(65deg);
}

.map-line--2 {
  top: 40%;
  left: 34%;
  width: 44%;
  transform: rotate(87deg);
}

.map-dot {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.map-dot i {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--lime-500);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(183, 217, 0, 0.14);
}

.map-dot b {
  font-weight: 700;
}

.map-dot--mannheim { top: 17%; left: 45%; }
.map-dot--karlsruhe { top: 36%; left: 38%; }
.map-dot--rastatt { top: 46%; left: 34%; color: var(--white); }
.map-dot--rastatt i { width: 14px; height: 14px; box-shadow: 0 0 0 10px rgba(183, 217, 0, 0.17); }
.map-dot--pforzheim { top: 40%; left: 67%; }
.map-dot--offenburg { top: 64%; left: 31%; }
.map-dot--freiburg { top: 82%; left: 23%; }

/* Contact */
.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  gap: 80px;
  align-items: start;
}

.contact__content {
  position: sticky;
  top: 125px;
}

.contact__content > p:not(.eyebrow) {
  color: var(--ink-650);
  font-size: 1.04rem;
}

.contact__options {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact__options > a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.contact__options > a:hover {
  background: var(--white);
  border-color: var(--line);
  transform: translateX(4px);
}

.contact__option-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-800);
  background: var(--white);
  border-radius: 9px;
}

.contact__option-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.contact__options small,
.contact__options strong {
  display: block;
}

.contact__options small {
  color: var(--ink-500);
  font-size: 0.69rem;
}

.contact__options strong {
  color: var(--ink-950);
  font-size: 0.86rem;
}

.lead-form {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.lead-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.lead-form__header span {
  color: var(--ink-950);
  font-size: 1.08rem;
  font-weight: 800;
}

.lead-form__header strong {
  color: var(--blue-700);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.field {
  display: block;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-800);
  font-size: 0.76rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink-950);
  background: var(--white);
  border: 1px solid #ccd6e1;
  border-radius: 8px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field input,
.field select {
  height: 49px;
  padding: 0 13px;
}

.field textarea {
  min-height: 122px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(18, 97, 184, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  background: #fffafa;
  border-color: var(--danger);
}

.field-error,
.privacy-error {
  display: none;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.68rem;
}

.field.is-invalid .field-error,
.check-field.is-invalid + .privacy-error {
  display: block;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 21px 0 7px;
  color: var(--ink-500);
  font-size: 0.72rem;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue-800);
}

.check-field a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form .button {
  margin-top: 20px;
}

.form-note {
  margin: 11px 0 0;
  color: var(--ink-500);
  font-size: 0.66rem;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px;
  color: #224a00;
  background: #edf8df;
  border: 1px solid #cce5ad;
  border-radius: 8px;
  font-size: 0.78rem;
}

.form-status.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--blue-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.72fr) 1fr;
  gap: 45px;
  padding-bottom: 58px;
}

.brand--footer .brand__copy strong,
.brand--footer .brand__copy span {
  color: var(--white);
}

.footer-brand > p {
  max-width: 330px;
  margin: 22px 0;
  font-size: 0.82rem;
}

.footer-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-cert span {
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.61rem;
  font-weight: 750;
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h2,
.footer-contact h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact a,
.footer-contact address {
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.75;
  transition: color var(--transition);
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--lime-400);
}

.footer-contact address {
  margin-bottom: 7px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-cta {
  display: none;
}

/* Reveal effects */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal--delay,
.reveal--delay-1 {
  transition-delay: 100ms;
}

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

.reveal--delay-3 {
  transition-delay: 260ms;
}

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

/* Tablet */
@media (max-width: 1120px) {
  :root {
    --header-height: 74px;
  }

  .brand__copy {
    display: none;
  }

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

  .main-nav {
    gap: 12px;
    margin-left: 22px;
  }

  .nav-link {
    padding-inline: 8px;
    font-size: 0.79rem;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 34px;
  }

  .hero-card--insight {
    right: 0;
  }

  .hero-card--service {
    right: 20px;
  }

  .hero__badge {
    left: -15px;
  }

  .hero__quicklinks > a {
    min-height: 104px;
    padding: 18px 14px;
  }

  .quicklink-icon {
    width: 42px;
    height: 42px;
  }

  .intro-grid,
  .efficiency__grid,
  .contact__grid {
    gap: 55px;
  }

  .solution-card {
    padding: 26px;
  }

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

  .technology__intro {
    grid-column: 1 / -1;
    max-width: 760px;
    padding-right: 0;
    padding-bottom: 26px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.75fr) 1fr;
  }

  .footer-column:nth-of-type(3) {
    display: none;
  }
}

/* Mobile navigation breakpoint */
@media (max-width: 920px) {
  .site-header {
    /* Keep the fixed off-canvas menu anchored to the viewport.
       backdrop-filter creates a containing block for fixed descendants in Chromium. */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body {
    padding-bottom: 66px;
  }

  .service-area {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .brand__copy {
    display: flex;
  }

  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--blue-900);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--nav-top, var(--header-height));
    right: 0;
    bottom: 0;
    z-index: 120;
    display: block;
    width: min(460px, 92vw);
    margin: 0;
    padding: 18px 20px 90px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    box-shadow: -30px 0 60px rgba(3, 22, 51, 0.18);
    transform: translateX(105%);
    transition: transform 300ms cubic-bezier(.2, .7, .3, 1);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(3, 20, 45, 0.56);
    backdrop-filter: blur(2px);
  }

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

  .nav-list {
    display: block;
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 4px;
    font-size: 0.93rem;
    text-align: left;
  }

  .nav-link:hover,
  .nav-item.is-open > .nav-link {
    background: transparent;
  }

  .nav-item--shop .nav-link {
    justify-content: flex-start;
  }

  .mega-menu,
  .mega-menu--compact,
  .mega-menu--small {
    position: static;
    display: block;
    width: 100%;
    max-height: 0;
    padding: 0;
    visibility: visible;
    overflow: hidden;
    opacity: 1;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height 420ms ease;
  }

  .nav-item.is-open .mega-menu {
    max-height: 1000px;
    padding-bottom: 14px;
    transform: none;
  }

  .mega-menu__intro {
    display: block;
    min-height: auto;
    padding: 16px;
  }

  .mega-menu__eyebrow,
  .mega-menu__intro strong {
    display: none;
  }

  .mega-menu__intro a {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
  }

  .mega-menu__links,
  .mega-menu--compact .mega-menu__links,
  .mega-menu--small .mega-menu__links {
    display: block;
    padding-top: 8px;
  }

  .mega-menu__links > a {
    min-height: auto;
    padding: 10px 12px;
  }

  .mega-menu__links > a:hover {
    transform: none;
  }

  .mega-menu__links span {
    display: none;
  }

  .mega-menu__links .mega-menu__alert {
    margin-top: 5px;
  }

  .header-cta {
    width: 100%;
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(3, 29, 66, 0.98), rgba(3, 29, 66, 0.85));
  }

  .hero__media {
    width: 100%;
    opacity: 0.48;
    background-position: 78% center;
  }

  .hero__inner {
    display: block;
    min-height: 520px;
  }

  .hero__content {
    max-width: 690px;
    padding-bottom: 95px;
  }

  .hero__visual {
    display: none;
  }

  .hero__quicklinks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 14px 14px 0 0;
  }

  .hero__quicklinks > a:nth-child(2) {
    border-right: 0;
  }

  .hero__quicklinks > a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .efficiency__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 32px;
  }

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

  .efficiency__grid {
    gap: 55px;
  }

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

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

  .process-list::before {
    display: none;
  }

  .region::after {
    background: linear-gradient(90deg, rgba(3, 29, 66, 0.98), rgba(3, 29, 66, 0.68));
  }

  .region__map {
    width: 100%;
    opacity: 0.55;
  }

  .contact__grid {
    gap: 48px;
  }

  .contact__content {
    position: static;
  }

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

  .footer-contact {
    grid-column: 2 / -1;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 66px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(3, 22, 51, 0.13);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue-800);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-cta a:last-child {
    color: var(--blue-950);
    background: var(--lime-500);
    border-radius: 7px;
  }

  .mobile-cta svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .section-heading--center {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading--center .eyebrow {
    justify-content: flex-start;
  }

  .section-heading h2,
  .intro-grid h2,
  .efficiency h2,
  .region h2,
  .contact h2,
  .technology h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .service-strip__inner {
    min-height: 36px;
  }

  .service-strip__emergency {
    gap: 9px;
  }

  .service-strip__emergency strong {
    font-size: 0.71rem;
  }

  .service-strip__emergency span:last-child {
    font-size: 0.7rem;
  }

  .service-strip__links a:first-of-type {
    display: none;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand__copy strong {
    font-size: 0.94rem;
  }

  .brand__copy span {
    font-size: 0.59rem;
  }

  .hero {
    padding-top: 72px;
  }

  .hero__inner {
    min-height: 525px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    gap: 9px;
  }

  .hero__quicklinks {
    display: block;
    width: calc(100% - 28px);
    margin-top: 0;
  }

  .hero__quicklinks > a {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__quicklinks > a:last-child {
    border-bottom: 0;
  }

  .section--intro {
    padding-top: 94px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .stat-card {
    min-height: 175px;
  }

  .stat-card__number {
    margin-bottom: 24px;
  }

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

  .efficiency__actions .button {
    width: 100%;
  }

  .efficiency__steps article {
    padding: 18px;
  }

  .solution-grid,
  .technology__grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 300px;
  }

  .technology__intro {
    grid-column: auto;
  }

  .process-list {
    gap: 32px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 0;
    text-align: left;
  }

  .process-list li > span {
    margin: 0;
  }

  .region,
  .region__inner {
    min-height: 600px;
  }

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

  .region__actions .button {
    width: 100%;
  }

  .map-dot b {
    display: none;
  }

  .contact__options strong {
    overflow-wrap: anywhere;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .lead-form__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 22px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}

@media (max-width: 410px) {
  .brand__copy {
    display: none;
  }

  .service-strip__links {
    gap: 8px;
  }

  .service-strip__links a {
    padding-left: 8px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Complete website extensions */
.button--small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: .8rem;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 0%, rgba(23, 168, 215, .06), transparent 24rem),
    var(--surface);
}

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 3;
  padding-top: 22px;
  padding-bottom: 18px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--ink-500);
  font-size: .75rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #9ba9b9;
}

.breadcrumbs a {
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--blue-700);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink-800);
  font-weight: 700;
}

/* Generic landing page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 11% 18%, rgba(23, 168, 215, .2), transparent 28rem),
    linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 58%, #083f85 100%);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.page-hero::before {
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.page-hero::after {
  right: -180px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  min-height: 650px;
  padding-top: 62px;
  padding-bottom: 78px;
}

.page-hero--compact,
.page-hero--compact .page-hero__grid {
  min-height: 540px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.page-hero h1,
.article-hero h1,
.contact-hero h1,
.location-hero h1,
.legal-hero h1,
.utility-hero h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.7rem, 5.25vw, 5.3rem);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.page-hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: rgba(255,255,255,.79);
  font-size: clamp(1.02rem, 1.65vw, 1.24rem);
  line-height: 1.65;
}

.page-hero .hero__proof {
  margin-top: 30px;
}

.page-hero__media {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  margin: 48px 0;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero--compact .page-hero__media {
  min-height: 410px;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,29,66,.55));
  pointer-events: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.page-hero__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  color: var(--white);
  background: rgba(3,29,66,.78);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.page-hero__badge span {
  color: var(--lime-400);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-hero__badge strong {
  font-size: .84rem;
  text-align: right;
}

/* Proof strip */
.proof-strip {
  position: relative;
  z-index: 4;
  color: var(--ink-800);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(3,29,66,.045);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.proof-strip__grid > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 78px;
  padding: 15px 20px;
  border-right: 1px solid var(--line);
  font-size: .77rem;
  text-align: center;
}

.proof-strip__grid > span:first-child {
  border-left: 1px solid var(--line);
}

.proof-strip__grid svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.proof-strip__grid strong {
  color: var(--blue-800);
}

/* Cards and content grids */
.card-grid {
  display: grid;
  gap: 24px;
}

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

.feature-card,
.content-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(4,29,66,.07);
}

.feature-card {
  min-height: 310px;
  padding: 34px;
}

.feature-card::before,
.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime-500), var(--cyan-500));
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover::before,
.content-card:hover::before {
  transform: scaleX(1);
}

.feature-card__number {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--blue-700);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.feature-card h3,
.content-card h3 {
  margin-bottom: 13px;
  color: var(--ink-950);
  font-size: 1.28rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.feature-card p,
.content-card p {
  color: var(--ink-650);
  font-size: .91rem;
}

.content-card {
  display: flex;
  min-height: 280px;
  padding: 32px;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.content-card:hover {
  border-color: rgba(18,97,184,.3);
  box-shadow: 0 24px 52px rgba(4,29,66,.12);
  transform: translateY(-5px);
}

.content-card__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 27px;
  padding: 5px 9px;
  color: var(--blue-700);
  background: var(--cyan-100);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-card .text-link {
  margin-top: auto;
  padding-top: 17px;
}

.content-card--image {
  display: block;
  padding: 0;
}

.content-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dce6f0;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.content-card--image:hover .content-card__image img {
  transform: scale(1.045);
}

.content-card__body {
  display: flex;
  min-height: 315px;
  padding: 28px;
  flex-direction: column;
}

/* Process */
.process-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(23,168,215,.22), transparent 30rem),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.process-section::after {
  content: "";
  position: absolute;
  right: -230px;
  bottom: -430px;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 175px rgba(255,255,255,.015);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(480px,1.1fr);
  gap: clamp(60px,8vw,110px);
  align-items: start;
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-section .section-heading > p:not(.eyebrow) {
  margin-inline: 0;
  color: rgba(255,255,255,.72);
}

.process-section .process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-section .process-list::before {
  display: none;
}

.process-section .process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 145px;
  padding: 25px;
  text-align: left;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: background-color var(--transition), transform var(--transition);
}

.process-section .process-list li:hover {
  background: rgba(255,255,255,.11);
  transform: translateX(5px);
}

.process-section .process-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0;
  place-items: center;
  color: var(--blue-950);
  background: var(--lime-500);
  border: 0;
  border-radius: 11px;
  font-size: .72rem;
  font-weight: 850;
}

.process-section .process-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.1rem;
}

.process-section .process-list p {
  color: rgba(255,255,255,.69);
  font-size: .84rem;
}

/* Lead sections */
.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(183,217,0,.12), transparent 26rem),
    linear-gradient(180deg, #fff, #f4f7fa);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(520px,1fr);
  gap: clamp(60px,8vw,110px);
  align-items: start;
}

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

.contact-copy h2 {
  margin-bottom: 22px;
  color: var(--ink-950);
  font-size: clamp(2.2rem,4.3vw,4rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--ink-650);
  font-size: 1.05rem;
}

.contact-options {
  display: grid;
  gap: 11px;
  margin-top: 36px;
}

.contact-options > a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-options > a:hover {
  border-color: rgba(18,97,184,.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-options svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--blue-700);
  background: var(--cyan-100);
  border-radius: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-options span {
  display: flex;
  flex-direction: column;
}

.contact-options small {
  color: var(--ink-500);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-options strong {
  color: var(--ink-950);
  font-size: .92rem;
  overflow-wrap: anywhere;
}

.contact-options__emergency {
  border-color: rgba(183,217,0,.6) !important;
}

.form-alert {
  margin: 0 0 22px;
  padding: 13px 15px;
  color: #742424;
  background: #fff2f2;
  border: 1px solid #efc2c2;
  border-radius: 9px;
  font-size: .8rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}

.form-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lead-form [type="file"] {
  height: auto;
  min-height: 49px;
  padding: 10px;
}

.lead-form [type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 11px;
  color: var(--blue-800);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 750;
  cursor: pointer;
}

.lead-form button[disabled] {
  opacity: .68;
  cursor: wait;
  transform: none;
}

/* Homepage additions */
.system-worlds {
  overflow: hidden;
}

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

.system-card {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: var(--blue-950);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.system-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.system-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,29,66,.03) 25%, rgba(3,29,66,.94) 100%);
}

.system-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.3,1);
}

.system-card:hover img {
  transform: scale(1.055);
}

.system-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  padding: 28px;
  flex-direction: column;
}

.system-card__overlay small {
  margin-bottom: 8px;
  color: var(--lime-400);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.system-card__overlay strong {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.2;
}

.system-card__overlay em {
  margin-top: 16px;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
}

.all-pages {
  overflow: hidden;
  background: var(--white);
}

.all-pages__groups {
  display: grid;
  gap: 13px;
  max-width: 1040px;
  margin-inline: auto;
}

.all-pages__group {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.all-pages__group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 67px;
  padding: 16px 21px;
  color: var(--ink-950);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.all-pages__group summary::-webkit-details-marker {
  display: none;
}

.all-pages__group summary::after {
  content: "+";
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.all-pages__group[open] summary::after {
  content: "–";
}

.all-pages__group summary small {
  margin-left: auto;
  color: var(--ink-500);
  font-size: .7rem;
  font-weight: 700;
}

.all-pages__links {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.all-pages__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  min-height: 58px;
  padding: 13px 16px;
  color: var(--ink-800);
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
  transition: color var(--transition), background-color var(--transition);
}

.all-pages__links a:hover {
  color: var(--blue-700);
  background: #f8fbfe;
}

.all-pages__links a span {
  color: var(--blue-600);
}

.all-pages__sitemap {
  margin-top: 30px;
  text-align: center;
}

/* Articles */
.article-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(23,168,215,.2), transparent 28rem),
    linear-gradient(135deg,var(--blue-950),var(--blue-800));
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(380px,.75fr);
  gap: clamp(52px,7vw,92px);
  align-items: center;
  min-height: 610px;
  padding-top: 65px;
  padding-bottom: 78px;
}

.article-hero__content > p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.article-meta span {
  padding: 6px 10px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
}

.article-hero__media {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: clamp(55px,8vw,110px);
  align-items: start;
  padding-top: 95px;
  padding-bottom: 112px;
}

.article-body {
  max-width: 790px;
}

.article-intro {
  margin-bottom: 50px;
  color: var(--ink-950);
  font-size: clamp(1.2rem,2vw,1.55rem);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.article-body section {
  margin-bottom: 43px;
}

.article-body h2 {
  margin-bottom: 14px;
  color: var(--ink-950);
  font-size: clamp(1.65rem,3vw,2.35rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.article-body p {
  color: var(--ink-650);
}

.article-callout {
  margin-top: 54px;
  padding: 28px;
  color: var(--ink-800);
  background: var(--lime-100);
  border: 1px solid rgba(183,217,0,.45);
  border-radius: 14px;
}

.article-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-950);
}

.article-aside {
  position: sticky;
  top: 130px;
}

.aside-card {
  padding: 30px;
  color: var(--white);
  background: linear-gradient(145deg,var(--blue-800),var(--blue-950));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.aside-card > span {
  display: block;
  margin-bottom: 24px;
  color: var(--lime-400);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aside-card h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.13;
  letter-spacing: -.035em;
}

.aside-card p {
  margin-bottom: 24px;
  color: rgba(255,255,255,.7);
  font-size: .86rem;
}

.aside-card .button--primary {
  color: var(--blue-950);
  background: var(--lime-500);
}

/* Contact and location heroes */
.contact-hero,
.location-hero,
.legal-hero,
.utility-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(23,168,215,.22), transparent 28rem),
    linear-gradient(135deg,var(--blue-950),var(--blue-800));
}

.contact-hero__grid,
.location-hero__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(380px,.72fr);
  gap: clamp(55px,8vw,105px);
  align-items: center;
  min-height: 570px;
  padding-top: 70px;
  padding-bottom: 80px;
}

.contact-hero__grid > div:first-child > p:not(.eyebrow),
.location-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.75);
  font-size: 1.08rem;
}

.contact-hero__cards {
  display: grid;
  gap: 12px;
}

.contact-hero__cards > a,
.contact-hero__address,
.region-card {
  padding: 22px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.contact-hero__cards > a {
  display: flex;
  flex-direction: column;
  transition: background-color var(--transition), transform var(--transition);
}

.contact-hero__cards > a:hover {
  background: rgba(255,255,255,.13);
  transform: translateX(4px);
}

.contact-hero__cards small,
.contact-hero__address small,
.region-card small {
  margin-bottom: 6px;
  color: var(--lime-400);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-hero__cards strong {
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.contact-hero__address {
  margin-top: 12px;
  font-style: normal;
}

.location-hero .region-card {
  display: grid;
  gap: 17px;
}

.region-card strong {
  color: var(--white);
  font-size: 1.2rem;
}

.region-card p {
  color: rgba(255,255,255,.7);
}

.region-card a:not(.button) {
  color: var(--lime-400);
  font-weight: 800;
}

/* Legal and utility pages */
.legal-hero__inner,
.utility-hero__inner {
  min-height: 420px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.legal-hero__inner > p:not(.eyebrow),
.utility-hero__inner > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255,255,255,.74);
  font-size: 1.08rem;
}

.utility-icon,
.success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 16px;
}

.utility-icon svg,
.success-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0,1fr);
  gap: clamp(50px,7vw,90px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 130px;
  display: grid;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.legal-nav a {
  padding: 11px 12px;
  color: var(--ink-650);
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 700;
  transition: color var(--transition), background-color var(--transition);
}

.legal-nav a:hover {
  color: var(--blue-700);
  background: var(--white);
}

.legal-copy {
  max-width: 850px;
}

.legal-section {
  padding: 0 0 44px;
  margin-bottom: 43px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 125px;
}

.legal-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 15px;
  color: var(--ink-950);
  font-size: clamp(1.5rem,2.8vw,2.25rem);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.legal-section p,
.legal-section li,
.narrow-copy p,
.narrow-copy li {
  color: var(--ink-650);
}

.legal-section a,
.narrow-copy a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-style: normal;
}

.narrow-copy {
  max-width: 840px;
  margin-inline: auto;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.narrow-copy h2,
.narrow-copy h3 {
  color: var(--ink-950);
  letter-spacing: -.025em;
}

.narrow-copy h2:not(:first-child) {
  margin-top: 42px;
}

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

.sitemap-section {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.sitemap-section h2 {
  margin-bottom: 18px;
  color: var(--ink-950);
  font-size: 1.18rem;
}

.sitemap-section nav {
  display: grid;
  gap: 8px;
}

.sitemap-section a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink-650);
  border-bottom: 1px solid #edf1f5;
  font-size: .78rem;
  transition: color var(--transition);
}

.sitemap-section a::after {
  content: "→";
  color: var(--blue-600);
}

.sitemap-section a:hover {
  color: var(--blue-700);
}

.status-summary {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.status-summary > div,
.status-row,
.success-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.status-summary strong {
  display: block;
  color: var(--ink-950);
  font-size: 1.5rem;
}

.status-summary span {
  color: var(--ink-500);
  font-size: .75rem;
}

.status-list {
  display: grid;
  gap: 11px;
}

.status-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
}

.status-row__icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 10px;
}

.status-row__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.status-row.is-ok .status-row__icon {
  color: #286800;
  background: #edf8df;
}

.status-row.is-error .status-row__icon {
  color: #8e2828;
  background: #fff0f0;
}

.status-row.is-pending .status-row__icon {
  color: #805c00;
  background: #fff7df;
}

.status-row strong {
  display: block;
  color: var(--ink-950);
}

.status-row small {
  color: var(--ink-500);
}

.status-help {
  margin-top: 30px;
  padding: 22px;
  color: var(--ink-650);
  background: var(--cyan-100);
  border: 1px solid rgba(23,168,215,.22);
  border-radius: 12px;
}

.success-hero {
  display: grid;
  min-height: 610px;
  padding: 90px 0;
  place-items: center;
  background:
    radial-gradient(circle at 50% 5%, rgba(23,168,215,.14), transparent 28rem),
    var(--surface);
}

.success-card {
  max-width: 760px;
  padding: clamp(32px,6vw,70px);
  text-align: center;
}

.success-icon {
  margin-inline: auto;
}

.success-icon--muted {
  color: var(--white);
  background: var(--blue-800);
}

.success-card h1 {
  margin-bottom: 18px;
  color: var(--ink-950);
  font-size: clamp(2.4rem,5vw,4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.success-card > p {
  color: var(--ink-650);
  font-size: 1.06rem;
}

.success-card .hero__actions {
  justify-content: center;
  margin-top: 30px;
}

/* Current menu state */
.nav-item.is-current > .nav-link {
  color: var(--blue-700);
}

.nav-item.is-current > .nav-link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 3px;
  left: 10px;
  height: 2px;
  background: var(--lime-500);
}

.nav-item > .nav-link {
  position: relative;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 10px;
    margin-left: 20px;
  }

  .nav-link {
    padding-inline: 7px;
    font-size: .77rem;
  }

  .nav-item--cta .button {
    padding-inline: 12px;
  }

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

  .system-card {
    min-height: 430px;
  }
}

@media (max-width: 1020px) {
  .page-hero__grid,
  .article-hero__grid,
  .contact-hero__grid,
  .location-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero__grid {
    padding-top: 78px;
  }

  .page-hero__media,
  .article-hero__media {
    width: min(100%,700px);
    min-height: 430px;
    margin: 0 0 72px;
  }

  .article-hero__grid,
  .contact-hero__grid,
  .location-hero__grid {
    padding-top: 78px;
  }

  .article-hero__media {
    margin-bottom: 0;
  }

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

  .contact-copy,
  .article-aside,
  .legal-nav {
    position: static;
  }

  .contact-copy {
    max-width: 720px;
  }

  .article-layout {
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 45px;
  }

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

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

@media (max-width: 920px) {
  .nav-item.is-current > .nav-link::after {
    display: none;
  }

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

  .proof-strip__grid > span:nth-child(2) {
    border-right: 0;
  }

  .proof-strip__grid > span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .process-grid,
  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    max-width: 540px;
  }

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

@media (max-width: 680px) {
  .breadcrumbs {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .breadcrumbs ol {
    font-size: .68rem;
  }

  .page-hero,
  .page-hero__grid,
  .page-hero--compact,
  .page-hero--compact .page-hero__grid {
    min-height: auto;
  }

  .page-hero__grid,
  .article-hero__grid,
  .contact-hero__grid,
  .location-hero__grid {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .page-hero h1,
  .article-hero h1,
  .contact-hero h1,
  .location-hero h1,
  .legal-hero h1,
  .utility-hero h1 {
    font-size: clamp(2.5rem,12.5vw,4rem);
  }

  .page-hero__media,
  .page-hero--compact .page-hero__media,
  .article-hero__media {
    min-height: 340px;
    margin-bottom: 0;
    border-radius: 17px;
  }

  .page-hero__badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero__badge strong {
    text-align: left;
  }

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

  .proof-strip__grid > span,
  .proof-strip__grid > span:first-child,
  .proof-strip__grid > span:nth-child(2) {
    justify-content: flex-start;
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .proof-strip__grid > span:last-child {
    border-bottom: 0;
  }

  .card-grid--3,
  .sitemap-grid,
  .status-summary {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 250px;
    padding: 27px;
  }

  .feature-card__number {
    margin-bottom: 36px;
  }

  .content-card {
    min-height: 250px;
    padding: 27px;
  }

  .content-card--image {
    padding: 0;
  }

  .content-card__body {
    min-height: 285px;
    padding: 25px;
  }

  .process-section .process-list li {
    min-height: auto;
    padding: 20px;
  }

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

  .system-card {
    min-height: 430px;
  }

  .all-pages__group summary {
    padding: 14px 15px;
  }

  .all-pages__group summary small {
    display: none;
  }

  .all-pages__links {
    grid-template-columns: 1fr;
  }

  .article-layout {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .article-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aside-card,
  .narrow-copy {
    padding: 25px;
  }

  .contact-hero__cards > a,
  .contact-hero__address,
  .region-card {
    padding: 18px;
  }

  .legal-hero__inner,
  .utility-hero__inner {
    min-height: 360px;
    padding-top: 65px;
    padding-bottom: 65px;
  }

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

  .status-row {
    grid-template-columns: auto 1fr;
  }

  .status-row > :last-child {
    grid-column: 2;
  }

  .success-hero {
    min-height: 540px;
  }

  .success-card {
    padding: 32px 22px;
  }
}

/* Template alignment fixes */
.legal-page {
  background: var(--white);
}

.sitemap-page {
  overflow: hidden;
}

.status-summary {
  display: block;
  max-width: 560px;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.status-summary strong {
  color: var(--white);
  font-size: 1.15rem;
}

.status-summary span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.7);
}

.status-summary.is-ready {
  border-color: rgba(183,217,0,.52);
}

.status-row.is-ok .status-row__icon {
  color: #286800;
  background: #edf8df;
}

.status-row.is-error .status-row__icon {
  color: #8e2828;
  background: #fff0f0;
}

.contact-hero__cards > a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
}

.contact-hero__cards > a > svg,
.region-card > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-hero__cards > a > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-hero__address > span {
  display: block;
  margin-bottom: 15px;
  color: var(--lime-400);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-hero__address h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.18;
}

.contact-hero__address address {
  margin-bottom: 19px;
  color: rgba(255,255,255,.72);
  font-style: normal;
}

.region-card > svg {
  margin-bottom: 10px;
}

.sitemap-section ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Symbolgrafik-Update: sämtliche fotografischen Referenzmotive ersetzt */
.hero__media {
  background-image: url("../images/symbols/hero-system.svg");
  background-size: min(760px, 62vw) auto;
  background-position: 92% 48%;
  filter: none;
  transform: none;
  opacity: .96;
}
.page-hero__media,
.article-hero__media,
.content-card__image {
  background: linear-gradient(145deg, #082f60, #031d42);
}
.page-hero__media::after { background: linear-gradient(180deg, transparent 62%, rgba(3,29,66,.22)); }
.page-hero__media img,
.article-hero__media img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 42px);
}
.content-card__image img {
  object-fit: contain;
  padding: 18px;
}
.system-card {
  min-height: 430px;
  background: linear-gradient(145deg, #082f60, #031d42);
}
.system-card::after { background: linear-gradient(180deg, transparent 48%, rgba(3,29,66,.96) 100%); }
.system-card img {
  object-fit: contain;
  padding: 18px 18px 92px;
}
.system-card:hover img { transform: translateY(-5px) scale(1.025); }
@media (max-width: 760px) {
  .hero__media { background-size: 620px auto; background-position: 70% 62%; opacity: .44; }
  .page-hero__media img, .article-hero__media img { padding: 16px; }
}

/* Approved Merz wordmark and external shop link */
.brand {
  gap: 0;
}

.brand img {
  width: 188px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.brand--footer img {
  width: 230px;
  height: auto;
}

.nav-link--external {
  gap: 7px;
}

.nav-link--external .external-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
  transition: transform var(--transition), background-color var(--transition);
}

.nav-link--external:hover .external-mark {
  background: var(--lime-400);
  transform: translate(1px,-1px);
}

@media (max-width: 1120px) {
  .brand img {
    width: 158px;
    height: auto;
  }

  .brand--footer img {
    width: 215px;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 142px;
    height: auto;
  }

  .brand--footer img {
    width: 205px;
  }

  .nav-item--shop .nav-link {
    justify-content: space-between;
  }
}

@media (max-width: 410px) {
  .brand img {
    width: 126px;
    height: auto;
  }
}
