/* ─────────────────────────────────────────────────────────────
   Erfolgskonzept · Brand-Site
   Static HTML/CSS/JS · No build · Premium editorial light
   ───────────────────────────────────────────────────────────── */

/* TOKENS */
:root {
  --ink: #111316;
  --ink-soft: #2A2D33;
  --bg: #F0F2F4;
  --paper: #FFFFFF;
  /* primary now = ink — kept "petrol" var-name for compat, no more blue */
  --petrol: #111316;
  --petrol-soft: #2A2D33;
  --forest: #2A6F4D;        /* used very sparingly */
  --forest-soft: #3E8F66;
  --forest-bright: #74d949;  /* Erfolgskonzept-Logo-Grün */
  --peach: #f97b17;          /* Brand Orange */
  --cream: #E4E8EB;
  --border: #D2D7DC;
  --muted: #6B6B6B;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);

  --display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip statt hidden: verhindert horizontalen Overflow OHNE einen Scroll-Container
     zu erzeugen — sonst bricht position:sticky (Process-Karten) auf iOS Safari */
  overflow-x: clip;
  /* native cursor */
}
@media (max-width: 900px) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* SELECTION */
::selection { background: var(--petrol); color: var(--bg); }

/* TYPOGRAPHY */
.h-display {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.h-display--xl { font-size: clamp(3rem, 7vw, 6rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest-bright); display: inline-block;
  box-shadow: 0 0 0 4px rgba(116,217,73,0.16);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}
.lead--light { color: rgba(255,255,255,0.8); }
.lead strong { color: var(--ink); font-weight: 600; }

/* (custom cursor removed — native cursor) */

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  min-height: 44px;
  box-sizing: border-box;
  font-weight: 500; font-size: 15px;
  border-radius: 999px;
  transition: transform .35s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  /* native cursor */
}
.btn--xl { padding: 18px 28px; font-size: 16px; }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-light {
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn--peach {
  background: var(--peach);
  color: var(--ink);
}
.btn--peach:hover { background: #e06910; transform: translateY(-1px); }
.btn--forest {
  background: var(--forest-bright);
  color: var(--ink);
}
.btn--forest:hover { background: #50b860; transform: translateY(-1px); }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  z-index: 50;
  gap: 24px;
  transition: padding .35s var(--ease), background-color .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-top: 12px; padding-bottom: 12px;
  background: rgba(240,242,244,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
/* Subpages haben den dunklen Fragebogen direkt oben als Hero →
   Nav durchgehend mit hellem Hintergrund, damit Links & Logo lesbar bleiben */
body.is-subpage .site-header {
  background: rgba(240,242,244,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.site-header__logo {
  display: inline-flex; align-items: center;
  transition: transform .35s var(--ease);
}
.site-header__logo img {
  height: 30px; width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .site-header__logo img { height: 26px; }

.site-header__nav {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
  margin-left: auto;
}
.site-header__nav a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.site-header__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right center;
  transition: transform .4s var(--ease);
}
.site-header__nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

/* Mobile Burger */
.site-header__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  transition: background-color .3s var(--ease);
}
.site-header__burger span {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -4px);
  transition: transform .35s var(--ease), width .35s var(--ease);
}
.site-header__burger span:last-child {
  transform: translate(-50%, 4px);
  width: 12px;
}
.site-header__burger.is-open span:first-child { transform: translate(-50%, 0) rotate(45deg); }
.site-header__burger.is-open span:last-child  { transform: translate(-50%, 0) rotate(-45deg); width: 18px; }

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--ink); color: var(--bg);
  z-index: 40;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-quart);
  pointer-events: none;
}
.mobile-nav.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav__list {
  display: flex; flex-direction: column;
  gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mobile-nav__list > a {
  color: var(--bg);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: opacity .25s var(--ease), padding-left .35s var(--ease);
}
.mobile-nav__list > a:hover { padding-left: 12px; }
.mobile-nav__cta {
  margin-top: 28px;
  display: inline-flex !important;
  align-items: center; gap: 12px;
  background: var(--peach);
  color: var(--ink) !important;
  padding: 18px 26px !important;
  border-radius: 999px;
  font-size: 1.1rem !important;
  font-family: var(--body) !important;
  font-weight: 500;
  width: fit-content;
  border-bottom: 0 !important;
  letter-spacing: 0;
}
.mobile-nav__contact {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0;
}
.mobile-nav__contact a { color: rgba(255,255,255,0.85); }
.mobile-nav__contact a:hover { color: var(--bg); }

body.nav-open, body.modal-open { overflow: hidden; }

/* Inline-Text-Link (z.B. "Formular" → Fragebogen) */
.inline-link {
  color: var(--peach);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  transition: opacity .2s var(--ease);
}
.inline-link:hover { opacity: 0.72; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "eyebrow eyebrow"
    "h1      stat"
    "lead    stat"
    "ctas    stat"
    "trust   stat";
  gap: 28px 60px;
  align-items: start;
}
.hero__eyebrow {
  grid-area: eyebrow;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  width: fit-content;
  max-width: 100%;
}
/* Mobile: Chip kleiner + einzeilig (sonst zu breit / 2 Zeilen) */
@media (max-width: 560px) {
  .hero__eyebrow {
    font-size: clamp(8px, 2.3vw, 12px);
    letter-spacing: 0.02em;
    gap: 7px;
    padding: 7px 12px;
    white-space: nowrap;
  }
}
.hero__h1 {
  grid-area: h1;
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  font-size: clamp(3.2rem, 8.4vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex; flex-direction: column;
}
.hero__h1 .line { display: block; overflow: hidden; }
.hero__h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.hero__h1 em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.08em;
  background: var(--peach);
  transform: scaleX(0); transform-origin: left;
  animation: underline-grow 1.4s var(--ease) 1.6s forwards;
}
@keyframes underline-grow { to { transform: scaleX(1); } }

.hero__lead { grid-area: lead; font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.5; }
.hero__lead strong { color: var(--ink); font-weight: 600; }

.hero__ctas {
  grid-area: ctas;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
  margin-top: -4px;
}

/* hero trust bar (replaces CTAs + chips) */
.hero__trust {
  grid-area: trust;
  margin-top: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.hero__trust-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 36px;
  /* start statt end: Zahlen bleiben auf einer Ebene, auch wenn Labels
     mobil unterschiedlich umbrechen (1- vs. 2-zeilig) */
  align-items: start;
}
.hero__trust-stats .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.hero__trust-stats .lbl {
  font-size: 12px; color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.hero__trust-cert {
  height: 60px; width: auto;
  opacity: 0.9;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .hero__trust { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
  .hero__trust-stats { gap: clamp(22px, 7vw, 36px); justify-content: center; }
  /* Badge zentriert unter den Stats statt "verloren" links */
  .hero__trust-cert { justify-self: center; margin-top: 4px; }
}

/* ── AVGS Calculator (replaces hero stat card) ───────────────────── */
.calc {
  grid-area: stat;
  align-self: stretch;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
  box-shadow:
    0 32px 80px -40px rgba(17,19,22,0.22),
    0 1px 0 0 rgba(255,255,255,0.6) inset;
  position: relative;
  isolation: isolate;
}
.calc__head { display: flex; flex-direction: column; gap: 8px; }
.calc__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.calc__eyebrow .dot { width: 6px; height: 6px; }
.calc__h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.9vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.calc__h em {
  font-style: italic;
  font-weight: 500;
}
.calc__sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* range input */
.calc__field { display: flex; flex-direction: column; gap: 10px; }
.calc__field > label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.calc__field-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
}
.calc__field-row output {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 5.5ch; text-align: right;
}
.calc__field-hint {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}
.calc input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 36px;
  background: transparent;
  cursor: pointer;
  margin: 0;
}
.calc input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(to right,
    var(--ink) 0%, var(--ink) var(--p,30%),
    var(--border) var(--p,30%), var(--border) 100%);
  border-radius: 999px;
}
.calc input[type="range"]::-moz-range-track {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
}
.calc input[type="range"]::-moz-range-progress {
  height: 4px;
  background: var(--ink);
  border-radius: 999px;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--paper);
  margin-top: -9px;
  box-shadow: 0 2px 10px rgba(17,19,22,0.25);
  transition: transform .25s var(--ease);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 2px 10px rgba(17,19,22,0.25);
}
.calc input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.12); }
.calc input[type="range"]:focus { outline: none; }
.calc input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(17,19,22,0.18);
}

