:root {
  --blue: #062f63;
  --blue-2: #002b5c;
  --blue-3: #001f48;
  --blue-4: #001837;
  --red: #e5242d;
  --text: #071f4c;
  --muted: #1c3158;
  --line: #dbe2ee;
  --soft: #f5f7fb;
  --container: 1200px;
  --header-h: 115px;
  --header-h-scrolled: 75px;
  --logo-h: 90px;
  --logo-h-scrolled: 75px;
  --scroll-offset: 84px;
  --section-py: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text);
  background: #fff;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
/* Sticky-Footer: main füllt die Höhe, der Footer sinkt bei kurzen Seiten
   an den Viewport-Unterrand. Kompatibel mit dem sticky Header. */
main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; width: 1em; height: 1em; fill: currentColor; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
/* Skip-Link: bis :focus außerhalb des Viewports geparkt (nicht display:none,
   sonst nicht fokussierbar); bei Tastatur-Fokus oben links über allem sichtbar. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--blue-2);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus { top: 0; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.desktop-break { display: inline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 5px 9px rgba(0,0,0,.2);
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 270px 1fr 235px;
  align-items: center;
}
.brand img { height: var(--logo-h); width: auto; }
.primary-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  height: var(--header-h);
}
.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: color .2s ease;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--blue); }
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* an der Mitte verankert, damit der Strich bei normaler und
     geschrumpfter Header-Höhe gleich unter dem Text sitzt */
  top: calc(50% + 13px);
  height: 2px;
  background: var(--red);
}
.header-phone {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  transition: color .2s ease;
}
.header-phone > svg {
  width: 31px;
  height: 31px;
  color: var(--red);
  transition: filter .2s ease;
}
.header-phone:hover > svg,
.header-phone:focus-visible > svg { filter: brightness(.92); }
.header-phone strong {
  display: block;
  color: var(--blue);
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .1px;
}
.header-phone small {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 10px;
  white-space: nowrap;
}

/* Öffnungszeiten – zweizeilig. Gemeinsames 2-Spalten-Grid (Tag-Spalte | Zeit-
   Spalte): beide Zeilen teilen sich dieselben Spalten, daher fluchten die zwei
   Uhrzeiten pixelgenau untereinander. Liegt in den vorhandenen <small> (Header,
   Hero-Karte, Kontakt) und erbt deren Schriftgröße/Farbe/Abstand. */
.hours {
  display: inline-grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  row-gap: 1px;
  line-height: 1.4;
  white-space: nowrap;
}
.nav-toggle { display: none; }

/* Sprungziele nicht unter dem Sticky-Header landen lassen */
main section[id],
#ueber-uns { scroll-margin-top: var(--scroll-offset); }

/* Schrumpf-Header beim Scrollen – weich animiert, unter reduzierter
   Bewegung komplett abgeschaltet (siehe DECISIONS.md → D4). */
