/* ============================================================
   Kernbohrungen Meier – Stylesheet
   Brand: #273584 (blue) · #4F4C4D (graphite)
   ============================================================ */

/* ---------- Inter (lokal gehostet, DSGVO-konform) ----------
   Variable Font (Wght 100–900). Latin-Subset reicht für Deutsch
   inkl. ä/ö/ü/ß (U+00DF, U+00E4, U+00F6, U+00FC),
   Latin-Ext für seltenere europäische Zeichen. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ---------- Cursor-Funken: Diamant-Sparkle-Trail ---------- */
.cursor-sparks {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-sparks { display: none; }
}

:root {
  --color-primary: #273584;
  --color-primary-dark: #1B2566;
  --color-primary-light: #3D4DAD;
  --color-graphite: #4F4C4D;
  --color-ink: #1A1A1F;
  --color-muted: #5C5C63;
  --color-line: #E6E7EC;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F6FA;
  --color-bg-dark: #0F1430;
  --color-accent: #C9A227;
  --color-accent-ink: #8A6500;
  --color-success: #1FAB4A;

  --shadow-sm: 0 1px 2px rgba(15, 20, 48, 0.06), 0 1px 3px rgba(15, 20, 48, 0.04);
  --shadow-md: 0 8px 24px -6px rgba(15, 20, 48, 0.12), 0 4px 8px -4px rgba(15, 20, 48, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(15, 20, 48, 0.18), 0 8px 16px -8px rgba(15, 20, 48, 0.08);
  --shadow-blue: 0 12px 28px -10px rgba(39, 53, 132, 0.45);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1200px;
  --header-h: 124px;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C7E;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
a:hover { color: var(--color-primary-dark); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: var(--color-ink);
}

p { margin: 0 0 1em; }

::selection {
  background: var(--color-primary);
  color: #fff;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Barrierefrei ausgeblendet: unsichtbar fuer Augen, lesbar fuer Screenreader & Suchmaschinen */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}
.section--light { background: var(--color-bg); }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #DDE1F0; }
.section--certs { background: linear-gradient(180deg, var(--color-bg-alt) 0%, #fff 100%); }

.section__header {
  max-width: 760px;
  margin: 0 0 64px;
}
.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.4em;
}
.section__title--light { color: #fff; }

.section__lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 64ch;
  margin: 0;
}
.section__header--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section__lead { color: #B5BACE; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--color-primary); }
.eyebrow--light { color: #fff; }

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}
.eyebrow--dark .eyebrow__dot {
  box-shadow: 0 0 0 4px rgba(39, 53, 132, 0.12);
}

/* Auf Mobile: Punkt vor dem Eyebrow-Text ausblenden — spart Platz und wirkt aufgeräumter */
@media (max-width: 760px) {
  .eyebrow__dot { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
              background 0.2s var(--ease-out), color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg {
  padding: 17px 32px;
  font-size: 1.02rem;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(39, 53, 132, 0.55);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55);
}
.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(18, 140, 126, 0.6);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--color-bg-dark);
  color: #B5BACE;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;     /* gleichmäßige Abstände — wirkt zentrierter als space-between */
  gap: 16px;
  height: 44px;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.topbar__right { gap: 16px; }    /* etwas enger: WhatsApp-Pill + Social-Icons brauchen weniger Abstand */
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__item:hover { color: #fff; }
.topbar__item--muted { opacity: 0.85; }
.topbar__item svg { flex-shrink: 0; opacity: 0.8; }

.topbar__item--whatsapp {
  color: #fff;
  background: var(--color-whatsapp);
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.topbar__item--whatsapp svg { opacity: 1; }
.topbar__item--whatsapp:hover {
  color: #fff;
  background: var(--color-whatsapp-dark);
  transform: translateY(-1px);
}

/* Topbar Social-Icons */
.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.2s var(--ease-out),
              background 0.2s var(--ease-out),
              transform 0.2s var(--ease-out);
}
.topbar__social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .topbar__social { display: none; }
}

/* Tablets: Adresse verstecken, damit WhatsApp + Social Platz haben */
@media (max-width: 980px) {
  .topbar__item--muted { display: none; }
}

@media (max-width: 720px) {
  .topbar__right { display: none; }
  .topbar__left { gap: 14px; }
  .topbar__item span { font-size: 0.78rem; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              background 0.3s var(--ease-out);
}
.header.is-stuck {
  border-bottom-color: var(--color-line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;  /* Logo | Nav (zentriert) | CTA | Burger */
  align-items: center;
  column-gap: 24px;
  height: var(--header-h);
}

/* Nav-Mittelteil: zentriert zwischen Logo und CTA */
.header__inner > .nav {
  justify-self: center;
}

/* Desktop-CTA rechts neben der Nav */
.header__cta {
  padding: 12px 22px;
  font-size: 0.92rem;
  flex-shrink: 0;
}

/* Mobile-CTA innerhalb des Nav-Overlays — nur auf Mobile sichtbar */
.nav__cta--mobile { display: none; }

.header__logo {
  display: block;
  flex-shrink: 0;
  /* Kompensiert den Whitespace rechts im Logo-SVG (Hai-Spitze endet vor viewBox-Rand) —
     damit der visuelle Abstand zur Nav links gleich groß wirkt wie rechts zum CTA */
  margin-right: -18px;
}
.header__logo img {
  height: 100px;                /* etwas größer — Untertext "BETONSÄGEN | BETONBOHREN" lesbarer */
  width: auto;
  transition: height 0.3s var(--ease-out);
}
.header.is-stuck .header__logo img {
  height: 72px;
}

@media (max-width: 720px) {
  .header__logo img { height: 56px; }
  .header.is-stuck .header__logo img { height: 48px; }
  /* Whitespace-Kompensation auf Mobile zurücknehmen — sonst klebt das Logo zu sehr am Burger */
  .header__logo { margin-right: 0; }
}

/* Mobile: Header kompakter (124px ist viel zu hoch für Phones)
   und backdrop-filter aus, damit das fixed-positionierte Slide-In Nav
   sich am Viewport orientiert und nicht am Header (Containing-Block-Fix) */
@media (max-width: 980px) {
  :root { --header-h: 80px; }
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ink);
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover {
  color: var(--color-primary);
}
.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}
.nav__link.is-active { color: var(--color-primary); }

.nav__cta { padding: 12px 22px; font-size: 0.92rem; }

.nav__close {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-ink);
  background: var(--color-bg-alt);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease-out);
}
.nav__close:hover { background: var(--color-line); }

/* Nav-Header (Logo + Schließen) — nur auf Mobile sichtbar */
.nav__header { display: none; }
.nav__header-logo { height: 56px; width: auto; display: block; }

/* Nav-Footer (Kontakt-Links) — nur auf Mobile sichtbar */
.nav__footer { display: none; }
.nav__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.nav__contact:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.nav__contact svg {
  flex-shrink: 0;
  color: var(--color-primary);
}
.nav__contact--whatsapp { color: #25D366; }
.nav__contact--whatsapp svg { color: #25D366; }
.nav__contact--whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  color: #128C7E;
}
.nav__contact--whatsapp:hover svg { color: #128C7E; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--color-bg-alt);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}

/* Mittlere Breiten: Nav kompakter, damit alle 8 Einträge + CTA in eine Zeile passen */
@media (min-width: 1101px) and (max-width: 1200px) {
  .nav__list { gap: 2px; }
  .nav__link { padding: 8px 10px; font-size: 0.88rem; }
  .nav__link::after { left: 10px; right: 10px; }
  .nav__cta { padding: 10px 16px; font-size: 0.85rem; }
}

/* iPad Pro Portrait & ähnliche schmale Desktop-Breiten — extra kompakt,
   damit der CTA-Button nicht abgeschnitten wird */
@media (min-width: 981px) and (max-width: 1100px) {
  .header__inner { gap: 16px; }
  .nav { gap: 18px; }
  .nav__list { gap: 0; }
  .nav__link { padding: 6px 7px; font-size: 0.82rem; }
  .nav__link::after { left: 7px; right: 7px; }
  .nav__cta { padding: 8px 14px; font-size: 0.8rem; }
  .header__logo img { height: 64px; }
  .header.is-stuck .header__logo img { height: 52px; }
}

@media (max-width: 980px) {
  .nav__toggle { display: flex; }

  /* Auf Mobile: Desktop-CTA verstecken, Mobile-CTA im Nav-Overlay zeigen */
  .header__cta { display: none; }
  .nav__cta--mobile { display: inline-flex; }

  /* Header-Layout auf Mobile: Flexbox statt Grid, damit Burger zuverlässig
     ganz rechts steht (Grid mit position:fixed Nav-Kind ist tricky) */
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    /* Per default komplett aus dem Layout. JS fügt .is-visible hinzu
       VOR .is-open, damit die Slide-Animation noch funktioniert.
       Das verhindert das „Geister-Panel" das in DevTools rechts neben dem
       Viewport gerendert wird, wenn man nur transform/visibility nutzt. */
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-in-out);
    z-index: 101;
    overflow-y: auto;
    justify-self: stretch;
  }
  .nav.is-visible {
    display: flex;
  }
  .nav.is-open {
    transform: translateX(0);
  }

  /* Header-Leiste oben (Logo + Schließen) */
  .nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .nav__close { display: inline-flex; }

  /* Nav-Links — Top-aligned mit Trennlinien */
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 16px 0;
  }
  .nav__list li + li {
    border-top: 1px solid var(--color-line);
  }
  .nav__link {
    display: block;
    padding: 18px 14px;
    font-size: 1.05rem;
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  .nav__link:hover { background: var(--color-bg-alt); color: var(--color-primary); }

  /* CTA */
  .nav__cta {
    align-self: stretch;
    text-align: center;
    margin: 20px 20px 12px;
    padding: 18px 24px;
    font-size: 1rem;
    border-radius: 12px;
  }

  /* Footer mit Schnellkontakt */
  .nav__footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 16px 32px;
    margin-top: auto;              /* an unteres Ende drücken */
    border-top: 1px solid var(--color-line);
    background: var(--color-bg-alt);
  }
}

body.nav-open { overflow: hidden; }

/* Wenn Menü offen: backdrop-filter am Header deaktivieren,
   damit das fixed-positionierte Mobile-Menü relativ zum Viewport
   (nicht zum Header) positioniert wird und den ganzen Screen abdeckt */
body.nav-open .header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  background: linear-gradient(135deg, #0F1430 0%, #1B2566 60%, #273584 100%);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* SVG-Filter Defs nur für die Filter-Verwendung; visuell unsichtbar */
.goo-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Goo-Blob Container mit SVG-Filter für organisches Verschmelzen */
.hero__blobs {
  position: absolute;
  inset: 0;
  filter: url(#heroGoo) blur(40px);
  pointer-events: none;
  opacity: 0.85;
}

/* Safari: feColorMatrix-Filter sind hier teuer/inkonsistent → Fallback */
@supports (-webkit-touch-callout: none) {
  .hero__blobs {
    filter: blur(56px);
  }
}

.hero-blob {
  --blob-size: clamp(440px, 60vw, 720px);
  position: absolute;
  width: var(--blob-size);
  height: var(--blob-size);
  top: calc(50% - var(--blob-size) / 2);
  left: calc(50% - var(--blob-size) / 2);
  mix-blend-mode: hard-light;
  transform-origin: center center;
  border-radius: 50%;
  pointer-events: none;
}

.hero-blob--1 {
  background: radial-gradient(circle at center, rgba(39, 53, 132, 1) 0, rgba(39, 53, 132, 0) 50%) no-repeat;
  animation: blob-vertical 30s ease infinite;
  opacity: 1;
}
.hero-blob--2 {
  background: radial-gradient(circle at center, rgba(61, 77, 173, 0.85) 0, rgba(61, 77, 173, 0) 50%) no-repeat;
  transform-origin: calc(50% - 360px);
  animation: blob-circle 22s linear infinite reverse;
  opacity: 0.9;
}
.hero-blob--3 {
  background: radial-gradient(circle at center, rgba(80, 110, 210, 0.75) 0, rgba(80, 110, 210, 0) 50%) no-repeat;
  transform-origin: calc(50% + 360px);
  animation: blob-circle 40s linear infinite;
  opacity: 0.85;
}
.hero-blob--4 {
  display: none;
}
.hero-blob--5 {
  background: radial-gradient(circle at center, rgba(27, 37, 102, 0.9) 0, rgba(27, 37, 102, 0) 50%) no-repeat;
  transform-origin: calc(50% - 720px) calc(50% + 720px);
  animation: blob-circle 24s ease infinite;
  opacity: 1;
}

.hero-blob--pointer {
  --blob-size: 100%;
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 50%) no-repeat;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  transform-origin: center;
  will-change: transform;
}

@keyframes blob-vertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}
@keyframes blob-horizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%) translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}
@keyframes blob-circle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile: Goo-Filter ist teuer, Effekt deaktivieren — fällt auf den
   ursprünglichen sauberen Verlauf zurück */
@media (max-width: 760px) {
  .hero__blobs { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none !important; }
}

/* Großes Sägeblatt im Hero (rechts versetzt, dezent transparent) */
.hero__sawblade {
  position: absolute;
  top: 50%;
  left: 76%;
  width: min(105vh, 105vmin, 1140px);
  height: min(105vh, 105vmin, 1140px);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  /* filter: drop-shadow(...) entfernt — verursachte Ruckeln in Firefox,
     da der Schatten bei jeder Drehung neu berechnet werden musste.
     Bei opacity 0.55 war der Schatten ohnehin kaum sichtbar. */
  opacity: 0.55;
}

.hero__sawblade-spin {
  width: 100%;
  height: 100%;
  animation: hero-saw-rotate 18s linear infinite;
  transform-origin: 50% 50%;
  /* GPU-Layer erzwingen — verhindert Ruckeln auf Mobile */
  will-change: transform;
  backface-visibility: hidden;
}

.hero__sawblade-svg {
  width: 100%;
  height: 100%;
  display: block;
  /* SVG fängt Pointer-Events nur auf gemalten (nicht-transparenten)
     Bereichen — also nur auf der Scheibe selbst, nicht auf den Ecken */
  pointer-events: auto;
}

/* Marken-Emblem (Schriftzug + Hai) im Zentrum des Sägeblatts —
   als Geschwister-Element, nicht im rotierenden SVG (bleibt aufrecht und voll opak) */
.hero__brand-emblem {
  position: absolute;
  top: 50%;
  left: 76%;                         /* gleiche Position wie das Sägeblatt */
  transform: translate(-50%, calc(-50% + 38px)) scaleX(-1) rotate(-5deg);
  width: min(41vh, 41vmin, 440px);   /* füllt den Lochkreis, ohne ins Sägeblatt zu ragen */
  height: min(41vh, 41vmin, 440px);
  object-fit: contain;
  display: block;
  z-index: 3;
  pointer-events: none;
  opacity: 0.48;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

@media (max-width: 760px) {
  .hero__brand-emblem {
    top: 28%;                        /* auf Höhe von "Präzision in Beton." */
    left: 78%;                       /* etwas weiter rechts (gleiche Pos. wie Sägeblatt mobile) */
    width: min(28vw, 28vh, 220px);   /* leicht kleiner, passt in den Hub */
    height: min(28vw, 28vh, 220px);
    /* Eigener Transform — leichter Down-Shift, damit der Hai
       optisch mittig im Lochkreis sitzt */
    transform: translate(-50%, calc(-50% + 14px)) scaleX(-1) rotate(-5deg);
  }
}

@keyframes hero-saw-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hover über die Scheibe selbst beschleunigt die Drehung
   (visiblePainted + :has() — nur über dem sichtbaren Disc, nicht über den Ecken) */
@media (hover: hover) {
  .hero__sawblade-spin:has(.hero__sawblade-svg:hover) {
    animation-duration: 3s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sawblade-spin { animation: none; }
}

@media (max-width: 760px) {
  .hero__sawblade {
    width: min(72vw, 72vh);          /* etwas kleiner — passt sauber in den Hero */
    height: min(72vw, 72vh);
    top: 28%;                        /* auf Höhe des Hero-Titels */
    left: 78%;                       /* etwas weiter nach rechts */
    opacity: 0.45;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 820px;             /* breit genug für "Bohren und sägen" auf einer Zeile */
  margin-right: auto;
  margin-left: 0;                /* Basis: kein Versatz — schützt schmale Laptops (≤1499px)
                                    vor seitlichem Abschneiden des Textes */
  position: relative;
  z-index: 5;
}
@media (min-width: 1280px) {
  .hero__content {
    max-width: 880px;
  }
}
/* Auf breiten Desktop-Bildschirmen den Text nach links rücken, damit
   er nicht ans Sägeblatt heranreicht. Werte sind so gewählt, dass bei
   jeder Viewport-Breite mindestens 60 px Sicherheitsabstand zum linken
   Bildschirmrand bleibt. */
@media (min-width: 1500px) {
  .hero__content { margin-left: -60px; }
}
@media (min-width: 1700px) {
  .hero__content { margin-left: -110px; }
}
@media (min-width: 1900px) {
  .hero__content { margin-left: -160px; }
}

/* Hero-Container breiter, damit der Textblock weit links sitzt */
.hero__inner {
  max-width: 1400px;
}

/* Stellt sicher, dass "Bohren und sägen" nicht umbricht */
.hero__title > span:first-of-type {
  white-space: nowrap;
}

.hero__title {
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 26px;
}

/* Kurze Widescreen-Displays (Nest Hub, Smart Displays, kleine Laptops im Splitscreen)
   — kompakter, damit der Hero in den begrenzten Viewport passt */
@media (max-height: 720px) and (min-width: 760px) {
  .hero {
    min-height: 460px;
    padding: 40px 0 60px;
  }
  .hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 14px;
  }
  .hero__lead { font-size: 1rem; line-height: 1.5; margin-bottom: 18px; }
  .hero__claim { margin-bottom: 18px; }
  .hero__claim strong { font-size: 1rem; }
  .hero__claim span { font-size: 0.85rem; }
  .hero__actions { margin-bottom: 18px; }
  .hero__trust { margin-top: 18px; padding: 10px 14px; }
  .eyebrow { font-size: 0.72rem; margin-bottom: 14px; }
}
.hero__title-accent {
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, #C9D2FF 50%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.hero__lead {
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin: 0 0 40px;
}
.hero__lead strong { color: #fff; font-weight: 700; }

/* Hero Claim – Haltungs-Statement unter dem Titel */
.hero__claim {
  margin-top: 1.5rem;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 32rem;
}

.hero__claim strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__claim span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .hero__claim strong { font-size: 1.1rem; }
  .hero__claim span { font-size: 0.9rem; }
}

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

/* Mobile: beide Hero-Buttons gleich breit (volle Container-Breite),
   außerdem weiter nach unten geschoben, damit sie nicht ins Sägeblatt ragen */
@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: clamp(60px, 14vh, 140px);
  }
  .hero__actions .btn {
    width: 100%;
  }
  /* Floating Action Buttons (WhatsApp/Telefon rechts unten) auf Mobile
     ausblenden — die Haupt-CTAs sind direkt im Hero präsenter genug */
  .float-stack {
    display: none !important;
  }
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero__trust-badge {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.hero__trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-size: 0.85rem;
}
.hero__trust-text strong {
  color: #fff;
  font-weight: 700;
}
.hero__trust-text span {
  color: rgba(255, 255, 255, 0.72);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
  transition: border-color 0.2s var(--ease-out);
}
.hero__scroll:hover { border-color: #fff; }
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; min-height: 700px; }
  .hero__shark { right: -200px; opacity: 0.08; }
  .hero__trust { flex-wrap: wrap; }
}

/* Mobile: Scroll-Indikator (Boppel) unter den Trust-Badges ausblenden */
@media (max-width: 760px) {
  .hero__scroll { display: none; }
}

/* ---------- Stats ---------- */
.stats {
  background: #fff;
  position: relative;
  padding: 0;
  margin-top: -60px;
  z-index: 5;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.stat {
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--color-line);
}
.stat__num {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stat__num small {
  font-size: 0.55em;
  color: var(--color-graphite);
  font-weight: 700;
}
.stat__label {
  font-size: 0.92rem;
  color: var(--color-muted);
  font-weight: 500;
}

@media (max-width: 760px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2)::after,
  .stat:nth-child(4)::after { display: none; }
  .stat:nth-child(1)::before,
  .stat:nth-child(2)::before { display: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid var(--color-line);
  }
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.service {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }

.service--featured {
  background: linear-gradient(160deg, #F4F6FF, #fff 60%);
  border-color: rgba(39, 53, 132, 0.18);
}
.service--featured::before { transform: scaleX(1); }

.service__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(39, 53, 132, 0.08);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.service__icon svg { width: 36px; height: 36px; }
.service:hover .service__icon {
  background: var(--color-primary);
  color: #fff;
}

.service__title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service__text {
  color: var(--color-muted);
  margin-bottom: 18px;
}
.service__text strong { color: var(--color-ink); font-weight: 700; }

.service__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
}
.service__list li {
  font-size: 0.92rem;
  color: var(--color-graphite);
  position: relative;
  padding-left: 22px;
}
.service__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* ---------- Feature Tabs (Leistungen) ---------- */
.feature-tabs { margin-top: 8px; }

.feature-tabs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.feature-tabs__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted);
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: color 0.2s var(--ease-out),
              background 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              transform 0.2s var(--ease-out);
}
.feature-tabs__trigger svg { color: currentColor; flex-shrink: 0; }
.feature-tabs__trigger:hover {
  color: var(--color-ink);
  background: var(--color-bg-alt);
}
.feature-tabs__trigger.is-active {
  color: var(--color-primary);
  background: rgba(39, 53, 132, 0.08);
  border-color: rgba(39, 53, 132, 0.18);
}

