/*
 * Merz Drucklufttechnik – responsives Redesign 2026
 * Visuelle Grundlage: freigestelltes Merz-Logo, technische Line-Art-Symbole,
 * zweistufige Navigation, klare Lead-CTAs und kompakte Inhaltskarten.
 */

:root {
  --blue-950: #031d42;
  --blue-900: #052b61;
  --blue-850: #063873;
  --blue-800: #0a438d;
  --blue-700: #0b55aa;
  --blue-600: #1169c7;
  --cyan-500: #00a6df;
  --lime-500: #b7d900;
  --lime-400: #cce922;
  --lime-300: #d9ef54;
  --ink-950: #071326;
  --ink-800: #14253c;
  --ink-650: #41536b;
  --ink-500: #66778d;
  --line: #dfe7f0;
  --line-strong: #c9d5e4;
  --surface: #f5f8fb;
  --surface-blue: #edf4fa;
  --white: #fff;
  --shadow-sm: 0 8px 24px rgba(3, 35, 76, .07);
  --shadow-md: 0 18px 48px rgba(3, 35, 76, .12);
  --shadow-lg: 0 28px 80px rgba(3, 25, 58, .2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --container: 1280px;
  --header-height: 122px;
}

html {
  scroll-padding-top: 138px;
}

body {
  color: var(--ink-800);
  background: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.container {
  width: min(calc(100% - 48px), var(--container));
}

h1,
h2,
h3,
h4,
strong {
  letter-spacing: -.025em;
}

.section {
  padding: clamp(72px, 7vw, 112px) 0;
}

.section--soft {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
  color: var(--ink-950);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.04;
}

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

.eyebrow {
  gap: 9px;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: var(--lime-500);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.button--lime {
  color: var(--blue-950);
  background: linear-gradient(180deg, #c8e51f 0%, #aeca00 100%);
  border-color: #b1d000;
  box-shadow: 0 10px 24px rgba(162, 198, 0, .22);
}

.button--lime:hover {
  background: linear-gradient(180deg, #d5ed3f 0%, #b8d900 100%);
}

.button--light {
  color: var(--blue-900);
  background: #fff;
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(0, 18, 43, .18);
}

.button--light:hover {
  color: var(--blue-700);
  background: #f5f9fd;
}

.button--outline {
  color: var(--blue-800);
  background: #fff;
  border-color: #b8c9dc;
}

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

.text-link {
  color: var(--blue-800);
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Header and navigation */
.service-strip {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
  color: #fff;
  background: var(--blue-850);
  border-bottom: 0;
  box-shadow: 0 6px 24px rgba(2, 25, 57, .14);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(2, 25, 57, .24);
}

.header-top {
  background: linear-gradient(90deg, #063873 0%, #0a438d 70%, #083a79 100%);
  border-bottom: 1px solid rgba(255,255,255,.17);
}

.header-top__inner {
  display: grid;
  grid-template-columns: 190px minmax(245px, .8fr) auto auto;
  gap: 26px;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  min-width: 0;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.header-hotline {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-self: center;
  white-space: nowrap;
}

.header-hotline__icon {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--lime-400);
  place-items: center;
}

.header-hotline__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-hotline > span:last-child {
  display: flex;
  gap: 13px;
  align-items: baseline;
}

.header-hotline small {
  color: rgba(255,255,255,.82);
  font-size: .74rem;
  font-weight: 750;
}

.header-hotline a {
  color: #fff;
  font-size: .98rem;
  font-weight: 850;
}

.utility-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.utility-nav a {
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 750;
  transition: color .2s ease;
}

.utility-nav a:hover {
  color: var(--lime-400);
}

.button--header {
  min-height: 40px;
  padding-inline: 18px;
  font-size: .72rem;
  justify-self: end;
}

.nav-bar {
  background: #052d62;
}

.nav-bar__inner {
  display: flex;
  align-items: center;
  min-height: 50px;
}

.main-nav {
  position: static;
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: space-between;
  min-height: 50px;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
  align-items: stretch;
}

.nav-link {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 50px;
  padding: 0 13px;
  color: rgba(255,255,255,.94);
  background: transparent;
  border: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .012em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-item.is-current > .nav-link {
  color: var(--lime-400);
  background: rgba(255,255,255,.045);
}

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

.nav-item--shop .nav-link {
  color: #fff;
}

.external-mark {
  display: inline-grid;
  width: 17px;
  height: 17px;
  color: var(--blue-950);
  background: var(--lime-500);
  border-radius: 50%;
  font-size: .65rem;
  place-items: center;
}

.nav-item--mobile-cta {
  display: none;
}

.nav-search {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: 8px;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,.13);
  place-items: center;
}

.nav-search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mega-menu {
  top: 122px;
  left: 50%;
  width: min(960px, calc(100vw - 48px));
  padding: 0;
  color: var(--ink-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 26px 70px rgba(2, 29, 65, .22);
  transform: translate(-50%, 10px);
}

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

.mega-menu::before {
  display: none;
}

.mega-menu__intro {
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, #063873, #052b61);
  border-radius: 7px 0 0 7px;
}

.mega-menu__intro::after {
  right: -70px;
  bottom: -75px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(183,217,0,.32), transparent 69%);
}

.mega-menu__eyebrow {
  color: var(--lime-400);
}

.mega-menu__intro strong {
  color: #fff;
  font-size: 1.25rem;
}

.mega-menu__intro a {
  color: var(--lime-400);
}

.mega-menu__links {
  gap: 0;
  padding: 18px;
}

.mega-menu__links > a {
  padding: 15px 17px;
  border-radius: 5px;
}

.mega-menu__links > a:hover {
  background: var(--surface-blue);
}

.mega-menu__links strong {
  color: var(--blue-900);
  font-size: .9rem;
}

.mega-menu__links span {
  color: var(--ink-500);
  font-size: .76rem;
}

.nav-toggle {
  display: none;
}

/* Home hero */
.hero.home-hero {
  position: relative;
  min-height: 520px;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 46%, rgba(0, 166, 223, .18), transparent 29%),
    linear-gradient(112deg, #052b61 0%, #063873 58%, #0a438d 100%);
  overflow: hidden;
}

.hero.home-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  background: linear-gradient(125deg, transparent, rgba(3,29,66,.2));
  content: "";
}

.hero.home-hero::after {
  position: absolute;
  right: -120px;
  bottom: -310px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  content: "";
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent 0, #000 55%, #000 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(460px, 1.02fr);
  gap: 56px;
  align-items: center;
  min-height: 520px;
  padding-block: 68px 62px;
}

.hero__content {
  max-width: 660px;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.55rem, 4.5vw, 4.7rem);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero h1 em {
  color: #fff;
  font-style: normal;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__proof {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 650;
}

.hero__proof svg {
  width: 16px;
  height: 16px;
  color: var(--lime-400);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: center;
}

.hero__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
  filter: drop-shadow(0 30px 38px rgba(0, 15, 40, .28));
}

/* Home proof strip */
.home-proof {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(3,29,66,.06);
}

.home-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-proof article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 108px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.home-proof article:last-child {
  border-right: 0;
}

.home-proof__icon {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--blue-800);
  background: #f4f8fc;
  border-radius: 50%;
  place-items: center;
}

.home-proof__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.home-proof article:nth-child(2) .home-proof__icon,
.home-proof article:nth-child(4) .home-proof__icon {
  color: #7ca100;
}

.home-proof strong,
.home-proof p {
  display: block;
}

.home-proof strong {
  margin-bottom: 3px;
  color: var(--blue-900);
  font-size: .86rem;
}

.home-proof p {
  margin: 0;
  color: var(--ink-500);
  font-size: .74rem;
  line-height: 1.45;
}

/* Home solution cards */
.home-solutions {
  padding-top: 78px;
}

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

.home-solution-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 172px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-solution-card:hover {
  border-color: #9db5d0;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.home-solution-card__icon {
  display: grid;
  width: 112px;
  height: 112px;
  overflow: hidden;
  align-items: center;
}

.home-solution-card__icon img {
  width: 165px;
  max-width: none;
  margin-left: -25px;
}

.home-solution-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.home-solution-card strong {
  margin-bottom: 6px;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.home-solution-card small {
  min-height: 44px;
  color: var(--ink-650);
  font-size: .78rem;
  line-height: 1.45;
}

.home-solution-card em {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 13px;
  color: var(--blue-800);
  font-size: .71rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.home-solution-card em span {
  color: #87ad00;
}

/* Action panels */
.home-action-section {
  padding-top: 34px;
}

.home-action-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
}

.home-action-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(190px, .62fr);
  min-height: 335px;
  overflow: hidden;
  padding: 38px 38px 34px;
  border-radius: 9px;
}

.home-action-card h2 {
  margin-bottom: 13px;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.home-action-card__copy {
  position: relative;
  z-index: 2;
}

.home-action-card__copy > p:not(.eyebrow) {
  max-width: 500px;
  font-size: .9rem;
}

.home-action-card img {
  position: absolute;
  right: -38px;
  bottom: -37px;
  width: 330px;
  opacity: .9;
}

.home-action-card--efficiency {
  color: #fff;
  background: linear-gradient(135deg, #052b61, #0a438d);
  box-shadow: 0 24px 55px rgba(5,43,97,.2);
}

.home-action-card--efficiency h2 {
  color: #fff;
}

.home-action-card--efficiency .eyebrow,
.home-action-card--efficiency p {
  color: rgba(255,255,255,.82);
}

.home-action-card--efficiency ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 23px;
  padding: 0;
  list-style: none;
}

.home-action-card--efficiency li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
}

.home-action-card--efficiency li::before {
  position: absolute;
  top: .43em;
  left: 0;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--lime-400);
  border-left: 2px solid var(--lime-400);
  content: "";
  transform: rotate(-45deg);
}

.home-action-card--efficiency img {
  filter: brightness(0) invert(1) drop-shadow(0 22px 25px rgba(0,0,0,.2));
  opacity: .55;
}

.home-action-card--service {
  grid-template-columns: 1fr;
  background: #f4f7fb;
  border: 1px solid var(--line);
}

.home-action-card--service h2 {
  color: var(--blue-900);
}

.home-action-card--service img {
  right: -45px;
  bottom: -48px;
  width: 280px;
  opacity: .42;
}

.home-action-phone {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin: 14px 0 19px;
  color: var(--blue-900);
}

.home-action-phone > svg {
  width: 24px;
  height: 24px;
  color: #80a800;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.home-action-phone span {
  display: flex;
  flex-direction: column;
}

.home-action-phone small {
  color: var(--ink-500);
  font-size: .68rem;
  text-transform: uppercase;
}

.home-action-phone strong {
  font-size: 1.25rem;
}

/* About panel */
.home-about {
  padding-top: 24px;
}

.home-about__panel {
  display: grid;
  grid-template-columns: 1.35fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 35px 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.home-about__copy h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: 1.55rem;
}

.home-about__copy p:not(.eyebrow) {
  color: var(--ink-650);
  font-size: .86rem;
}

.home-about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.home-about__stats article {
  display: grid;
  min-height: 130px;
  padding: 12px;
  text-align: center;
  place-items: center;
}

.home-about__stat-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--blue-800);
  place-items: center;
}

.home-about__stat-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.home-about__stats strong {
  color: var(--blue-900);
  font-size: 1.55rem;
  line-height: 1;
}

.home-about__stats small {
  color: var(--ink-650);
  font-size: .72rem;
  font-weight: 750;
}

/* Category icon row */
.category-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.category-icon-card {
  display: flex;
  min-height: 220px;
  padding: 18px 14px 20px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-icon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-icon-card img {
  width: 150px;
  height: 112px;
  object-fit: cover;
  object-position: center;
}

.category-icon-card strong {
  margin-top: 7px;
  color: var(--blue-900);
  font-size: .9rem;
}

.category-icon-card small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: .72rem;
}

/* Page hero and category strip */
.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 10px;
  color: var(--ink-500);
  font-size: .72rem;
}

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

.page-hero {
  position: relative;
  min-height: 390px;
  color: var(--ink-800);
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 620px;
  height: 620px;
  background: repeating-linear-gradient(145deg, rgba(6,56,115,.035) 0 1px, transparent 1px 12px);
  border-radius: 50%;
  content: "";
}

.page-hero::after {
  position: absolute;
  right: 13%;
  bottom: 25px;
  width: 290px;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(183,217,0,.35), transparent);
  filter: blur(5px);
  content: "";
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: 58px;
  align-items: center;
  min-height: 380px;
  padding: 32px 0 55px;
}