@media (prefers-reduced-motion: no-preference) {
  .header-inner { transition: min-height .25s ease; }
  .primary-nav { transition: height .25s ease; }
  .brand img { transition: height .25s ease; }
  .site-header.scrolled {
    --header-h: var(--header-h-scrolled);
    --logo-h: var(--logo-h-scrolled);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Hero */
.hero {
  padding-top: 70px;
  min-height: 405px;
  color: #fff;
  background-color: var(--blue-3);
  background-image:
    linear-gradient(90deg, rgba(0,32,74,.99) 0%, rgba(0,32,74,.98) 41%, rgba(0,32,74,.70) 57%, rgba(0,32,74,.18) 77%, rgba(0,32,74,.05) 100%),
    url("../img/hero-shelves.webp");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}
.hero-inner {
  min-height: 405px;
  position: relative;
  padding-top: 40px;
}
.hero-copy { width: 645px; }
.kicker {
  display: block;
  margin: 0;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 1.1px;
  line-height: 1;
}
.hero-kicker {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 43px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -1.1px;
}
.hero-text {
  margin: 18px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-text strong { font-weight: 850; }
.red-line {
  display: block;
  width: 57px;
  height: 3px;
  margin-top: 14px;
  background: var(--red);
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 598px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}
.hero-feature {
  min-height: 112px;
  padding-right: 24px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.28);
}
.hero-feature:last-child { border-right: 0; margin-right: 0; }
.hero-feature svg {
  width: 39px;
  height: 39px;
  margin-bottom: 9px;
  color: #fff;
  /* Lucide sind Stroke-Icons – globales fill:currentColor hier überschreiben */
  fill: none;
  stroke: currentColor;
  stroke-width: 0.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-feature:nth-child(2) svg,
.hero-feature:nth-child(4) svg { color: #fff; }
/* Feature 4 (Handschlag) ist ein Fill-Icon – Stroke-Kontur der Lucide-Regel abschalten */
.hero-feature:nth-child(4) svg { stroke: none; }
/* Handschlag-Icon-Margin (ersetzt den früheren Inline-Style; Selektor schlägt .hero-feature svg) */
.hero-feature svg.hero-feature-icon--handshake { margin: 4px 0 5px 0; }
.hero-feature strong {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 6px;
}
.hero-feature span {
  display: block;
  color: #fff;
  font-size: 11.5px;
  line-height: 1.55;
}
.hero-call {
  position: absolute;
  right: 45px;
  top: 202px;
  /* width: 290px; */
  min-height: 161px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  color: #fff;
  background: linear-gradient(135deg, #003469 0%, #001e49 100%);
  border-radius: 3px;
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
.hero-call:hover { transform: translateY(-1px); }
.call-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  transition: filter .2s ease;
}
.hero-call:hover .call-icon,
.hero-call:focus-visible .call-icon { filter: brightness(.92); }
.call-icon svg { width: 26px; height: 26px; }
.call-title {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  /* font-weight: 800; */
  margin-bottom: 14px;
}
.call-content strong {
  display: block;
  color: #fff;
  font-size: 31px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -1.1px;
}
.call-content small {
  display: block;
  margin-top: 13px;
  color: #fff;
  font-size: 12.5px;
  white-space: nowrap;
}

/* Sortiment */
.sortiment {
  padding: var(--section-py) 0;
  background: #fff;
}
.section-title.center { text-align: center; }
.section-title span,
.kicker.red {
  color: var(--red);
  /* font-size: 12px; */
  letter-spacing: 1.7px;
  font-weight: 900;
  text-transform: uppercase;
}
.section-title h2 {
  margin-bottom: 27px;
  color: var(--text);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.4px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  position: relative;
  container-type: inline-size;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid #d7dee9;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.045);
}
.product-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.product-icon {
  position: absolute;
  left: 12px;
  /* Bild hat aspect-ratio 3/2 → seine Höhe = 200cqw/3 (Karte als inline-size-
     Container). Icon sitzt 25px über der Bildunterkante und überlappt sie wie
     zuvor – greift dadurch bei jeder Spaltenbreite ohne feste Pixelwerte. */
  top: calc(200cqw / 3 - 25px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.12);
}
.product-icon svg { width: 22px; height: 22px; }
/* Lucide-Produkt-Icons (wrench/syringe) sind Stroke-Icons – globales
   fill:currentColor gezielt überschreiben; Fill-Icons der Karten 1–3 bleiben unberührt */
.product-icon--stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-body {
  padding: 35px 11px 13px;
}
.product-body h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.18;
  font-weight: 850;
}
.product-body p {
  margin: 0;
  color: #10254f;
  font-size: 14px;
  line-height: 1.35;
}
/* Klickbare Sortimentskarte: das <a> füllt die ganze Karte und verlinkt auf die
   jeweilige Detailseite. Hover/Focus heben die Karte sichtbar an; die absolute
   Icon-Positionierung bleibt unberührt (Container ist weiterhin .product-card). */
.product-card-link {
  display: block;
  height: 100%;
  color: inherit;
}
/* Hover/Focus bewusst identisch zur .partner-card (dezenter Border-Wechsel,
   leichtes Anheben) – beide Kartentypen reagieren visuell gleich. */
.product-card:has(.product-card-link) {
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.product-card:has(.product-card-link:hover),
.product-card:has(.product-card-link:focus-visible) {
  border-color: #c2cee0;
  box-shadow: 0 6px 18px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.product-card:has(.product-card-link:focus-visible) { outline: 2px solid var(--blue); outline-offset: 2px; }
.product-card-link:focus-visible { outline: none; }
@media (prefers-reduced-motion: reduce) {
  .product-card:has(.product-card-link) { transition: none; }
  .product-card:has(.product-card-link:hover),
  .product-card:has(.product-card-link:focus-visible) { transform: none; }
}

/* Partner / Marken */
.partners {
  padding: var(--section-py) 0;
  background: var(--soft);
}
/* Untertext unter der Überschrift – zentriert, begrenzte Lesebreite. h2 rückt
   im Partner-Kontext näher an den Lead (globaler 27px-Abstand würde zu weit wirken). */
.partners .section-title h2 { margin-bottom: 12px; }
.section-lead {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 160px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #d7dee9;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.045);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.partner-card:hover {
  border-color: #c2cee0;
  box-shadow: 0 6px 18px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
/* Gemeinsames Maß-Band: alle Logos zentriert in 60px Höhe / max. 200px Breite,
   per object-fit ohne Verzerrung. Gleicht die sehr unterschiedlichen
   Seitenverhältnisse (Kachel-Logos hoch, Wortmarken breit) optisch an. */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}
.partner-logo img {
  max-width: 200px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
}
.partner-label {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

/* Service */
.service {
  color: #fff;
  background: linear-gradient(115deg, #002a5a 0%, #001f48 58%, #001a3d 100%);
  padding: var(--section-py) 0;
}
.service-grid {
  display: grid;
  grid-template-columns: 285px 289px 1fr;
  gap: 34px;
  align-items: center;
}
.service h2,
.about-copy h2 {
  margin: 9px 0 13px;
  color: #fff;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -.3px;
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.service li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 3px;
}
.service li svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  padding: 2px;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 50%;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.text-link svg { width: 17px; height: 17px; }
.company-image { margin: 0; }
.company-image img {
  width: 289px;
  height: 180px;
  object-fit: cover;
}
.about-copy p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

/* B2B */
.b2b {
  padding: var(--section-py) 0;
  background: #fff;
}
.b2b-box {
  width: 706px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  padding: 24px 32px 24px 38px;
  border: 1px solid #47628b;
  border-radius: 5px;
  background: #fff;
}
.b2b-symbol {
  position: relative;
  width: 82px;
  height: 66px;
  color: var(--blue);
}
.b2b-symbol .person {
  width: 68px;
  height: 68px;
}
.b2b-symbol span {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid #fff;
}
.b2b-symbol span svg { width: 17px; height: 17px; }
.b2b h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.18;
}
.b2b p {
  margin: 0;
  color: #10254f;
  font-size: 14px;
  line-height: 1.5;
}
.b2b strong {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
}

/* Kontakt */
.contact {
  background: #F8F9FB;
  padding: var(--section-py) 0;
  border-top: 1px solid #f1f3f7;
}
.contact-head {
  text-align: center;
  margin-bottom: 60px;
}
.contact-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin-inline: auto;
}
.contact-cols > * { min-width: 0; }
.contact-cell { display: contents; }
.contact-head h2 {
  /* Exakt aus den effektiven Margins der .partners .section-title übernommen:
     - margin-top 20.75px = UA-Default-Top-Margin der .section-title h2
       (0.83em · font-size 25px); der Kicker-Span dort hat margin-bottom: 0,
       genau wie der .kicker hier → kicker→h2 deckt sich.
     - margin-bottom 12px = Override .partners .section-title h2 (schlägt die
       globalen 27px).
     .section-lead/p margin-top ist 0 → .contact-head p bleibt margin: 0. */
  margin: 20.75px 0 12px;
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.1;
}
.contact-head p {
  margin: 0;
  color: #111;
  font-size: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  color: var(--text);
  font-style: normal; /* <address class="contact-item"> nicht kursiv darstellen */
}
.contact-item > svg,
.contact-links svg {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  color: var(--red);
}
.contact-item strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}
.contact-item small {
  display: block;
  margin-top: 6px;
  color: #111;
  font-size: 10px;
  line-height: 1.35;
}
/* dezenter Routen-Link unter der Anschrift (öffnet Karten-Dienst extern) */
.contact-route {
  display: inline-block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.contact-route:hover,
.contact-route:focus-visible { text-decoration: underline; }
.contact-links {
  display: grid;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}
.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}
.contact-links svg { width: 22px; height: 22px; }

/* Footer */
.footer {
  color: #fff;
  background: linear-gradient(115deg, #002b5c 0%, #001e47 55%, #001737 100%);
  padding: 50px 0 10px;
}
/* Grid-Eigenschaften auf dem inneren Wrapper; der äußere .container trägt weiterhin
   die Gutter-Breitenformel, damit footer-grid sich wie footer-bottom/contact verhält. */
.footer-grid-inner {
  display: grid;
  /* Vier gleich breite Spalten über die volle Container-Breite (minmax(0,1fr)
     = 1fr mit min-width:0, damit Inhalt schrumpft statt das Raster zu sprengen). */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 40px;
}
/* Spalteninhalt je Spalte als Block mittig (fit-content + auto-Ränder),
   Zeilen/Links bleiben linksbündig (kein text-align). Gilt in allen Breakpoints. */
.footer-brand,
.footer-col {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
/* Logo links (schmal), Beschreibung rechts daneben, beide oben ausgerichtet. */
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand img { width: 60px; flex: none; }
.footer-brand p {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
}
.footer-col h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #fff;
  font-size: 12px;
  line-height: 1.42;
}
.footer-col a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.17);
  color: #fff;
  font-size: 12px;
}
/* Der innere Wrapper enthält die zwei Spans direkt und verteilt sie links/rechts.
   Das space-between wandert von .footer-bottom hierher, weil dort jetzt nur noch
   ein Kind sitzt. Im ≤620-Block auf column/linksbündig zurückgesetzt. */
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Simple content pages */
.legal-page {
  min-height: 62vh;
  padding: 40px 0 54px;
  background: #fff;
}
.legal-page .container { width: min(800px, calc(100% - 48px)); }
.legal-page h1 { margin: 0 0 24px; font-size: 34px; color: var(--text); }
.legal-page h2 { margin: 44px 0 12px; font-size: 24px; color: var(--text); }
.legal-page h3 { margin: 28px 0 8px; font-size: 19px; color: var(--text); }
.legal-page h4 { margin: 20px 0 6px; font-size: 16px; color: var(--muted); }
.legal-page p { line-height: 1.6; color: #172b56; }
.legal-page ul { margin: 8px 0; padding-left: 22px; line-height: 1.6; color: #172b56; }
.legal-page li { margin: 4px 0; }
.legal-page a { color: var(--blue); text-decoration: underline; }

/* Sortiment-Detailseiten (eine Seite je Kategorie) – Lese-Layout analog
   .legal-page, ergänzt um Brotkrumen, Eyebrow, Lead, Beratungs-CTA und
   Zurück-Link. Gemeinsame Vorlage für alle Sortiment-Unterseiten. */
.product-page {
  padding: 30px 0 64px;
  background: #fff;
}
.product-page .container { width: min(820px, calc(100% - 48px)); }

.product-breadcrumb {
  margin: 0 0 30px;
  font-size: 14px;
  color: var(--muted);
}
.product-breadcrumb a { color: var(--blue); }
.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible { text-decoration: underline; }
.product-breadcrumb span[aria-hidden] { margin: 0 8px; color: var(--line); }
.product-breadcrumb [aria-current="page"] { color: var(--muted); }

/* Hero-Bild der Detailseite: volle Lesebreite, feste sichtbare Höhe 100px
   (Bild wird per cover mittig beschnitten), gleiche Eckenrundung wie das
   Karten-Bild auf index (dort über den Karten-Radius, hier direkt am Bild).
   Generisch für alle Unterseiten. */
.product-hero {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin: 0 0 30px;
}

.product-eyebrow {
  display: block;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.product-page h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -.4px;
  color: var(--text);
}
.product-page .red-line { margin: 18px 0 0; }
.product-page .product-lead {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}
.product-page h2 {
  margin: 40px 0 12px;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -.2px;
  color: var(--text);
}
.product-page p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #172b56;
}
.product-page ul {
  margin: 10px 0 14px;
  padding-left: 22px;
  line-height: 1.7;
  color: #172b56;
}
.product-page li { margin: 7px 0; }
.product-page strong { color: var(--text); font-weight: 800; }
.product-page p a { color: var(--blue); text-decoration: underline; }

/* Beratungs-CTA am Seitenende */
.product-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin: 40px 0 8px;
  padding: 24px 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.product-cta-text { flex: 1 1 280px; }
.product-cta-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  color: var(--text);
}
.product-cta-text p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted); }
.product-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.product-cta-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  transition: filter .2s ease;
}
.product-cta-icon svg { width: 22px; height: 22px; }
.product-cta-call strong { display: block; font-size: 20px; color: var(--text); }
.product-cta-call small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.product-cta-call:hover .product-cta-icon,
.product-cta-call:focus-visible .product-cta-icon { filter: brightness(.92); }

/* Zurück-Link */
.product-back { margin: 44px 0 0; }
.product-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}
.product-back a:hover,
.product-back a:focus-visible { text-decoration: underline; }
.product-back svg { width: 16px; height: 16px; }
.product-back .i-flip { transform: scaleX(-1); }