@media (max-width: 600px) {
  .feature-tabs__list { gap: 6px; }
  .feature-tabs__trigger {
    padding: 12px 14px;
    font-size: 0.85rem;
    flex: 1 1 calc(33% - 6px);
    justify-content: center;
  }
  .feature-tabs__trigger span {
    display: none;
  }
  .feature-tabs__trigger.is-active span {
    display: inline;
  }
}

.feature-tabs__panels {
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--color-line);
}

.feature-tabs__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  animation: tab-fade 0.5s var(--ease-out);
}
.feature-tabs__panel[hidden] { display: none; }

@keyframes tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .feature-tabs__panel { grid-template-columns: 1fr; gap: 32px; }
}

.feature-tabs__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-tabs__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #fff;
  border: 1.5px solid rgba(39, 53, 132, 0.18);
  border-radius: 999px;
}

.feature-tabs__title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  margin: 0;
  line-height: 1.1;
  color: var(--color-ink);
}

.feature-tabs__desc {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.65;
}
.feature-tabs__desc strong { color: var(--color-ink); font-weight: 700; }

.feature-tabs__list-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 0;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
}
/* Variante für ungerade Anzahlen (z. B. 5 Items) — einspaltig, kein orphan */
.feature-tabs__list-items--single {
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .feature-tabs__list-items { grid-template-columns: 1fr; }
}
.feature-tabs__list-items li {
  font-size: 0.95rem;
  color: var(--color-graphite);
  position: relative;
  padding-left: 22px;
}
.feature-tabs__list-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.feature-tabs__btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* Visual side – stylized panels */
.feature-tabs__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(140deg, var(--color-bg-dark) 0%, var(--color-primary-dark) 60%, var(--color-primary) 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-tabs__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 28px);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.feature-tabs__visual--bohren {
  background: linear-gradient(140deg, #0F1430 0%, #1B2566 50%, #273584 100%);
}
.feature-tabs__visual--saegen {
  background: linear-gradient(160deg, #0F1430 0%, #2A1F4F 60%, #3D4DAD 100%);
}
.feature-tabs__visual--spezial {
  background: linear-gradient(140deg, #0F1430 0%, #273584 60%, #C9A227 130%);
}
.feature-tabs__visual--fugen {
  background: linear-gradient(150deg, #0F1430 0%, #2A3550 55%, #4A5775 100%);
}
.feature-tabs__joints {
  position: absolute;
  width: 78%;
  max-width: 380px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.feature-tabs__shark {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 70%;
  filter: brightness(0) invert(1);
  opacity: 0.14;
  pointer-events: none;
}

.feature-tabs__drill {
  position: absolute;
  width: 70%;
  max-width: 360px;
  animation: spin 24s linear infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.feature-tabs__visual--saegen {
  /* Visual-Frame muss überlauf erlauben, damit das große Blatt
     über die Kanten ragen darf */
  overflow: hidden;
}
.feature-tabs__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(1.5px) saturate(0.9);
}
/* Variante: Foto klar und voll sichtbar, kein Blur/Overlay (für Bilder als Hauptmotiv) */
.feature-tabs__photo--clean {
  opacity: 1;
  filter: none;
}
/* Visual-Variante ohne dekorative Overlays/Effekte — nur das Foto */
.feature-tabs__visual--photo-only .feature-tabs__overlay,
.feature-tabs__visual--photo-only .feature-tabs__joints,
.feature-tabs__visual--photo-only .feature-tabs__caption,
.feature-tabs__visual--photo-only .feature-tabs__drill,
.feature-tabs__visual--photo-only .feature-tabs__shark {
  display: none;
}
.feature-tabs__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,48,0.45) 0%, rgba(15,20,48,0.85) 100%),
    radial-gradient(ellipse at 75% 50%, rgba(15,20,48,0) 0%, rgba(15,20,48,0.5) 70%);
  pointer-events: none;
}
/* Im neuen Sägen-Visual (Carousel): kein dunkler Overlay nötig — Bilder sollen klar sichtbar sein */
.feature-tabs__visual--saegen .feature-tabs__overlay {
  display: none;
}

/* ============================================================
   PHOTO CAROUSEL (Bilder-Slider)
   Markup:
     <div class="photo-carousel" data-photo-carousel>
       <div class="photo-carousel__track">
         <div class="photo-carousel__slide is-active"><img ...></div>
         <div class="photo-carousel__slide"><img ...></div>
       </div>
       <button class="photo-carousel__btn photo-carousel__btn--prev">...</button>
       <button class="photo-carousel__btn photo-carousel__btn--next">...</button>
       <div class="photo-carousel__dots">
         <button class="photo-carousel__dot is-active"></button>
       </div>
     </div>
   ============================================================ */
.photo-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #0F1430;
}
.photo-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.photo-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s var(--ease-out), transform 1.2s var(--ease-out);
  pointer-events: none;
}
.photo-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.photo-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prev/Next-Buttons */
.photo-carousel__btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  z-index: 3;
  transform: translateY(-50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.photo-carousel__btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
  color: var(--color-primary);
}
.photo-carousel__btn--prev { left: 14px; }
.photo-carousel__btn--next { right: 14px; }

