@charset "UTF-8";
/* =========================================================================
   Werner Bauser GmbH – Landingpage Wehrtechnik
   Umsetzung des Figma-Designs "Corporate Website BAUSER (Copy)"
   Reines HTML/CSS/JS – kein Build, keine externen Requests.
   ========================================================================= */

/* ---------- 1. Schriften (selbst gehostet, SIL Open Font License) -------- */

/* Die im Figma-Entwurf tatsächlich verwendeten Schriften:
   IBM Plex Serif (Überschriften), Lexend (Fließtext/Navigation),
   IBM Plex Mono (Claim). Alle drei SIL Open Font License. */

@font-face {
  font-family: "IBM Plex Serif";
  src: url("../fonts/ibm-plex-serif-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("../fonts/ibm-plex-serif-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("../fonts/ibm-plex-serif-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "Lexend";
  src: url("../fonts/lexend-var.woff2") format("woff2-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- 2. Design-Token ---------------------------------------------- */

:root {
  /* Farben – Quelle: Bauser-CI (#006635 aus bauser.de) + Figma-Entwurf.
     Die Werte der Sektionsflächen sind aus dem Entwurf abgenommen und bei
     Vorlage des CI-Manuals in genau dieser Zeile zu korrigieren. */
  --c-green-ci:    #038444;  /* Figma-Variable „bauser grün“ */
  --c-green-ui:    #038444;
  --c-green:       #038444;
  --c-green-dark:  #026f39;
  --c-orange:      #eb5f3b;  /* Figma-Variable „bauser rot“ */
  --c-orange-line: #ff5a3d;  /* Konturen im Entwurf */
  --c-orange-dark: #d94f2d;
  --c-teal:        #47b9af;  /* Figma-Variable „modernes grün“ */
  --c-teal-light:  #9bd3d0;  /* Figma-Variable „klares grün“ */

  --c-ink:         #343433;  /* Figma-Variable „TEXT“ */
  --c-ink-soft:    #343433;
  --c-line:        rgba(52,52,51,.14);
  --c-paper:       #ffffff;
  --c-paper-alt:   #f8f8f8;

  /* Typografie */
  --f-serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --f-sans:  "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-mono:  "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Maße – abgenommen am Figma-Entwurf bei 1920 px Artboard-Breite */
  --shell:      1920px;
  --gutter:     clamp(24px, 5.56vw, 80px);
  --indent:     121px;
  --section-y:  140px;
  --radius-pill: 999px;
  --mobile-header-height: 80px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-enter: cubic-bezier(.22,.61,.36,1);
  --ease-snap: cubic-bezier(.65,0,.35,1);
}

/* ---------- 3. Reset / Grundlagen ---------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { overflow-x: clip; }

img, svg { max-width: 100%; }
img { display: block; height: auto; }

a { color: inherit; }

h1, h2, h3 { margin: 0; font-weight: 500; }
p  { margin: 0 0 34px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px; top: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--c-ink);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transform: translate3d(0, -112px, 0);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

.u-accent { color: var(--c-orange); }

/* ---------- 4. Typografische Bausteine ----------------------------------- */

.h2 {
  font-family: var(--f-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 62px;
  letter-spacing: -.02em;
  margin-bottom: 39px;
}
.h2--light { color: #fff; }

.lead {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 38px;
}

.claim {
  margin: 0;
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--c-orange);
  font-size: 42px;
  line-height: 52px;
  letter-spacing: 0;
}

/* ---------- 5. Buttons ---------------------------------------------------- */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 58px;
  padding: 15px 30px;
  border: 1px solid var(--c-orange-line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform .2s var(--ease),
    background-color .25s var(--ease),
    color .25s var(--ease),
    border-color .25s var(--ease);
}
.pill:hover  { background: var(--c-orange); color: #fff; }
.pill--sm    { min-height: 50px; padding: 11px 30px; font-size: 14px; }
.pill--round { width: 50px; padding: 11px; }

.pill--solid { background: var(--c-orange); color: #fff; }
.pill--solid:hover { background: var(--c-orange-dark); border-color: var(--c-orange-dark); }

.pill--outline:hover { background: var(--c-orange); color: #fff; }

.pill--white { background: #fff; border-color: #fff; color: var(--c-ink); }
.pill--white:hover { background: rgba(255,255,255,.86); border-color: rgba(255,255,255,.86); }

.pill--ghost { border-color: #fff; color: #fff; }
.pill--ghost:hover { background: #fff; color: var(--c-orange-dark); }
.pill:active { transform: scale(.98); transition-duration: .1s; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2.2em;
}

.round-btn {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid var(--c-orange-line);
  border-radius: 50%;
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  transition:
    transform .18s var(--ease),
    background-color .25s var(--ease),
    color .25s var(--ease);
}
.round-btn svg { width: 20px; height: 20px; }
.round-btn:hover:not([disabled]) { background: var(--c-orange); color: #fff; }
.round-btn[disabled] { opacity: .35; cursor: default; }
.round-btn:active:not([disabled]) { transform: scale(.94); transition-duration: .1s; }

/* ---------- 6. Header ----------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--c-line), 0 8px 30px rgba(0,0,0,.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  min-height: clamp(80px, 6.6vw, 126px);
}

.logo { flex: 0 0 auto; display: block; line-height: 0; }
.logo__mark { width: clamp(58px, 5.4vw, 104px); height: auto; }
.logo__mark--footer { width: clamp(56px, 4.6vw, 88px); }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 50px);
}
.nav__list, .nav__actions { display: flex; align-items: center; gap: clamp(14px, 2.1vw, 40px); }
.nav__actions { gap: clamp(8px, .73vw, 14px); }

.nav__list a {
  font-size: clamp(13px, .84vw, 16px);
  text-decoration: none;
  color: var(--c-ink);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav__list a:hover { border-color: var(--c-orange); color: var(--c-orange-dark); }

.burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1.5px solid var(--c-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px; height: 1.8px;
  margin: 4px auto;
  background: var(--c-ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Hero -------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(32px, 5vw, 96px) 0 clamp(56px, 9.7vw, 186px);
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__drone {
  position: absolute;
  right: 5%;
  top: clamp(8px, 1.8vw, 34px);
  height: min(41vw, 790px);   /* proportional – Seitenverhältnis 0.92 bleibt erhalten */
  width: auto;
  opacity: .34;
  transform: rotate(180deg);
}

.hero__inner { position: relative; }

.hero__copy { position: relative; z-index: 2; max-width: min(58%, 900px); }

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(34px, 3.75vw, 72px);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
  overflow-wrap: normal;
  hyphens: none;
}

.hero__lead {
  margin: clamp(24px, 3.3vw, 64px) 0 0 var(--indent);
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.95;
  max-width: 26em;
  color: var(--c-ink-soft);
}
.hero__cta { margin: clamp(20px, 2.6vw, 50px) 0 0 var(--indent); }

/* Zahnräder + Claim: freie Platzierung wie im Entwurf */
.hero__gears { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.gear {
  position: absolute;
  transform-origin: 50% 50%;
}
.gear--lg {
  left: 63%;
  top: clamp(120px, 15.6vw, 300px);
  width: clamp(150px, 13.1vw, 252px);
  color: var(--c-ink);
}
.gear--sm {
  left: 75.5%;
  top: clamp(80px, 11.25vw, 216px);
  width: clamp(80px, 7.1vw, 136px);
  color: var(--c-orange);
}
.hero__gears .claim {
  position: absolute;
  left: 80.8%;
  top: clamp(190px, 22.2vw, 426px);
}

/* ---------- 8. Sektionen / Raster ----------------------------------------- */

.section { padding-block: var(--section-y); position: relative; }

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}

/* Randlose Bildspalte – im Entwurf laufen die Motive bis an den Viewport-Rand */
.bleed-grid {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: center;
  gap: clamp(28px, 8.65vw, 166px);
  width: 100%;
}
.bleed-grid__copy { padding-block: clamp(24px, 3vw, 56px); }
.bleed-grid--media-left  .bleed-grid__copy { padding-right: calc(var(--gutter) * 2); }
.bleed-grid--media-right .bleed-grid__copy { padding-left:  calc(var(--gutter) * 2); }
.bleed-grid--media-right { grid-template-columns: minmax(0, 54fr) minmax(0, 46fr); }

.section--intro     { background: var(--c-paper-alt); }
.section--praezision{ background: var(--c-paper-alt); padding-top: 0; }
.section--weg       { background: var(--c-paper-alt); }
.section--leistungen{ background: var(--c-paper); }
.section--erfahrung { background: var(--c-paper); }

/* Intro: freigestellte Grafik überlappt das Foto */
.intro__media { position: relative; }
.gear-rotor {
  display: block;
  transform-origin: 50% 50%;
}
.gear-rotor > img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 50% 50%;
}
.intro__gear {
  position: absolute;
  right: -7%;
  bottom: -11%;
  width: 42%;
  height: auto;
  z-index: 2;
}

/* ---------- 9. Medien & Bildplatzhalter ----------------------------------- */

.media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ececeA;
  aspect-ratio: 4 / 3;
}
.media img { width: 100%; height: 100%; object-fit: cover; }

/* Organische Silhouetten: im Entwurf ist die zum Seiteninneren zeigende
   Kante eine große Halbellipse, die Außenkante läuft gerade an den Rand. */
.media--blob {
  border-radius: 0 46% 46% 0 / 0 50% 50% 0;
}
.media--blob-right {
  border-radius: 46% 0 0 46% / 50% 0 0 50%;
}
.media--angle       { clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 16%); }
.media--tall        { aspect-ratio: 5 / 4; }
.media--card        { border-radius: 0 0 130px 0; aspect-ratio: 16 / 11; }

.media--card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 22%;
  background: var(--c-orange);
  border-radius: 0 0 130px 0;
  z-index: 1;
}
.media--card img { position: relative; z-index: 2; width: 88%; margin-left: 12%; border-radius: 0 0 130px 0; }
.media__num {
  position: absolute;
  left: 7%; bottom: 9%;
  z-index: 3;
  font-family: var(--f-serif);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  color: #fff;
}

/* Platzhalter: sichtbar nur, solange die Bilddatei fehlt.
   Sobald die freigegebene Datei unter dem angegebenen Pfad liegt,
   verschwindet der Platzhalter ohne Codeänderung. */
.media__ph { display: none; }

.media--missing img { display: none; }
.media--missing {
  background:
    repeating-linear-gradient(135deg,
      rgba(38,38,34,.045) 0 2px,
      transparent 2px 11px),
    linear-gradient(160deg, #f0f0ed 0%, #e4e4e0 100%);
  box-shadow: inset 0 0 0 1px var(--c-line);
}
.media--missing .media__ph {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  padding: 20px;
  text-align: center;
}
.media--missing .media__ph span {
  display: inline-block;
  max-width: 88%;
  padding: 9px 16px;
  background: rgba(255,255,255,.9);
  border: 1px dashed rgba(38,38,34,.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

/* ---------- 10. Grüne Komponenten-Sektion --------------------------------- */

.section--komponenten {
  background: var(--c-green);
  color: #fff;
  overflow: hidden;
}
.komponenten__watermark {
  position: absolute;
  left: 6%;
  top: -14%;
  width: min(46vw, 620px);
  color: rgba(255,255,255,.055);
  pointer-events: none;
  transform-origin: 50% 50%;
}
.section--komponenten .shell { position: relative; }

.komponenten__head { align-items: start; margin-bottom: clamp(48px, 6vw, 88px); }
.komponenten__lead { color: rgba(255,255,255,.9); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px) clamp(20px, 2.4vw, 44px);
}
.card {
  border-top: 1px solid rgba(255,255,255,.32);
  padding-top: 26px;
  min-height: 190px;
}
.card__num {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.card__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(17px, .6vw + 15px, 21px);
  line-height: 1.35;
  color: #fff;
}

/* ---------- 11. Slider ----------------------------------------------------- */

.section--weg { overflow: hidden; }
.weg__teal {
  position: absolute;
  right: -70px;
  top: 12%;
  width: 190px;
  height: 46%;
  background: var(--c-teal);
  border-radius: 120px 0 0 120px;
  pointer-events: none;
}

.slider { position: relative; }
.slider__viewport { overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform .55s var(--ease-snap);
}
.slide { flex: 0 0 100%; min-width: 100%; }
.slide__inner { align-items: center; }
.slide__copy .h2 { margin-bottom: .6em; }

.slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(28px, 3.5vw, 52px);
}
.slider__status {
  margin: 0 0 0 8px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--c-ink-soft);
}

/* ---------- 12. Checkliste ------------------------------------------------- */

.checklist { display: grid; gap: 14px; margin-top: 2.2em; }
.checklist li {
  position: relative;
  padding-left: 40px;
  font-size: clamp(14px, .35vw + 13px, 16px);
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 24px; height: 24px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%233c8055' fill-opacity='.22' d='M12 2.6l1.7 1.2 2-.5.9 1.9 2 .8-.3 2.1 1.4 1.6-1.2 1.7.5 2-1.9.9-.8 2-2.1-.3L12.6 21l-1.7-1.2-2 .5-.9-1.9-2-.8.3-2.1L4.9 13.9l1.2-1.7-.5-2 1.9-.9.8-2 2.1.3z'/%3E%3Ccircle cx='12' cy='12' r='4.2' fill='none' stroke='%233c8055' stroke-width='1.6'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%233c8055'/%3E%3C/svg%3E");
}

/* ---------- 13. Kontakt-CTA ------------------------------------------------ */

.section--cta {
  background: var(--c-orange);
  color: #fff;
  overflow: hidden;
}
.cta__copy p { color: rgba(255,255,255,.95); }

.cta__media { position: relative; }
.cta__gear {
  position: absolute;
  left: -14%;
  top: 60%;
  transform: translateY(-50%) scaleX(-1);
  width: 41%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.18));
}

/* ---------- 14. Footer ----------------------------------------------------- */

.site-footer {
  position: relative;
  background: var(--c-paper);
  padding-block: clamp(48px, 6vw, 96px);
  overflow: hidden;
}
/* helle Fläche rechts hinter dem Footer – wie im Entwurf */
/* Helle Fläche rechts: im Entwurf keine abgerundete Ecke, sondern eine
   durchgehende Welle – oben breiter, nach unten zurücklaufend. Umgesetzt
   als Viertelellipse über die volle Höhe. */
.site-footer::before {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(29%, 560px);
  background: var(--c-paper-alt);
  border-radius: 0 0 0 30% / 0 0 0 100%;
}
.site-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(220px, 1.1fr) repeat(2, minmax(140px, .8fr)) auto;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}
.site-footer__brand { color: var(--c-green-ci); }

.site-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.85;
}
.site-footer__address a { text-decoration: none; }
.site-footer__address a:hover { color: var(--c-orange-dark); text-decoration: underline; }

.site-footer__nav ul { display: grid; gap: 12px; }
.site-footer__nav a {
  font-size: 14px;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.site-footer__nav a:hover { color: var(--c-orange-dark); }

.social {
  grid-column: 2;
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--c-ink-soft);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.social a:hover { color: #fff; background: var(--c-green-ci); }
.social svg { width: 21px; height: 21px; }

.claim--footer {
  grid-column: 5;
  align-self: end;
  text-align: right;
}
.claim--footer span { display: block; }

/* ---------- 15. Responsive ------------------------------------------------- */

@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card  { min-height: 0; }
}

@media (max-width: 980px) {
  :root { --section-y: 82px; }
  .desktop-break { display: none; }
  .hero__title,
  .h2 { text-wrap: balance; }

  html {
    scroll-padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top, 0px) + 16px);
  }
  body.nav-open { overflow: hidden; }

  .site-header {
    background: rgba(255,255,255,.96);
    box-shadow: 0 1px 0 var(--c-line);
  }
  .site-header.is-stuck {
    background: rgba(255,255,255,.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header__inner {
    min-height: calc(var(--mobile-header-height) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }
  .burger { display: block; }

  .bleed-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .bleed-grid--media-right { grid-template-columns: minmax(0, 1fr); }
  .bleed-grid--media-left  > *:first-child { order: 2; }
  .bleed-grid--media-left  > *:last-child  { order: 1; }
  .bleed-grid__copy,
  .bleed-grid--media-left  .bleed-grid__copy,
  .bleed-grid--media-right .bleed-grid__copy {
    padding-block: 0;
    padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  }
  .bleed-grid__copy > p,
  .slide__copy p,
  .komponenten__lead { max-width: 68ch; }

  .hero__copy { max-width: none; }
  .hero__gears {
    position: relative;
    inset: auto;
    height: clamp(220px, 40vw, 340px);
    min-height: 0;
    margin-top: 16px;
  }
  .gear--lg { left: 2%;  top: 22%; }
  .gear--sm { left: 30%; top: 0; }
  .hero__gears .claim { left: 55%; top: 34%; }

  .nav {
    position: fixed;
    inset: auto 0 auto;
    top: calc(var(--mobile-header-height) + env(safe-area-inset-top, 0px));
    max-height: calc(100vh - var(--mobile-header-height) - env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - var(--mobile-header-height) - env(safe-area-inset-top, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding-top: 8px;
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--c-line);
    line-height: 1.4;
  }
  .nav__actions { margin-top: 20px; flex-wrap: wrap; }

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

  .grid-2--media-left > *:first-child { order: 2; }
  .grid-2--media-left > *:last-child  { order: 1; }

  .hero__drone {
    right: -20vw;
    top: 8px;
    width: 100vw;
    max-width: none;
    margin-right: 0;
    opacity: .16;
  }

  .weg__teal { display: none; }

  .intro__gear { right: -3%; bottom: -8%; width: 38%; }
  .leistungen__gear { left: 2%; }
  .komponenten__watermark {
    left: -4%;
    top: -60px;
    width: min(70vw, 340px);
  }

  .slider__viewport { touch-action: pan-y; }
  .slider__track { transition-duration: .38s; }
  .process-media {
    border-radius: 0 clamp(84px, 18vw, 150px) 0 clamp(44px, 10vw, 90px);
  }

  .intro__media,
  .leistungen__media,
  .figma-visual,
  .cta__media { overflow: visible; }

  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__address { grid-column: 1 / -1; }
  .social { grid-column: 1 / -1; margin-top: 4px; }
  .claim--footer { grid-column: 1 / -1; text-align: left; margin-top: 12px; }
  .site-footer__nav a,
  .site-footer__address a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    padding: 20px 0;
  }
  .card__num { margin: 0; }
  .card__title { font-size: 18px; line-height: 1.4; }
  .media--blob       { border-radius: 6px 70px 130px 6px; }
  .media--blob-right { border-radius: 130px 6px 6px 70px; }
  .media--card::before,
  .media--card img   { border-radius: 0 0 80px 0; }
  .btn-row .pill { flex: 1 1 100%; }
  .site-footer__inner { grid-template-columns: minmax(0, 1fr); }
  .site-footer__nav ul { gap: 0; }
}

/* ---------- 16. Originale Figma-Assets ------------------------------------- */

.hero__wordmark {
  position: absolute;
  left: 80.8%;
  top: clamp(190px, 22.2vw, 426px);
  width: clamp(180px, 14.95vw, 287px);
  height: auto;
}

.intro__photo,
.figma-visual img,
.leistungen__photo,
.cta__photo {
  display: block;
  width: 100%;
  height: auto;
}

.cta__photo { transform: scaleX(-1); }

.figma-visual {
  margin: 0;
  overflow: visible;
}

.komponenten__watermark {
  opacity: .23;
  mix-blend-mode: multiply;
  filter: blur(1px);
}

.leistungen__media,
.cta__media {
  position: relative;
}

.leistungen__gear {
  position: absolute;
  left: -8%;
  bottom: 4%;
  width: 34%;
  height: auto;
  z-index: 2;
}

.process-media {
  position: relative;
  width: 100%;
  aspect-ratio: 866.393 / 619;
  margin: 0;
  overflow: hidden;
  border-radius: 0 200px 0 100px;
}
.slide:nth-child(1) .process-media { background: var(--c-orange); }
.slide:nth-child(2) .process-media { background: var(--c-teal); }
.slide:nth-child(3) .process-media { background: var(--c-green); }
.slide:nth-child(4) .process-media { background: var(--c-teal-light); }
.process-media__photo {
  position: absolute;
  left: -12.12%;
  top: -95.96%;
  width: 175.47%;
  max-width: none;
  height: auto;
}

.slide__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 4.2vw, 80px);
  align-items: center;
}

.round-btn img {
  width: 18px;
  height: auto;
}
.round-btn[data-slider="prev"] img { transform: scaleX(-1); }

@media (max-width: 980px) {
  :root { --section-y: 82px; }
  .h2 { font-size: 48px; line-height: 56px; }
  .hero__wordmark {
    left: auto;
    right: 0;
    top: 34%;
    width: clamp(140px, 34vw, 250px);
  }
  .hero__drone {
    left: auto;
    right: -20vw;
    top: 8px;
    width: 100vw;
    height: auto;
    max-width: none;
    margin-right: 0;
    opacity: .16;
  }
  .slide__inner { grid-template-columns: minmax(0, 1fr); }
  .process-media {
    max-width: 866px;
    border-radius: 0 clamp(84px, 18vw, 150px) 0 clamp(44px, 10vw, 90px);
  }
  .leistungen__media,
  .figma-visual,
  .intro__media,
  .cta__media { overflow: visible; }
  .leistungen__gear { left: 2%; }
  .cta__gear { left: 2%; top: 66%; }
}

@media (max-width: 560px) {
  :root { --section-y: 64px; }
  body {
    font-size: 16px;
    line-height: 28px;
  }
  p { margin-bottom: 24px; }
  .h2 {
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.18;
    letter-spacing: -.015em;
    margin-bottom: 28px;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .lead { font-size: 18px; line-height: 30px; }
  .hero {
    padding-top: 28px;
    padding-bottom: 48px;
  }
  .hero__title {
    font-size: clamp(34px, 9.7vw, 40px);
    line-height: 1.08;
  }
  .hero__lead,
  .hero__cta { margin-left: 0; }
  .hero__lead {
    width: 100%;
    max-width: none;
    font-size: 17px;
    line-height: 28px;
  }
  .hero__cta { margin-top: 24px; }
  .hero__drone {
    right: 2vw;
    top: 4px;
    width: 96vw;
    opacity: .14;
  }
  .intro__gear { right: 2%; bottom: 2%; }
  .slide__copy .h2 {
    font-size: clamp(30px, 8.5vw, 34px);
    line-height: 1.2;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .btn-row .pill {
    min-width: 0;
    padding-inline: 20px;
    white-space: normal;
    text-align: center;
  }
  .checklist { gap: 12px; }
  .checklist li { padding-left: 36px; }
  .claim--footer {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
  }
  .site-footer {
    padding-bottom: max(48px, calc(32px + env(safe-area-inset-bottom, 0px)));
  }
}

/* iPhone-Querformat: geringe Höhe, aber genügend Breite für eine kompakte
   Zweispalten-Komposition. Die Desktop-Geometrie bleibt davon unberührt. */
@media (min-width: 568px) and (max-width: 980px) and (max-height: 500px) and (orientation: landscape) {
  :root {
    --mobile-header-height: 64px;
    --section-y: 56px;
  }

  body {
    font-size: 16px;
    line-height: 28px;
  }
  p { margin-bottom: 22px; }

  .site-header__inner {
    min-height: calc(var(--mobile-header-height) + env(safe-area-inset-top, 0px));
  }
  .logo__mark { width: 50px; }
  .burger { width: 44px; height: 44px; }
  .nav__list a { padding-block: 10px; line-height: 22px; }
  .nav__actions { margin-top: 12px; }
  .nav__actions .pill {
    min-height: 44px;
    padding: 8px 20px;
  }

  .hero {
    min-height: calc(100vh - var(--mobile-header-height));
    min-height: calc(100svh - var(--mobile-header-height));
    padding: 22px 0 36px;
  }
  .hero__copy { max-width: 62%; }
  .hero__title {
    font-size: clamp(36px, 5.2vw, 48px);
    line-height: 1.05;
  }
  .hero__lead {
    max-width: 32em;
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 24px;
  }
  .hero__cta { margin: 18px 0 0; }
  .hero__cta .pill {
    min-height: 48px;
    padding: 10px 24px;
  }
  .hero__drone {
    right: -12vw;
    top: -18vw;
    width: 78vw;
    opacity: .13;
  }
  .hero__gears {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
    margin: 0;
  }
  .gear--lg {
    left: auto;
    right: 1%;
    top: 34%;
    width: clamp(110px, 16vw, 145px);
  }
  .gear--sm {
    left: auto;
    right: 18%;
    top: 8%;
    width: clamp(70px, 10vw, 90px);
  }
  .hero__wordmark {
    left: auto;
    right: 0;
    top: auto;
    bottom: 7%;
    width: clamp(140px, 20vw, 180px);
  }

  .h2 {
    font-size: clamp(34px, 4.8vw, 42px);
    line-height: 1.12;
    margin-bottom: 24px;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .lead { font-size: 18px; line-height: 30px; }
  .btn-row .pill {
    flex: 1 1 100%;
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .bleed-grid,
  .bleed-grid--media-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 38px);
  }
  .bleed-grid--media-left > *:first-child,
  .bleed-grid--media-left > *:last-child { order: initial; }

  .section--komponenten .grid-2 {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 32px;
  }

  .intro__media,
  .figma-visual,
  .leistungen__media,
  .cta__media {
    align-self: center;
    height: clamp(260px, 72svh, 320px);
    overflow: hidden;
  }
  .intro__photo,
  .figma-visual img,
  .leistungen__photo,
  .cta__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .praezision__visual img { object-position: center 56%; }
  .erfahrung__visual img { object-position: center 55%; }
  .cta__photo { object-position: center 62%; }
  .intro__gear { right: 2%; bottom: 2%; }
  .leistungen__gear { left: 2%; bottom: 4%; }
  .cta__gear { left: 2%; top: 66%; }

  .slide__inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: start;
  }
  .process-media {
    align-self: start;
    border-radius: 0 84px 0 44px;
  }
  .slide__copy .h2 {
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.15;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .slide__copy p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 18px;
  }
  .slider__nav { margin-top: 24px; }

  .site-footer {
    padding-top: 48px;
    padding-bottom: max(48px, calc(28px + env(safe-area-inset-bottom, 0px)));
  }
}

/* Schmale iPhones im Querformat bleiben gestapelt. So erhalten Text und
   lange CTA-Beschriftungen mehr Raum, ohne die kurze Höhe zu verschwenden. */
@media (min-width: 568px) and (max-width: 759px) and (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 12px 0 16px; }
  .hero__copy { max-width: 74%; }
  .hero__title {
    font-size: clamp(30px, 5vw, 34px);
    line-height: 1.04;
  }
  .hero__lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .hero__cta { margin-top: 12px; }
  .hero__cta .pill {
    min-height: 44px;
    padding-block: 8px;
  }

  .bleed-grid,
  .bleed-grid--media-right,
  .section--komponenten .grid-2,
  .slide__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .bleed-grid--media-left > *:first-child { order: 2; }
  .bleed-grid--media-left > *:last-child { order: 1; }

  .intro__media,
  .leistungen__media,
  .cta__media {
    height: auto;
    overflow: visible;
  }
  .figma-visual {
    width: min(100%, 480px);
    height: auto;
    margin-inline: auto;
    overflow: visible;
  }
  .intro__photo,
  .figma-visual img,
  .leistungen__photo,
  .cta__photo {
    height: auto;
    object-fit: contain;
  }
  .process-media {
    height: auto;
    aspect-ratio: 866.393 / 619;
  }
}

/* ---------- 17. Figma-Artboard bei 1920 px ---------------------------------
   Der Referenzframe besitzt feste Abschnittsgrenzen. Ab 981 px wird deshalb
   das originale 1920er Artboard verwendet und als Ganzes proportional auf die
   verfügbare Desktopbreite skaliert. Unterhalb davon greift das mobile Raster. */

@media (min-width: 981px) {
  .figma-page {
    width: 1920px;
    max-width: none;
    margin-inline: auto;
  }

  html { scroll-padding-top: 0; }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 1920px;
    max-width: none;
    height: 96px;
    background: transparent;
  }
  .site-header__inner {
    position: relative;
    display: block;
    min-height: 96px;
  }
  .site-header .logo {
    position: absolute;
    left: 80px;
    top: 5px;
    transform: translate3d(0, 35px, 0);
    transition: transform .28s var(--ease-enter);
  }
  .site-header.is-stuck .logo { transform: none; }
  .logo__mark {
    width: 101.636px;
    height: 87px;
  }
  .nav {
    position: absolute;
    left: 770px;
    top: 22px;
    width: 1070px;
    height: 51px;
    margin: 0;
    gap: 65px;
    align-items: flex-start;
    transform: translate3d(0, 36px, 0);
    transition: transform .28s var(--ease-enter);
  }
  .site-header.is-stuck .nav { transform: none; }
  .nav__list { gap: 50px; flex: 0 0 auto; }
  .nav__actions { gap: 10px; flex: 0 0 auto; }
  .nav__actions .pill:not(.pill--round) { padding-inline: 29.35px; }
  .nav__list a {
    display: block;
    padding: 9px 0 8px;
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
  }

  .hero {
    height: 881px;
    padding: 0;
  }
  .hero__deco { overflow: hidden; }
  .hero__drone {
    left: 678px;
    right: auto;
    top: -138px;
    width: 1357px;
    height: 1476px;
    max-width: none;
    object-fit: cover;
    opacity: .1;
    transform: rotate(180deg);
  }
  .hero__inner { height: 100%; }
  .hero__copy {
    position: absolute;
    left: 80px;
    top: 210px;
    max-width: none;
    width: 782px;
  }
  .hero__title {
    width: 782px;
    font-size: 70px;
    font-weight: 400;
    line-height: 78px;
    letter-spacing: -.03em;
  }
  .hero__lead {
    width: 572px;
    max-width: none;
    margin: 42px 0 0 121px;
    font-size: 22px;
    font-weight: 400;
    line-height: 38px;
    color: var(--c-ink);
  }
  .hero__cta { margin: 40px 0 0 121px; }
  .hero__cta .pill { width: 181px; }
  .hero__gears { position: absolute; inset: 0; }
  .gear--lg {
    left: 1189px;
    top: 521px;
    width: 262px;
    height: 262px;
  }
  .gear--sm {
    left: 1402px;
    top: 433px;
    width: 140px;
    height: 139px;
  }
  .hero__wordmark {
    left: 1501px;
    top: 647px;
    width: 287px;
    height: 73px;
  }

  .section { padding: 0; }
  .section > .bleed-grid {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
  }
  .section > .bleed-grid > .bleed-grid__copy { padding: 0; }

  .section--intro {
    height: 1007px;
    overflow: visible;
  }
  .intro__media {
    position: absolute;
    inset: 0;
  }
  .intro__photo {
    position: absolute;
    left: -176.06px;
    top: 0;
    width: 1016.06px;
    height: 866.06px;
    max-width: none;
  }
  .intro__gear {
    left: 590px;
    right: auto;
    top: 490px;
    bottom: auto;
    width: 337px;
    height: 338px;
  }
  .intro__copy {
    position: absolute;
    left: 1006px;
    top: 143px;
    width: 780px;
    padding: 0;
  }
  .intro__copy .h2 { width: 780px; }
  .intro__copy > :not(.h2) {
    width: 654.59px;
    margin-left: 121.96px;
  }
  .intro__copy .lead { margin-bottom: 34px; }
  .intro__copy .lead + p { margin-bottom: 0; }
  .intro__copy .btn-row {
    width: auto;
    margin-top: 50px;
    gap: 20px;
  }

  .section--praezision {
    height: 771px;
    overflow: hidden;
  }
  .praezision__copy {
    position: absolute;
    left: 82px;
    top: 0;
    width: 828px;
    padding: 0;
  }
  .praezision__copy .h2 { width: 828px; }
  .praezision__copy p {
    width: 693px;
    margin-left: 121.96px;
  }
  .praezision__visual {
    position: absolute;
    left: 1088.064px;
    top: -76.928px;
    width: 831.936px;
    height: 975.944px;
  }
  .praezision__visual img {
    width: 831.936px;
    height: 975.944px;
    max-width: none;
  }

  .section--komponenten {
    height: 1124px;
    overflow: hidden;
  }
  .section--komponenten > .shell { position: relative; height: 100%; }
  .komponenten__watermark {
    left: 292px;
    top: -214px;
    width: 558px;
    height: 566px;
    max-width: none;
    opacity: .23;
    mix-blend-mode: multiply;
    filter: blur(1px);
  }
  .komponenten__head { display: block; margin: 0; }
  .komponenten__head .h2 {
    position: absolute;
    left: 80px;
    top: 140px;
    width: 706px;
  }
  .komponenten__lead {
    position: absolute;
    left: 960px;
    top: 151px;
    width: 753px;
    color: #fff;
  }
  .cards {
    position: absolute;
    left: 80px;
    top: 450px;
    width: 1730px;
    display: grid;
    grid-template-columns: repeat(4, 402.5px);
    grid-template-rows: 202px 244px;
    column-gap: 40px;
    row-gap: 98px;
  }
  .card {
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 10px;
    border-top-color: rgba(255,255,255,.5);
  }
  .card__num {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
  }
  .card__title {
    width: 382.5px;
    font-size: 24px;
    line-height: 42px;
  }

  .section--weg {
    height: 940px;
    overflow: hidden;
  }
  .section--weg > .shell {
    height: 100%;
    padding-left: 80px;
    padding-right: 0;
  }
  .weg__teal { display: none; }
  .slider { height: 100%; }
  .slider__viewport {
    position: absolute;
    left: 0;
    top: 120px;
    width: 1840px;
    height: 619px;
    overflow: hidden;
  }
  .slider__track {
    height: 619px;
    gap: 80px;
  }
  .slide {
    flex: 0 0 1701.393px;
    min-width: 1701.393px;
    height: 619px;
  }
  .slide__inner {
    display: grid;
    grid-template-columns: 866.393px 755px;
    gap: 80px;
    width: 1701.393px;
    height: 619px;
  }
  .process-media {
    width: 866.393px;
    height: 619px;
    aspect-ratio: auto;
  }
  .process-media__photo {
    left: -105px;
    top: -594px;
    width: 1520.5px;
    height: 1213px;
  }
  .media__num {
    left: 62px;
    bottom: 58px;
    font-family: var(--f-sans);
    font-size: 62px;
    font-weight: 500;
    line-height: 62px;
    letter-spacing: -.02em;
  }
  .slide__copy {
    align-self: center;
    width: 755px;
  }
  .slide__copy .h2 { margin-bottom: 30px; }
  .slide__copy p { margin-bottom: 34px; }
  .slider__nav {
    position: absolute;
    left: 0;
    top: 820px;
    gap: 20px;
    margin: 0;
  }
  .slider__status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    clip-path: inset(50%);
    overflow: hidden;
  }

  .section--leistungen {
    height: 931px;
    overflow: visible;
  }
  .leistungen__copy {
    position: absolute;
    left: 80px;
    top: 140px;
    width: 867px;
    padding: 0;
  }
  .leistungen__copy .h2 { margin: 0; }
  .checklist {
    width: 661px;
    margin: 55px 0 0 124px;
    gap: 20px;
  }
  .checklist li {
    padding-left: 40px;
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
  }
  .checklist li::before {
    top: 5px;
    width: 24px;
    height: 24px;
    background-image: url("../figma/benefit-check-green.svg");
  }
  .leistungen__media { position: absolute; inset: 0; }
  .leistungen__photo {
    position: absolute;
    left: 1095px;
    top: -61px;
    width: 1066.5px;
    height: 907px;
    max-width: none;
  }
  .leistungen__gear {
    left: 1040px;
    top: 505px;
    bottom: auto;
    width: 316px;
    height: 298.5px;
  }

  .section--erfahrung {
    height: 896px;
    overflow: hidden;
  }
  .erfahrung__visual {
    position: absolute;
    left: 0;
    top: 0;
    width: 855.168px;
    height: 1005.215px;
  }
  .erfahrung__visual img {
    width: 855.168px;
    height: 1005.215px;
    max-width: none;
  }
  .erfahrung__copy {
    position: absolute;
    left: 1019px;
    top: 159px;
    width: 828px;
    padding: 0;
  }
  .erfahrung__copy .h2 { width: 828px; }
  .erfahrung__copy p {
    width: 693px;
    margin-left: 121.96px;
  }

  .section--cta {
    height: 890px;
    overflow: hidden;
  }
  .cta__copy {
    position: absolute;
    left: 86px;
    top: 207px;
    width: 775.34px;
    padding: 0;
    z-index: 3;
  }
  .cta__copy .h2 { margin: 0; }
  .cta__copy > p:not(.btn-row) {
    width: 635px;
    margin: 39px 0 0 109px;
    font-family: var(--f-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 38px;
  }
  .cta__copy .btn-row {
    width: 570px;
    margin: 55px 0 0 109px;
    gap: 20px;
  }
  .cta__copy .btn-row .pill:first-child { width: 222px; }
  .cta__copy .btn-row .pill:last-child { width: 328px; }
  .cta__media { position: absolute; inset: 0; }
  .cta__photo {
    position: absolute;
    left: 892.03px;
    top: -521.01px;
    width: 1654px;
    height: 1411px;
    max-width: none;
  }
  .cta__gear {
    left: 974px;
    top: 396px;
    width: 331px;
    height: 336px;
    transform: scaleX(-1);
    filter: none;
  }

  .site-footer {
    height: 557px;
    margin-top: 80px;
    padding: 0;
    overflow: hidden;
  }
  .site-footer::before {
    left: -443.06px;
    right: auto;
    top: 0;
    bottom: auto;
    width: 1990.11px;
    height: 643px;
    background: url("../figma/footer-panel-shape.svg") no-repeat 0 0 / 100% 100%;
    border-radius: 0;
    transform: scaleY(-1);
    transform-origin: center;
  }
  .site-footer__inner {
    display: block;
    width: 1920px;
    height: 557px;
    max-width: 1920px;
    padding: 0;
  }
  .site-footer__brand {
    position: absolute;
    left: 82px;
    top: 102px;
  }
  .logo__mark--footer {
    width: 101.636px;
    height: 87px;
  }
  .site-footer__address {
    position: absolute;
    left: 344px;
    top: 89px;
    width: 300px;
    font-size: 16px;
    font-weight: 300;
    line-height: 34px;
  }
  .site-footer__address strong { font-weight: 600; }
  .site-footer__nav {
    position: absolute;
    top: 91px;
  }
  .site-footer__nav:nth-of-type(1) { left: 783px; width: 250px; }
  .site-footer__nav:nth-of-type(2) { left: 1139px; width: 150px; }
  .site-footer__nav ul { gap: 15.4px; }
  .site-footer__nav a {
    font-size: 16px;
    font-weight: 300;
    line-height: 34px;
  }
  .social {
    position: absolute;
    left: 347px;
    top: 407px;
    width: 87px;
    height: 60px;
    display: grid;
    grid-template-columns: repeat(2, 27px);
    gap: 33px;
    margin: 0;
  }
  .social a {
    width: 27px;
    height: 60px;
    color: rgba(9, 41, 73, .2);
  }
  .social a:hover { background: rgba(3,132,68,.08); }
  .social svg { width: 27px; height: 27px; opacity: 1; }
  .claim--footer {
    position: absolute;
    left: 1560px;
    top: 370px;
    width: 278px;
    text-align: left;
  }
  .claim--footer span {
    display: block;
    height: 52px;
  }
  .claim--footer span + span { margin-top: -12px; }
}

/* ---------- 18. Motion Polish: „Verzahnte Präzision“ ----------------------- */

/* Die Kartenlinie bleibt auch ohne JavaScript sichtbar. Mit Motion wird sie
   beim Eintritt in den Viewport wie eine kontrollierte Prüfspur aufgebaut. */
.card {
  position: relative;
  border-top: 0;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255,255,255,.32);
  transform: scaleX(1);
  transform-origin: left center;
}