/* result rows */
.calc__result {
  display: flex; flex-direction: column;
  border-top: 1px dashed var(--border);
  padding-top: 18px;
  gap: 12px;
}
.calc__row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 16px;
  font-size: 13px; color: var(--ink-soft);
  line-height: 1.35;
}
.calc__row small { color: var(--muted); font-size: 11px; }
.calc__row strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.calc__row--total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
  align-items: center;
}
.calc__row--total span {
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.calc__row--total strong {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
}

.calc__cta {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.calc__disclaimer {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "h1"
      "lead"
      "ctas"
      "trust"
      "stat";
  }
}

/* HERO BG */
.hero__bg {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
/* Drifting Orbs — soft, slow, calm cinematic motion (desktop + mobile) */
.hero__orbs {
  position: absolute; inset: -8%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.hero__orb--1 {
  /* Peach */
  width: 620px; height: 620px;
  top: -5%; left: -8%;
  background: rgba(232,155,90,0.32);
  animation: orb-1 22s ease-in-out infinite alternate;
}
.hero__orb--2 {
  /* Forest Green */
  width: 720px; height: 720px;
  top: 25%; left: 58%;
  background: rgba(42,111,77,0.22);
  animation: orb-2 28s ease-in-out infinite alternate;
}
.hero__orb--3 {
  /* Peach soft */
  width: 480px; height: 480px;
  top: 70%; left: 8%;
  background: rgba(232,155,90,0.22);
  animation: orb-3 20s ease-in-out infinite alternate;
}
.hero__orb--4 {
  /* Ink soft for grounding */
  width: 420px; height: 420px;
  top: -10%; left: 72%;
  background: rgba(17,19,22,0.10);
  animation: orb-4 26s ease-in-out infinite alternate;
}

@keyframes orb-1 {
  0%   { transform: translate3d(0,    0, 0)    scale(1);    }
  100% { transform: translate3d(55%,  35%, 0)  scale(1.25); }
}
@keyframes orb-2 {
  0%   { transform: translate3d(0,    0, 0)    scale(1);    }
  100% { transform: translate3d(-45%, -25%, 0) scale(1.30); }
}
@keyframes orb-3 {
  0%   { transform: translate3d(0,    0, 0)    scale(1);    }
  100% { transform: translate3d(60%,  -45%, 0) scale(1.10); }
}
@keyframes orb-4 {
  0%   { transform: translate3d(0,    0, 0)    scale(1);    }
  100% { transform: translate3d(-50%, 40%, 0)  scale(0.85); }
}

/* mobile: lighter blur for performance, smaller orbs */
@media (max-width: 768px) {
  .hero__orb { filter: blur(50px); }
  .hero__orb--1 { width: 380px; height: 380px; }
  .hero__orb--2 { width: 460px; height: 460px; }
  .hero__orb--3 { width: 320px; height: 320px; }
  .hero__orb--4 { width: 280px; height: 280px; }
}

.hero__noise {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.14;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 3;
}

/* Puzzle-Fineline Dekoration im Hero */
.hero__puzzle-deco {
  position: absolute;
  bottom: -6%;
  left: -3%;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  fill: none;
  stroke: var(--forest-bright);
  stroke-width: 9;
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease, fill 0.5s ease;
}
.hero:hover .hero__puzzle-deco {
  opacity: 0.28;
  fill: var(--forest-bright);
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 80px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, -60px); }
}
/* hero__grid-lines removed — replaced by SVG noise + soft lines */

/* ─── STICKY MOBILE CTA ─────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 49;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 22px;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.45);
  transform: translateY(120%);
  transition: transform .45s var(--ease), background-color .25s var(--ease);
}
.sticky-cta:hover { background: var(--ink-soft); }
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta.is-hidden {
  transform: translateY(120%);
}
/* offenes Menü / Modal: sticky-CTA wegschieben, sonst scheint ein 2. Button durch */
body.nav-open .sticky-cta,
body.modal-open .sticky-cta { transform: translateY(120%); pointer-events: none; }
@media (max-width: 768px) {
  .sticky-cta { display: inline-flex; }
}

/* ─── SECTION TRANSITIONS — sanfte Bridges zwischen Sections ── */
/* Cinematic-Übergänge zwischen Light- und Dark-Sections */
.mission { position: relative; }
.mission::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 5;
}
.lead-form { position: relative; }
.lead-form::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
  z-index: 1;
}

/* AVGS section: bridge to mission (cream → ink) */
.avgs { position: relative; }
.avgs::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(17,19,22,0.04));
  pointer-events: none;
}

/* ─── READING PROGRESS BAR ──────────────────────────────────── */
/* Mobile: oben — Desktop: unten */
.read-progress {
  position: fixed; left: 0; right: 0;
  top: 0;
  height: 2px;
  background: rgba(17,19,22,0.06);
  z-index: 100;
  pointer-events: none;
}
@media (min-width: 768px) {
  .read-progress {
    top: auto;
    bottom: 0;
    height: 5px;
  }
}
.read-progress span {
  display: block;
  height: 100%; width: 0%;
  background: linear-gradient(to right, var(--ink), var(--peach), var(--forest-bright));
  transition: width 0.08s linear;
  box-shadow: 0 0 6px rgba(232,155,90,0.35);
}

/* ─── AVGS EXPLAINER ────────────────────────────────────────── */
.avgs {
  padding: 140px var(--gutter);
  background: var(--cream);
  position: relative;
}
.avgs__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.avgs__header {
  max-width: var(--max);
  margin-bottom: 80px;
}
.avgs__header h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  white-space: nowrap;
  max-width: none;
}
.avgs__header .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  max-width: 62ch;
}
@media (max-width: 768px) {
  .avgs__header h2 {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
}

/* Steps row */
.avgs__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.avgs-step {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
}
.avgs-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -36px rgba(17,19,22,0.22);
}
.avgs-step.avgs-step--mid {
  background: var(--peach);
  color: var(--ink);
  border-color: var(--peach);
}
.avgs-step.avgs-step--mid h3   { color: var(--ink); }
.avgs-step.avgs-step--mid p    { color: rgba(17,19,22,0.82); }
.avgs-step.avgs-step--mid .avgs-step__num   { color: var(--ink); }
.avgs-step.avgs-step--mid .avgs-step__label { color: rgba(17,19,22,0.75); }
.avgs-step.avgs-step--mid .avgs-step__hint {
  color: rgba(17,19,22,0.65);
  border-color: rgba(17,19,22,0.18);
}

.avgs-step.avgs-step--final {
  background: var(--forest-bright);
  color: var(--ink);
  border-color: var(--forest-bright);
}
.avgs-step.avgs-step--final h3   { color: var(--ink); }
.avgs-step.avgs-step--final p    { color: rgba(17,19,22,0.85); }
.avgs-step.avgs-step--final .avgs-step__num   { color: var(--ink); }
.avgs-step.avgs-step--final .avgs-step__label { color: rgba(17,19,22,0.75); }
.avgs-step.avgs-step--final .avgs-step__hint {
  color: rgba(17,19,22,0.65);
  border-color: rgba(17,19,22,0.18);
}