/* Dots-Indicator */
.photo-carousel__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.photo-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.photo-carousel__dot:hover { background: rgba(255, 255, 255, 0.75); }
.photo-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .photo-carousel__btn { width: 38px; height: 38px; }
  .photo-carousel__btn--prev { left: 10px; }
  .photo-carousel__btn--next { right: 10px; }
}
/* ============================================================
   SAW BLADE COMPONENT (wiederverwendbar)
   ------------------------------------------------------------
   Markup:
     <div class="saw-blade">
       <div class="saw-blade__spin"><svg class="saw-blade__svg">…</svg></div>
     </div>
   Anpassung über CSS-Variablen pro Instanz oder global:
     --saw-size            Außendurchmesser
     --saw-rotation        Drehdauer pro Umdrehung
     --saw-rotation-hover  Drehdauer beim Hover
   ============================================================ */
.saw-blade {
  /* ----- Anpassbare Variablen ----- */
  --saw-size: clamp(220px, 38vw, 380px);  /* responsiver Durchmesser */
  --saw-rotation: 4s;                      /* normale Drehgeschwindigkeit */
  --saw-rotation-hover: 1.4s;              /* Drehgeschwindigkeit beim Hover */

  width: var(--saw-size);
  height: var(--saw-size);
  display: inline-block;
  pointer-events: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55))
          drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.saw-blade__spin {
  width: 100%;
  height: 100%;
  animation: saw-blade-rotate var(--saw-rotation) linear infinite;
  transform-origin: 50% 50%;
  transition: animation-duration 0.4s var(--ease-out);
}