.round-btn img {
  transition: transform .2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .round-btn[data-slider="next"]:hover:not([disabled]) img {
    transform: translate3d(3px, 0, 0);
  }
  .round-btn[data-slider="prev"]:hover:not([disabled]) img {
    transform: scaleX(-1) translate3d(3px, 0, 0);
  }
}

@keyframes motion-slider-focus {
  from { opacity: .84; }
  to   { opacity: 1; }
}

@keyframes motion-slider-number {
  from { opacity: 0; transform: translate3d(-10px, 0, 0); }
  to   { opacity: 1; transform: none; }
}

/* Mechanisch gekoppelte Scrollwinkel: Das kleinere Rad legt wegen seines
   geringeren Durchmessers den größeren, gegenläufigen Winkel zurück. */
@keyframes hero-gear-scroll-lg {
  from { rotate: 0deg; }
  to   { rotate: 48deg; }
}

@keyframes hero-gear-scroll-sm {
  from { rotate: 0deg; }
  to   { rotate: -89.8deg; }
}

@keyframes hero-gear-scroll-sm-mobile {
  from { rotate: 0deg; }
  to   { rotate: -90deg; }
}

@keyframes hero-gear-scroll-sm-landscape {
  from { rotate: 0deg; }
  to   { rotate: -76.8deg; }
}