.avgs-step__head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 22px;
}
.avgs-step__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.avgs-step__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.avgs-step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  max-width: 18ch;
}
.avgs-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.avgs-step__hint {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

/* Decorative connector — soft horizontal flow line */
.avgs__flow {
  margin: 24px 0 64px;
  height: 32px;
  color: var(--ink);
  opacity: 0.4;
  display: none; /* re-enable if wanted */
}

/* Voraussetzungen Block */
.avgs__check {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.avgs__check-head h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 14px 0 18px;
}
.avgs__check-head h3 em {
  font-style: italic;
  color: var(--ink);
}
.avgs__check-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.avgs__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.avgs__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.avgs__list li:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.avgs__list-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--forest-bright);
  color: var(--ink);
}
.avgs__list-icon svg { width: 18px; height: 18px; }
.avgs__list li > div {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.avgs__list strong {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.avgs__list span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.avgs__cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .avgs__steps { grid-template-columns: 1fr; gap: 18px; }
  .avgs__check { grid-template-columns: 1fr; gap: 40px; }
  .avgs__list { grid-template-columns: 1fr; }
}

/* MARQUEE */
.marquee {
  padding: clamp(34px, 7vw, 60px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(18px, 4vw, 30px);
}
.marquee__track { width: 100%; overflow: hidden; }
.marquee__row {
  display: flex; align-items: center;
  width: max-content;
  animation: scroll-x 40s linear infinite;
  /* Safari iOS: eigenen Compositing-Layer erzwingen, sonst verschwinden
     die Logos bei translateX-Animation in verschachteltem overflow:hidden */
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
/* FESTER margin (kein vw!) — vw zappelt auf iOS Safari beim Toolbar-Toggle und
   lässt die -50%-Animation ruckeln statt sauber durchzulaufen */
.marquee__row img { margin-right: 64px; }
@media (max-width: 880px) { .marquee__row img { margin-right: 22px; } }
.marquee__row img {
  height: 56px; width: auto;
  opacity: 0.72;
  /* KEIN filter: grayscale/contrast auf 36 bewegten Bildern killt die GPU-
     Beschleunigung auf iOS und lässt die Marquee ruckeln. Logos laufen jetzt smooth. */
  transition: opacity .3s var(--ease);
  flex-shrink: 0;
}
.marquee__row img:hover { opacity: 1; filter: none; }
/* aiwon-Logo: niedrigere Höhe damit es zum Größen-Rhythmus passt */
.marquee__row img.partner-logo--aiwon {
  height: 30px;
}
/* Logo-Größen-Feintuning (visueller Ausgleich) */
.marquee__row img[src*="iek"] { height: 40px; }
.marquee__row img[src*="karriere-am-nordpark"] { height: 48px; }
.marquee__row img[src*="the-media-factory"] { height: 62px; }
.marquee__row img[src*="deutsche-rentenversicherung"] { height: 62px; }
@keyframes scroll-x {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

/* DUAL */
.dual {
  padding: 140px var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.dual__intro { max-width: 780px; margin-bottom: 80px; }
.dual__intro .lead { margin-top: 24px; }
.dual__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) { .dual__cards { grid-template-columns: 1fr; } }

.path-card {
  position: relative;
  padding: 48px 48px 48px 48px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  min-height: 540px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 880px) {
  .path-card { padding-top: 170px; } /* Platz für Badge oben rechts, ohne Content zu kürzen */
}
/* Content layer above bg decorations — explicit children only */
.path-card > .path-card__num,
.path-card > h3,
.path-card > p,
.path-card > ul,
.path-card > .path-card__cta {
  position: relative;
  z-index: 2;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -40px rgba(17,19,22,0.22);
}

/* Top stripe (animated draw) */
.path-card__stripe {
  position: absolute; left: 0; top: 0;
  height: 3px; width: 100%;
  background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.0s var(--ease) .15s;
  z-index: 3;
}
.path-card.is-in .path-card__stripe { transform: scaleX(1); }
.path-card--green  { color: var(--forest-bright); }
.path-card--petrol { color: var(--peach); }
.path-card--green .path-card__stripe  { background: var(--forest-bright); }
.path-card--petrol .path-card__stripe { background: var(--peach); }

/* Marquee strip — top of card, left of the rotating badge */
.path-card__marquee {
  position: absolute;
  left: 48px;
  right: 156px;            /* clear of the 116px badge + 24px right + ~16px gap */
  top: 52px;               /* roughly vertically centered with badge */
  height: clamp(46px, 5vw, 64px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  display: flex; align-items: center;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
}
.path-card__marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: currentColor;
  opacity: 0.65;
  animation: marquee-scroll 16s linear infinite;
  transition: opacity .4s var(--ease), animation-duration .4s var(--ease);
  will-change: transform;
}
.path-card__marquee-track--reverse {
  animation: marquee-scroll-rev 16s linear infinite;
}
.path-card__marquee-track > span:nth-child(even) {
  font-style: normal;
  font-weight: 400;
  font-size: 0.55em;
  opacity: 0.5;
}
.path-card:hover .path-card__marquee-track {
  opacity: 1;
  animation-duration: 9s;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}
@keyframes marquee-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0);    }
}

/* Mobile: Deko-Overlays (Marquee-Text + rotierender Badge) ausblenden —
   sie überlappen sonst Headline/Fließtext. Auf Mobile zählt Lesbarkeit. */
@media (max-width: 880px) {
  .path-card__marquee,
  .path-card__badge { display: none; }
}

/* Rotating circular badge wrapper */
.path-card__badge {
  position: absolute;
  top: 24px; right: 24px;
  width: 116px; height: 116px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .7s var(--ease) .25s, transform .7s var(--ease) .25s;
  color: currentColor;
}
.path-card.is-in .path-card__badge {
  opacity: 1;
  transform: scale(1);
}

.path-card__badge-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: badge-spin 22s linear infinite;
}
.path-card:hover .path-card__badge-ring {
  animation-duration: 8s;
}
@keyframes badge-spin {
  to { transform: rotate(360deg); }
}

.path-card__badge-text {
  font-family: var(--body);
  font-size: 8.6px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: currentColor;
}

/* Static icon center disc */
.path-card__badge-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: currentColor;
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease);
}
.path-card__badge-core svg {
  width: 22px; height: 22px;
  color: var(--paper);
}
.path-card:hover .path-card__badge-core {
  transform: translate(-50%, -50%) scale(1.1);
}
.path-card__num {
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.path-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.path-card p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.55;
}
.path-card p strong { color: var(--ink); font-weight: 600; }
.path-card ul {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
  font-size: 15px;
  color: var(--ink-soft);
}
.path-card ul li {
  position: relative; padding-left: 22px;
  transition: padding-left .35s var(--ease);
}
.path-card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: currentColor;
  transform-origin: left center;
  transition: width .4s var(--ease), background-color .35s var(--ease);
}
.path-card:hover ul li { padding-left: 28px; }
.path-card:hover ul li::before { width: 18px; }
.path-card:hover ul li:nth-child(1)::before { transition-delay: 0s;     }
.path-card:hover ul li:nth-child(2)::before { transition-delay: 0.06s;  }
.path-card:hover ul li:nth-child(3)::before { transition-delay: 0.12s;  }
.path-card:hover ul li:nth-child(4)::before { transition-delay: 0.18s;  }
.path-card:hover ul li:nth-child(1) { transition-delay: 0s;     }
.path-card:hover ul li:nth-child(2) { transition-delay: 0.06s;  }
.path-card:hover ul li:nth-child(3) { transition-delay: 0.12s;  }
.path-card:hover ul li:nth-child(4) { transition-delay: 0.18s;  }
.path-card--green  ul li::before { background: var(--forest-bright); }
.path-card--petrol ul li::before { background: var(--peach); }
.path-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 15px;
  padding: 16px 24px;
  border-radius: 999px;
  background: currentColor;
  width: fit-content;
  transition: gap .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.path-card__cta > span,
.path-card__cta svg { color: var(--paper); position: relative; z-index: 1; }
.path-card__cta:hover {
  gap: 16px;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px currentColor;
}