.page-hero__content {
  max-width: 590px;
}

.page-hero h1 {
  margin-bottom: 20px;
  color: var(--ink-950);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.page-hero__lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--ink-650);
  font-size: 1rem;
  line-height: 1.65;
}

.page-hero__media {
  position: relative;
  display: grid;
  min-height: 320px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  place-items: center;
}

.page-hero__media::after {
  display: none;
}

.page-hero__media img {
  width: min(100%, 620px);
  height: auto;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(6,56,115,.11));
}

.page-hero__badge {
  display: none;
}

.page-hero .hero__actions .button--outline {
  background: transparent;
}

.category-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.category-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.category-strip a {
  display: flex;
  min-height: 170px;
  padding: 18px 15px 20px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background-color .2s ease;
}

.category-strip a:first-child {
  border-left: 1px solid var(--line);
}

.category-strip a:hover {
  background: var(--surface);
}

.category-strip img {
  width: 120px;
  height: 82px;
  object-fit: cover;
}

.category-strip strong {
  margin-top: 4px;
  color: var(--blue-900);
  font-size: .82rem;
}

.category-strip small {
  max-width: 170px;
  margin-top: 4px;
  color: var(--ink-500);
  font-size: .67rem;
  line-height: 1.35;
}

.page-intro-section .intro-grid {
  align-items: start;
}