/* Die perspektivischen Produktbilder drehen bewusst nur leicht. Dadurch
   bleibt ihre Lichtführung glaubwürdig, während die Verzahnung lebendig wird. */
@keyframes intro-gear-scroll {
  from { rotate: 0deg; }
  to   { rotate: 8deg; }
}

@keyframes components-gear-scroll {
  from { rotate: 0deg; }
  to   { rotate: 26deg; }
}

@keyframes components-gear-scroll-mobile {
  from { rotate: 0deg; }
  to   { rotate: 16deg; }
}

@keyframes benefits-gear-scroll {
  from { rotate: 0deg; }
  to   { rotate: -10deg; }
}

@keyframes cta-gear-scroll {
  from { rotate: 0deg; }
  to   { rotate: -8deg; }
}

@media (prefers-reduced-motion: no-preference) {
  /* Hero: ein einmaliger, kontrollierter Systemstart. */
  .motion-ready .hero__title {
    opacity: 0;
    transform: translate3d(-14px, 0, 0);
  }
  .motion-ready .hero__lead {
    opacity: 0;
    transform: translate3d(-11px, 0, 0);
  }
  .motion-ready .hero__cta {
    opacity: 0;
    transform: translate3d(-8px, 0, 0);
  }
  .motion-ready .hero__deco {
    opacity: 0;
  }
  .motion-ready .gear--lg {
    opacity: 0;
    transform: rotate(-14deg);
  }
  .motion-ready .gear--sm {
    opacity: 0;
    transform: rotate(26.2deg);
  }
  .motion-ready .hero__wordmark {
    opacity: 0;
    transform: translate3d(14px, 0, 0);
  }

  .motion-ready.motion-started .hero__title {
    opacity: 1;
    transform: none;
    transition:
      opacity .8s var(--ease-enter) .08s,
      transform 1.05s var(--ease-enter) .08s;
  }
  .motion-ready.motion-started .hero__lead {
    opacity: 1;
    transform: none;
    transition:
      opacity .7s var(--ease-enter) .34s,
      transform .9s var(--ease-enter) .34s;
  }
  .motion-ready.motion-started .hero__cta {
    opacity: 1;
    transform: none;
    transition:
      opacity .65s var(--ease-enter) .58s,
      transform .78s var(--ease-enter) .58s;
  }
  .motion-ready.motion-started .hero__deco {
    opacity: 1;
    transition: opacity 1.3s var(--ease-enter) .08s;
  }
  .motion-ready.motion-started .gear--lg,
  .motion-ready.motion-started .gear--sm {
    opacity: 1;
    transform: none;
    transition:
      opacity .75s var(--ease-enter) .28s,
      transform 1.45s var(--ease-enter) .28s;
  }
  .motion-ready.motion-started .hero__wordmark {
    opacity: 1;
    transform: none;
    transition:
      opacity .7s var(--ease-enter) .72s,
      transform .9s var(--ease-enter) .72s;
  }

  /* Die sichtbaren Bildflächen bewegen sich – nicht ihre 1920-px-Wrapper. */
  .motion-ready .figma-visual[data-reveal="media-left"],
  .motion-ready .figma-visual[data-reveal="media-right"] {
    opacity: 0;
  }
  .motion-ready .figma-visual[data-reveal="media-left"] {
    transform: translate3d(-20px, 0, 0);
  }
  .motion-ready .figma-visual[data-reveal="media-right"] {
    transform: translate3d(20px, 0, 0);
  }
  .motion-ready .intro__media[data-reveal] .intro__photo {
    opacity: 0;
    translate: -20px 0;
  }
  .motion-ready .leistungen__media[data-reveal] .leistungen__photo,
  .motion-ready .cta__media[data-reveal] .cta__photo {
    opacity: 0;
    translate: 20px 0;
  }
  .motion-ready [data-reveal="copy-left"] {
    opacity: 0;
    transform: translate3d(-14px, 0, 0);
  }
  .motion-ready [data-reveal="copy-right"] {
    opacity: 0;
    transform: translate3d(14px, 0, 0);
  }
  .motion-ready [data-reveal="claim"] {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }

  .motion-ready .figma-visual[data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition:
      opacity .85s var(--ease-enter),
      transform 1.1s var(--ease-enter);
  }
  .motion-ready .intro__media[data-reveal].is-visible .intro__photo,
  .motion-ready .leistungen__media[data-reveal].is-visible .leistungen__photo,
  .motion-ready .cta__media[data-reveal].is-visible .cta__photo {
    opacity: 1;
    translate: none;
    transition:
      opacity .85s var(--ease-enter),
      translate 1.1s var(--ease-enter);
  }
  .motion-ready [data-reveal="copy-left"].is-visible,
  .motion-ready [data-reveal="copy-right"].is-visible {
    opacity: 1;
    transform: none;
    transition:
      opacity .7s var(--ease-enter) .08s,
      transform .9s var(--ease-enter) .08s;
  }
  .motion-ready [data-reveal="claim"].is-visible {
    opacity: 1;
    transform: none;
    transition:
      opacity .65s var(--ease-enter),
      transform .9s var(--ease-enter);
  }

  /* Freigestellte Zahnräder kuppeln leicht verzögert in ihr Bildmotiv ein. */
  .motion-ready [data-reveal="media-left"] .intro__gear-image {
    opacity: 0;
    transform: rotate(-12deg);
  }
  .motion-ready [data-reveal="media-right"] .leistungen__gear-image {
    opacity: 0;
    transform: rotate(10deg);
  }
  .motion-ready [data-reveal="media-right"] .cta__gear-image {
    opacity: 0;
    transform: rotate(-10deg);
  }
  .motion-ready [data-reveal].is-visible .intro__gear-image,
  .motion-ready [data-reveal].is-visible .leistungen__gear-image,
  .motion-ready [data-reveal].is-visible .cta__gear-image {
    opacity: 1;
    transform: none;
    transition:
      opacity .65s var(--ease-enter) .2s,
      transform 1.15s var(--ease-enter) .2s;
  }

  /* Komponenten: Linie, Nummer und Text erscheinen in Prüf-Reihenfolge. */
  .motion-ready .card[data-reveal="card"] {
    --motion-stagger: 0s;
  }
  .motion-ready .card[data-reveal="card"]::before {
    transform: scaleX(0);
  }
  .motion-ready .card[data-reveal="card"] .card__num {
    opacity: 0;
    transform: rotate(-8deg) scale(.88);
  }
  .motion-ready .card[data-reveal="card"] .card__title {
    opacity: .55;
  }
  .motion-ready .card[data-reveal="card"].is-visible::before {
    transform: scaleX(1);
    transition: transform .75s var(--ease-enter) var(--motion-stagger);
  }
  .motion-ready .card[data-reveal="card"].is-visible .card__num {
    opacity: 1;
    transform: none;
    transition:
      opacity .5s var(--ease-enter) calc(var(--motion-stagger) + .1s),
      transform .62s var(--ease-enter) calc(var(--motion-stagger) + .1s);
  }
  .motion-ready .card[data-reveal="card"].is-visible .card__title {
    opacity: 1;
    transition: opacity .55s var(--ease-enter) calc(var(--motion-stagger) + .18s);
  }

  /* Nur die kleinen Prüfsymbole kuppeln ein; der Lesetext bleibt statisch. */
  .motion-ready .checklist[data-reveal="checks"] li::before {
    opacity: 0;
    transform: rotate(-6deg) scale(.82);
  }
  .motion-ready .checklist[data-reveal="checks"].is-visible li::before {
    opacity: 1;
    transform: none;
    transition:
      opacity .42s var(--ease-enter),
      transform .6s var(--ease-enter);
  }

  /* Der Slider behält seine horizontale Mechanik; nur das neue Motiv fokussiert. */
  .motion-ready [data-reveal="slider"].is-visible .slide.is-current .process-media__photo {
    animation: motion-slider-focus .65s var(--ease-enter);
  }
  .motion-ready [data-reveal="slider"].is-visible .slide.is-current .media__num {
    animation: motion-slider-number .5s var(--ease-enter) .08s backwards;
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .card::before { background: rgba(255,255,255,.5); }
  .motion-ready .card:nth-child(2) { --motion-stagger: .06s; }
  .motion-ready .card:nth-child(3) { --motion-stagger: .12s; }
  .motion-ready .card:nth-child(4) { --motion-stagger: .18s; }
  .motion-ready .card:nth-child(6) { --motion-stagger: .06s; }
  .motion-ready .card:nth-child(7) { --motion-stagger: .12s; }
  .motion-ready .card:nth-child(8) { --motion-stagger: .18s; }
}

@media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .hero__title,
  .motion-ready .hero__lead,
  .motion-ready .hero__cta {
    transform: translate3d(-8px, 0, 0);
  }
  .motion-ready .gear--lg {
    transform: rotate(-8deg);
  }
  .motion-ready .gear--sm {
    transform: rotate(15deg);
  }
  .motion-ready .figma-visual[data-reveal] {
    transform: none;
  }
  .motion-ready .intro__media[data-reveal] .intro__photo,
  .motion-ready .leistungen__media[data-reveal] .leistungen__photo,
  .motion-ready .cta__media[data-reveal] .cta__photo {
    translate: none;
  }
  .motion-ready [data-reveal="copy-left"] {
    transform: translate3d(-10px, 0, 0);
  }
  .motion-ready [data-reveal="copy-right"] {
    transform: translate3d(10px, 0, 0);
  }
  .motion-ready [data-reveal] .intro__gear-image,
  .motion-ready [data-reveal] .leistungen__gear-image,
  .motion-ready [data-reveal] .cta__gear-image {
    transform: none;
  }
}