.saw-blade__svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hover: Drehung beschleunigen */
@media (hover: hover) {
  .saw-blade:hover .saw-blade__spin {
    animation-duration: var(--saw-rotation-hover);
  }
}

@keyframes saw-blade-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .saw-blade__spin { animation: none; }
}

/* ===== Platzierung im Sägen-Tab Visual ===== */
.feature-tabs__visual--saegen .saw-blade {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --saw-size: clamp(240px, 70%, 460px);
  --saw-rotation: 5s;
}

.feature-tabs__visual--saegen .feature-tabs__caption {
  z-index: 2;
}

.feature-tabs__crosshair {
  position: absolute;
  width: 78%;
  max-width: 360px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
  animation: crosshair-pulse 4s ease-in-out infinite;
}
@keyframes crosshair-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: 0.85; }
}

.feature-tabs__caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
}
.feature-tabs__caption strong {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 800;
}
.feature-tabs__caption span {
  font-size: 0.8rem;
  color: var(--color-graphite);
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
/* Spotlight-Card: cursor-folgender Glow in Brand-Blau
   --x, --y: Cursor-Position relativ zur Card (per JS gesetzt)
   --xp: 0–1 für Hue-Verschiebung (subtiles Farbspiel) */
.feature {
  --x: 0;
  --y: 0;
  --xp: 0.5;
  --glow-hue-base: 200;          /* Neon-Blau ~200° */
  --glow-hue-spread: 25;         /* Hue-Range, in der der Glow variiert */
  --glow-hue: calc(var(--glow-hue-base) + var(--xp) * var(--glow-hue-spread));
  --glow-size: 360px;

  position: relative;
  padding: 32px 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  isolation: isolate;
}

/* Hintergrund-Spotlight (Lichtfleck unter dem Inhalt) */
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-size) var(--glow-size) at
    calc(var(--x) * 1px) calc(var(--y) * 1px),
    hsl(var(--glow-hue) 100% 60% / 0.38),
    transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  z-index: -1;
}

