/* ==========================================================================
   Social Lift — Schriften (lokal gehostet, DSGVO-konform)
   Dateien liegen unter assets/fonts/ — kein Aufruf von Google-Servern.
   ========================================================================== */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/fraunces-latin-500-italic.woff2') format('woff2');
}

/* ==========================================================================
   Basis
   ========================================================================== */

:root {
  --teal: #106466;
  --teal-dark: #0B4C4E;
  --teal-tint: #E7F3F2;
  --teal-muted: #396168;
  --teal-muted-light: #B4C8C6;
  --peach: #EDBF8B;
  --peach-dark: #E2A868;
  --peach-tint: #FBF0E3;
  --ink: #1A2322;
  --ink-soft: #3A4841;
  --white: #ffffff;
  --border: #E1EBE9;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --container: 1180px;
  --radius: 20px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(26, 35, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 35, 34, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 35, 34, 0.16);

  /* Section-Spacing-System: kompakt / normal / groß (Hero, Abschluss-CTA) */
  --space-sm: 52px;
  --space-md: 72px;
  --space-lg: 104px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

a, button, summary, [tabindex] {
  outline-offset: 3px;
}
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

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

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }

p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Editorial-Eyebrow statt Chip: reine Typo, kein Pillen-Hintergrund */
.kicker {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin: 0 0 16px;
}
.kicker-light {
  color: var(--teal-muted-light);
}

/* Highlight-Marker hinter Schlüsselbegriffen */
.highlight {
  color: var(--teal-dark);
  background: linear-gradient(180deg, rgba(16,100,102,0.04) 0%, var(--teal-tint) 45%);
  padding: 0 6px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* Auf dunklem Grund trägt allein die Farbe — kein Kasten hinter der Schrift */
.highlight-dark {
  background: none;
  color: var(--peach);
  padding: 0;
  border-radius: 0;
}
/* Serifen-Kursiv-Akzent für Highlights in Überschriften (nicht im Fließtext) */
h1 .highlight, h2 .highlight, h3 .highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  padding: 0 4px;
}
h1 .highlight-dark, h2 .highlight-dark, h3 .highlight-dark {
  padding: 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}
.section-sub {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
}
/* Eigene Zeile unter der Headline: trägt allein das Keyword, deshalb dieselbe
   Serifen-Kursiv-Behandlung wie ein Highlight in der Überschrift */
.section-statement {
  margin-top: 6px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
}
.section-statement .highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  padding: 0 4px;
}

/* Dekorative Blur-Blobs */
/* Blur-Blobs sind seitenweit abgeschaltet (generischer KI-Template-Look) —
   Definitionen bleiben für den Fall eines Reverts stehen */
.blob {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.blob-mint {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(16,100,102,0.28), rgba(16,100,102,0) 70%);
  top: -160px; right: -140px;
}
.blob-cta {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(237,191,139,0.16), rgba(237,191,139,0) 70%);
  bottom: -220px; left: 50%;
  transform: translateX(-50%);
}

/* Scroll-Reveal — greift nur, wenn JS läuft (html.js), sonst bleibt alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.18s ease; }
.btn:hover svg { transform: scale(1.1); }
/* Press-Feedback + sichtbarer Tastatur-Fokus */
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11,76,78,0.32), var(--shadow-sm);
  background: var(--teal);
}
/* Auf dunklen Flächen (Abschluss-CTA): heller Primär-Button im Ghost-Look */
.cta .btn-primary {
  background: var(--white);
  color: var(--ink);
}
.cta .btn-primary:hover {
  background: #F6F9F8;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn svg { transition: background-color 0.18s ease, box-shadow 0.18s ease; }
  .btn:hover, .btn-primary:hover, .btn-ghost:hover { transform: none; }
  .btn:hover svg { transform: none; }
}
.btn-small {
  padding: 11px 20px;
  font-size: 14px;
}

.btn-stacked {
  flex-direction: column;
  gap: 2px;
  padding: 9px 30px;
}
.btn-line-main { font-size: 15px; font-weight: 700; line-height: 1.3; }
.btn-line-sub { font-size: 12px; font-weight: 600; opacity: 0.65; line-height: 1.2; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.brand-logo {
  height: 30px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 15px;
}
/* Header-CTA: volle Beschriftung nur, wenn Platz ist */
.btn-label-short { display: none; }
@media (max-width: 1060px) {
  .btn-label-long { display: none; }
  .btn-label-short { display: inline; }
  .main-nav { gap: 16px; font-size: 14.5px; }
  .header-actions .btn-small { padding-left: 18px; padding-right: 18px; }
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 150px 0 100px;
}

/* Statt Blur-Blobs: das Rasterpapier der Karten-Illustrationen, ganz dezent —
   dieselbe Bildsprache wie in Problem-, Leistungs- und Warum-Karten */
.hero-blob { display: none; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(44,53,49,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,53,49,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 40%, #000 26%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 40%, #000 26%, transparent 76%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}
/* "2–3 Monate" bricht als Einheit um, nie mittendrin */
.hero h1 .highlight { white-space: nowrap; }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 36px;
}

/* WhatsApp-Button auf hellem Hero-Grund */
.hero .btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(26,35,34,0.25);
  backdrop-filter: none;
}
.hero .btn-ghost:hover {
  background: #F6F9F8;
  border-color: rgba(26,35,34,0.45);
  box-shadow: 0 10px 24px rgba(26,35,34,0.12);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  row-gap: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-proof-item { white-space: nowrap; }
.hero-proof-dot {
  margin: 0 8px;
  color: rgba(26,35,34,0.3);
}

/* ==========================================================================
   Imagefilm Lightbox
   ========================================================================== */
.film-modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
}
.film-modal::backdrop {
  background: rgba(14, 20, 17, 0.85);
  backdrop-filter: blur(6px);
}
.film-modal-close {
  position: fixed;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.film-modal-close:hover { background: rgba(255,255,255,0.2); }
.film-modal-close svg { width: 18px; height: 18px; }
.film-modal-frame {
  position: relative;
  width: min(90vw, 980px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.film-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.film-modal-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  color: var(--peach);
  background: var(--ink);
  padding: 20px;
}
.film-modal-fallback.is-visible { display: flex; }
.film-modal-fallback svg { width: 40px; height: 40px; opacity: 0.8; }
.film-modal-fallback p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; }
.film-modal-fallback code {
  display: inline-block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 6px;
}

/* ==========================================================================
   Embed-Lightbox (YouTube/Instagram/lokales Video) — nutzt .film-modal/.film-modal-close
   ========================================================================== */
.embed-modal-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.embed-modal-frame[data-embed-type="youtube"] {
  width: min(90vw, 980px);
  aspect-ratio: 16 / 9;
}
.embed-modal-frame[data-embed-type="instagram"] {
  width: min(90vw, 400px);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--white);
}
.embed-modal-frame[data-embed-type="local"] {
  width: min(90vw, 420px);
  height: min(88vh, 746px);
}
.embed-modal-frame[data-embed-type="calendly"] {
  width: min(94vw, 1000px);
  height: min(90vh, 760px);
  background: var(--white);
}
.embed-modal-frame[data-embed-type="calendly"] iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.embed-modal-frame[data-embed-type="youtube"] iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.embed-modal-frame[data-embed-type="instagram"] iframe {
  border: none;
}
.embed-modal-frame[data-embed-type="local"] video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.embed-modal-frame blockquote.instagram-media {
  margin: 0;
}

/* ==========================================================================
   Trust marquee (Kundenlogos)
   ========================================================================== */
.trust-bar {
  background: var(--white);
  padding: 48px 0;
  overflow: hidden;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 40px;
  animation: marquee 32s linear infinite;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  padding: 12px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-shrink: 0;
}
.logo-chip img {
  height: 100%;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
/* Optischer Ausgleich pro Logo: transparente Ränder in den Dateien und
   Hochformat-Marken lassen manche Logos kleiner wirken als andere — die
   Skalierung gleicht das an, gemessen an der tatsächlichen Motivgröße */
.logo-chip img[src*="palais-wunderlich"] { transform: scale(1.36); }
.logo-chip img[src*="bikeage"] { transform: scale(1.28); }
.logo-chip img[src*="schwarzwaldbau"] { transform: scale(1.26); }
.logo-chip img[src*="bonacelli"],
.logo-chip img[src*="flugge"],
.logo-chip img[src*="js-finanzloesungen"],
.logo-chip img[src*="pro-heraldica"],
.logo-chip img[src*="sg-architektur"] { transform: scale(1.22); }
.logo-chip img[src*="juliano"] { transform: scale(1.2); }
.logo-chip img[src*="wundertuete"] { transform: scale(1.16); }
.logo-chip img[src*="ein-rad"] { transform: scale(1.12); }
.logo-chip img[src*="wassermenschen"] { transform: scale(1.14); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ==========================================================================
   Media frames (Foto-Platzhalter — per Datei-Drop austauschbar)
   ========================================================================== */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--teal-tint) 0%, #ffffff 60%);
}
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.media-frame:hover img {
  transform: scale(1.045);
}
@media (prefers-reduced-motion: reduce) {
  .media-frame img { transition: none; }
  .media-frame:hover img { transform: none; }
}
.media-frame-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--teal);
  background: linear-gradient(155deg, var(--teal-tint) 0%, #ffffff 60%);
  border: 1.5px dashed rgba(16,100,102,0.35);
  border-radius: var(--radius-lg);
  font-size: 13px;
  line-height: 1.6;
}
.media-frame-fallback svg { width: 34px; height: 34px; opacity: 0.8; }
.media-frame-fallback code {
  display: inline-block;
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--ink-soft);
  background: rgba(26,35,34,0.06);
  padding: 2px 8px;
  border-radius: 6px;
}
.media-frame.has-image .media-frame-fallback { display: none; }
.media-frame-fallback-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame-fallback:has(.media-frame-fallback-thumb) {
  border: none;
  padding: 0;
}