/* Scroll-gekoppelte Hero-Mechanik. Eine View-Timeline folgt der nativen
   Scrollposition direkt und läuft rückwärts, sobald der Nutzer hochscrollt.
   Die Einblendrotation bleibt davon unabhängig auf der transform-Ebene. */
@supports (view-timeline-name: --hero-gear-scroll) and (animation-timeline: --hero-gear-scroll) and (animation-range: exit 0% exit 100%) {
  @media (prefers-reduced-motion: no-preference) {
    .hero {
      view-timeline-name: --hero-gear-scroll;
      view-timeline-axis: block;
    }

    .gear--lg,
    .gear--sm {
      animation-duration: 1ms;
      animation-timing-function: linear;
      animation-fill-mode: both;
      animation-timeline: --hero-gear-scroll;
      animation-range: exit 0% exit 100%;
    }

    .gear--lg { animation-name: hero-gear-scroll-lg; }
    .gear--sm { animation-name: hero-gear-scroll-sm; }
  }

  @media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
    .gear--sm { animation-name: hero-gear-scroll-sm-mobile; }
  }

  @media (min-width: 568px) and (max-width: 980px) and (max-height: 500px) and (orientation: landscape) and (prefers-reduced-motion: no-preference) {
    .gear--sm { animation-name: hero-gear-scroll-sm-landscape; }
  }
}