/* Glow-Border (leuchtende Linie um die Card, dem Cursor folgend) */
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    calc(var(--glow-size) * 0.75) calc(var(--glow-size) * 0.75) at
    calc(var(--x) * 1px) calc(var(--y) * 1px),
    hsl(var(--glow-hue) 100% 70% / 0.95),
    transparent 70%
  );
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
          mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  z-index: 1;
}

.feature:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}
.feature:hover::before,
.feature:hover::after {
  opacity: 1;
}
.feature__num {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-accent-ink);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.feature__title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
.feature__text {
  color: rgba(221, 225, 240, 0.78);
  font-size: 0.97rem;
  margin: 0;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
}

.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-alt);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.about__badge strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about__badge span {
  font-size: 0.88rem;
  color: var(--color-graphite);
}

.about__content { max-width: 60ch; }
.about__text {
  color: var(--color-muted);
  margin-bottom: 1.2em;
}
.about__text strong { color: var(--color-ink); font-weight: 700; }

/* Standalone-Statement zwischen den Absätzen — visuelle Punchline */
.about__statement {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  margin: 0 0 1.2em;
  padding-left: 18px;
  border-left: 3px solid var(--color-primary);
  line-height: 1.3;
}

.about__points {
  display: grid;
  gap: 14px;
  margin: 28px 0 36px;
}
.about__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-ink);
}
.about__points svg {
  flex-shrink: 0;
  background: rgba(31, 171, 74, 0.12);
  color: var(--color-success);
  border-radius: 50%;
  padding: 4px;
  width: 26px;
  height: 26px;
}

/* ---------- Stacking Cards (Sticky-Scroll) ---------- */
.scroll-cards {
  position: relative;
  background: var(--color-bg);
}

.scroll-card {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
}

.scroll-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Pro Karte individuell setzbar via --card-focus, Default = Mitte */
  object-position: var(--card-focus, center center);
  z-index: 0;
}

/* Mobile-only: Diamanttechnik-Karte — Gesicht aus dem Textbereich rausschieben */
@media (max-width: 760px) {
  .scroll-card--diamant .scroll-card__bg {
    object-position: center 85%;
  }
}

/* Mobile + Tablet: Betontrenntechnik-Karte — Personen aus dem Textbereich rausschieben */
@media (max-width: 980px) {
  .scroll-card--innovation .scroll-card__bg {
    object-position: center 15%;
  }
}

.scroll-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--card-tint, rgba(15, 20, 48, 0.6));
  z-index: 1;
}

.scroll-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.scroll-card__tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.10);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.scroll-card__title {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}

/* Mobile-only: kleineren Titel, damit lange Wörter wie "Betontrenntechnik" nicht überlaufen */
@media (max-width: 760px) {
  .scroll-card__title {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

.scroll-card__desc {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 56ch;
  text-wrap: balance;
}

/* Bordered "Aufstapel"-Effekt: leichter Schatten unten an jeder Karte */
.scroll-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  pointer-events: none;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-card { position: relative; }
}

/* ---------- Reviews (Google) ---------- */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
}