.intro-grid {
  gap: clamp(44px, 7vw, 95px);
}

.intro-copy p {
  color: var(--ink-650);
}

/* Product and benefit cards */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.product-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 210px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(3,35,76,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
  border-color: #a7bbd2;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card__visual {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, #f7fafc, #edf4fa);
  place-items: center;
}

.product-card__visual img {
  width: 210px;
  max-width: none;
  height: 145px;
  object-fit: cover;
}

.product-card__copy {
  display: flex;
  min-width: 0;
  padding: 22px 20px;
  flex-direction: column;
}

.product-card__copy > small {
  margin-bottom: 5px;
  color: #759800;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__copy > strong {
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.2;
}

.product-card__copy p {
  margin: 8px 0 13px;
  color: var(--ink-500);
  font-size: .76rem;
  line-height: 1.45;
}

.product-card__copy em {
  margin-top: auto;
  color: var(--blue-800);
  font-size: .69rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card__copy em span {
  color: #83aa00;
}

.benefit-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1050px;
  margin: 44px auto 0;
}

.benefit-icon-card {
  padding: 22px 18px;
  text-align: center;
}

.benefit-icon-card__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  color: var(--blue-800);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

.benefit-icon-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit-icon-card:nth-child(2) .benefit-icon-card__icon {
  color: #7da200;
}