/* Responsive */
@media (max-width: 1060px) {
  .container { width: min(100% - 36px, var(--container)); }
  .header-inner { grid-template-columns: 245px 1fr 220px; }
  .primary-nav { gap: 18px; }
  .hero-call { right: 0; }
  .product-grid { gap: 12px; }
  .service-grid { grid-template-columns: 1fr 289px 1fr; gap: 24px; }
}

/* Hero – Tablet (700–1000px): Call löst sich aus der Absolutposition und
   springt unter die Copy; Copy als Block linksbündig im Container, Features
   einreihig. */
@media (max-width: 1000px) {
  .hero-copy {
    width: 100%;
    max-width: 660px;
    text-align: left;
  }
  .hero h1 { font-size: clamp(34px, 5vw, 43px); }
  .hero-feature { text-align: left; }           /* Kachel-Inhalt linksbündig */
  .hero-call {
    position: static;
    width: min(360px, 100%);
    margin: 24px 0 0;                            /* unter Copy, linksbündig */
  }
}

@media (max-width: 900px) {
  /* Mobil: großes Desktop-Logo (90px) würde Header (78px) und Spalte (230px)
     sprengen – Höhen kleiner halten; Shrink bleibt monoton (60 -> 50). */
  :root {
    --header-h: 78px;
    --header-h-scrolled: 64px;
    --logo-h: 75px;
    --logo-h-scrolled: 60px;
    --scroll-offset: 72px;
    --section-py: 56px;
  }
  .header-inner {
    padding: 5px 0 5px 0;
    min-height: var(--header-h);
    grid-template-columns: 230px 1fr auto;
    gap: 12px;
  }
  .nav-toggle {
    display: inline-grid;
    grid-column: 3;
    justify-self: end;
    width: 42px;
    height: 38px;
    padding: 8px;
    place-items: center;
    gap: 4px;
    border: 1px solid #d8deea;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue);
  }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.11);
  }
  .site-header.nav-open .primary-nav { display: flex; }
  .primary-nav a { height: auto; justify-content: center; padding: 13px 0; border-bottom: 1px solid #eef2f6; }
  .primary-nav a.active::after { display: none; }
  .header-phone { display: none; }
  .hero {
    background-image:
      linear-gradient(90deg, rgba(0,32,74,.99) 0%, rgba(0,32,74,.96) 62%, rgba(0,32,74,.55) 100%),
      url("../img/hero-shelves.webp");
  }
  .hero-inner { min-height: auto; padding: 38px 0 32px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: 1fr; }
  .company-image img { width: 100%; height: auto; max-height: 310px; object-fit: cover; }
  .b2b-box { width: 100%; grid-template-columns: 92px 1fr; gap: 24px; }
  .contact-cols { grid-template-columns: 1fr; gap: 40px; width: fit-content; margin-inline: auto; }
  .contact-cell { display: block; width: 100%; }
  .contact-cell > .contact-item,
  .contact-cell > .contact-links { margin-inline: 0; }
  /* Spalten nur so breit wie ihr breitester Inhalt; das 2×2 als Gruppe zentriert.
     Boxen linksbündig in ihrer Zelle (Reset des margin-inline:auto aus der Basisregel),
     sodass die zwei untereinanderliegenden Boxen einer Spalte dieselbe linke Kante teilen. */
  .footer-grid-inner { grid-template-columns: repeat(2, auto); justify-content: center; gap: 35px 60px; }
  .footer-brand,
  .footer-col { margin-inline: 0; }
}