/* MISSION */
.mission {
  position: relative;
  padding: 200px var(--gutter);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.mission::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(232,155,90,0.10), transparent 60%);
  z-index: -1;
}
.mission__three {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 52%;
  height: 92%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
@media (max-width: 980px) {
  /* Position wie gehabt (Netzwerk rechts, Text links frei), aber linke Kante
     per Mask weich ausgeblendet → kein harter Cut mehr */
  .mission__three {
    opacity: 0.35;
    width: 90%;
    right: -10%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24%);
            mask-image: linear-gradient(90deg, transparent 0, #000 24%);
  }
}
.mission__inner {
  position: relative; z-index: 2;
  max-width: 760px;
  margin: 0 auto 0 0;
  width: min(760px, 100%);
}
.mission__inner .h-display { color: var(--bg); }
.mission__inner .h-display em { color: var(--peach); }
.mission__inner .eyebrow { color: rgba(255,255,255,0.65); }
.mission__inner .lead { color: rgba(255,255,255,0.78); margin-top: 28px; max-width: 56ch; }
.mission__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.mission__meta div { display: flex; flex-direction: column; gap: 4px; }
.mission__meta-cert { justify-content: center; align-items: flex-start; }
.mission__meta-cert img {
  height: 54px; width: auto; max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}
@media (max-width: 700px) { .mission__meta-cert img { height: 48px; } }
.mission__meta strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}
.mission__meta span { font-size: 13px; color: rgba(255,255,255,0.6); }
@media (max-width: 700px) { .mission__meta { grid-template-columns: repeat(2, 1fr); } }

/* ─── TEAM ──────────────────────────────────────────────────── */
.team {
  padding: 140px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.team__header {
  max-width: 820px;
  margin-bottom: 72px;
}
.team__header h2 {
  margin-bottom: 22px;
}
.team__header .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  max-width: 60ch;
}

/* Featured Founder Card — editorial split */
.team__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.team__featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 100%, rgba(232,155,90,0.18), transparent 60%),
    radial-gradient(50% 60% at 0% 0%, rgba(97,206,112,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.team__featured > * { position: relative; z-index: 1; }

.team__featured-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  min-height: 460px;
}
.team__featured-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 1.2s var(--ease);
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.04) saturate(1.05);
}
.team__featured:hover .team__featured-portrait img {
  transform: scale(1.04);
}
.team__badge {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team__badge .dot {
  width: 6px; height: 6px;
  background: var(--forest-bright);
  box-shadow: 0 0 0 4px rgba(97,206,112,0.25);
}

/* Big "10y" italic statement — overlay rechts unten */
.team__statement {
  position: absolute;
  bottom: -18px; right: -10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  pointer-events: none;
  z-index: 2;
}

/* Puzzle-Wasserzeichen im Portrait (Fineline, Hover → fill) */
.team__puzzle-watermark {
  position: absolute;
  bottom: -24px; right: -20px;
  width: clamp(110px, 18vw, 170px);
  height: auto;
  fill: none;
  stroke: var(--forest-bright);
  stroke-width: 9;
  opacity: 0.35;
  pointer-events: none;
  z-index: 2;
  transition: fill 0.45s ease, opacity 0.45s ease;
}
.team__featured:hover .team__puzzle-watermark {
  fill: var(--forest-bright);
  opacity: 0.22;
}

.team__featured-text {
  display: flex; flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.team__over {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.team__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: 0;
}
.team__name em {
  font-style: italic;
  color: var(--forest-bright);
}
.team__bio-section {
  display: flex; flex-direction: column; gap: 8px;
}
.team__bio-heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: -0.01em;
  color: var(--bg);
  margin: 0;
}
.team__bio-text {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.team__facts {
  display: flex;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  list-style: none;
  margin: 0;
}
.team__facts li {
  flex: 1;
  display: flex; flex-direction: column; gap: 5px;
  padding: 0 20px;
  position: relative;
}
.team__facts li + li::before {
  content: "";
  position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.team__facts li:first-child { padding-left: 0; }
.team__facts-cert { justify-content: center; align-items: center; }
.team__facts-cert img { height: 44px; width: auto; max-width: 100%; object-fit: contain; align-self: center; }
.team__facts strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--peach);
}
.team__facts span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team__contact {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 6px;
  align-items: center;
}
.team__contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--bg);
  font-size: 14px; font-weight: 500;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), gap .35s var(--ease);
}
.team__contact-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bg);
  gap: 12px;
}
.team__contact-link--green {
  background: var(--forest-bright);
  border-color: var(--forest-bright);
  color: var(--ink);
}
.team__contact-link--green:hover {
  background: #50b860;
  border-color: #50b860;
  gap: 12px;
}

/* Team Group container — separate sections within the team */
.team__group {
  padding-top: 80px;
  margin-top: 80px;
  border-top: 1px solid var(--border);
}
.team__group:first-of-type {
  margin-top: 100px;
}
.team__group:last-of-type { margin-bottom: 0; }

/* Sub-Header — eyebrow + headline left, count badge right */
.team__sub-header {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.team__sub-header > div {
  display: flex; flex-direction: column; gap: 14px;
}
.team__sub-header h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  max-width: 22ch;
  color: var(--ink);
}
.team__sub-header h3 em {
  font-style: italic;
  color: var(--ink);
}
.team__count {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .team__sub-header { grid-template-columns: 1fr; align-items: start; }
}

/* Team Grid — auto-fit */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: 14px;
}
/* Compact variant — for groups with few members, fixed cols so cards don't stretch huge */
.team__grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 240px));
  justify-content: start;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s var(--ease);
  position: relative;
  isolation: isolate;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -32px rgba(17,19,22,0.22);
  border-color: var(--ink);
}
.team-card__portrait {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.team-card__portrait::after {
  /* subtle gradient overlay for editorial feel */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17,19,22,0.04) 100%);
  pointer-events: none;
}
.team-card__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.0s var(--ease), filter .5s var(--ease);
  filter: saturate(0.85) contrast(1.02);
}
.team-card:hover .team-card__portrait img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1);
}
.team-card__body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.team-card__role {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.team-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 2px 0 0;
}
.team-card h4 em {
  font-style: italic;
  font-weight: 500;
}

/* Reveal staggered */
.team-card.reveal {
  transition:
    opacity .8s var(--ease) calc(var(--ti, 0) * 100ms),
    transform .8s var(--ease) calc(var(--ti, 0) * 100ms);
}

/* ── Coaches Crowd Strip ──────────────────────────────────────── */
.coaches-crowd {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.coaches-crowd__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}
.coaches-crowd__avatars img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ink);
  margin-left: -16px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.55);
  transition: transform .3s var(--ease);
}
.coaches-crowd__avatars img:first-child { margin-left: 0; }
.coaches-crowd__avatars:hover img { transform: translateX(-4px); }
.coaches-crowd__avatars:hover img:hover { transform: translateY(-6px) scale(1.12); z-index: 2; }
.coaches-crowd__fade {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--ink));
  pointer-events: none;
}
.coaches-crowd__info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.coaches-crowd__number {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg);
  white-space: nowrap;
}
.coaches-crowd__number em {
  font-style: normal;
  color: var(--forest-bright);
}
.coaches-crowd__info p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
/* Mobile: Avatare oben, "80+"-Info darunter — sonst drückt die Avatar-Reihe
   die Info aus dem sichtbaren Bereich (dunkler Block wirkt leer) */
@media (max-width: 880px) {
  .coaches-crowd { flex-direction: column; align-items: center; gap: 22px; padding: 34px 24px; text-align: center; }
  .coaches-crowd__info { flex-direction: column; align-items: center; gap: 12px; }
  .coaches-crowd__info .btn { margin-left: 0; }
}
.coaches-crowd__info .btn {
  white-space: nowrap;
  margin-left: auto;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }

.team__note {
  margin-top: 56px;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}