/* Alle weiteren freigestellten Zahnräder erhalten ihre eigene Sicht-Timeline.
   So werden nur sichtbare, kleine Ebenen bewegt – ohne Scroll-JavaScript. */
@supports (animation-timeline: view(block)) and (animation-range: cover 0% cover 100%) {
  @media (prefers-reduced-motion: no-preference) {
    .komponenten__watermark {
      animation-duration: 1ms;
      animation-timing-function: linear;
      animation-fill-mode: both;
      animation-timeline: view(block);
      animation-range: cover 0% cover 100%;
    }

    .komponenten__watermark { animation-name: components-gear-scroll; }
  }

  @media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
    .komponenten__watermark { animation-name: components-gear-scroll-mobile; }
  }

  /* Perspektivische Produktbilder bleiben mobil statisch, damit kurze
     Querformate und organische Bildmasken nicht durch Rotation anschlagen. */
  @media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
    .gear-rotor {
      animation-duration: 1ms;
      animation-timing-function: linear;
      animation-fill-mode: both;
      animation-timeline: view(block);
      animation-range: cover 0% cover 100%;
    }

    .intro__gear { animation-name: intro-gear-scroll; }
    .leistungen__gear { animation-name: benefits-gear-scroll; }
    .cta__gear { animation-name: cta-gear-scroll; }
  }
}