.media-frame-portrait { aspect-ratio: 4 / 5; margin-bottom: 28px; }

/* ==========================================================================
   Akkordeon (gemeinsame Basis für Problem-Sektion und FAQ)
   ========================================================================== */
.acc-item {
  border-top: 1px solid var(--border);
  padding: 6px 0;
}
.acc-item:last-child { border-bottom: 1px solid var(--border); }
.acc-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 2px;
  background: var(--teal);
}
.acc-item summary::after {
  content: '+';
  margin-left: auto;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.acc-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}
@media (prefers-reduced-motion: reduce) {
  .acc-item summary::after { transition: none; }
}
.acc-item p {
  margin: 0 0 20px 34px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}
/* Sanftes Auf-/Zugleiten der Antworten übernimmt script.js (WAAPI) —
   ::details-content ist browserseitig noch zu unzuverlässig */

/* ==========================================================================
   Problem / Herausforderungen
   ========================================================================== */
.problem {
  padding: var(--space-md) 0;
  background: #F3F7F6;
}
.problem .section-head {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.problem-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 22px);
  color: var(--teal-dark);
  text-align: center;
  margin: -14px 0 30px;
}
.problem-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.problem-module {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(26,35,34,0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}
.problem-module:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(26,35,34,0.14);
  border-color: var(--teal-muted-light);
}
/* Nachbarn treten zurück — gleiche Fokus-Logik wie im Content-System darunter */
.problem-modules:has(.problem-module:hover) .problem-module:not(:hover) { opacity: 0.72; }
.problem-visual {
  position: relative;
  overflow: hidden;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F7F6;
  border-bottom: 1px solid var(--border);
}
.problem-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,53,49,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,53,49,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 82%);
}
.problem-illu {
  position: relative;
  z-index: 1;
  width: 82%;
  height: auto;
}
.problem-module p {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 24px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  max-width: 30ch;
  margin: 0 auto;
}

/* Hover-Bewegung in den Illustrationen: jede Karte erzählt ihr Problem zu Ende
   — die Stunde vergeht und die Slots bleiben leer, im Chaos setzt sich einer
   durch, alles zieht sich auf die eine Person zusammen. */
.p-slot, .p-note, .p-winner, .p-focus-ring, .p-arrow,
.p-spokes, .p-node, .p-person {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.3, 1), opacity 0.4s ease;
}
/* Zeiger drehen um die Uhrmitte, nicht um ihre eigene Bounding-Box */
.p-clock-min, .p-clock-hour {
  transform-box: view-box;
  transform-origin: 150px 76px;
  transition: transform 0.9s cubic-bezier(0.35, 0.6, 0.25, 1);
}

/* 01 — Keine Zeit: eine volle Stunde vergeht, die Produktions-Slots bleiben leer */
.problem-module:hover .p-clock-min { transform: rotate(360deg); }
.problem-module:hover .p-clock-hour { transform: rotate(30deg); }
.problem-module:hover .p-slot { opacity: 0.35; }

/* 02 — Ohne Plan: der Rest tritt zurück, der eine Beitrag hebt sich heraus */
.problem-module:hover .p-note { opacity: 0.45; transform: scale(0.94); }
.problem-module:hover .p-winner { transform: translateY(-4px) scale(1.08); }
.problem-module:hover .p-focus-ring { transform: scale(1.12); }
.problem-module:hover .p-arrow { transform: translate(5px, -5px); }

/* 03 — Eine Person: die Speichen ziehen sich zusammen, alles rückt nach innen */
.p-node { transition-duration: 0.55s; }
.problem-module:hover .p-spokes { transform: scale(0.88); }
.problem-module:hover .p-person { transform: scale(1.09); }
.problem-module:hover .p-node:nth-of-type(1) { transform: translate(9px, 4px); }
.problem-module:hover .p-node:nth-of-type(2) { transform: translate(-9px, 4px); }
.problem-module:hover .p-node:nth-of-type(3) { transform: translate(9px, -4px); }
.problem-module:hover .p-node:nth-of-type(4) { transform: translate(-9px, -4px); }
.problem-module:hover .p-node:nth-of-type(5) { transform: translate(0, 9px); }
.problem-module:hover .p-node:nth-of-type(6) { transform: translate(0, -9px); }

@media (prefers-reduced-motion: reduce) {
  .problem-module { transition: none; }
  .problem-module:hover { transform: none; }
  .problem-modules:has(.problem-module:hover) .problem-module:not(:hover) { opacity: 1; }
  .p-slot, .p-note, .p-winner, .p-focus-ring, .p-arrow,
  .p-spokes, .p-node, .p-person, .p-clock-min, .p-clock-hour { transition: none; }
  .problem-module:hover .p-clock-min,
  .problem-module:hover .p-clock-hour,
  .problem-module:hover .p-note,
  .problem-module:hover .p-winner,
  .problem-module:hover .p-focus-ring,
  .problem-module:hover .p-arrow,
  .problem-module:hover .p-spokes,
  .problem-module:hover .p-person,
  .problem-module:hover .p-node { transform: none; }
  .problem-module:hover .p-slot,
  .problem-module:hover .p-note { opacity: 1; }
}

/* ==========================================================================
   Content-System
   ========================================================================== */
.content-system {
  padding: var(--space-md) 0;
  background: var(--teal-tint);
}
.content-system .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.system-scene {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.system-flow {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 78px;
  height: 40px;
  margin-top: -20px;
  z-index: 0;
  pointer-events: none;
}
.system-flow svg { width: 100%; height: 100%; overflow: visible; display: block; }
.system-flow-line {
  stroke: var(--teal-muted-light);
  stroke-width: 2;
  stroke-dasharray: 4 7;
  fill: none;
  opacity: 0.75;
}
.system-scene.is-visible .system-flow-line {
  animation: system-flow-slide 1.1s ease-out both;
}
@keyframes system-flow-slide {
  from { stroke-dashoffset: 260; opacity: 0; }
  to { stroke-dashoffset: 0; opacity: 0.75; }
}
.system-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.system-viz-wrap {
  position: relative;
  height: 158px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.system-stage.is-key .system-viz-wrap::before {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.4), transparent 66%);
  pointer-events: none;
}
.system-viz {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 94%;
}
.system-rec-dot {
  transform-origin: 114px 72px;
  transform-box: fill-box;
  opacity: 0.4;
}
.system-scene.is-visible .system-stage.is-key .system-rec-dot {
  animation: system-rec-pulse 1.8s ease-in-out 0.5s infinite;
}
@keyframes system-rec-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.18); }
}
.system-stage-label { margin-top: 20px; }
.system-stage-no {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 8px;
}
.system-stage-label h3 {
  font-size: 17.5px;
  line-height: 1.4;
  max-width: 240px;
  margin: 0 auto;
}
.system-footnote {
  text-align: center;
  margin-top: 44px;
  color: var(--ink-soft);
  font-size: 15px;
}
@media (prefers-reduced-motion: reduce) {
  .system-scene.is-visible .system-flow-line { animation: none; }
  .system-scene.is-visible .system-stage.is-key .system-rec-dot { animation: none; opacity: 0.85; }
}