.reviews-summary__google {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 760px) {
  .reviews-summary__google { flex-direction: column; gap: 14px; }
}

.g-logo {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.reviews-summary__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-summary__rating strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-summary__stars {
  display: inline-flex;
  gap: 2px;
}
.reviews-summary__stars span,
.review__stars span {
  width: 18px;
  height: 18px;
  background: #FBBC05;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9 7.4.6-5.6 4.9 1.7 7.3L12 17.8 5.6 21.7l1.7-7.3L1.7 9.5l7.4-.6L12 2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9 7.4.6-5.6 4.9 1.7 7.3L12 17.8 5.6 21.7l1.7-7.3L1.7 9.5l7.4-.6L12 2z'/></svg>") center / contain no-repeat;
}
.reviews-summary__count {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.reviews-summary__count strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-ink);
}
.reviews-summary__count span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.reviews-summary__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 760px) {
  .reviews-summary__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

.btn--ghost-dark {
  color: var(--color-ink);
  border-color: var(--color-line);
  background: transparent;
}
.btn--ghost-dark:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  border-color: var(--color-line);
  transform: translateY(-2px);
}

.reviews {
  display: grid;
  gap: 22px;
  /* 4 Bewertungen sollen symmetrisch stehen:
     1 Spalte (mobile) -> 2 Spalten (2x2) -> 4 Spalten (1x4 Reihe).
     3-Spalten-Layout wird übersprungen, damit nie eine Bewertung allein in der letzten Reihe steht. */
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .reviews { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.review {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.review__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.review__meta strong {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--color-ink);
}
.review__meta span {
  font-size: 0.8rem;
  color: var(--color-muted);
}
.review__google { flex-shrink: 0; }

.review__stars {
  display: inline-flex;
  gap: 2px;
}
.review__stars span {
  width: 16px;
  height: 16px;
}

.review__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-graphite);
}

/* ---------- Certs ---------- */
.certs {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .certs { grid-template-columns: 1fr; gap: 36px; text-align: center; }
}

.certs__logos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.certs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 28px 22px 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  width: 230px;
  min-height: 250px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.certs__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  color: inherit;
}
.certs__item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
}
.certs__item-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: 0;
  text-align: center;
  line-height: 1.25;
  margin-top: 4px;
  white-space: nowrap;
}
.certs__item span {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.55;
  margin-top: -6px;
}

/* ---------- CTA Stripe ---------- */
.cta-stripe {
  background: linear-gradient(110deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 40%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 30px);
  pointer-events: none;
}
.cta-stripe__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 940px) {
  .cta-stripe__inner { grid-template-columns: 1fr; }
}
.cta-stripe__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #fff;
  margin-bottom: 8px;
}
.cta-stripe__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin: 0;
  max-width: 60ch;
}
.cta-stripe__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 920px) {
  .contact { grid-template-columns: 1fr; gap: 32px; }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact__card h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.contact__card p {
  color: var(--color-graphite);
  margin: 0;
  line-height: 1.6;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__role {
  font-size: 0.78rem;
  color: var(--color-muted);
  font-weight: 600;
}
.contact__list a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-ink);
}
.contact__list a:hover { color: var(--color-primary); }

.contact__whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.45);
}
.contact__whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(18, 140, 126, 0.55);
}
.contact__whatsapp svg { flex-shrink: 0; }
.contact__whatsapp span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.contact__whatsapp strong { font-size: 1rem; font-weight: 700; }
.contact__whatsapp small {
  font-size: 0.82rem;
  opacity: 0.92;
  font-weight: 400;
}

/* Form */
.contact__form {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-bg-alt);
  color: var(--color-ink);
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(39, 53, 132, 0.1);
}

.form-field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.form-field--check input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-primary);
}
.form-field--check label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-graphite);
  line-height: 1.5;
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

/* Hinweis auf detaillierte Preisanfrage über dem kurzen Kontaktformular */
.form-quote-hint {
  background: linear-gradient(135deg, rgba(39, 53, 132, 0.06), rgba(39, 53, 132, 0.02));
  border: 1px solid rgba(39, 53, 132, 0.18);
  border-left: 3px solid var(--color-primary);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--color-graphite);
  line-height: 1.5;
}
/* Spiegelvariante auf preisanfrage.html: zurück zum kurzen Formular */
.form-quote-hint--reverse {
  border-left-color: var(--color-graphite);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.015));
  border-color: rgba(0, 0, 0, 0.12);
  margin: 0 auto 28px;
  max-width: 760px;
}
.form-quote-hint strong {
  color: var(--color-ink);
  display: block;
  margin-bottom: 4px;
}
.form-quote-hint a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}
.form-quote-hint a:hover {
  text-decoration: underline;
}

/* Sekundärer Hinweis als Helper-Text unter dem Submit-Button */
.form-note__alt {
  display: block;
  margin-top: 6px;
  color: var(--color-graphite);
  font-size: 0.88em;
}
.form-note__alt a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.form-note__alt a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .form-quote-hint {
    padding: 12px 14px;
    font-size: 0.88rem;
    border-radius: 8px;
    margin-bottom: 14px;
  }
  .form-quote-hint a { display: inline-block; margin-top: 2px; }
}

/* ---------- Detailliertes Preisanfrage-Formular ---------- */
.contact__form--detailed {
  max-width: 880px;
  margin: 0 auto;
}
.form-section {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 24px 28px 26px;
  margin: 0;
  background: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-section legend {
  padding: 4px 12px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 760px) {
  .form-row--three { grid-template-columns: 1fr; }
}

.form-field__legend {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 2px;
}
.form-field__hint {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.45;
}

/* Radio-Gruppen als Pill-Buttons */
.form-radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.form-radio-row--wrap { flex-wrap: wrap; }

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1.5px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: border-color 0.18s var(--ease-out), background 0.18s var(--ease-out),
              color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
  user-select: none;
}
.form-radio:hover {
  border-color: var(--color-primary);
}
.form-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--color-line);
  border-radius: 50%;
  margin: 0;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: #fff;
  transition: border-color 0.18s var(--ease-out);
}
.form-radio input[type="radio"]:checked {
  border-color: var(--color-primary);
}
.form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-primary);
}
.form-radio:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(39, 53, 132, 0.5);
}
.form-radio:has(input:checked) input[type="radio"] {
  border-color: #fff;
  background: transparent;
}
.form-radio:has(input:checked) input[type="radio"]::after {
  background: #fff;
}