.team__note a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-weight: 500;
  transition: color .25s var(--ease);
}
.team__note a:hover { color: var(--forest-bright); }
.team__note-cta {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-family: inherit; font-size: inherit; font-weight: 500;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.team__note-cta:hover { color: var(--peach); }

/* Responsive */
@media (max-width: 980px) {
  .team__featured {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team__featured-portrait { min-height: 400px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team__facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .team__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-card__body { padding: 18px 18px 20px; }
  .team-card h4 { font-size: 1.2rem; }
  .team__featured-portrait { min-height: 320px; }
  .team__facts { grid-template-columns: 1fr; gap: 14px; padding-top: 18px; }
}

/* PROCESS — sticky stack */
.process {
  position: relative;
  background: var(--bg);
  padding: 120px var(--gutter) 80px;
}
.process__header {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.process__header h2 {
  max-width: 820px;
}

.process__stack {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each step is a sticky full-card — they stack on scroll
   Default = PAPER (hell), .is-dark wird gesetzt, wenn die nächste Karte überdeckt */
.step-card {
  position: sticky;
  top: 100px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transform-origin: 50% 0%;
  will-change: transform, opacity, background-color;
  box-shadow: 0 30px 80px -50px rgba(17,19,22,0.18);
  transition:
    background-color .55s var(--ease),
    color .55s var(--ease),
    border-color .55s var(--ease);
}

/* Each successive card slightly larger top offset for cascade */
.step-card[data-step="01"] { top: 100px; z-index: 1; }
.step-card[data-step="02"] { top: 116px; z-index: 2; }
.step-card[data-step="03"] { top: 132px; z-index: 3; }
.step-card[data-step="04"] { top: 148px; z-index: 4; }

/* Wenn überdeckt: Karte wird ink — vorherige Schritte „dunkeln ab" */
.step-card.is-dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.step-card.is-dark .step-card__num    { color: var(--peach); }
.step-card.is-dark .step-card__index  { color: rgba(255,255,255,0.55); }
.step-card.is-dark p                  { color: rgba(255,255,255,0.75); }
.step-card.is-dark .step-card__bullets li { color: rgba(255,255,255,0.65); }
.step-card.is-dark .step-card__bullets li::before { background: rgba(255,255,255,0.4); }
.step-card.is-dark .step-card__visual { background: rgba(255,255,255,0.06); }

.step-card__index {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  right: clamp(20px, 2.5vw, 32px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.step-card__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  flex: 1;
  height: 100%;
}
@media (max-width: 880px) {
  .step-card__inner { grid-template-columns: 1fr; gap: 28px; }
}

.step-card__text {
  display: flex; flex-direction: column;
  gap: 18px;
}
.step-card__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.step-card__text h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
}
.step-card__text p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.step-card__bullets {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.step-card__bullets li {
  position: relative;
  padding-left: 22px;
}
.step-card__bullets li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--ink);
}

.step-card__visual {
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-card__visual img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(17,19,22,0.18));
}

/* Outro CTA below stack */
.process__outro {
  max-width: var(--max);
  margin: 80px auto 0;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.process__outro p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -0.018em;
  color: var(--ink);
}
.process__outro a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .25s var(--ease);
}
.process__outro a:hover { color: var(--forest-bright); }

/* Mobile: sticky-Stack-Effekt bleibt AKTIV (wie Desktop) — nur kompaktere Karten.
   (Früher war hier position:relative -> sticky abgeschaltet -> Karten stapelten mobil nicht.) */
@media (max-width: 880px) {
  .step-card {
    min-height: 0;
  }
  .step-card__visual { min-height: 220px; }
  .process__header { padding-left: 0; }
}

/* USPS BENTO */
.usps {
  padding: 160px var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.usps__header {
  position: relative;
  max-width: 820px;
  margin-bottom: 80px;
}
.usps__header h2 em {
  font-style: italic;
  color: var(--ink);
}
.usps__big {
  position: absolute;
  top: -40px; right: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(8rem, 16vw, 16rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.usps__header.is-in .usps__big {
  opacity: 0.12;
  transform: none;
}

.usps__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}

.usp {
  position: relative;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.usp::after {
  /* Hover-Akzent: Peach Linie unten */
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 3px; width: 100%;
  background: var(--peach);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .55s var(--ease);
}
.usp:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -36px rgba(17,19,22,0.28);
  border-color: var(--ink);
}
.usp:hover::after { transform: scaleX(1); }

.usp__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--ink);
  opacity: 0.4;
  font-variant-numeric: tabular-nums;
}
.usp h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.6vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 36px 0 14px;
  max-width: 22ch;
}
.usp h3 em {
  font-style: italic;
  color: var(--ink);
}
.usp p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  margin-top: auto;
  max-width: 38ch;
}
.usp__hint {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
/* 1×1-Karten: Headline-Höhe vereinheitlichen, damit die Body-Texte
   auf gleicher Höhe BEGINNEN (statt unten bündig zu hängen).
   Reihe 05–08 = 2 Zeilen kompakt; Reihe 02/03 = 3 Zeilen (lange Headline 02). */
.usps__bento .usp:not(.usp--xl):not(.usp--wide) h3 { min-height: 2.4em; }
.usps__bento .usp:not(.usp--xl):not(.usp--wide) p  { margin-top: 0; }
.usps__bento .usp:nth-child(2):not(.usp--wide) h3,
.usps__bento .usp:nth-child(3):not(.usp--wide) h3  { min-height: 3.6em; }

/* Sizes */
.usp--xl  { grid-column: span 2; grid-row: span 2; padding: 48px; }
.usp--xl h3 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  max-width: 16ch;
}
.usp--xl p {
  font-size: 17px;
  max-width: 44ch;
}
.usp--xl > * { position: relative; z-index: 1; }

/* "Live · 1:1 Coaching" Signal-Pill oben — Live-Indikator */
.usp__signal {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232,155,90,0.12);
  border: 1px solid rgba(232,155,90,0.4);
  color: var(--ink);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  width: fit-content;
  margin-bottom: 22px;
}
.usp__signal-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 4px rgba(232,155,90,0.25);
  animation: signal-pulse 1.6s var(--ease) infinite;
}
@keyframes signal-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,155,90,0.6); }
  60%      { box-shadow: 0 0 0 8px rgba(232,155,90,0); }
}

/* Big italic „1:1" Statement bottom-right — visualisiert das Konzept */
.usp__statement {
  position: absolute;
  bottom: -28px; right: -12px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(10rem, 20vw, 16rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--ink);
  pointer-events: none;
  z-index: 0;
  transition:
    color .5s var(--ease),
    -webkit-text-stroke-width .5s var(--ease),
    transform .8s var(--ease);
}
.usp--xl:hover .usp__statement {
  color: var(--ink);
  -webkit-text-stroke-width: 0;
  transform: translate(-12px, -10px);
}
@media (max-width: 560px) {
  .usp__signal { font-size: 10px; padding: 5px 12px; margin-bottom: 16px; }
  .usp__statement {
    font-size: clamp(8rem, 38vw, 12rem);
    bottom: -16px; right: -8px;
  }
  /* mobile: das Ghost-Number-::before auf XL-Card unterdrücken,
     da wir __statement haben */
  .usp--xl::before { content: none; }
}
.usp--wide { grid-column: span 2; padding: 30px 36px; }