/* --------------------------------------------------------------
   Content-System: Micro-Interactions (Entrance + Hover)
   Additiver Layer — kann komplett entfernt werden, ohne dass
   Aufbau oder Grundzustand der Szene sich ändern.
   -------------------------------------------------------------- */

/* Entrance: Stages gestaffelt einblenden, sobald die Szene sichtbar wird */
html.js .system-scene.is-visible .system-stage {
  animation: system-stage-in 0.55s cubic-bezier(0.22, 0.7, 0.3, 1) backwards;
}
html.js .system-scene.is-visible .system-stage:nth-of-type(2) { animation-delay: 0.05s; }
html.js .system-scene.is-visible .system-stage:nth-of-type(3) { animation-delay: 0.2s; }
html.js .system-scene.is-visible .system-stage:nth-of-type(4) { animation-delay: 0.35s; }
@keyframes system-stage-in {
  from { opacity: 0; transform: translateY(14px); }
}

/* Step-Fokus: ganzer Schritt als Hover-Zone, weiche Fläche, Titel betont,
   Nachbarn treten leicht zurück */
.system-stage {
  border-radius: 24px;
  padding: 14px 10px 18px;
  margin: -14px -10px -18px;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.system-stage:hover {
  /* Radien so gewählt, dass der Verlauf innerhalb der Fläche auf 0 ausläuft — keine Schnittkante */
  background: radial-gradient(ellipse 50% 43% at 50% 44%, rgba(16,100,102,0.055), rgba(16,100,102,0) 100%);
}
.system-scene:has(.system-stage:hover) .system-stage:not(:hover) { opacity: 0.72; }
.system-stage-label h3 { transition: color 0.25s ease; }
.system-stage-no { transition: color 0.25s ease; }
.system-stage:hover .system-stage-label h3 { color: var(--teal-dark); }
.system-stage:hover .system-stage-no { color: var(--teal-dark); }

/* Gemeinsame Basis für bewegte SVG-Teile */
.system-viz rect,
.system-viz circle,
.system-viz g,
.system-viz > path:first-of-type {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.38s cubic-bezier(0.3, 0.7, 0.3, 1);
}

/* Schritt 01 — Karten sortieren sich leicht, Peach-Punkt springt um */
.system-flow + .system-stage:hover .system-viz rect:nth-of-type(1),
.system-flow + .system-stage:hover .system-viz rect:nth-of-type(2) { transform: translateX(6px); }
.system-flow + .system-stage:hover .system-viz rect:nth-of-type(3),
.system-flow + .system-stage:hover .system-viz rect:nth-of-type(4) { transform: translateX(-5px); }
.system-flow + .system-stage:hover .system-viz rect:nth-of-type(5),
.system-flow + .system-stage:hover .system-viz rect:nth-of-type(6) { transform: translateX(3px); }
.system-flow + .system-stage .system-viz circle { transition-duration: 0.45s; }
.system-flow + .system-stage:hover .system-viz circle { transform: translate(-32px, 0); }
.system-flow + .system-stage .system-viz g { transform: rotate(-7deg); }
.system-flow + .system-stage:hover .system-viz g { transform: rotate(-3deg) translateY(-3px); }

/* Schritt 02 — Record-Impuls: Fokus-Rahmen zieht sich zusammen, Linse reagiert,
   Badge poppt, Glow verstärkt sich, Record-Punkt pulsiert schneller */
.system-stage.is-key .system-viz > path:first-of-type { transition-duration: 0.32s; }
.system-stage.is-key:hover .system-viz > path:first-of-type { transform: scale(0.94); }
.system-stage.is-key:hover .system-viz circle:nth-of-type(1) { transform: scale(1.07); }
.system-stage.is-key .system-viz g { transform: translate(70px, 122px); }
.system-stage.is-key:hover .system-viz g { transform: translate(70px, 118px); }
.system-stage.is-key .system-viz-wrap::before { transition: transform 0.4s ease; }
.system-stage.is-key:hover .system-viz-wrap::before { transform: scale(1.1); }
.system-scene.is-visible .system-stage.is-key:hover .system-rec-dot {
  animation: system-rec-pulse 0.85s ease-in-out infinite;
}

/* Schritt 03 — Outputs fächern sich gestaffelt auf, Publish-Punkte leuchten nacheinander */
.is-key + .system-stage:hover .system-viz > rect:nth-of-type(2) { transform: translate(5px, -3px); transition-delay: 0s; }
.is-key + .system-stage:hover .system-viz > rect:nth-of-type(3) { transform: translate(8px, 0); transition-delay: 0.07s; }
.is-key + .system-stage:hover .system-viz > rect:nth-of-type(4) { transform: translate(5px, 3px); transition-delay: 0.14s; }
.is-key + .system-stage .system-viz g circle { transition: transform 0.3s ease; }
.is-key + .system-stage:hover .system-viz g circle:nth-of-type(1) { transform: scale(1.5); transition-delay: 0.1s; }
.is-key + .system-stage:hover .system-viz g circle:nth-of-type(2) { transform: scale(1.5); transition-delay: 0.19s; }
.is-key + .system-stage:hover .system-viz g circle:nth-of-type(3) { transform: scale(1.5); transition-delay: 0.28s; }
.is-key + .system-stage:hover .system-viz g circle:nth-of-type(4) { transform: scale(1.5); transition-delay: 0.37s; }

/* Reduced Motion: Entrance aus, Hover-Bewegungen aus (Farb-/Fokus-Änderungen bleiben) */
@media (prefers-reduced-motion: reduce) {
  html.js .system-scene.is-visible .system-stage { animation: none; }
  .system-viz rect,
  .system-viz circle,
  .system-viz g,
  .system-viz > path:first-of-type { transition: none; }
  .system-stage:hover .system-viz rect,
  .system-stage:hover .system-viz circle,
  .system-stage:hover .system-viz > path:first-of-type { transform: none; }
  .system-flow + .system-stage:hover .system-viz g { transform: rotate(-7deg); }
  .system-stage.is-key:hover .system-viz g { transform: translate(70px, 122px); }
  .system-stage.is-key .system-viz-wrap::before { transition: none; }
  .system-stage.is-key:hover .system-viz-wrap::before { transform: none; }
  .system-scene.is-visible .system-stage.is-key:hover .system-rec-dot { animation: none; }
}

/* ==========================================================================
   Über mich (Gründer-Foto + Bio)
   ========================================================================== */
.founder {
  padding: var(--space-sm) 0;
  background: var(--white);
}
.founder-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: center;
}
.founder-media { position: relative; }
.founder-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.founder-chip svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.founder-chip-strategy { top: 30px; left: -28px; }
.founder-chip-prod { bottom: 104px; right: -30px; }
.founder-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 16px 0;
}
.founder-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.founder-photo-tag {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  background: rgba(26,35,34,0.55);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  color: var(--white);
}
.founder-photo-name { font-weight: 700; font-size: 15px; }
.founder-photo-role { font-size: 13px; color: rgba(255,255,255,0.8); }
.founder-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.founder-fact {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-tint);
  padding: 7px 14px;
  border-radius: 100px;
}

/* ==========================================================================
   Abgrenzung / Warum Social Lift
   ========================================================================== */