/* File-Upload */
.form-field input[type="file"] {
  padding: 12px 14px;
  font-size: 0.92rem;
  cursor: pointer;
}
.form-field input[type="file"]::file-selector-button {
  font: inherit;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 8px;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.18s var(--ease-out);
}
.form-field input[type="file"]::file-selector-button:hover {
  background: var(--color-primary-dark);
}

/* Mobile-Anpassungen Detailliertes Preisanfrage-Formular */
@media (max-width: 600px) {
  .contact__form--detailed { padding: 20px 14px; }
  .form-section {
    padding: 18px 16px 20px;        /* schmaleres Innen-Padding */
  }
  .form-section legend {
    padding: 4px 10px;
    font-size: 0.72rem;
  }
  /* Alle Radio-Reihen dürfen wrappen, damit nichts abgeschnitten wird */
  .form-radio-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .form-radio {
    padding: 9px 13px;
    font-size: 0.88rem;
    flex: 0 1 auto;
  }
}

/* Map */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  height: 400px;
  box-shadow: var(--shadow-sm);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-dark);
  color: #B5BACE;
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr 2.2fr;
  gap: 36px;
  padding-bottom: 56px;
}
.footer__col--contact .footer__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.footer__col--contact .footer__contact-grid address {
  font-style: normal;
  margin: 0;
}
/* E-Mail-Adressen im Footer nicht am Bindestrich umbrechen */
.footer__col--contact a[href^="mailto:"] {
  white-space: nowrap;
}
@media (max-width: 1180px) {
  /* Auf mittleren Breiten: Brand oben links breit, dann 3 Listen + Kontakt darunter */
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col--contact { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col--contact { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__col--contact .footer__contact-grid { grid-template-columns: 1fr; gap: 18px; }
}

.footer__col h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: #B5BACE;
  font-size: 0.95rem;
}
.footer__col a:hover { color: #fff; }
.footer__col p { font-size: 0.95rem; line-height: 1.6; }

.footer__col--brand p { max-width: 38ch; }

.footer__social {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 22px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #B5BACE;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease-out),
              background 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              transform 0.2s var(--ease-out);
}
.footer__social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px);
}
.footer__social-link svg { flex-shrink: 0; }

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a { color: #B5BACE; }
.footer__legal a:hover { color: #fff; }

/* ---------- Floating contact stack ---------- */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0;
  width: 60px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.35s var(--ease-out), background 0.2s var(--ease-out),
              transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  position: relative;
}
.float-btn svg {
  flex-shrink: 0;
  width: 60px;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  transition: width 0.35s var(--ease-out);
}
.float-btn__label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-right: 22px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s var(--ease-out) 0.1s, transform 0.25s var(--ease-out) 0.1s;
}

@media (hover: hover) {
  .float-btn:hover {
    width: 260px;
  }
  .float-btn:hover svg {
    width: 56px;
    margin-left: 6px;
    margin-right: 0;
  }
  .float-btn:hover .float-btn__label {
    opacity: 1;
    transform: translateX(0);
  }
}

.float-btn--whatsapp {
  background: var(--color-whatsapp);
  box-shadow: 0 14px 30px -6px rgba(37, 211, 102, 0.55);
  animation: pulse-wa 2.6s ease-out infinite;
}
.float-btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
}

.float-btn--call {
  background: var(--color-primary);
  box-shadow: 0 12px 28px -6px rgba(39, 53, 132, 0.55);
  animation: pulse-call 2.6s ease-out infinite;
  animation-delay: 1.3s;          /* versetzt zur WhatsApp-Pulse, damit's nicht synchron blinkt */
}
.float-btn--call:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

@keyframes pulse-wa {
  0%   { box-shadow: 0 14px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 14px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 30px -6px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
  0%   { box-shadow: 0 12px 28px -6px rgba(39, 53, 132, 0.55), 0 0 0 0 rgba(39, 53, 132, 0.55); }
  70%  { box-shadow: 0 12px 28px -6px rgba(39, 53, 132, 0.55), 0 0 0 18px rgba(39, 53, 132, 0); }
  100% { box-shadow: 0 12px 28px -6px rgba(39, 53, 132, 0.55), 0 0 0 0 rgba(39, 53, 132, 0); }
}

@media (max-width: 720px) {
  .float-stack { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 56px; height: 56px; }
  .float-btn svg { width: 56px; }
  .float-btn__label { display: none; }
}

/* ---------- Downloads ---------- */
.downloads {
  display: grid;
  /* Mobile: 1 Spalte */
  grid-template-columns: 1fr;
  gap: 18px;
}
/* Tablet & schmale Desktops: 2×2-Raster */
@media (min-width: 600px) {
  .downloads { grid-template-columns: repeat(2, 1fr); }
}
/* Breite Desktops: alle vier in einer Reihe */
@media (min-width: 1200px) {
  .downloads { grid-template-columns: repeat(4, 1fr); }
}

.download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 22px 18px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-ink);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--color-ink);
}
.download-card:hover::before { transform: scaleY(1); }

.download-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(39, 53, 132, 0.08);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.download-card:hover .download-card__icon {
  background: var(--color-primary);
  color: #fff;
}