.benefit-icon-card h3 {
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: 1rem;
}

.benefit-icon-card p {
  color: var(--ink-500);
  font-size: .8rem;
}

.page-cta-band {
  padding: 24px 0 78px;
}

.page-cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  min-height: 270px;
  overflow: hidden;
  padding: 42px 48px;
  color: #fff;
  background: linear-gradient(135deg, #052b61, #0a438d);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(5,43,97,.18);
}

.page-cta-band__inner > div {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-cta-band h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.12;
}

.page-cta-band p:not(.eyebrow) {
  margin-bottom: 23px;
  color: rgba(255,255,255,.77);
}

.page-cta-band img {
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 390px;
  filter: brightness(0) invert(1);
  opacity: .38;
}

/* Existing cards, listing and related pages */
.card-grid {
  gap: 18px;
}

.content-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(3,35,76,.045);
}

.content-card:hover {
  border-color: #a9bdd2;
  box-shadow: var(--shadow-md);
}

.content-card__tag {
  color: #769a00;
}

.content-card h3,
.feature-card h3 {
  color: var(--blue-900);
}

.content-card__image {
  display: grid;
  height: 190px;
  background: linear-gradient(145deg, #f8fbfe, #edf4fa);
  place-items: center;
}

.content-card__image img {
  width: 230px;
  height: 160px;
  padding: 0;
  object-fit: cover;
}

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

/* Process section */
.process-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(0,166,223,.16), transparent 28%),
    linear-gradient(135deg, #052b61, #073b79);
}

.process-section .section-heading h2 {
  color: #fff;
}

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

.process-list li {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
}

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

.process-list h3 {
  color: var(--blue-900);
}

.process-list p {
  color: var(--ink-500);
}