/* Hero – Mobil (<700px): Features als 2×2-Raster, Inhalt linksbündig.
   Border-right/Margins entfallen, damit im 2er-Raster keine Trennlinie steht.
   .hero-call bleibt aus dem 1000-px-Block static und linksbündig. */
@media (max-width: 700px) {
  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 360px;
    gap: 20px;
    justify-items: start;
  }
  .hero-feature {
    text-align: left;
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    min-height: auto;
  }
}

@media (max-width: 620px) {
  :root { --section-py: 44px; }
  .container { width: min(100% - 28px, var(--container)); }
  .desktop-break { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { grid-column: 2; }
  .hero { min-height: auto; }
  .hero-inner { padding: 34px 0 30px; }
  .hero-kicker { font-size: 12px; }
  .hero h1 { font-size: 32px; letter-spacing: -.6px; }
  .hero-text { font-size: 15px; line-height: 1.55; }
  .call-content strong { font-size: 27px; }
  .section-title h2 { font-size: 22px; }
  .product-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .b2b-box { grid-template-columns: 1fr; gap: 16px; padding: 18px; text-align: left; }
  .b2b-symbol { width: 78px; height: 62px; }
  /* Grid-inner und footer-bottom-inner teilen dieselbe feste Breite + Zentrierung,
     damit ihre linke Kante exakt fluchtet (260px ≥ breitester Inhalt = footer-brand). */
  .footer-grid-inner { grid-template-columns: 1fr; width: 260px; max-width: 100%; margin-inline: auto; gap: 35px; }
  /* Gestapelte Boxen linksbündig in ihrer Zelle (kehrt margin-inline:auto um). */
  .footer-brand,
  .footer-col { margin-inline: 0; }
  /* footer-bottom volle Breite → border-top spannt durch; der innere Block ist
     auf grid-Breite zentriert, dadurch fluchten die Texte mit dem grid-Inhalt. */
  .footer-bottom { justify-content: center; }
  .footer-bottom-inner {
    width: 260px;
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    /* Reset der >620-Verteilung: gestapelt, Texte linksbündig (bündig zum Grid). */
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
  }
}

/* Hero – Schmal (<480px): Features einspaltig untereinander. */
@media (max-width: 480px) {
  .hero-features { grid-template-columns: 1fr; }
}