.download-card__body {
  flex: 1;
  min-width: 0;
}
.download-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(39, 53, 132, 0.08);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.download-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}
.download-card__meta {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

.download-card__arrow {
  flex-shrink: 0;
  color: var(--color-muted);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.download-card:hover .download-card__arrow {
  color: var(--color-primary);
  transform: translateY(2px);
}

/* ---------- Text Effect (per char / word) ---------- */
[data-text-effect] {
  opacity: 0;
  transition: opacity 0.05s linear;
}
[data-text-effect].te-ready {
  opacity: 1;
}

.te-seg {
  display: inline-block;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.65s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.te-seg--blur {
  animation-name: te-blur-in;
}
@keyframes te-blur-in {
  from { opacity: 0; filter: blur(14px); transform: translateY(8px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}

.te-seg--fade {
  animation-name: te-fade-in;
}
@keyframes te-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.te-seg--slide {
  animation-name: te-slide-in;
}
@keyframes te-slide-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.te-seg--scale {
  animation-name: te-scale-in;
  transform-origin: center;
}
@keyframes te-scale-in {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* Block-fade für Element, das als Ganzes erscheinen soll
   (z. B. der mit shimmer-Gradient versehene Hero-Akzent) */
.te-fade-in {
  opacity: 0;
  animation: te-fade-in 0.8s var(--ease-out) forwards;
}

@media (prefers-reduced-motion: reduce) {
  [data-text-effect],
  [data-text-effect].te-ready,
  .te-seg,
  .te-fade-in {
    opacity: 1 !important;
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  color: var(--color-primary);
}
.legal p, .legal li {
  color: var(--color-graphite);
  line-height: 1.75;
}
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 1em; }
.legal a { color: var(--color-primary); text-decoration: underline; }
.legal a:hover { color: var(--color-primary-dark); }

/* ============ FAQ ============ */
.faq {
  max-width: 880px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(39, 53, 132, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq__item[open] {
  border-color: rgba(39, 53, 132, 0.35);
  box-shadow: 0 6px 24px rgba(15, 20, 48, 0.08);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0F1430;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: #273584;
}

.faq__icon {
  flex-shrink: 0;
  color: #273584;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  color: #4a4e60;
  line-height: 1.65;
  font-size: 0.98rem;
}

.faq__answer p {
  margin: 0;
}

.faq__cta {
  text-align: center;
  margin-top: 2.5rem;
  color: #4a4e60;
  font-size: 0.95rem;
}

.faq__cta a {
  color: #273584;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__cta a:hover {
  color: #0F1430;
}

@media (max-width: 640px) {
  .faq__question {
    font-size: 0.98rem;
    padding: 1rem 1.1rem;
  }
  .faq__answer {
    padding: 0 1.1rem 1.2rem;
    font-size: 0.94rem;
  }
}

/* ============ HERO TRUST BAR (3 symmetrische Spalten) ============ */
.hero__trust {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 2.5rem;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 720px;
}

.hero__trust-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 14px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
}
.hero__trust-item + .hero__trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
}

a.hero__trust-item:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero__trust-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.hero__trust-icon svg,
.hero__trust-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}
/* Bilder mit eigenem Whitespace optisch hochskalieren —
   damit Q-Zeichen und Fachverband visuell so groß wirken wie das Google-G */
.hero__trust-icon img[src*="qualitaetszeichen"] {
  transform: scale(1.95);
}
.hero__trust-icon img[src*="fachverband"] {
  transform: scale(1.8);
}

.hero__trust-content {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.hero__trust-content strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__trust-content span {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mittlere Mobile-Breiten (Foldables, große Phones, kleine Tablets):
   Trust-Badges horizontal in einer kompakten Reihe — spart vertikalen Platz */
@media (min-width: 481px) and (max-width: 760px) {
  .hero__trust {
    flex-wrap: nowrap;
    padding: 12px 10px;
    margin-top: 1.5rem;
    gap: 0;
  }
  .hero__trust-item {
    flex: 1 1 0;
    padding: 4px 8px;
    justify-content: center;
    gap: 8px;
    min-width: 0;
  }
  .hero__trust-item + .hero__trust-item::before {
    left: 0;
    right: auto;
    top: 50%;
    bottom: auto;
    width: 1px;
    height: 34px;
    transform: translateY(-50%);
  }
  .hero__trust-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
  .hero__trust-icon svg,
  .hero__trust-icon img { width: 22px; height: 22px; }
  .hero__trust-content strong { font-size: 0.78rem; }
  .hero__trust-content span { font-size: 0.68rem; }
}

/* Schmale Phones: vertikal gestapelt, alle Icons linksbündig untereinander */
@media (max-width: 480px) {
  .hero__trust {
    flex-wrap: wrap;
    padding: 6px 18px;
    margin-top: 2rem;
  }
  .hero__trust-item {
    flex: 1 1 100%;
    padding: 12px 0;
    justify-content: flex-start;
    gap: 14px;
  }
  .hero__trust-item:first-child,
  .hero__trust-item:last-child { padding: 12px 0; }
  .hero__trust-item + .hero__trust-item::before {
    left: 0; right: 0; top: 0; bottom: auto;
    width: auto; height: 1px;
    transform: none;
  }
  .hero__trust-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
  .hero__trust-icon svg,
  .hero__trust-icon img { width: 28px; height: 28px; }
  .hero__trust-content {
    flex: 1 1 auto;
    min-width: 0;
  }
}


/* Touch-Geräte: nativer Cursor wieder an, Hai-Cursor versteckt */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .hai-cursor { display: none; }
}

/* ============================================================
   Landingpages — Nav-Dropdown für "Leistungen" und "Standorte"
   ============================================================ */
.nav__list .has-submenu {
  position: relative;
}

.nav__list .has-submenu > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__list .has-submenu > .nav__link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
  transition: transform 0.2s var(--ease-out);
}

.nav__list .has-submenu:hover > .nav__link::after,
.nav__list .has-submenu:focus-within > .nav__link::after {
  transform: rotate(180deg);
}

/* Desktop-Dropdown */
.nav__submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0s linear 0.2s;
  z-index: 100;
}

.nav__list .has-submenu:hover > .nav__submenu,
.nav__list .has-submenu:focus-within > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0s;
}

.nav__submenu li {
  margin: 0;
}

.nav__submenu a {
  display: block;
  padding: 9px 18px;
  color: var(--color-ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}

.nav__submenu a:hover,
.nav__submenu a:focus {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Mobile: Untermenüs werden im Burger-Menü ausgeklappt dargestellt */
@media (max-width: 980px) {
  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 12px 16px;
    transition: none;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav__submenu a {
    display: block;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-muted);
    border-left: 2px solid var(--color-line);
    text-decoration: none;
  }
  .nav__submenu a:hover,
  .nav__submenu a:focus {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
  }
  .nav__list .has-submenu > .nav__link::after {
    display: none;
  }
}

/* ============================================================
   ULTRAWIDE / GROSSE MONITORE (z. B. 49" 5120×1440)
   ------------------------------------------------------------
   Strategie: "elegant gerahmt". Der Inhalt wächst auf großen
   Bildschirmen in drei Stufen mit, bleibt zentriert und wird bei
   1700px gedeckelt — so wirkt die Seite gefüllt, ohne dass die
   Textzeilen unlesbar lang werden. Die Stufen sind auf die drei
   Split-Ansichten des 49-Zöllers abgestimmt:

     • 3 geteilt  (~1707px Fenster)  → ab 1600px → Container 1340px
     • 2 geteilt  (~2560px Fenster)  → ab 2200px → Container 1520px
     • ganzer Schirm (5120px)        → ab 3200px → Container 1700px

   Profitiert auch normalen großen Desktops (1920/2560px) mit mehr
   Breite statt der schmalen 1200px-Insel.
   ============================================================ */

/* Stufe 1 — 3-geteilter Ultrawide & normale große Desktops */
@media (min-width: 1600px) {
  :root { --container: 1340px; }
  .hero__inner { max-width: 1500px; }
}

/* Stufe 2 — 2-geteilter Ultrawide */
@media (min-width: 2200px) {
  :root { --container: 1520px; }
  .hero__inner { max-width: 1640px; }
}

/* Stufe 3 — ganzer 49-Zoll-Monitor: bewusste Maximalbreite, zentriert */
@media (min-width: 3200px) {
  :root { --container: 1700px; }
  .hero__inner { max-width: 1800px; }
}