/* Im niedrigen iPhone-Querformat sind die Zahnräder kompakter skaliert.
   Der kleinere Drehwinkel hält ihre sichtbare Übersetzung dort gekoppelt. */
@media (min-width: 568px) and (max-width: 980px) and (max-height: 500px) and (orientation: landscape) and (prefers-reduced-motion: no-preference) {
  .motion-ready .gear--sm {
    transform: rotate(12.8deg);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-stuck {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .site-header,
  .site-header.is-stuck {
    background: #fff;
    border-bottom: 1px solid var(--c-ink);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* ---------- 19. Bewegungsreduktion & Druck --------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .motion-ready .hero__title,
  .motion-ready .hero__lead,
  .motion-ready .hero__cta,
  .motion-ready .hero__deco,
  .motion-ready .gear,
  .motion-ready .hero__wordmark,
  .motion-ready [data-reveal],
  .motion-ready [data-reveal] .card__num,
  .motion-ready [data-reveal] .card__title {
    opacity: 1 !important;
    transform: none !important;
    rotate: none !important;
    animation: none !important;
  }
  .motion-ready [data-reveal] .intro__photo,
  .motion-ready [data-reveal] .leistungen__photo,
  .motion-ready [data-reveal] .cta__photo {
    opacity: 1 !important;
    translate: none !important;
  }
  .motion-ready .card[data-reveal]::before {
    transform: scaleX(1) !important;
  }
}

@media print {
  .site-header, .slider__nav, .hero__deco, .komponenten__watermark, .weg__teal { display: none; }
  body { color: #000; }
  .section { padding-block: 24px; }
  .gear,
  .gear-rotor {
    animation: none !important;
    rotate: none !important;
  }
  .gear-rotor > img {
    opacity: 1 !important;
    transform: none !important;
  }
  .motion-ready [data-reveal],
  .motion-ready [data-reveal] .card__num,
  .motion-ready [data-reveal] .card__title {
    opacity: 1 !important;
    transform: none !important;
    rotate: none !important;
    animation: none !important;
  }
  .motion-ready [data-reveal] .intro__photo,
  .motion-ready [data-reveal] .leistungen__photo,
  .motion-ready [data-reveal] .cta__photo {
    opacity: 1 !important;
    translate: none !important;
  }
  .motion-ready .card[data-reveal]::before { transform: scaleX(1) !important; }
}