.differentiators { padding: var(--space-sm) 0; background: var(--white); }
.differentiators .section-head {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.diff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(26,35,34,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-muted-light);
  box-shadow: 0 18px 44px rgba(26,35,34,0.14);
}
.diff-visual {
  position: relative;
  width: 100%;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F4F7F6;
  border-bottom: 1px solid var(--border);
}
.diff-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,53,49,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,53,49,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 82%);
}
.diff-visual::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.16), transparent 66%);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.diff-card:hover .diff-visual::after {
  transform: translate(-50%, -50%) scale(1.12);
}
.diff-illu { position: relative; z-index: 1; width: 86%; height: auto; }
.diff-card h3 { color: var(--ink); font-size: 19px; line-height: 1.4; margin: 0; padding: 26px 28px 0; }
.diff-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; padding: 12px 28px 30px; }
/* Hover erzählt die Aussage jeder Karte zu Ende (gleiches Muster wie
   Problem-Bentos und Leistungs-Karten) */
.d1-cam, .d1-tiles rect, .d2-pin, .d2-ring, .d2-arrow, .d3-person, .d3-node, .d3-dot {
  transform-box: fill-box;
  transform-origin: center;
}

/* K1 — Drehtag: die Kamera sendet, alle Content-Slots füllen sich nacheinander */
.d1-cam { transition: transform 0.4s cubic-bezier(0.3, 0.7, 0.3, 1); }
.diff-card:hover .d1-cam { transform: scale(1.07); }
@keyframes d1-send { to { stroke-dashoffset: -12; } }
.diff-card:hover .d1-rays path { animation: d1-send 0.9s linear infinite; }
.d1-tiles rect { transition: fill-opacity 0.35s ease, transform 0.35s ease; }
.diff-card:hover .d1-tiles rect { fill-opacity: 0.48; transform: translateY(-2px); }
.diff-card:hover .d1-tiles rect:nth-of-type(1) { transition-delay: 0s; }
.diff-card:hover .d1-tiles rect:nth-of-type(2) { transition-delay: 0.06s; }
.diff-card:hover .d1-tiles rect:nth-of-type(3) { transition-delay: 0.12s; }
.diff-card:hover .d1-tiles rect:nth-of-type(4) { transition-delay: 0.18s; }
.diff-card:hover .d1-tiles rect:nth-of-type(5) { transition-delay: 0.24s; }
.diff-card:hover .d1-tiles rect:nth-of-type(6) { transition-delay: 0.3s; }
.diff-card:hover .d1-tiles rect:nth-of-type(7) { transition-delay: 0.36s; }

/* K2 — Vor Ort: die Route läuft, der Pin hebt ab, das Ziel wird abgehakt */
@keyframes d2-march { to { stroke-dashoffset: -16; } }
.diff-card:hover .d2-route { animation: d2-march 1s linear infinite; }
.d2-pin { transform-origin: 50% 100%; transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.55, 1); }
.diff-card:hover .d2-pin { transform: translateY(-5px); }
.d2-ring { transition: transform 0.35s ease; }
.diff-card:hover .d2-ring { transform: scale(1.12); }
.d2-check { stroke-dasharray: 26; }
@keyframes d2-draw { from { stroke-dashoffset: 26; } to { stroke-dashoffset: 0; } }
.diff-card:hover .d2-check { animation: d2-draw 0.45s ease 0.2s both; }
.diff-card:hover .d2-arrow { transform: translateX(4px); transition: transform 0.35s ease; }

/* K3 — Fester Ansprechpartner: die Auswertungs-Punkte springen nacheinander
   an, die Kurve zeichnet sich nach oben */
.d3-spark { stroke-dasharray: 130; }
@keyframes d3-draw { from { stroke-dashoffset: 130; } to { stroke-dashoffset: 0; } }
.diff-card:hover .d3-spark { animation: d3-draw 0.8s cubic-bezier(0.3, 0.7, 0.3, 1) 0.15s both; }
.d3-dot { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease, fill-opacity 0.3s ease; }
.diff-card:hover .d3-dot { fill: var(--peach); fill-opacity: 1; transform: scale(1.45); }
.diff-card:hover .d3-dot:nth-of-type(1) { transition-delay: 0.1s; }
.diff-card:hover .d3-dot:nth-of-type(2) { transition-delay: 0.25s; }
.diff-card:hover .d3-dot:nth-of-type(3) { transition-delay: 0.4s; }
.d3-node, .d3-person { transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.3, 1); }
.diff-card:hover .d3-node { transform: scale(1.15); }
.diff-card:hover .d3-person { transform: rotate(-4deg) scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .diff-card, .diff-visual::after { transition: none; }
  .diff-card:hover { transform: none; }
  .diff-card:hover .diff-visual::after { transform: translate(-50%, -50%); }
  .d1-cam, .d1-tiles rect, .d2-pin, .d2-ring, .d3-dot, .d3-node, .d3-person { transition: none; }
  .diff-card:hover .d1-cam,
  .diff-card:hover .d1-tiles rect,
  .diff-card:hover .d2-pin,
  .diff-card:hover .d2-ring,
  .diff-card:hover .d2-arrow,
  .diff-card:hover .d3-dot,
  .diff-card:hover .d3-node,
  .diff-card:hover .d3-person { transform: none; }
  .diff-card:hover .d1-rays path,
  .diff-card:hover .d2-route,
  .diff-card:hover .d2-check,
  .diff-card:hover .d3-spark { animation: none; }
}

/* ==========================================================================
   Leistungen
   ========================================================================== */
.services { padding: var(--space-md) 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal-muted-light);
}
.service-visual {
  position: relative;
  overflow: hidden;
  height: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-tint);
  border-bottom: 1px solid var(--border);
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,100,102,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,100,102,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 80%);
}
.service-visual::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.32), transparent 68%);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.service-card-ads .service-visual::after,
.service-card-consult .service-visual::after {
  background: radial-gradient(circle, rgba(16,100,102,0.22), transparent 68%);
}
.service-card:hover .service-visual::after {
  transform: translate(-50%, -50%) scale(1.12);
}
.service-illu {
  position: relative;
  z-index: 1;
  height: 78%;
  width: auto;
  max-width: 90%;
}
.service-card-body { padding: 28px 32px 34px; }
.service-card-body h3 { font-size: 20px; margin-bottom: 12px; }
.service-card-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Hover-Animationen der vier Leistungen. Jede zeigt, was die Leistung tut —
   nicht Bewegung um der Bewegung willen.
   -------------------------------------------------------------------------- */

/* 01 Content & Social Media — aus einem Dreh wird ein Stapel: die Karten
   fächern auf, das Video läuft (Pegel bewegen sich), die Reichweite wandert
   die Kurve entlang und der Endpunkt wächst. */