/* Accents */
.usp--accent {
  background: var(--peach);
  border-color: var(--peach);
  color: #ffffff;
}
.usp--accent h3 em { color: #ffffff; }
.usp--accent p { color: rgba(255,255,255,0.95); }
.usp--accent .usp__num { color: #ffffff; opacity: 0.7; }
.usp--accent::after { background: #ffffff; }

.usp--dark {
  background: var(--forest-bright);
  color: var(--ink);
  border-color: var(--forest-bright);
}
.usp--dark h3 em { color: var(--ink); }
.usp--dark .usp__num { color: var(--ink); opacity: 0.6; }
.usp--dark p { color: rgba(17,19,22,0.75); }
.usp--dark::after { background: var(--ink); }

/* ── Scroll-Reveal Animationen ─────────────────────────────── */
.usp-anim {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity .55s var(--ease) calc(var(--si, 0) * 55ms),
    transform .55s var(--ease) calc(var(--si, 0) * 55ms);
}
/* Sanfter einheitlicher Fade-Up — kein scale/horizontaler Versatz, damit
   das Grid-Raster zu jedem Zeitpunkt sauber ausgerichtet bleibt */
.usp-anim--scale,
.usp-anim--right,
.usp-anim--up { transform: translateY(16px); }

.usp-anim.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .usps__bento { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .usp--xl, .usp--wide { grid-column: span 2; grid-row: auto; }
}

/* ── Mobile WOW (≤560px) ─────────────────────────────────────
   Karten werden full-bleed-statement, jede mit eigener Personality.
   Big numbers, dramatisches Reveal, peek-effect beim Scrollen. */
@media (max-width: 560px) {
  .usps { padding: 100px var(--gutter); }

  .usps__bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .usp--xl, .usp--wide { grid-column: span 1; }

  .usps__big {
    font-size: clamp(8rem, 40vw, 14rem);
    top: -20px;
    right: -10px;
  }

  /* Karten als statement-blocks */
  .usp {
    padding: 32px 28px 28px;
    min-height: 220px;
    overflow: visible;   /* kein Clipping mehr — Zahl sitzt mit Abstand, Safari soll nichts beschneiden */
  }
  .usp--xl { padding: 40px 32px 32px; min-height: 320px; }

  /* Mobile: jede Karte hat eine BIG number rechts unten als Visual-Anker */
  .usp::before {
    content: attr(data-usp);
    position: absolute;
    top: 20px; right: 40px; bottom: auto;
    font-family: var(--display);
    font-style: normal;   /* aufrecht statt kursiv: kein Italic-Ueberhang, der mobil abgeschnitten wird */
    font-weight: 700;
    font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: currentColor;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
  }
  .usp--xl::before    { font-size: clamp(1.6rem, 5.5vw, 2.3rem); opacity: 0.11; }
  .usp--accent::before { opacity: 0.20; color: #ffffff; }
  .usp--dark::before   { opacity: 0.20; color: var(--forest-bright); }

  /* Content über der big number */
  .usp > * { position: relative; z-index: 1; }

  /* small num top-right wegen unten-rechts Visual */
  .usp__num { display: none; }   /* kleine Eck-Zahl mobil raus (GF-Wunsch) — nur die grosse bleibt */

  /* Mobile-Reveals: sanfter Fade-Up, einheitlich */
  .usp-anim {
    transition:
      opacity .6s var(--ease) calc(var(--si, 0) * 60ms),
      transform .6s var(--ease) calc(var(--si, 0) * 60ms);
  }
  .usp-anim--scale,
  .usp-anim--right,
  .usp-anim--up     { transform: translateY(18px); }
  .usp-anim.is-in   { transform: none; }

  /* Headlines etwas größer auf mobile */
  .usp h3 { font-size: 1.4rem; margin-top: 28px; }
  .usp--xl h3 { font-size: 1.85rem; }
  .usp__hint { font-size: 11px; margin-top: 16px; padding-top: 16px; }
}

/* TESTIMONIALS — single infinite marquee */
.testimonials {
  padding: 140px 0;
  background: var(--bg);
  overflow: hidden;
}
.testimonials__header {
  max-width: var(--max);
  margin: 0 auto 70px;
  padding: 0 var(--gutter);
}
.testimonials__header h2 {
  max-width: 18ch;
  margin-bottom: 28px;
}
.testimonials__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.testimonials__rating {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px;
  color: var(--ink-soft);
}
.testimonials__rating .stars {
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--peach);
  line-height: 1;
}
.testimonials__rating strong {
  color: var(--ink); font-weight: 600;
}
.testimonials__google {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-weight: 500; font-size: 14px;
  transition: gap .35s var(--ease), transform .25s var(--ease), background-color .25s var(--ease);
}
.testimonials__google:hover {
  gap: 14px;
  transform: translateY(-2px);
  background: var(--ink-soft);
}

/* Marquee */
.testimonials__marquee {
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 9%, black 91%, transparent 100%);
}
.testimonials__row {
  display: flex;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
}
.testimonials__track--left {
  animation: t-marquee-left 80s linear infinite;
}
.testimonials__row:hover .testimonials__track {
  animation-play-state: paused;
}
@keyframes t-marquee-left {
  to { transform: translateX(-50%); }
}
/* JS-Swipe-Modus: nativer Scroller statt CSS-Marquee — wischbar, Tap stoppt
   den Autolauf (Klasse wird von initTestimonialSwipe gesetzt) */
.testimonials__row.is-swipe {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.testimonials__row.is-swipe::-webkit-scrollbar { display: none; }
.testimonials__row.is-swipe .testimonials__track { animation: none; }
.testimonials__row.is-swipe.is-dragging {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
}

/* Cards — fixed width for marquee */
.t-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
  width: 420px;
  flex-shrink: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -34px rgba(17,19,22,0.2);
  z-index: 2;
}
.t-card img {
  width: 56px; height: 56px;
  border-radius: 50%; object-fit: cover;
}
.t-card blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
  white-space: normal;
  text-wrap: balance;
}
.t-card blockquote::before {
  content: "“";
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--peach);
  display: block;
  margin-bottom: 14px;
}
.t-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.t-card figcaption strong { font-weight: 600; font-size: 14px; }
.t-card figcaption span { font-size: 13px; color: var(--muted); }

/* Card variants for visual rhythm in marquee */
.t-card--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.t-card--dark blockquote { color: var(--bg); }
.t-card--dark blockquote::before { color: var(--peach); }
.t-card--dark figcaption strong { color: var(--bg); }
.t-card--dark figcaption span { color: rgba(255,255,255,0.6); }

.t-card--accent {
  background: var(--peach);
  border-color: var(--peach);
  color: #ffffff;
}
.t-card--accent blockquote { color: #ffffff; }
.t-card--accent blockquote::before { color: rgba(255,255,255,0.85); }
.t-card--accent figcaption strong { color: #ffffff; }
.t-card--accent figcaption span { color: rgba(255,255,255,0.85); }

@media (max-width: 720px) {
  .t-card {
    width: 320px;
    padding: 26px;
  }
  .t-card blockquote { font-size: 1.02rem; }
  .testimonials__track--left {
    animation-duration: 60s;
  }
}

/* ── UNTERNEHMENSDARSTELLUNG / MEDIA-FEATURE ──────────────── */
.feature {
  padding: 140px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.feature__header {
  max-width: 820px;
  margin-bottom: 56px;
}
.feature__header .lead { margin-top: 22px; }

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.feature__card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.feature__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 46px 92px -48px rgba(17,19,22,0.55);
}

.feature__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 500px;
  background: #1b1d22;
}
.feature__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .8s var(--ease);
}
/* nahtloser Übergang Bild → dunkle Karte (kaschiert Hintergrund-Kante) */
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 56%, rgba(17,19,22,0.9) 97%);
  pointer-events: none;
  z-index: 1;
}
.feature__card:hover .feature__media img { transform: scale(1.06); }

.feature__badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 5px 11px;
  border-radius: 6px;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.45);
}

.feature__body {
  position: relative;
  padding: clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.feature__body::before {
  content: "\201C";
  position: absolute;
  top: clamp(-8px, 1vw, 16px);
  right: clamp(20px, 3vw, 46px);
  font-family: var(--display);
  font-size: clamp(130px, 13vw, 210px);
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 0;
}
.feature__body > * { position: relative; z-index: 1; }

.feature__top {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.feature__outlet {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
  color: #fff;
}
.feature__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.feature__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: #fff;
  text-wrap: balance;
}
.feature__excerpt {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
}
.feature__cta { margin-top: 12px; }

@media (max-width: 880px) {
  .feature { padding: 100px var(--gutter); }
  .feature__card { grid-template-columns: 1fr; }
  .feature__media { min-height: 320px; }
  .feature__body { padding: 36px 28px 40px; }
}

/* FAQ */
.faq {
  padding: 140px var(--gutter);
  max-width: 980px; margin: 0 auto;
}
.faq__header { margin-bottom: 60px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: var(--ink); }
.faq__item summary {
  list-style: none;
  /* native cursor */
  padding: 24px 28px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: background-color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--cream); }
.faq__plus {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; background: currentColor;
  transition: transform .3s var(--ease);
}
.faq__plus::after { transform: rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: rotate(0); }
.faq__answer {
  padding: 0 28px 26px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq__answer p strong { color: var(--ink); font-weight: 600; }

/* ── LEAD-FORM (3-Step) ──────────────────────────────────────── */
.lead-form {
  padding: 140px var(--gutter);
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Fragebogen als oberster Hero-Bereich (Subpages): mehr Platz für die
   fixe Nav oben, kein heller Übergangs-Gradient (nichts liegt darüber) */
.lead-form--hero { padding-top: 170px; }
.lead-form--hero::before { display: none; }
.lead-form::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(97,206,112,0.06), transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(232,155,90,0.12), transparent 55%);
  pointer-events: none;
}
.lead-form__shell {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 980px) {
  .lead-form__shell { grid-template-columns: 1fr; gap: 48px; }
}
.lead-form__intro h1, .lead-form__intro h2 { color: var(--bg); margin-bottom: 24px; }
.lead-form__intro h1 em, .lead-form__intro h2 em { color: var(--peach); }
.lead-form__intro .lead { margin: 0 0 28px; }
.lead-form__trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.lead-form__trust li { display: inline-flex; align-items: center; gap: 8px; }
.lead-form__trust svg {
  width: 16px; height: 16px;
  color: var(--forest-bright);
}