/* Region and page index */
.region {
  min-height: 430px;
  background: linear-gradient(120deg, #031d42, #063873);
}

.region__content h2 {
  color: #fff;
}

.all-pages {
  background: #fff;
}

.all-pages__groups {
  max-width: 1000px;
  margin-inline: auto;
}

.all-pages__group {
  overflow: hidden;
  margin-bottom: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.all-pages__group summary {
  padding: 17px 20px;
  color: var(--blue-900);
  background: var(--surface);
}

.all-pages__links {
  gap: 0;
  padding: 12px 18px 18px;
}

.all-pages__links a {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink-650);
  border-bottom: 1px solid #edf1f5;
  font-size: .8rem;
}

/* Lead area and forms */
.contact-section {
  background:
    radial-gradient(circle at 8% 5%, rgba(183,217,0,.14), transparent 24%),
    linear-gradient(115deg, #f8fafc 0%, #fff 55%, #eef4fa 100%);
  border-top: 1px solid var(--line);
}

.contact-grid {
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.contact-copy h2 {
  color: var(--ink-950);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.04;
}

.contact-options > a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.lead-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(3,35,76,.12);
}

.lead-form__header {
  border-bottom-color: var(--line);
}

.lead-form__header span {
  color: #759800;
}

.field input,
.field select,
.field textarea {
  border-color: #ccd8e5;
  border-radius: 5px;
  background: #fbfcfe;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(11,85,170,.1);
}

/* Article, contact, location and utility templates */
.article-hero,
.contact-hero,
.location-hero,
.legal-hero,
.utility-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(0,166,223,.14), transparent 27%),
    linear-gradient(135deg, #052b61, #0a438d);
}

.article-hero__media {
  display: grid;
  background: transparent;
  place-items: center;
}

.article-hero__media img {
  width: min(100%, 590px);
  height: auto;
  padding: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
}

.article-body,
.article-aside .aside-card,
.contact-hero__address,
.region-card,
.legal-nav,
.legal-copy,
.status-row,
.success-card {
  border-radius: 8px;
}

.location-hero .region-card > svg {
  color: var(--blue-900);
  background: var(--lime-500);
}

/* Footer */
.site-footer {
  padding-top: 62px;
  color: rgba(255,255,255,.72);
  background: #031d42;
  border-top: 4px solid var(--lime-500);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .75fr .9fr .8fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
}

.brand--footer {
  width: 210px;
}

.brand--footer img {
  width: 100%;
  max-height: 78px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 20px;
  color: rgba(255,255,255,.68);
  font-size: .85rem;
}

.footer-cert {
  gap: 7px;
}

.footer-cert span {
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
}

.footer-column h2,
.footer-contact h2 {
  color: #fff;
  font-size: .86rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact a,
.footer-contact address {
  color: rgba(255,255,255,.67);
  font-size: .8rem;
}

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

.footer-emergency {
  color: var(--lime-400) !important;
  font-weight: 800;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,.1);
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
}

.mobile-cta {
  background: #fff;
  border-top: 1px solid var(--line);
}

/* Reveal fallback: content is visible without JS. */
.reveal {
  opacity: 1;
  transform: none;
}

/* Desktop scale adjustments */
@media (max-width: 1220px) {
  .header-top__inner {
    grid-template-columns: 160px minmax(230px, 1fr) auto auto;
    gap: 18px;
  }

  .utility-nav {
    gap: 12px;
  }

  .nav-link {
    padding-inline: 9px;
    font-size: .67rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
  }

  .home-proof article {
    padding-inline: 16px;
  }

  .product-card {
    grid-template-columns: 128px 1fr;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 73px;
  }

  .site-header {
    /* backdrop-filter creates a containing block for fixed descendants in Chromium. */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-top__inner {
    grid-template-columns: 160px 1fr auto;
    min-height: 73px;
  }

  .header-hotline {
    justify-self: end;
  }

  .utility-nav,
  .button--header {
    display: none;
  }

  /* Keep the navigation container rendered on mobile. Hiding .nav-bar also
     hides the fixed drawer because .main-nav is its descendant. */
  .nav-bar {
    display: block;
    height: 0;
    min-height: 0;
    background: transparent;
  }

  .nav-bar__inner {
    height: 0;
    min-height: 0;
  }

  .nav-search {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 45px;
    height: 45px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 5px;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 23px;
    height: 2px;
    margin: 3px 0;
    flex: 0 0 2px;
    background: #fff;
  }

  .main-nav {
    position: fixed;
    top: var(--nav-top, 73px);
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1200;
    display: block;
    width: min(460px, 92vw);
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px 20px 90px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: #031d42;
    box-shadow: -30px 0 60px rgba(3, 22, 51, .32);
    transform: translateX(105%);
    transition: transform 300ms cubic-bezier(.2,.7,.3,1), opacity 180ms ease, visibility 0s linear 300ms;
  }

  body.nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(3, 20, 45, .62);
    content: "";
  }

  body.nav-open .main-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .nav-list {
    display: block;
    min-height: 0;
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav-link {
    width: 100%;
    min-height: 55px;
    padding: 0 4px;
    justify-content: space-between;
    font-size: .8rem;
  }

  .nav-item.is-current > .nav-link::after {
    display: none;
  }

  .mega-menu,
  .nav-item.is-open .mega-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 0 0 16px;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-item.is-open .mega-menu {
    display: block;
  }

  .mega-menu__intro {
    display: none;
  }

  .mega-menu__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
  }

  .mega-menu__links > a {
    padding: 13px;
    background: rgba(255,255,255,.06);
  }

  .mega-menu__links > a:hover {
    background: rgba(255,255,255,.1);
  }

  .mega-menu__links strong {
    color: #fff;
  }

  .mega-menu__links span {
    color: rgba(255,255,255,.6);
  }

  .nav-item--mobile-cta {
    display: block;
    padding: 18px 0;
    border-bottom: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr 380px;
    gap: 25px;
  }

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

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

  .home-proof article:nth-child(2) {
    border-right: 0;
  }

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

  .home-solution-grid,
  .product-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-action-grid {
    grid-template-columns: 1fr;
  }

  .home-action-card--service {
    min-height: 280px;
  }

  .home-about__panel {
    grid-template-columns: 1fr;
  }

  .category-icon-grid,
  .category-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-strip a:nth-child(4),
  .category-strip a:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
  }

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

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

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

  .section {
    padding: 66px 0;
  }

  .header-top__inner {
    grid-template-columns: 138px 1fr 45px;
    gap: 12px;
  }

  .brand {
    width: 136px;
  }

  .header-hotline > span:last-child {
    display: none;
  }

  .header-hotline {
    justify-self: end;
  }

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

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 62px 0 40px;
  }

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

  .hero__visual {
    min-height: 260px;
    margin-top: 0;
  }

  .hero__visual img {
    max-width: 520px;
  }

  .hero__proof {
    gap: 10px 18px;
  }

  .home-proof article {
    grid-template-columns: 44px 1fr;
    min-height: 98px;
    padding: 15px 12px;
  }

  .home-proof__icon {
    width: 42px;
    height: 42px;
  }

  .home-proof__icon svg {
    width: 25px;
    height: 25px;
  }

  .home-solution-grid,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .home-solution-card {
    grid-template-columns: 105px 1fr;
  }

  .home-action-card {
    grid-template-columns: 1fr;
    min-height: 360px;
    padding: 30px 25px;
  }

  .home-action-card img {
    right: -60px;
    width: 260px;
  }

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

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

  .category-strip a:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .page-hero__media {
    min-height: 240px;
  }

  .page-hero__media img {
    max-width: 520px;
  }

  .product-card {
    grid-template-columns: 135px 1fr;
  }

  .benefit-icon-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-cta-band__inner {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .page-cta-band img {
    right: -90px;
    width: 300px;
  }

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

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

@media (max-width: 540px) {
  .section-heading h2 {
    font-size: 2.05rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
  }

  .home-proof__grid {
    grid-template-columns: 1fr;
  }

  .home-proof article,
  .home-proof article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-proof article:last-child {
    border-bottom: 0;
  }

  .home-solution-card {
    grid-template-columns: 90px 1fr;
    padding: 14px;
  }

  .home-solution-card__icon {
    width: 86px;
    height: 90px;
  }

  .home-solution-card__icon img {
    width: 140px;
    margin-left: -26px;
  }

  .home-about__panel {
    padding: 27px 20px;
  }

  .category-icon-grid,
  .category-strip__grid {
    grid-template-columns: 1fr;
  }

  .category-strip a,
  .category-strip a:first-child {
    min-height: 145px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-strip a:last-child {
    border-bottom: 0;
  }

  .category-strip img {
    height: 72px;
  }

  .product-card {
    grid-template-columns: 105px 1fr;
  }

  .product-card__visual img {
    width: 165px;
    height: 125px;
  }

  .product-card__copy {
    padding: 17px 14px;
  }

  .page-cta-band__inner {
    padding: 30px 21px;
  }

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

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

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

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