.s1-fan, .s1-play, .s1-play-tri, .s1-dot, .s1-dot-glow {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.s1-wave {
  transform-box: view-box;
  transform-origin: 0 121px;
  transition: transform 0.4s cubic-bezier(0.34, 1.35, 0.5, 1);
}
.service-card-content:hover .s1-fan-l { transform: translateX(-13px) rotate(-4deg); }
.service-card-content:hover .s1-fan-r { transform: translateX(13px) rotate(4deg); }
.service-card-content:hover .s1-play { transform: scale(1.12); }
.service-card-content:hover .s1-play-tri { transform: scale(1.1); }
.service-card-content:hover .s1-dot { transform: scale(1.4); }
.service-card-content:hover .s1-dot-glow { transform: scale(1.6); }
.service-card-content:hover .s1-wave:nth-of-type(1) { transform: scaleY(2.4); transition-delay: 0s; }
.service-card-content:hover .s1-wave:nth-of-type(2) { transform: scaleY(0.65); transition-delay: 0.06s; }
.service-card-content:hover .s1-wave:nth-of-type(3) { transform: scaleY(1.35); transition-delay: 0.12s; }
.service-card-content:hover .s1-wave:nth-of-type(4) { transform: scaleY(0.7); transition-delay: 0.18s; }
.service-card-content:hover .s1-wave:nth-of-type(5) { transform: scaleY(1.3); transition-delay: 0.24s; }
.service-card-content:hover .s1-wave:nth-of-type(6) { transform: scaleY(2.6); transition-delay: 0.3s; }
@keyframes s1-travel { to { stroke-dashoffset: -18; } }
.service-card-content:hover .s1-path { animation: s1-travel 1.1s linear infinite; }

/* 02 Werbeanzeigen — das Budget skaliert: die Balken wachsen von links nach
   rechts nach, die Kurve zeichnet sich neu, und die beiden Kennzahlen gehen
   in die richtige Richtung — Leads rauf, Klickpreis runter. */
.s2-bar {
  transform-box: view-box;
  transform-origin: 0 140px;
  transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.s2-cpc, .s2-leads {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.service-card-ads:hover .s2-bar:nth-of-type(1) { transform: scaleY(1.05); transition-delay: 0s; }
.service-card-ads:hover .s2-bar:nth-of-type(2) { transform: scaleY(1.1); transition-delay: 0.05s; }
.service-card-ads:hover .s2-bar:nth-of-type(3) { transform: scaleY(1.16); transition-delay: 0.1s; }
.service-card-ads:hover .s2-bar:nth-of-type(4) { transform: scaleY(1.22); transition-delay: 0.15s; }
.service-card-ads:hover .s2-bar:nth-of-type(5) { transform: scaleY(1.3); transition-delay: 0.2s; }
.service-card-ads:hover .s2-bar:nth-of-type(6) { transform: scaleY(1.4); transition-delay: 0.25s; }
.service-card-ads:hover .s2-leads { transform: translateY(-8px); }
.service-card-ads:hover .s2-cpc { transform: translateY(8px); }
.service-card-ads:hover .s2-cpc-arrow { transform-box: fill-box; transform-origin: center; transform: rotate(180deg); transition: transform 0.4s ease; }
.s2-trend { stroke-dasharray: 220; }
@keyframes s2-draw { from { stroke-dashoffset: 220; } to { stroke-dashoffset: 0; } }
.service-card-ads:hover .s2-trend { animation: s2-draw 0.85s cubic-bezier(0.3, 0.7, 0.3, 1) both; }

/* 03 Webdesign & Landingpages — mobil zuerst: das Handy kommt nach vorn, der
   Desktop tritt zurück, und beide CTA-Buttons werden nacheinander geklickt —
   der Moment, in dem aus Interesse eine Anfrage wird. */
.s3-desktop, .s3-phone, .s3-cta, .s3-cta-mobile {
  transform-box: fill-box;
  transform-origin: center;
}
.s3-desktop, .s3-phone { transition: transform 0.55s cubic-bezier(0.3, 0.7, 0.3, 1); }
.service-card-web:hover .s3-desktop { transform: translateX(-7px) scale(0.97); }
.service-card-web:hover .s3-phone { transform: translate(9px, -7px) scale(1.08); }
@keyframes s3-tap {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.92); }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.service-card-web:hover .s3-cta { animation: s3-tap 0.6s cubic-bezier(0.3, 0.7, 0.3, 1) 0.1s both; }
.service-card-web:hover .s3-cta-mobile { animation: s3-tap 0.6s cubic-bezier(0.3, 0.7, 0.3, 1) 0.38s both; }

/* 04 Beratung — Schritt für Schritt: die drei Stationen steigen nacheinander
   auf, dann wird das Ziel abgehakt. */
.s4-step, .s4-goal, .s4-goal-ring {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.service-card-consult:hover .s4-step:nth-of-type(1) { transform: translateY(-7px); transition-delay: 0s; }
.service-card-consult:hover .s4-step:nth-of-type(2) { transform: translateY(-7px); transition-delay: 0.08s; }
.service-card-consult:hover .s4-step:nth-of-type(3) { transform: translateY(-7px); transition-delay: 0.16s; }
.service-card-consult:hover .s4-goal { transform: scale(1.1); transition-delay: 0.2s; }
.service-card-consult:hover .s4-goal-ring { transform: scale(1.18); transition-delay: 0.2s; }
.s4-check { stroke-dasharray: 32; }
@keyframes s4-draw { from { stroke-dashoffset: 32; } to { stroke-dashoffset: 0; } }
.service-card-consult:hover .s4-check { animation: s4-draw 0.5s ease 0.3s both; }

@media (prefers-reduced-motion: reduce) {
  .s1-fan, .s1-play, .s1-play-tri, .s1-dot, .s1-dot-glow, .s1-wave,
  .s2-bar, .s2-cpc, .s2-leads, .s3-desktop, .s3-phone,
  .s4-step, .s4-goal, .s4-goal-ring { transition: none; }
  .service-card:hover .s1-fan,
  .service-card:hover .s1-play,
  .service-card:hover .s1-play-tri,
  .service-card:hover .s1-dot,
  .service-card:hover .s1-dot-glow,
  .service-card:hover .s1-wave,
  .service-card:hover .s2-bar,
  .service-card:hover .s2-cpc,
  .service-card:hover .s2-cpc-arrow,
  .service-card:hover .s2-leads,
  .service-card:hover .s3-desktop,
  .service-card:hover .s3-phone,
  .service-card:hover .s4-step,
  .service-card:hover .s4-goal,
  .service-card:hover .s4-goal-ring { transform: none; }
  .service-card:hover .s1-path,
  .service-card:hover .s2-trend,
  .service-card:hover .s3-cta,
  .service-card:hover .s3-cta-mobile,
  .service-card:hover .s4-check { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card, .service-visual::after { transition: none; }
  .service-card:hover { transform: none; }
  .service-card:hover .service-visual::after { transform: translate(-50%, -50%); }
}

/* ==========================================================================
   Feature-Blöcke (Leistungen im Detail — alternierende Beispiele)
   ========================================================================== */
.feature-blocks {
  padding: var(--space-md) 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.feature-blocks .section-head h2 { color: var(--white); }
/* Keine Trennlinien zwischen den Zeilen — der Abstand trennt sie deutlich genug */
.feature-row {
  display: grid;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
}
.feature-row-a { grid-template-columns: 0.84fr 1.16fr; }
.feature-row-b { grid-template-columns: 1.16fr 0.84fr; }
.feature-row-c { grid-template-columns: 0.95fr 1.05fr; }
.feature-row:last-child { padding-bottom: 0; }
.feature-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-muted-light);
  margin-bottom: 16px;
}
.feature-copy h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 16px;
  color: var(--white);
}
.feature-copy p:not(.kicker) { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7; }
/* Media-Flächen im dunklen Referenzen-Block (Founder & Co. bleiben hell) */
.feature-blocks .media-frame,
.feature-blocks .media-frame-fallback {
  background: linear-gradient(155deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
}
.feature-blocks .media-frame-video { border: 1px solid rgba(255,255,255,0.12); }
.feature-blocks .media-frame-fallback {
  color: var(--teal-muted-light);
  border-color: rgba(180,200,198,0.35);
}
.feature-blocks .media-frame-fallback code {
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}
.media-frame-video {
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-video-trigger:hover .media-frame-video {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
@media (prefers-reduced-motion: reduce) {
  .media-frame-video { transition: none; }
  .feature-video-trigger:hover .media-frame-video { transform: none; }
}
.feature-video-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.feature-video-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-video-play svg {
  width: 64px;
  height: 64px;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(20,28,24,0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, background-color 0.22s ease;
}
.feature-video-trigger:hover .feature-video-play svg {
  transform: scale(1.08);
  background: var(--peach);
  color: var(--ink);
}
.feature-media-stat {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  background: rgba(20, 28, 24, 0.5);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
}
.feature-media-stat strong {
  color: var(--white);
  font-size: 14px;
  margin-right: 4px;
}

/* ==========================================================================
   Ergebnisse: Zahlen + Case Studies
   ========================================================================== */
.results { padding: var(--space-md) 0; position: relative; overflow: hidden; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-number {
  font-size: clamp(42px, 5.4vw, 62px);
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  overflow-wrap: break-word;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.5;
  max-width: 26ch;
}

/* Editoriales Case-Layout: 1 Featured Case + 2 kompakte (hell, integriert) */
.case-editorial {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-featured,
.case-compact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(26,35,34,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.case-featured:hover,
.case-compact:hover {
  transform: translateY(-3px);
  border-color: var(--teal-muted-light);
  box-shadow: 0 18px 44px rgba(26,35,34,0.14);
}
/* Beim Hover zeichnet sich der Trendpfeil neben der Kennzahl neu */
@keyframes trend-line { from { stroke-dashoffset: 38; } to { stroke-dashoffset: 0; } }
@keyframes trend-head { from { stroke-dashoffset: 14; } to { stroke-dashoffset: 0; } }
.case-featured:hover .case-metric-trend path:first-of-type,
.case-compact:hover .case-metric-trend path:first-of-type {
  stroke-dasharray: 38;
  animation: trend-line 0.5s cubic-bezier(0.3, 0.7, 0.3, 1) both;
}
.case-featured:hover .case-metric-trend path:last-of-type,
.case-compact:hover .case-metric-trend path:last-of-type {
  stroke-dasharray: 14;
  animation: trend-head 0.28s ease 0.38s both;
}
@media (prefers-reduced-motion: reduce) {
  .case-featured, .case-compact { transition: none; }
  .case-featured:hover, .case-compact:hover { transform: none; }
  .case-featured:hover .case-metric-trend path,
  .case-compact:hover .case-metric-trend path { animation: none; }
}
.case-featured {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  padding: 48px 52px;
  align-items: stretch;
}
.case-featured-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.case-industry {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.case-timeframe {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.case-hero {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.case-hero-number {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.case-hero-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.case-metric-trend {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--peach);
  margin-bottom: 7px;
}
.case-metric-trend svg { width: 30px; height: 15px; }
.case-result-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 54ch;
}
.case-featured-main footer,
.case-compact footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.case-avatar-wrap { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.case-avatar {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--peach);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-avatar-photo {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.case-avatar-wrap.has-photo .case-avatar { visibility: hidden; }
.case-avatar-wrap.has-photo .case-avatar-photo { display: block; }
.case-who { display: flex; flex-direction: column; margin-right: auto; }
.case-name { font-weight: 700; color: var(--ink); }
.case-role { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.case-featured-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.case-side-number {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.case-side-label {
  margin-top: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.case-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-compact {
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.case-compact .case-meta { min-height: 30px; }
.case-kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 18px;
}
.case-kpi {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.case-kpi-number {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.case-kpi-number .case-metric-trend { margin-bottom: 4px; }
.case-kpi-number .case-metric-trend svg { width: 24px; height: 12px; }
/* Einzel-KPI (Zimmerei): darf den Raum füllen wie die Featured-Zahl */
.case-kpi-number-xl { font-size: clamp(52px, 5.4vw, 72px); }
.case-kpi-number-xl .case-metric-trend { margin-bottom: 18px; }
.case-kpi-number-xl .case-metric-trend svg { width: 32px; height: 16px; }
/* Steht nur eine Kennzahl in der Karte, läuft das Label neben die Ziffer statt
   darunter — sonst bleibt rechts daneben ein totes Feld stehen. Die Trennlinie
   läuft über die volle Höhe der Ziffer, damit das Paar als ein Block liest. */
.case-kpi-solo {
  flex-direction: row;
  align-items: stretch;
  gap: 22px;
}
.case-kpi-solo .case-kpi-label {
  display: flex;
  align-items: center;
  max-width: 14ch;
  font-size: 15px;
  line-height: 1.4;
  padding-left: 22px;
  border-left: 1px solid var(--border);
}
.case-kpi-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 18ch;
}
.case-compact .case-result-text { font-size: 14.5px; margin-bottom: 22px; }
.case-compact footer { margin-bottom: 20px; }

/* Dezente Beweis-Links */
.case-portfolio-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  width: 100%;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}
.case-featured-side .case-portfolio-link {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(16,100,102,0.16);
}
.case-portfolio-link:hover { color: var(--teal-dark); }
.case-portfolio-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.case-portfolio-link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Content-Produktion Spotlight (Video-Slider)
   ========================================================================== */
.spotlight {
  padding: var(--space-sm) 0;
  background: var(--teal-tint);
}
.spotlight .section-head { max-width: 720px; }
.spotlight .section-head p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; margin-top: 12px; }

.reel-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  padding: 6px 0 18px;
  cursor: grab;
  touch-action: pan-y; /* horizontal wischt der Slider, vertikal scrollt die Seite */
  user-select: none;
  -webkit-user-select: none;
}
.reel-slider.is-dragging { cursor: grabbing; }
.reel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 4px;
  will-change: transform;
  animation: reel-marquee 80s linear infinite; /* No-JS-Fallback — JS schaltet das ab und übernimmt */
}
.reel-slider:hover .reel-track,
.reel-slider:focus-within .reel-track {
  animation-play-state: paused;
}
@keyframes reel-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reel-track { animation: none; }
}
.reel-item {
  position: relative;
  flex: 0 0 220px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, var(--teal-tint) 100%);
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.reel-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}
.reel-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--teal);
  border: 1.5px dashed rgba(16,100,102,0.35);
  border-radius: var(--radius-lg);
  margin: 8px;
  font-size: 12px;
  line-height: 1.6;
  padding: 12px;
  background: linear-gradient(155deg, #ffffff 0%, var(--teal-tint) 100%);
}
.reel-fallback.is-visible { display: flex; }
/* Instagram-Handle unten im Video: dezent, mit leichtem Verlauf dahinter,
   damit es auch auf hellem Videomaterial lesbar bleibt */
.reel-item.has-handle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0,0,0,0.38));
  pointer-events: none;
}
.reel-handle {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.reel-handle svg { width: 13px; height: 13px; flex: none; opacity: 0.8; }
.reel-handle span { overflow: hidden; text-overflow: ellipsis; }
.reel-fallback svg { width: 28px; height: 28px; opacity: 0.8; }
.reel-fallback code {
  display: inline-block;
  font-size: 10.5px;
  color: var(--ink-soft);
  background: rgba(26,35,34,0.06);
  padding: 2px 6px;
  border-radius: 6px;
  word-break: break-all;
}

/* ==========================================================================
   Ablauf
   ========================================================================== */
.process {
  padding: var(--space-md) 0 20px;
  background: var(--white);
}
.process .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.process-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.process-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 27px;
  width: 2px;
  background: var(--border);
}
.process-timeline-fill {
  position: absolute;
  top: 8px;
  left: 27px;
  width: 2px;
  height: 0;
  background: var(--teal);
  border-radius: 2px;
  z-index: 0;
}
.process-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-marker span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.process-step.is-active .process-step-marker span {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.process-step-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--teal-tint);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.process-step.is-active .process-step-card {
  opacity: 1;
  transform: scale(1);
}
.process-step-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 18px;
  background: rgba(255,255,255,0.55);
  color: var(--teal);
}
.process-step-media svg { width: 100%; max-width: 160px; height: auto; }
.process-step-body { padding: 24px 26px 28px; }
.process-step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.process-step-body h3 { font-size: 18px; margin-bottom: 10px; }
.process-step-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
@media (prefers-reduced-motion: reduce) {
  .process-step-marker span, .process-step-card { transition: none; }
}
/* Keine Pillen mehr — schlichte Häkchen-Zeile, gleiche Inhalte */
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 18px;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.step-tag::before {
  content: '✓';
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
}

/* Abschluss-Statement des Ablaufs: bewusst keine Box — großzügige Typo mit
   fett gesetzten Kernaussagen, darunter der direkte Einstieg ins Erstgespräch */
.process-note-block {
  margin: 64px auto 0;
  max-width: 780px;
  text-align: center;
}
.process-note {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.65;
  margin: 0 0 30px;
}
.process-note strong {
  color: var(--ink);
  font-weight: 700;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--space-md) 0;
  background: var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.faq-head {
  margin: 0 0 28px;
  text-align: left;
  max-width: none;
}
.faq-contact-card {
  background: var(--teal-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.faq-contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 16px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.faq-contact-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-contact-title { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.faq-contact-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 20px; }
.faq-contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.faq-contact-actions .btn-small svg { width: 17px; height: 17px; margin-right: 2px; }
/* Pfeil als Inline-SVG statt →-Glyphe: sitzt mittig zur Zeile statt auf der
   Grundlinie und bewegt sich beim Hover wie die übrigen Textlinks der Seite */
.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  transition: color 0.18s ease;
}
.faq-contact-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.22s ease;
}
.faq-contact-link:hover { color: var(--teal); }
.faq-contact-link:hover svg { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .faq-contact-link svg, .faq-contact-link:hover svg { transition: none; transform: none; }
}
.faq-list {
  max-width: none;
}


/* ==========================================================================
   Kontakt / Digital-Check
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  /* endet unten exakt auf Footer-Farbe — nahtloser Übergang CTA→Footer */
  background: linear-gradient(160deg, #12211a 0%, var(--ink) 100%);
  color: var(--white);
  padding: var(--space-lg) 0;
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.cta-main { text-align: left; }
.cta h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--white);
  margin-bottom: 20px;
}
/* Die Formel steht auf zwei eigenen Zeilen, die Einladung darunter tritt eine
   Stufe zurück — gehört noch zur Headline, führt aber schon in den Fließtext. */
.cta-h-line { display: block; }
.cta-h-lead {
  display: block;
  margin-top: 20px;
  max-width: 24ch;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
}
.cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.cta-links {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
}
.cta-links a { font-weight: 600; color: rgba(255,255,255,0.85); }
.cta-links a:hover { color: var(--peach); }
.cta-links-dot { margin: 0 10px; color: rgba(255,255,255,0.3); }

/* Vertrauens-Karte (Über mich) */
.cta-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.cta-card-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.cta-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.22);
  transform-origin: 80% 30%;
  display: block;
}
.cta-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,33,26,0) 45%, rgba(18,33,26,0.85) 100%);
  pointer-events: none;
}
.cta-card-person-text {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cta-card-name { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.cta-card-role { font-size: 14px; color: var(--peach); font-weight: 600; }
.cta-card-body { padding: 24px 26px 28px; }
.cta-card-title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.cta-card-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cta-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}
.cta-card-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--peach); margin-top: 1px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { width: auto; height: 34px; aspect-ratio: 434 / 136; margin-bottom: 18px; }
.footer-brand p {
  font-size: 15px;
  color: var(--teal-muted-light);
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-brand .footer-region {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin: -16px 0 24px;
  line-height: 1.5;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--peach);
  color: var(--ink);
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--peach); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--peach);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--peach); }