/* Form shell */
.lf {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
}

/* Progress */
.lf__progress { margin-bottom: 32px; }
.lf__progress-track {
  height: 3px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.lf__progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--peach);
  border-radius: 999px;
  transition: width .55s var(--ease);
}
.lf__progress-steps {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-size: 11px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.lf__progress-steps span.is-active { color: var(--peach); }
.lf__progress-steps span.is-done   { color: rgba(255,255,255,0.85); }

/* Step container */
.lf__step {
  border: 0; padding: 0; margin: 0;
  display: none;
  animation: lf-in .55s var(--ease);
}
.lf__step.is-current { display: block; }
@keyframes lf-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.lf__step.is-leaving {
  display: block;
  animation: lf-out .35s var(--ease) forwards;
}
@keyframes lf-out {
  to { opacity: 0; transform: translateY(-14px); }
}

.lf__legend { margin-bottom: 22px; display: block; }
.lf__step-num {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 10px;
  font-weight: 600;
}
.lf__legend h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.lf__legend p {
  margin-top: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* Step 1: choices grid */
.lf__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.lf__choice { cursor: pointer; }
.lf__choice input { position: absolute; opacity: 0; pointer-events: none; }
.lf__choice-card {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  min-height: 130px;
}
.lf__choice:hover .lf__choice-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.lf__choice input:checked ~ .lf__choice-card {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--ink);
}
.lf__choice-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--peach);
  margin-bottom: 4px;
}
.lf__choice-icon svg { width: 28px; height: 28px; }
.lf__choice input:checked ~ .lf__choice-card .lf__choice-icon { color: var(--ink); }
.lf__choice-card strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--bg);
}
.lf__choice input:checked ~ .lf__choice-card strong { color: var(--ink); }
.lf__choice-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.lf__choice input:checked ~ .lf__choice-card span { color: rgba(0,0,0,0.7); }

/* Step 2: radios */
.lf__radios {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.lf__radio {
  cursor: pointer;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.lf__radio:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}
.lf__radio input { position: absolute; opacity: 0; pointer-events: none; }
.lf__radio-mark {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  position: relative;
  margin-top: 2px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.lf__radio-mark::after {
  content: ""; position: absolute;
  inset: 4px; border-radius: 50%;
  background: var(--peach);
  transform: scale(0);
  transition: transform .25s var(--ease);
}
.lf__radio input:checked ~ .lf__radio-mark {
  border-color: var(--peach);
}
.lf__radio input:checked ~ .lf__radio-mark::after { transform: scale(1); }
.lf__radio:has(input:checked) {
  background: rgba(232,155,90,0.10);
  border-color: var(--peach);
}
.lf__radio-content { display: flex; flex-direction: column; gap: 4px; }
.lf__radio-content strong {
  font-weight: 600;
  font-size: 15px;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.lf__radio-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

/* Step 3: fields */
.lf__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.lf__field { display: flex; flex-direction: column; gap: 8px; }
.lf__field--full { grid-column: span 2; }
.lf__field span {
  font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.lf__field span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.35);
  margin-left: 6px;
  font-weight: 400;
}
.lf__field input,
.lf__field textarea,
.lf__field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--bg);
  font: inherit;
  font-size: 15px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}

/* Phone composite: country-code select + number input */
.lf__phone {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
}
.lf__phone-cc {
  border-radius: 10px 0 0 10px;
  border-right-width: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.4'><path d='M6 9l6 6 6-6'/></svg>");
  background-position: right 10px center;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
}
.lf__phone-cc option {
  background: var(--ink);
  color: var(--bg);
}
.lf__phone input[type="tel"] {
  border-radius: 0 10px 10px 0;
}
.lf__phone:focus-within .lf__phone-cc,
.lf__phone:focus-within input[type="tel"] {
  border-color: var(--peach);
}
.lf__field textarea { resize: vertical; min-height: 90px; }
.lf__field input::placeholder,
.lf__field textarea::placeholder { color: rgba(255,255,255,0.3); }
.lf__field input:focus,
.lf__field textarea:focus {
  outline: none;
  border-color: var(--peach);
  background: rgba(255,255,255,0.07);
}

.lf__check {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  margin-top: 4px;
}
.lf__check input { position: absolute; opacity: 0; pointer-events: none; }
.lf__check-mark {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  position: relative;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
  margin-top: 2px;
}
.lf__check-mark::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-position: center; background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lf__check input:checked ~ .lf__check-mark {
  background: var(--peach);
  border-color: var(--peach);
}
.lf__check input:checked ~ .lf__check-mark::after { opacity: 1; }
.lf__check-label {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.lf__check-label a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Nav */
.lf__nav {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
}
.lf__back { margin-right: auto; }

/* Submit-state */
.lf__submit:disabled {
  opacity: 0.5; cursor: not-allowed;
  pointer-events: none;
}

/* Success */
.lf__success {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
  animation: lf-in .55s var(--ease);
}
.lf__success.is-current { display: block; }
.lf__success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--forest-bright);
  color: var(--ink);
  margin-bottom: 22px;
}
.lf__success-icon svg { width: 32px; height: 32px; }
.lf__success h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 14px;
}
.lf__success p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 44ch;
  margin: 0 auto;
}
.lf__success a {
  color: var(--peach);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 540px) {
  .lf__choices { grid-template-columns: 1fr; }
  .lf__fields { grid-template-columns: 1fr; }
  .lf__field--full, .lf__check { grid-column: span 1; }
  .lf__nav { flex-direction: column-reverse; align-items: stretch; }
  .lf__back { margin-right: 0; }
  .lf__nav .btn { justify-content: center; width: 100%; }
}

@keyframes lf-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

/* FOOTER */
.site-footer {
  background: var(--cream);
  padding: 100px var(--gutter) 32px;
  border-top: 1px solid var(--border);
}
.site-footer__top {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 880px) { .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .site-footer__top { grid-template-columns: 1fr; } }
.site-footer__brand img { height: 32px; margin-bottom: 24px; }
.site-footer__brand p { font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.6; }
.site-footer__brand a { transition: color .25s var(--ease); }
.site-footer__brand a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__hours { font-size: 13px; color: var(--muted); margin-top: 12px; }
.site-footer__col h4 {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px; font-weight: 600;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer__col a { color: var(--ink-soft); transition: color .25s var(--ease); }
.site-footer__col a:hover { color: var(--ink); }
.site-footer__bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 32px;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.site-footer__bottom ul { display: flex; gap: 18px; }
.site-footer__bottom a { color: var(--muted); transition: color .25s var(--ease); }
.site-footer__bottom a:hover { color: var(--ink); }
.site-footer__madeby {
  max-width: var(--max); margin: 24px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; color: var(--muted);
}
.site-footer__heart {
  color: var(--peach);
  animation: heartbeat 1.6s var(--ease) infinite;
}
@keyframes heartbeat {
  0%, 70%, 100% { transform: scale(1); }
  35% { transform: scale(1.22); }
}
.site-footer__madeby a { color: var(--ink); font-weight: 600; }
.site-footer__madeby a:hover { color: var(--peach); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }

/* Path-cards slide in from opposite sides — visualizing "two paths" */
.path-card.reveal[data-path="gruender"] { transform: translateX(-44px); }
.path-card.reveal[data-path="karriere"] { transform: translateX(44px); }
.path-card.reveal.is-in { transform: translateX(0) translateY(0); }
@media (max-width: 880px) {
  .path-card.reveal[data-path="gruender"],
  .path-card.reveal[data-path="karriere"] { transform: translateY(30px); }
}

/* INTERACTIVE STATES */
a, button, .btn, summary, .path-card, .t-card, .usp, .step, .marquee__row img {
  /* native cursor */
}
@media (max-width: 900px) {
  a, button, .btn, summary { cursor: pointer; }
}

/* ── TEAM-MEMBER cards: klickbar-Indikator ─────────────────── */
.team-card[data-member], .team__featured-portrait[data-member] { cursor: pointer; }
.team-card[data-member]:focus-visible,
.team__featured-portrait[data-member]:focus-visible { outline: 2px solid var(--peach); outline-offset: 3px; }

/* View-Badge: permanent sichtbares Icon, expandiert beim Hover zum Label */
.team-card__view {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  display: inline-flex; align-items: center;
  height: 38px;
  border-radius: 999px;
  background: rgba(17,19,22,0.60);
  color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px -8px rgba(17,19,22,0.5);
  overflow: hidden;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card__view svg {
  width: 38px; height: 38px; padding: 11px;
  flex-shrink: 0; box-sizing: border-box;
}
.team-card__view-label {
  max-width: 0; opacity: 0;
  white-space: nowrap; font-size: 13px; font-weight: 500;
  transition: max-width .4s var(--ease), opacity .3s var(--ease), padding .4s var(--ease);
}
.team-card[data-member]:hover .team-card__view,
.team-card[data-member]:focus-visible .team-card__view,
.team__featured-portrait[data-member]:hover .team-card__view,
.team__featured-portrait[data-member]:focus-visible .team-card__view {
  background: var(--peach);
  box-shadow: 0 8px 22px -8px rgba(249,123,23,0.6);
}
.team-card[data-member]:hover .team-card__view-label,
.team-card[data-member]:focus-visible .team-card__view-label,
.team__featured-portrait[data-member]:hover .team-card__view-label,
.team__featured-portrait[data-member]:focus-visible .team-card__view-label {
  max-width: 130px; opacity: 1; padding-right: 16px;
}
.team__featured-portrait[data-member] { position: relative; }
.team-card__view--featured { bottom: 16px; right: 16px; }

/* ── TEAM-MEMBER MODAL ─────────────────────────────────────── */
.member-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden; opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.member-modal[aria-hidden="false"] {
  visibility: visible; opacity: 1;
  pointer-events: auto;
  transition: opacity .35s var(--ease);
}
.member-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(12,13,15,0.62);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.member-modal__card {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  width: min(860px, 100%);
  max-height: min(88vh, 720px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 120px -40px rgba(12,13,15,0.7);
  transform: translateY(24px) scale(0.97);
  transition: transform .45s var(--ease);
}
.member-modal[aria-hidden="false"] .member-modal__card { transform: translateY(0) scale(1); }
.member-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.85); color: var(--ink);
  border: 1px solid var(--border);
  cursor: pointer; transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.member-modal__close:hover { background: #fff; transform: rotate(90deg); }
.member-modal__portrait { position: relative; background: var(--cream); min-height: 100%; }
.member-modal__portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.member-modal__body {
  padding: 40px 40px 36px;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.member-modal__role {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--peach); font-weight: 600; margin-bottom: 10px;
}
.member-modal__name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px;
}
.member-modal__name em { font-style: italic; }
.member-modal__char {
  font-size: 14px; color: var(--ink-soft);
  letter-spacing: 0.04em; margin-bottom: 20px;
}
.member-modal__quote {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.4;
  color: var(--ink); margin: 0 0 24px;
  padding-left: 18px; border-left: 3px solid var(--peach);
}
.member-modal__facts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.member-modal__fact h4 {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 5px;
}
.member-modal__fact p { font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.member-modal__cta { align-self: flex-start; margin-top: auto; color: #fff; }
.member-modal__cta span, .member-modal__cta svg { color: #fff; }
@media (max-width: 720px) {
  .member-modal__card {
    grid-template-columns: 1fr;
    /* Explizite Zeilen: Safari schrumpft implizite Auto-Zeilen unter max-height
       nicht — Body wusste nicht, dass er scrollen muss (iOS: Karte nicht scrollbar).
       minmax(0,1fr) zwingt die Body-Zeile auf den Restplatz. */
    grid-template-rows: 300px minmax(0, 1fr);
    max-height: 90vh;
    max-height: 90dvh; /* iOS: echte sichtbare Höhe trotz Safari-URL-Bar */
  }
  .member-modal__portrait { height: 300px; min-height: 300px; }
  .member-modal__portrait img { object-position: center 22%; }
  .member-modal__body {
    padding: 28px 24px 26px;
    min-height: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── BEWERBUNGS-MODAL (Berater:innen) ──────────────────────── */
.apply-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.apply-modal[aria-hidden="false"] {
  visibility: visible; opacity: 1; pointer-events: auto;
  transition: opacity .35s var(--ease);
}
.apply-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(12,13,15,0.62);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.apply-modal__card {
  position: relative; z-index: 1;
  width: min(520px, 100%);
  max-height: min(90vh, 760px); overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 50px 120px -40px rgba(12,13,15,0.7);
  transform: translateY(24px) scale(0.97);
  transition: transform .45s var(--ease);
}
.apply-modal[aria-hidden="false"] .apply-modal__card { transform: translateY(0) scale(1); }
.apply-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream); color: var(--ink);
  border: 1px solid var(--border);
  cursor: pointer; transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.apply-modal__close:hover { background: var(--border); transform: rotate(90deg); }
.apply-modal__body { padding: 44px 40px 40px; }
.apply-modal__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--peach); font-weight: 600; margin-bottom: 14px;
}
.apply-modal__body h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px;
}
.apply-modal__body h3 em { font-style: italic; color: var(--peach); }
.apply-modal__lead { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 26px; }
.apply-form { display: flex; flex-direction: column; gap: 16px; }
.apply-form__field { display: flex; flex-direction: column; gap: 7px; }
.apply-form__field span {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.apply-form__field input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--ink);
  font-family: var(--body); font-size: 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.apply-form__field input:focus {
  outline: none; border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(249,123,23,0.14);
}
.apply-form__submit { justify-content: center; margin-top: 6px; }
.apply-form__hint { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }
.apply-modal__success { text-align: center; padding: 24px 0; }
.apply-modal__success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--forest-bright); color: var(--ink);
  margin-bottom: 18px;
}
.apply-modal__success h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.apply-modal__success p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 720px) {
  .apply-modal__body { padding: 40px 24px 28px; }
}

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__h1 em::after, .marquee__row { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Formular: Honeypot (Bot-Falle) + Fehler-Feedback ─────────────── */
.lf__hp, .apply-form__hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.lf__error {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(229, 72, 77, 0.14);
  border: 1px solid rgba(229, 72, 77, 0.4);
  color: #ffdada;
  font-size: 14px;
  line-height: 1.5;
}
.lf__error a { color: #fff; text-decoration: underline; }
.apply-form__error {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(229, 72, 77, 0.1);
  border: 1px solid rgba(229, 72, 77, 0.3);
  color: #b3261e;
  font-size: 13px;
  line-height: 1.45;
}
.apply-form__error a { color: inherit; font-weight: 600; }

/* ─── Cookie-Consent-Banner ──────────────────────────────────────────── */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  padding: 16px; pointer-events: none;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.cc-banner.is-in { transform: translateY(0); }
.cc-banner__inner {
  max-width: 1080px; margin: 0 auto;
  background: var(--ink, #15171A); color: #fff;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px;
  padding: 18px 20px;
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  pointer-events: auto;
}
.cc-banner__text { margin: 0; flex: 1 1 320px; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, .88); }
.cc-banner__text a { color: #fff; text-decoration: underline; }
.cc-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cc-btn { padding: 11px 22px; font-size: 14px; }
.cc-banner .cc-decline { background: transparent; border: 1px solid rgba(255, 255, 255, .35); color: #fff; }
.cc-banner .cc-decline:hover { background: rgba(255, 255, 255, .08); }
.cc-reopen { cursor: pointer; }
@media (max-width: 560px) {
  .cc-banner__inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cc-banner__actions { justify-content: stretch; }
  .cc-btn { flex: 1; }
}