/* ==========================================================================
   Rechtliche Seiten (Impressum, Datenschutz)
   ========================================================================== */
.legal {
  padding: 72px 0 100px;
}
.legal .container { max-width: 780px; }
.legal h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 12px;
}
.legal .legal-updated {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
}
.legal h3 {
  font-size: 17px;
  margin: 28px 0 8px;
}
.legal p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--teal-dark); }
.legal .placeholder {
  background: var(--peach-tint);
  border: 1px dashed var(--peach-dark);
  border-radius: 6px;
  padding: 1px 8px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal);
  margin-bottom: 32px;
}
.legal-back:hover { color: var(--teal-dark); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { gap: 18px; }
  .case-featured { grid-template-columns: 1fr; gap: 32px; padding: 40px 36px; }
  .case-compact-grid { grid-template-columns: 1fr; }
  .problem-modules { gap: 18px; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-media { max-width: 420px; margin: 0 auto; }
  .founder-chip-strategy { left: -14px; }
  .founder-chip-prod { right: -14px; }
  .feature-row,
  .feature-row-a,
  .feature-row-b,
  .feature-row-c { grid-template-columns: 1fr; gap: 28px; }
  /* Gestapelt immer Text vor Video — Row B hat im Desktop-Grid Media zuerst */
  .feature-row-b .feature-copy { order: -1; }
  /* Gestapelt: Textblöcke zentriert, Kategorie-Pillen entfallen */
  .feature-copy { text-align: center; }
  .feature-tag { display: none; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { text-align: center; margin-left: auto; margin-right: auto; }
  .faq-contact-card { max-width: 520px; }

  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-main { text-align: center; }
  .cta-h-lead { margin-left: auto; margin-right: auto; }
  .cta-sub { margin-left: auto; margin-right: auto; }
  .cta-actions { justify-content: center; }
  .cta-card { max-width: 520px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}

@media (max-width: 760px) {
  :root {
    --space-sm: 48px;
    --space-md: 64px;
    --space-lg: 80px;
  }
  .main-nav { display: none; }
  .header-actions .btn-small { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .hero { padding: 110px 0 60px; }
  .hero-cta-row .btn { flex: 1 1 auto; }
  .hero-proof { font-size: 13px; }


  .film-modal-close { top: 16px; right: 16px; }

  .stats-band { grid-template-columns: 1fr; margin-bottom: 48px; }
  .stat-item { padding: 26px 20px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 18px; }
  .problem-modules { grid-template-columns: 1fr; }
  .system-scene { grid-template-columns: 1fr; gap: 40px; }
  .system-flow { display: none; }
  .system-viz-wrap { height: 150px; }
  .process-step { gap: 12px; }
  .process-timeline::before, .process-timeline-fill { left: 19px; }
  .process-step-marker { width: 40px; height: 40px; }
  .process-step-marker span { width: 32px; height: 32px; font-size: 12.5px; }
  .process-step-body { padding: 20px 18px 24px; }
  .service-card-body { padding: 24px 22px 28px; }
  /* Gestapelte Warum-Karten: Text zentriert */
  .diff-card h3, .diff-card p { text-align: center; }

  .case-featured { padding: 30px 24px; }
  .case-featured-side { padding: 26px 24px; }
  .case-compact { padding: 28px 22px 24px; }
  .case-kpi-row { gap: 16px 28px; }

  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .site-footer { padding: 56px 0 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; padding-bottom: 40px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; }
  .footer-nav, .footer-contact { align-items: center; }
  .footer-contact-item { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .results, .services, .spotlight, .process, .problem, .founder, .faq, .cta { padding: 72px 0; }
  .legal { padding: 48px 0 72px; }
}

@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .reel-item { flex-basis: 160px; }
  .faq-contact-card { padding: 22px; }
  .cta-card-body { padding: 22px; }
}

/* ==========================================================================
   Consent-Banner (Meta-Pixel Opt-in)
   ========================================================================== */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
/* [hidden] nimmt das Banner vollständig aus Tab-Reihenfolge und A11y-Baum.
   Mit reinem opacity:0 blieben die Buttons sonst dauerhaft fokussierbar und
   wurden von Screenreadern auf jeder Seite vorgelesen. */
.consent-banner[hidden] { display: none; }
.consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.consent-banner:focus { outline: none; }
.consent-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.consent-copy { flex: 1 1 480px; min-width: 0; }
.consent-title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}
.consent-text {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 78ch;
  margin: 0;
}
.consent-text code {
  font-size: 0.94em;
  background: rgba(255,255,255,0.10);
  padding: 1px 5px;
  border-radius: 4px;
}
.consent-text strong { color: var(--white); }
.consent-text a {
  color: var(--peach);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
/* Ablehnen und Akzeptieren MÜSSEN identisch aussehen (gleiche Fläche, Farbe,
   Schriftgröße, Kontrast). Eine optische Bevorzugung von „Akzeptieren" wäre ein
   Dark Pattern und würde die Einwilligung angreifbar machen. Nicht ändern. */
.consent-btn {
  appearance: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 20px;
  min-width: 148px;
  border-radius: 999px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.consent-btn:hover { background: #F6F9F8; }
.consent-btn:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 2px;
}
/* „Einstellungen" darf abgesetzt sein — es ist keine Entscheidung, sondern ein
   Weg zu mehr Information. Ablehnen/Akzeptieren bleiben untereinander gleich. */
.consent-btn-settings {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.consent-btn-settings:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.75);
}
.footer-consent-reset {
  background: none;
  border: none;
  padding: 0;
  margin-left: 18px;
  font: inherit;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s ease;
}
.footer-consent-reset:hover { color: rgba(255,255,255,0.85); }
/* Auf hellen Rechtsseiten-Footern */
.legal .footer-consent-reset,
.site-footer .footer-bottom .footer-consent-reset { color: rgba(255,255,255,0.55); }

/* Cookie- und Schlüsselnamen in Impressum/Datenschutz/AGB lesbar auszeichnen */
.legal code {
  font-size: 0.92em;
  background: rgba(11,76,78,0.08);
  color: var(--teal-dark, var(--ink));
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ---- Ebene 2: Detail-Einstellungen (natives <dialog>) -------------------- */
/* <dialog> liefert Fokus-Falle, Escape-Handling und Top-Layer vom Browser —
   deshalb bewusst kein eigenes Modal-Konstrukt. */
.consent-modal {
  width: min(680px, calc(100vw - 32px));
  max-height: min(86vh, 900px);
  padding: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: rgba(255,255,255,0.80);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
  overflow: hidden;
}
.consent-modal::backdrop { background: rgba(4,20,20,0.70); }
.consent-modal-form { display: flex; flex-direction: column; max-height: inherit; }

.consent-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.consent-modal-title { font-size: 19px; font-weight: 700; color: var(--white); margin: 0; }
.consent-modal-close {
  appearance: none; background: none; border: none;
  color: rgba(255,255,255,0.65);
  font-size: 26px; line-height: 1; padding: 4px 8px;
  cursor: pointer; border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}
.consent-modal-close:hover { color: var(--white); background: rgba(255,255,255,0.10); }
.consent-modal-close:focus-visible { outline: 3px solid var(--peach); outline-offset: 2px; }

.consent-modal-body {
  padding: 18px 24px 22px;
  overflow-y: auto;
  font-size: 13.5px;
  line-height: 1.62;
  -webkit-overflow-scrolling: touch;
}
.consent-modal-body p { margin: 0 0 10px; }
.consent-modal-body a { color: var(--peach); text-decoration: underline; text-underline-offset: 2px; }
.consent-modal-body code {
  font-size: 0.94em; background: rgba(255,255,255,0.10);
  padding: 1px 5px; border-radius: 4px;
}
.consent-modal-intro { color: rgba(255,255,255,0.72); margin-bottom: 18px !important; }

.consent-service {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md, 14px);
  background: rgba(255,255,255,0.035);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.consent-service-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; margin-bottom: 10px;
}
.consent-service-title { font-size: 15px; font-weight: 700; color: var(--white); margin: 0; }
.consent-provider { color: rgba(255,255,255,0.62); font-size: 12.5px; }
.consent-sub { font-weight: 600; color: var(--white); margin-top: 14px !important; margin-bottom: 6px !important; }
.consent-note { font-size: 12.5px; color: rgba(255,255,255,0.60); font-style: italic; }
.consent-legal {
  font-size: 12px; color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 10px; margin-top: 14px !important; margin-bottom: 0 !important;
}
.consent-list { margin: 0 0 10px; padding-left: 20px; }
.consent-list li { margin-bottom: 5px; }

.consent-badge {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--peach);
  background: rgba(237,191,139,0.14);
  border: 1px solid rgba(237,191,139,0.3);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}

/* Schalter: echtes <input type="checkbox">, damit Tastatur und Screenreader
   ohne Zusatzcode funktionieren. Nie vorangekreuzt (s. consent.js). */
.consent-switch { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.consent-switch input {
  appearance: none;
  width: 44px; height: 25px; margin: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  position: relative; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.consent-switch input::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s ease;
}
.consent-switch input:checked { background: var(--teal); border-color: var(--teal); }
.consent-switch input:checked::after { transform: translateX(19px); }
.consent-switch input:focus-visible { outline: 3px solid var(--peach); outline-offset: 2px; }
.consent-switch input:disabled { cursor: default; opacity: 0.75; }
.consent-switch label { font-size: 13px; color: rgba(255,255,255,0.75); cursor: pointer; }
.consent-switch.is-locked label { cursor: default; }

.consent-table-wrap { overflow-x: auto; margin: 6px 0 10px; }
.consent-table { width: 100%; border-collapse: collapse; font-size: 12.5px; min-width: 420px; }
.consent-table th, .consent-table td {
  text-align: left; padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  vertical-align: top;
}
.consent-table th { color: var(--white); font-weight: 600; white-space: nowrap; }
.consent-table tr:last-child td { border-bottom: none; }

.consent-modal-foot {
  font-size: 12.5px; color: rgba(255,255,255,0.60);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 14px; margin-top: 18px !important;
}
.consent-modal-actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
}

@media (max-width: 640px) {
  .consent-banner { left: 8px; right: 8px; bottom: 8px; }
  .consent-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; }
  /* Banner darf auf kleinen Geräten nicht die halbe Seite verdecken.
     Der volle Text bleibt über den Scroll-Container erreichbar — er wird
     nur nicht komplett ausgeklappt. Keine Verkürzung des Inhalts. */
  .consent-copy { max-height: 30vh; overflow-y: auto; overscroll-behavior: contain; }
  .consent-title { font-size: 15px; }
  .consent-text { font-size: 12.5px; line-height: 1.55; }
  .consent-btn { font-size: 13.5px; padding: 12px 16px; }
  .consent-actions { flex-direction: column; align-items: stretch; gap: 8px; }
  /* flex: 1 1 0 statt auto -> Ablehnen und Akzeptieren exakt gleich breit */
  .consent-btn { flex: 1 1 0; min-width: 0; width: 100%; }
  .consent-modal { width: calc(100vw - 16px); max-height: 92vh; }
  .consent-modal-head, .consent-modal-body, .consent-modal-actions { padding-left: 16px; padding-right: 16px; }
  .consent-modal-actions { flex-direction: column-reverse; }
  .consent-modal-actions .consent-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .consent-banner { transition: opacity 0.2s ease; transform: none; }
  .consent-switch input, .consent-switch input::after { transition: none; }
}

/* ==========================================================================
   Bridge-CTA (dunkelgrün, nach den Ergebnissen)
   ========================================================================== */
.bridge-cta {
  background: var(--white);
  padding: 8px 0 var(--space-sm);
}
.bridge-cta-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.55fr auto;
  align-items: center;
  gap: 44px;
  min-height: 230px;
  padding: 40px 56px;
  background: var(--ink);
  color: var(--white);
  border-radius: 30px;
}
.bridge-cta-glow {
  position: absolute;
  width: 520px; height: 520px;
  right: -110px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,191,139,0.20), rgba(237,191,139,0) 68%);
  pointer-events: none;
}
.bridge-cta-copy { position: relative; z-index: 1; }
.bridge-cta-eyebrow {
  text-transform: uppercase;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--peach);
  margin: 0 0 14px;
}
.bridge-cta-headline {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 12px;
  max-width: 30ch;
}
.bridge-cta-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 52ch;
}
.bridge-cta-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}
.bridge-cta-btn {
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  padding: 18px 30px;
}
.bridge-cta-btn:hover {
  background: #F6F9F8;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.bridge-cta-btn svg { width: 18px; height: 18px; transition: transform 0.22s ease; }
.bridge-cta-btn:hover svg { transform: translateX(4px); }
.bridge-cta-meta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
@media (max-width: 860px) {
  .bridge-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
    min-height: 0;
  }
  .bridge-cta-action { align-items: stretch; }
  .bridge-cta-btn { justify-content: center; width: 100%; }
  .bridge-cta-meta { text-align: center; }
  .bridge-cta-glow { right: -180px; top: 0; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .bridge-cta-btn:hover { transform: none; }
  .bridge-cta-btn svg, .bridge-cta-btn:hover svg { transition: none; transform: none; }
}

/* ==========================================================================
   Mobile Sticky-CTA-Bar
   ========================================================================== */
.mobile-cta-bar { display: none; }
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 24px rgba(26,35,34,0.08);
  }
  .mobile-cta-bar .btn { flex: 1 1 auto; padding-top: 14px; padding-bottom: 14px; }
  .mobile-cta-bar .mobile-cta-wa {
    flex: 0 0 auto;
    background: var(--white);
    color: var(--ink);
    border-color: rgba(26,35,34,0.25);
    backdrop-filter: none;
  }
  /* Platz schaffen, damit die Bar nichts überdeckt */
  body { padding-bottom: 74px; }
}

