/* ============================================================
   frankenBERATER · Design System
   Tokens: Marke aus frankenberater.de,
   Sektions-Radien + Pill-Sprache aus hassbergzimmerei.
   ============================================================ */

:root {
  /* Marke */
  --red:        #EB283B;
  --red-dark:   #c41f30;
  --red-soft:   #fdeaed;

  /* Neutrale */
  --black:      #0c0c0c;
  --gray-900:   #141414;
  --gray-800:   #1f1f1f;
  --gray-700:   #2e2e2e;
  --gray-500:   #737373;
  --gray-300:   #d9d9d9;
  --gray-200:   #e5e5e5;
  --gray-100:   #f0efed;
  --white:      #ffffff;

  --ink:        #0c0c0c;
  --muted:      #737373;
  --line:       #e5e5e5;
  --cream:      #f0efed;

  --green:      #2f7a4a;
  --green-soft: #e2f2ea;

  /* Radien */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-section: 36px;
  --r-pill: 100px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 70px rgba(0,0,0,0.14);
  --shadow-red: 0 16px 34px rgba(235,40,59,0.28);

  --wrap: 1200px;
  --wrap-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: 1360px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s cubic-bezier(.4,0,.2,1),
    backdrop-filter 0.5s cubic-bezier(.4,0,.2,1),
    -webkit-backdrop-filter 0.5s cubic-bezier(.4,0,.2,1),
    padding 0.3s ease,
    border-color 0.4s ease;
}
.nav.scrolled {
  background: rgba(12,12,12,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.07);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: white; letter-spacing: -0.02em;
}
.nav-logo img { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo .brand-text {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-top: 6px;   /* optical alignment: Logo-Zacken sind unten schwerer */
}
.nav-logo .brand-text b { font-weight: 800; }
.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-link {
  color: rgba(255,255,255,0.78);
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.08); color: white; }
.nav .btn { margin-left: 10px; white-space: nowrap; }
@media (max-width: 1240px) {
  .nav-link { padding: 8px 10px; font-size: 13.5px; }
  .nav .btn { padding: 11px 18px; font-size: 13.5px; }
  .nav-links { gap: 2px; }
}
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  color: white;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ============ FRANKENMODE-TOGGLE (Switch + Label) ============ */
.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.42);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  flex-shrink: 0;
  user-select: none;
}
.mode-toggle:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.20);
}
.mode-toggle-switch {
  position: relative;
  width: 28px; height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: background 0.22s ease;
  flex-shrink: 0;
}
.mode-toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  transition: transform 0.24s cubic-bezier(.5,0,.5,1), background 0.22s ease;
}
.mode-toggle-label { white-space: nowrap; }

.mode-toggle.is-on {
  color: var(--red);
  border-color: rgba(235,40,59,0.5);
  background: rgba(235,40,59,0.08);
}
.mode-toggle.is-on:hover {
  color: #ff8a95;
  border-color: rgba(235,40,59,0.7);
  background: rgba(235,40,59,0.12);
}
.mode-toggle.is-on .mode-toggle-switch { background: var(--red); }
.mode-toggle.is-on .mode-toggle-thumb { transform: translateX(12px); background: #fff; }

@media (max-width: 1240px) {
  .mode-toggle--desktop { font-size: 11.5px; padding: 5px 10px 5px 7px; gap: 7px; }
}
/* Mobile-Instanz standardmäßig versteckt; nur im Hamburger-Menü aktiv */
.mode-toggle--mobile { display: none; }
@media (max-width: 960px) {
  .mode-toggle--desktop { display: none; }
  .mode-toggle--mobile {
    display: inline-flex;
    margin: 8px 0 0 0;
    padding: 10px 14px;
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
    font-size: 13px;
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
  }
  .mode-toggle--mobile .mode-toggle-label { display: inline; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--red); color: white; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }
.btn--secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.22); }
.btn--secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.42); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--gray-200); }
.btn--ghost:hover { background: var(--gray-100); }
.btn--lg { padding: 17px 34px; font-size: 15px; }

/* ============ PILL/CHIP ============ */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(235,40,59,0.16);
}
.pill--light {
  background: rgba(0,0,0,0.04);
  color: var(--ink);
  border-color: rgba(0,0,0,0.06);
}
.pill--light .dot { box-shadow: 0 0 0 4px rgba(235,40,59,0.10); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.06;
}
h1 { font-size: clamp(38px, 5.5vw, 72px); }
h1.h1--compact { font-size: clamp(30px, 4.4vw, 56px); }
h2 { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -0.024em; }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.02em; line-height: 1.2; }

/* Accent: subtle animated gradient */
.accent {
  background: linear-gradient(90deg, #d1132a 0%, #EB283B 25%, #ff7a86 50%, #EB283B 75%, #d1132a 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: accentShift 14s cubic-bezier(.5,0,.5,1) infinite;
}
@keyframes accentShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .accent { animation: none; }
}

/* ============ HERO ============ */
.hero {
  background: var(--black);
  color: white;
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 45% at 50% 0%, rgba(235,40,59,0.20), transparent 65%),
    radial-gradient(45% 55% at 85% 100%, rgba(235,40,59,0.10), transparent 60%),
    radial-gradient(35% 45% at 12% 90%, rgba(235,40,59,0.06), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 40px;
  background: linear-gradient(to top, rgba(240,239,237,0), rgba(240,239,237,0));
  pointer-events: none;
}
.hero-inner {
  text-align: center;
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero h1 {
  margin-top: 22px;
  color: white;
}
.hero .lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.55;
}
.hero .lead strong { color: white; font-weight: 700; }
.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 34px;
}
.hero-image {
  margin: 40px auto -180px;
  max-width: 1120px;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: -160px -140px -20px -140px;
  background:
    radial-gradient(55% 50% at 50% 55%, rgba(235,40,59,0.75), rgba(235,40,59,0) 65%),
    radial-gradient(35% 45% at 50% 60%, rgba(255,140,120,0.55), rgba(255,140,120,0) 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: heroGlow 7s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  clip-path: inset(0 0 10% 0);
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

/* Pixel-Cluster (Logo-inspiriert · wegfliegende Pixel) */
.hero-pixels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.hero-pixels .px {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 5px);
  height: var(--s, 5px);
  background: var(--c, #EB283B);
  border-radius: 1px;
  opacity: 0;
  animation: pxFloat var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
  will-change: transform, opacity;
}
@keyframes pxFloat {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  20%  { opacity: var(--o, 0.7); }
  50%  { transform: translate(var(--dx, -8px), var(--dy, -14px)) scale(1.2); opacity: var(--o, 0.9); }
  80%  { opacity: var(--o, 0.5); }
  100% { transform: translate(calc(var(--dx, -8px) * 1.6), calc(var(--dy, -14px) * 1.6)) scale(0.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pixels .px { animation: none; opacity: var(--o, 0.6); }
}

/* Grain auf dem Glow (SVG turbulence) */
.hero-image::after {
  content: "";
  position: absolute;
  inset: -160px -140px -20px -140px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.16  0 0 0 0 0.23  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  mix-blend-mode: screen;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(55% 55% at 50% 55%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(55% 55% at 50% 55%, black 20%, transparent 75%);
}

/* Floating hero tags around the envelope image */
.hero-tags {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: rgba(20,20,20,0.72);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: heroFloat 7s ease-in-out infinite;
  pointer-events: auto;
}
.hero-tag .tag-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EB283B, #ff6b7a);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 0 0 4px rgba(235,40,59,0.16);
  flex-shrink: 0;
}
.hero-tag .tag-ico svg { width: 12px; height: 12px; }
.hero-tag--tl { top: 22%;  left: 12%;   animation-delay: 0s;   }
.hero-tag--tr { top: 10%;  right: 12%;  animation-delay: 2s;   }
.hero-tag--br { bottom: 30%; right: 22%; animation-delay: 3.5s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (max-width: 900px) {
  .hero-tag { font-size: 11px; padding: 8px 12px 8px 10px; }
  .hero-tag--tl { top: 20%; left: 6%; }
  .hero-tag--tr { top: 8%; right: 6%; }
  .hero-tag--br { top: auto; right: 12%; bottom: 34%; }
}
/* Mobile: Labels als vertikale Chip-Column oberhalb des Bildes (keine Face-Occlusion) */
@media (max-width: 620px) {
  .hero-tags {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    margin-bottom: 22px;
  }
  .hero-tag {
    position: static;
    transform: none !important;
    animation: none !important;
    font-size: 12px;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }
  .hero-tag--tl, .hero-tag--tr, .hero-tag--br { display: inline-flex; }
}

/* ============ SECTION SHELL ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section--cream {
  background: var(--cream);
  border-top-left-radius: var(--r-section);
  border-top-right-radius: var(--r-section);
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.section--white {
  background: var(--white);
  border-top-left-radius: var(--r-section);
  border-top-right-radius: var(--r-section);
  margin-top: -36px;
  position: relative;
  z-index: 3;
}
.section--dark {
  background: var(--black);
  color: white;
  border-top-left-radius: var(--r-section);
  border-top-right-radius: var(--r-section);
  margin-top: -36px;
  position: relative;
  z-index: 4;
}
/* Modifier: seamless zur Sektion davor (kein oberer Radius, kein Overlap) */
.section--flat {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
  padding-top: 20px;
}
.section--dark h2, .section--dark h3 { color: white; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .pill { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.section--dark .section-head p { color: rgba(255,255,255,0.7); }

/* ============ KENNZAHLEN · Editorial Data-Viz Cards ============ */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.stat {
  background: var(--white);
  border-radius: 28px;
  padding: 32px 32px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 20px 50px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s;
  display: flex; flex-direction: column;
  min-height: 380px;
}
.stat:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.03),
    0 36px 90px rgba(0,0,0,0.14);
}
.stat-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 24px;
}
.stat .num {
  font-size: clamp(64px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 0.9;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.stat .num .unit {
  font-size: clamp(20px, 1.7vw, 24px);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.stat .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  margin: 16px 0 0;
  letter-spacing: -0.005em;
  line-height: 1.45;
}

/* Data-Viz Frame at the bottom of each card */
.stat-viz {
  margin-top: auto;
  padding-top: 36px;
}

/* Viz 1: Calendar-grid (17 Tage / Vakanzzeit) */
.viz-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.viz-cal .cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--gray-100);
  transition: background 0.6s cubic-bezier(.2,.7,.2,1);
}
.viz-cal .cell.on { background: var(--red); }
.viz-cal .cell.fade { background: rgba(235,40,59,0.32); }

/* Viz 2: Vergleichsbalken (Brief vs. E-Mail) */
.viz-bars {
  display: flex; gap: 18px; align-items: flex-end;
  height: 130px;
}
.viz-bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: stretch; gap: 8px;
}
.viz-bar-col .bar {
  border-radius: 8px 8px 4px 4px;
  transform-origin: bottom;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), background 0.4s;
}
.viz-bar-col .bar--tall  { height: 108px; background: linear-gradient(180deg, #ff6b7a, #EB283B); }
.viz-bar-col .bar--short { height: 22px; background: var(--gray-200); }
.viz-bar-col .lbl {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); text-align: center;
}
.viz-bar-col .lbl b { color: var(--ink); display: block; margin-bottom: 2px; font-size: 13px; letter-spacing: -0.01em; text-transform: none; }

/* Viz 3: Aufsteigende Kurve */
.viz-line {
  width: 100%; height: 130px;
  position: relative;
}
.viz-line svg { width: 100%; height: 100%; display: block; }
.viz-line .grid line { stroke: rgba(0,0,0,0.05); stroke-width: 1; }
.viz-line .path {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.8s cubic-bezier(.2,.7,.2,1);
}
.viz-line.is-visible .path { stroke-dashoffset: 0; }
.viz-line .area { fill: url(#areaGrad); opacity: 0; transition: opacity 0.9s ease 0.6s; }
.viz-line.is-visible .area { opacity: 1; }
.viz-line .dot-end {
  fill: var(--red);
  r: 5;
  opacity: 0;
  transition: opacity 0.4s ease 1.6s;
}
.viz-line.is-visible .dot-end { opacity: 1; }

/* Viz 4: People-Grid (Fachkräfte-Mangel) */
.viz-people {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 5px;
}
.viz-people .p {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background 0.5s cubic-bezier(.2,.7,.2,1);
}
.viz-people .p.miss { background: var(--red); }

/* Viz 4b: Monats-Balken (180 Tage / 6 Monate) */
.viz-months {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
  height: 130px; align-items: end;
}
.viz-months .m {
  height: 100%;
  border-radius: 6px 6px 4px 4px;
  transform-origin: bottom;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), background 0.9s;
  will-change: transform, background;
}
/* Sichtbare Baseline, auch bevor Animation triggert */
.viz-months .m1 { background: linear-gradient(180deg, #fdeaed, #fbe0e4); transform: scaleY(0.35); }
.viz-months .m2 { background: linear-gradient(180deg, #ffc4cb, #ff9fa9); transform: scaleY(0.50); }
.viz-months .m3 { background: linear-gradient(180deg, #ff9fa9, #ff7583); transform: scaleY(0.65); }
.viz-months .m4 { background: linear-gradient(180deg, #ff7583, #ff4a5e); transform: scaleY(0.78); }
.viz-months .m5 { background: linear-gradient(180deg, #ff4a5e, #EB283B); transform: scaleY(0.90); }
.viz-months .m6 { background: linear-gradient(180deg, #EB283B, #c41f30); transform: scaleY(1.00); }
.viz-months.is-visible .m1 { transition-delay: 0.00s; }
.viz-months.is-visible .m2 { transition-delay: 0.08s; }
.viz-months.is-visible .m3 { transition-delay: 0.16s; }
.viz-months.is-visible .m4 { transition-delay: 0.24s; }
.viz-months.is-visible .m5 { transition-delay: 0.32s; }
.viz-months.is-visible .m6 { transition-delay: 0.40s; }
.viz-caption {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  display: flex; justify-content: space-between;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Viz 5: Donut 1 von 3 */
.viz-donut {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
}
.viz-donut svg { width: 110px; height: 110px; }
.viz-donut .track { fill: none; stroke: var(--gray-200); stroke-width: 14; }
.viz-donut .progress {
  fill: none; stroke: url(#donutGrad);
  stroke-width: 14; stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: center;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.7,.2,1);
}
.viz-donut.is-visible .progress { stroke-dashoffset: 209; } /* 33% */
.viz-donut .donut-label {
  font-size: 13px; color: var(--muted); max-width: 120px; line-height: 1.4;
}
.viz-donut .donut-label b { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }

.stats-source {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 32px;
  padding: 0 16px;
}

@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 340px; }
}

/* ============ MINI-STATS (kompakter Zahlen-Streifen) ============ */
.stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-mini {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 12px 30px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s;
}
.stat-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}
.stat-mini .num {
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-mini .num .unit {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  font-weight: 600;
  margin-left: 6px;
}
.stat-mini .lbl {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .stats-mini { grid-template-columns: 1fr; }
}

/* ============ FLOW (3-Schritt-Erklärer) ============ */
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.flow::before {
  /* dünne Verbindungslinie zwischen den Steps auf Desktop */
  content: "";
  position: absolute;
  top: 88px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(235,40,59,0.35) 12%, rgba(235,40,59,0.35) 88%, transparent);
  z-index: 0;
}
.flow-step {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 32px 30px 30px;
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 16px 40px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.03), 0 28px 70px rgba(0,0,0,0.10);
}
.flow-visual {
  width: 72px; height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fdeaed, #fbe0e4);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.flow-visual svg { width: 34px; height: 34px; }
.flow-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Manrope', monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.flow-step h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.flow-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; }
  .flow::before { display: none; }
}

/* ============ FLOW · zwei große Blocks (Offline / Online) ============ */
.flow--two {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
.flow--two::before { display: none; }
.flow-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  align-self: center;
}
.flow-arrow svg { width: 42px; height: 42px; }
.flow-block {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 34px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 20px 50px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
}
.flow-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}
.flow-block::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(235,40,59,0.09), rgba(235,40,59,0) 65%);
  pointer-events: none;
}
.flow-block-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}
.flow-block h3 {
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.flow-block-meta {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.flow-block-visual {
  margin-top: auto;
  padding-top: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  overflow: hidden;
}
.flow-block-visual--photo {
  padding: 0;
  margin: 22px -20px -22px;
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
  display: block;
}
.flow-block-visual--photo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
  object-position: unset;
  display: block;
}
.flow-brands {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.flow-brand {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.flow-brand:hover { transform: translateY(-3px); }
.flow-brand svg { width: 26px; height: 26px; }
.flow-brand--fb { color: #1877F2; }
.flow-brand--ig { color: #E4405F; }
.flow-brand--gg { color: #4285F4; }
.flow-brand--yt { color: #FF0000; }
.flow-envelope {
  position: relative;
  width: 180px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.flow-envelope svg { width: 100%; height: 100%; }
@media (max-width: 900px) {
  .flow--two { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 6px 0; }
}

/* Retargeting-Analogie · schlanke Zeile, nicht als Card */
.retarget-note {
  margin: 28px auto 0;
  max-width: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  text-align: left;
  padding: 0 20px;
}
.retarget-note-ico {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.retarget-note-ico svg { width: 13px; height: 13px; }
.retarget-note b { color: var(--ink); font-weight: 700; }
@media (max-width: 640px) {
  .retarget-note {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(235,40,59,0.06);
    border: 1px solid rgba(235,40,59,0.14);
    border-radius: 14px;
    margin-left: 12px;
    margin-right: 12px;
    font-size: 12.5px;
  }
  .retarget-note-ico { margin-top: 2px; }
}

/* ============ WIR-BENTO (Was du bekommst) ============ */
.wir-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wir-item {
  background: var(--white);
  border-radius: 22px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 10px 26px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s;
  min-height: 180px;
}
.wir-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.10);
}
.wir-item-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdeaed, #fbe0e4);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.wir-item-ico svg { width: 22px; height: 22px; }
.wir-item h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.wir-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .wir-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wir-bento { grid-template-columns: 1fr; }
}

/* Du-machst-Streifen */
.du-strip {
  margin-top: 20px;
  background: var(--ink);
  color: white;
  border-radius: 22px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}
.du-strip-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #ff8a95;
  white-space: nowrap;
}
.du-strip-label b {
  display: block;
  color: white;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-top: 4px;
  text-transform: none;
}
.du-strip-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.du-strip-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.du-strip-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.du-strip-item .check svg { width: 12px; height: 12px; }
@media (max-width: 900px) {
  .du-strip { grid-template-columns: 1fr; gap: 20px; }
  .du-strip-items { grid-template-columns: 1fr; }
}

/* ============ CATEGORY CARDS · 3 große horizontale Blocks ============ */
.cat-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 24px 60px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 380px;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.03), 0 40px 90px rgba(0,0,0,0.12);
}
.cat-card--reverse .cat-card-visual { order: 2; }
.cat-card--reverse .cat-card-body { order: 1; }

.cat-card-body {
  padding: 44px 48px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.cat-card-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.cat-card-num::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.6;
}
.cat-card h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.024em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.cat-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.cat-card li {
  display: flex; align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.cat-card li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cat-card li .check svg { width: 12px; height: 12px; }

/* Visual side */
.cat-card-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f5f2 0%, #efece7 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.cat-card-visual--photo { padding: 0; }
.cat-card-visual--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cat-card-visual--mock {
  padding: 40px;
}

/* Mockup: Filter-Panel (Vorbereitung) */
.mock-filter {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  width: 100%;
  max-width: 360px;
  border: 1px solid rgba(0,0,0,0.05);
}
.mock-filter-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.mock-filter-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.mock-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--gray-100);
  color: var(--ink);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.05);
}
.mock-chip.mock-chip--active {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.mock-filter-result {
  padding: 14px 16px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.mock-filter-result .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.mock-filter-result .txt {
  font-size: 12px;
  color: var(--muted);
}
.mock-filter-list {
  margin-top: 14px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.mock-filter-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--ink);
}
.mock-filter-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.mock-filter-row .fill {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.mock-filter-row .fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--red), #ff6b7a);
  border-radius: 3px;
  transform: scaleX(0.7);
  transform-origin: left;
}

@media (max-width: 900px) {
  .cat-card { grid-template-columns: 1fr; min-height: auto; }
  .cat-card--reverse .cat-card-visual { order: 1; }
  .cat-card--reverse .cat-card-body { order: 2; }
  .cat-card-body { padding: 32px 28px; }
  .cat-card-visual { min-height: 260px; }
}

/* ============ PROCESS RAIL · Horizontale Timeline (5 Icons) ============ */
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: start;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.process-rail::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(235,40,59,0.4) 8%,
    rgba(235,40,59,0.6) 50%,
    rgba(235,40,59,0.4) 92%,
    transparent
  );
  z-index: 0;
}
.rail-step {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.rail-step-ico {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, #EB283B 0%, #c41f30 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 12px 30px rgba(235,40,59,0.30),
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 0 0 6px rgba(12,12,12,1);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s;
}
.rail-step-ico svg { width: 32px; height: 32px; }
.rail-step:hover .rail-step-ico {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(235,40,59,0.45),
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 0 0 6px rgba(12,12,12,1);
}
.rail-step-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: white;
  line-height: 1.25;
  min-height: 40px;
}
.rail-step-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
  margin-top: -6px;
}
.rail-step--highlight .rail-step-ico {
  box-shadow:
    0 16px 40px rgba(235,40,59,0.45),
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 0 0 6px rgba(12,12,12,1),
    0 0 0 8px rgba(235,40,59,0.35);
}
.rail-step-badge {
  display: inline-flex;
  align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(235,40,59,0.16);
  color: #ff8a95;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(235,40,59,0.35);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .process-rail { grid-template-columns: 1fr; gap: 24px; }
  .process-rail::before { display: none; }
  .rail-step { flex-direction: row; text-align: left; gap: 18px; align-items: center; }
  .rail-step-title { min-height: 0; }
}

/* ============ DU MACHST · Card mit Checkliste ============ */
.du-card {
  margin: 44px auto 0;
  max-width: 780px;
  background: #171717;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 32px 36px;
}
.du-card-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.du-card-lbl {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 8px;
}
.du-card-ttl {
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}
.du-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 16px;
}
.du-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
}
.du-checklist .chk {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 10px rgba(235,40,59,0.32);
}
.du-checklist .chk svg { width: 14px; height: 14px; }
.du-checklist-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.015em;
  margin-bottom: 3px;
}
.du-checklist-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============ FLOW HERO (Referenz-Layout · 3 Cards mit Nummern + Pfaden) ============ */
.flow-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.05fr;
  gap: 44px;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.fh-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 26px 22px 22px;
  position: relative;
  overflow: visible;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s;
}
.fh-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.10);
}
.fh-card--highlight {
  align-self: center;
  border-color: rgba(235,40,59,0.7);
  padding: 32px 28px;
  position: relative;
  animation: highlightBreathe 11s ease-in-out infinite;
}
.fh-card--highlight:hover {
  animation-play-state: paused;
  border-color: rgba(235,40,59,0.9);
  box-shadow:
    0 0 70px rgba(235,40,59,0.32),
    inset 0 0 0 1px rgba(235,40,59,0.32);
}
@keyframes highlightBreathe {
  0%, 100% {
    border-color: rgba(235,40,59,0.55);
    box-shadow:
      0 0 30px rgba(235,40,59,0.14),
      inset 0 0 0 1px rgba(235,40,59,0.16);
  }
  50% {
    border-color: rgba(235,40,59,0.85);
    box-shadow:
      0 0 60px rgba(235,40,59,0.28),
      inset 0 0 0 1px rgba(235,40,59,0.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fh-card--highlight { animation: none; }
}
/* Rote Neon-Pfade: Card 2 → Card 1 (links) und → Card 3 (rechts) */
.fh-card--highlight::before,
.fh-card--highlight::after {
  content: "";
  position: absolute;
  top: 66%;
  width: 46px;
  height: 0;
  border-top: 1.5px dashed rgba(235,40,59,0.85);
  transform: translateY(-50%);
  z-index: 3;
  filter: drop-shadow(0 0 4px rgba(235,40,59,0.7)) drop-shadow(0 0 10px rgba(235,40,59,0.4));
}
.fh-card--highlight::before { right: 100%; }
.fh-card--highlight::after { left: 100%; }
.fh-num {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 800;
  align-self: flex-start;
  background: rgba(235,40,59,0.06);
}
.fh-title {
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: -4px;
}
.fh-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin-top: -10px;
}

/* --- Card 1: Suche + Firmen-Liste + Bullets --- */
.fh-search {
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  display: flex; justify-content: space-between; align-items: center;
}
.fh-search svg { width: 14px; height: 14px; opacity: 0.5; }
.fh-list {
  display: flex; flex-direction: column;
  gap: 6px;
  mask-image: linear-gradient(to bottom, black 0%, black 55%, rgba(0,0,0,0.3) 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, rgba(0,0,0,0.3) 85%, transparent 100%);
  padding-bottom: 20px;
  margin-bottom: -20px;
}
.fh-list .fh-list-row.fh-list-row--ghost {
  opacity: 0.5;
  filter: blur(1px);
}
.fh-list-row {
  display: grid; grid-template-columns: 26px 1fr auto;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  align-items: center;
}
.fh-list-avatar {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(235,40,59,0.14);
  color: #ff8a95;
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.fh-list-info { min-width: 0; }
.fh-list-name {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.fh-list-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
  line-height: 1.25;
}
.fh-list-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fh-bullets {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}
.fh-bullet {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.fh-bullet .chk {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(235,40,59,0.08);
}
.fh-bullet .chk svg { width: 10px; height: 10px; }

/* --- Card 2: 3 Chips horizontal --- */
.fh-chips-row {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  padding: 18px 4px 6px;
}
.fh-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex: 0 1 auto;
}
.fh-chip-ico {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(235,40,59,0.18);
  color: #ff8a95;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fh-chip-ico svg { width: 12px; height: 12px; }
.fh-chip-connector {
  flex: 0 0 auto;
  width: 20px;
  border-top: 1.5px dashed rgba(235,40,59,0.65);
  min-width: 14px;
  filter: drop-shadow(0 0 3px rgba(235,40,59,0.5));
}
@media (max-width: 1200px) {
  .fh-chip { font-size: 12.5px; padding: 10px 14px; }
  .fh-chip-ico { width: 22px; height: 22px; }
  .fh-chip-connector { width: 12px; }
}

/* --- Card 3: Handy-Bild + Brand-Row + roter CTA-Button --- */
.fh-phone {
  flex: 1;
  display: flex; align-items: flex-start; justify-content: center;
  min-height: 220px;
  max-height: 300px;
  padding: 4px;
  overflow: hidden;
  margin: 0 -8px -22px;
  position: relative;
  mask-image: linear-gradient(to bottom, black 0%, black 50%, rgba(0,0,0,0.35) 72%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, rgba(0,0,0,0.35) 72%, transparent 90%);
}
.fh-phone img {
  max-width: 90%;
  width: auto;
  height: auto;
  border-radius: 14px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}
.fh-brands-row {
  display: flex; justify-content: center; align-items: center;
  gap: 26px;
  padding: 0;
  margin-top: -72px;
  position: relative;
  z-index: 2;
}
.fh-brand {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s ease, transform 0.25s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.fh-brand:hover { color: white; transform: translateY(-2px); }
.fh-brand svg { width: 24px; height: 24px; }
.fh-brand-ico--fb { color: #1877F2; }
.fh-brand-ico--ig { color: #E4405F; }
.fh-brand-ico--yt { color: #FF0000; }
.fh-cta-btn {
  background: var(--red);
  color: white;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(235,40,59,0.32);
  letter-spacing: -0.005em;
}

@media (max-width: 1080px) {
  .flow-hero { grid-template-columns: 1fr; gap: 20px; }
  .fh-chips-row { padding: 24px 0; }
  .fh-card--highlight { align-self: stretch; animation: none; }
  .fh-card--highlight::before,
  .fh-card--highlight::after { display: none; }
  .fh-phone { margin-bottom: -14px; max-height: 260px; }
  .fh-brands-row { margin-top: -50px; }
}
/* Card 2 Chips auf Mobile vertikal statt horizontal (Overflow-Fix) */
@media (max-width: 700px) {
  .fh-chips-row {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    align-items: stretch;
  }
  .fh-chip {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }
  .fh-chip-connector {
    width: 100%;
    min-width: 0;
    height: 20px;
    border-top: none;
    border-left: none;
    background-image: linear-gradient(to bottom, rgba(235,40,59,0.75) 55%, transparent 55%);
    background-size: 2px 6px;
    background-repeat: repeat-y;
    background-position: center top;
    margin: 0 auto;
    filter: drop-shadow(0 0 3px rgba(235,40,59,0.5));
  }
}

/* ============ DU-BAR · Checkliste horizontal ============ */
.du-bar {
  margin: 40px auto 0;
  max-width: 1240px;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.du-bar-head { display: flex; flex-direction: column; gap: 4px; }
.du-bar-lbl {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
}
.du-bar-ttl {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.du-bar-step {
  display: flex; align-items: flex-start; gap: 14px;
}
.du-bar-chk {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(235,40,59,0.08);
}
.du-bar-chk svg { width: 14px; height: 14px; }
.du-bar-step-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
  letter-spacing: -0.015em;
}
.du-bar-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}
@media (max-width: 960px) {
  .du-bar { grid-template-columns: 1fr; }
  .du-bar-ttl { white-space: normal; }
}

/* ============ PROCESS FLOW (1 · 3 · 1) · minimalistisch ============ */
.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
.process-flow-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  opacity: 0.75;
}
.process-flow-arrow svg { width: 28px; height: 28px; }

.process-flow-big,
.process-flow-item {
  background: #171717;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  color: white;
  position: relative;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), background 0.35s, border-color 0.35s;
  overflow: hidden;
}
.process-flow-big:hover,
.process-flow-item:hover {
  background: #1c1c1c;
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

/* Grosse Cards (1 und 5) */
.process-flow-big {
  padding: 34px 32px;
  display: flex; flex-direction: column;
  gap: 22px;
}
.process-flow-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(235,40,59,0.14);
  border: 1px solid rgba(235,40,59,0.28);
  color: #ff8a95;
  display: flex; align-items: center; justify-content: center;
}
.process-flow-ico svg { width: 22px; height: 22px; }
.process-flow-title {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
}
.process-flow-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.process-flow-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}
.process-flow-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Kurzer Fließtext in großer Card (statt Bullets) */
.process-flow-copy {
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* Roter Highlight-Streifen im Card-Footer */
.process-flow-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: rgba(235,40,59,0.14);
  border: 1px solid rgba(235,40,59,0.32);
  border-radius: 12px;
  color: #ff8a95;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.005em;
}

/* Highlight-Card 5 (Online-Werbung) */
.process-flow-big--highlight {
  background: linear-gradient(155deg, #1f1214 0%, #171717 60%);
  border-color: rgba(235,40,59,0.24);
}
.process-flow-badge {
  display: inline-flex;
  align-items: center; gap: 5px;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(235,40,59,0.18);
  color: #ff8a95;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(235,40,59,0.42);
  align-self: flex-start;
  margin-top: -4px;
}

/* Mittlere gestapelte Cards (2, 3, 4) */
.process-flow-stack {
  display: flex; flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.process-flow-item {
  padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
}
.process-flow-item-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(235,40,59,0.14);
  border: 1px solid rgba(235,40,59,0.28);
  color: #ff8a95;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-flow-item-ico svg { width: 20px; height: 20px; }
.process-flow-item-title {
  font-size: 16px; font-weight: 700; color: white;
  letter-spacing: -0.015em;
}

@media (max-width: 1100px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-flow-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ============ DU MACHST · Timeline-Checkliste ============ */
.du-timeline {
  margin: 60px auto 0;
  max-width: 900px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 30px 36px;
}
.du-timeline-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.du-timeline-head .lbl {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
}
.du-timeline-head .ttl {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
}
.du-timeline-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
}
.du-timeline-steps::before {
  content: "";
  position: absolute;
  top: 15px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, rgba(235,40,59,0.4), rgba(235,40,59,0.2), rgba(235,40,59,0));
  z-index: 0;
}
.du-timeline-step {
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.du-timeline-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--black);
  box-shadow: 0 4px 12px rgba(235,40,59,0.35);
}
.du-timeline-step-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.du-timeline-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .du-timeline-steps { grid-template-columns: 1fr; }
  .du-timeline-steps::before { display: none; }
}

/* ============ Post-Collage · reales Beweis-Bild ============ */
.post-collage {
  margin: 60px auto 0;
  max-width: 1080px;
  padding: 0 16px;
  text-align: center;
}
.post-collage.reveal { opacity: 1; transform: none; transition: none; }

/* Collage-Lead · Apple-esque Typo mit Pfeil */
.collage-lead {
  margin: 90px auto -10px;
  max-width: 900px;
  padding: 0 16px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 26px;
}
.collage-lead-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.collage-lead-headline {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: white;
  line-height: 1.15;
}
.collage-lead-headline span {
  color: white;
  display: inline;
}
.collage-lead-headline .sep {
  color: var(--red);
  font-weight: 800;
  margin: 0 0.15em;
}
.collage-lead-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.005em;
}
.collage-arrow {
  width: 32px;
  height: 82px;
  color: var(--red);
  position: relative;
  margin-top: 4px;
}
.collage-arrow svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 10px rgba(235,40,59,0.55));
}
.collage-arrow .line {
  stroke-dasharray: 6 8;
  animation: arrowDash 1.6s linear infinite;
}
.collage-arrow .head {
  animation: arrowPulse 1.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes arrowDash {
  to { stroke-dashoffset: -28; }
}
@keyframes arrowPulse {
  0%, 100% { transform: translateY(-3px); opacity: 0.7; }
  50%      { transform: translateY(2px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .collage-arrow .line, .collage-arrow .head { animation: none; }
}
.post-collage img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transform: translateY(24px) scale(0.985);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  transition:
    transform 1.2s cubic-bezier(.2,.7,.2,1),
    opacity 0.9s ease-out;
}
.post-collage:not(.is-visible) img {
  opacity: 0.55;
}
.post-collage.is-visible img {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .post-collage img {
    opacity: 1;
    transform: none;
  }
}

/* ============ B2B + B2C Highlight-Banner ============ */
.audience-band {
  margin-top: 40px;
  border-radius: 22px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(235,40,59,0.22) 0%, rgba(235,40,59,0.06) 50%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(235,40,59,0.24);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.audience-band::before {
  content: "";
  position: absolute;
  top: -80px; left: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(235,40,59,0.18), transparent 70%);
  pointer-events: none;
}
.audience-band-text {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.015em;
  line-height: 1.3;
  position: relative; z-index: 1;
}
.audience-band-text b {
  color: #ff8a95;
  font-weight: 800;
}
.audience-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  margin-top: 4px;
  position: relative; z-index: 1;
}

/* ============ DELIVERABLES (Was wir übernehmen / Du machst) ============ */
.deliverables {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 20px;
}
.deliverables-col {
  background: var(--white);
  border-radius: 24px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02), 0 16px 40px rgba(0,0,0,0.05);
}
.deliverables-col--side {
  background: var(--ink);
  color: white;
  border: none;
}
.deliverables-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 22px;
}
.deliverables-col--side .deliverables-label { color: #ff8a95; }
.deliverables-col h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  line-height: 1.2;
}
.deliverables-col--side h3 { color: white; }
.deliverables-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.deliverables-col li {
  display: flex; align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.deliverables-col li:first-child { border-top: none; }
.deliverables-col--side li {
  color: rgba(255,255,255,0.88);
  border-top-color: rgba(255,255,255,0.08);
}
.deliverables-col .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.deliverables-col--side .check {
  background: rgba(255,255,255,0.10);
  color: white;
}
.deliverables-col .check svg { width: 12px; height: 12px; }
.deliverables-note {
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .deliverables { grid-template-columns: 1fr; }
}

/* ============ NUTZEN CARDS ============ */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.benefit {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--red-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 22px;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -0.02em; }
.benefit p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ============ PROZESS ============ */
.prozess {
  max-width: 780px;
  margin: 0 auto;
}
.prozess-phase {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 44px 0 20px;
  color: var(--muted);
}
.prozess-phase:first-child { margin-top: 0; }
.prozess-phase::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.prozess-phase.phase-1 { color: var(--red); }
.prozess-phase.phase-2 { color: var(--ink); }
.prozess-phase.phase-3 { color: var(--green); }

.prozess-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 18px 0;
  position: relative;
}
.prozess-step:not(.prozess-step--last)::before {
  content: "";
  position: absolute;
  left: 27px; top: 68px; bottom: -8px;
  width: 2px;
  background: var(--line);
}
.prozess-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  color: var(--ink);
  z-index: 1;
  font-variant-numeric: tabular-nums;
}
.prozess-step.phase-1 .prozess-num { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.prozess-step.phase-2 .prozess-num { border-color: var(--ink); color: var(--ink); background: var(--gray-100); }
.prozess-step.phase-3 .prozess-num { border-color: var(--green); color: var(--green); background: var(--green-soft); }
.prozess-content strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.prozess-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.prozess-summary {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 22px 26px;
  border-radius: var(--r-lg);
  font-size: 16px;
  margin-top: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.prozess-summary strong { color: var(--ink); }

/* ============ MESSEN CARDS ============ */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.metric-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
}
.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.metric-card .metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
}
.metric-card h3 {
  font-size: 22px; margin-bottom: 20px; letter-spacing: -0.02em;
}
.metric-card ul { list-style: none; padding: 0; margin: 0; }
.metric-card li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-800);
  border-top: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.metric-card li:first-child { border-top: none; }
.metric-card li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.metric-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 30px auto 0;
  max-width: 720px;
}

/* ============ CTA ============ */
.cta-section {
  padding: 120px 0 130px;
  text-align: center;
}
.cta-section .pill { margin-bottom: 22px; }
.cta-section h2 {
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 18px;
}
.cta-section .buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============ LEGAL & DANKE PAGES ============ */
.page-hero {
  background: var(--black);
  color: white;
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 45% at 50% 0%, rgba(235,40,59,0.16), transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.028em;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

.legal-body {
  background: var(--cream);
  border-top-left-radius: var(--r-section);
  border-top-right-radius: var(--r-section);
  margin-top: -36px;
  position: relative;
  z-index: 2;
  padding: 90px 0 100px;
}
.legal-body .wrap-narrow {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 56px clamp(24px, 4vw, 60px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.legal-body h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
  color: var(--ink);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 26px 0 10px;
  color: var(--ink);
}
.legal-body p, .legal-body li {
  font-size: 15.5px;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { text-decoration-thickness: 2px; }
.legal-body address {
  font-style: normal;
  color: var(--ink);
  line-height: 1.7;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.legal-back svg { width: 16px; height: 16px; }

/* Danke-Seite */
.danke {
  background: var(--black);
  color: white;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}
.danke::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(235,40,59,0.20), transparent 70%),
    radial-gradient(40% 40% at 50% 100%, rgba(235,40,59,0.08), transparent 70%);
  pointer-events: none;
}
.danke-card {
  position: relative;
  max-width: 640px;
  text-align: center;
  padding: 20px;
}
.danke-check {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EB283B, #c41f30);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 20px 50px rgba(235,40,59,0.42), inset 0 1px 0 rgba(255,255,255,0.25);
  animation: checkPop 0.7s cubic-bezier(.2,.7,.2,1) both;
}
.danke-check svg { width: 46px; height: 46px; }
@keyframes checkPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.danke h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.028em;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.danke h1 .accent {
  color: transparent;
  background: linear-gradient(90deg, #EB283B, #ff6b7a, #EB283B);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  animation: accentShift 8s ease-in-out infinite;
}
.danke-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}
.danke-lead strong { color: white; font-weight: 700; }
.danke-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.danke-info-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  display: flex; align-items: center; gap: 12px;
}
.danke-info-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(235,40,59,0.15);
  color: #ff8a95;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.danke-info-ico svg { width: 16px; height: 16px; }
.danke-info-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.danke-info-val {
  font-size: 15px;
  color: white;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 560px) {
  .danke-info { grid-template-columns: 1fr; }
  .danke { padding: 100px 20px 40px; }
}

/* ============ COOKIE-CONSENT ============ */
.consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  pointer-events: none;
}
.consent-banner,
.consent-modal-inner {
  pointer-events: auto;
}
.consent-banner {
  max-width: 720px;
  margin: 0 auto 16px;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 26px;
  color: white;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transform: translateY(0);
  animation: consentIn 0.5s cubic-bezier(.2,.7,.2,1) both;
}
.consent-banner.is-hidden { display: none; }
@keyframes consentIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.consent-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 6px;
}
.consent-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}
.consent-link {
  color: #ff8a95;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-link:hover { color: white; }
.consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.consent-btn {
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.consent-btn--primary {
  background: var(--red);
  color: white;
}
.consent-btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.consent-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.12);
}
.consent-btn--ghost:hover { background: rgba(255,255,255,0.10); }

/* Settings Modal */
.consent-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: auto;
}
.consent-modal.is-open { display: flex; animation: consentIn 0.4s ease both; }
.consent-modal-inner {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  max-width: 620px;
  width: 100%;
  color: white;
  padding: 30px 32px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.consent-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.consent-modal-head .consent-title { margin: 0; font-size: 20px; }
.consent-close {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.consent-close:hover { background: rgba(255,255,255,0.10); }
.consent-close svg { width: 16px; height: 16px; }

.consent-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.consent-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 18px; }
.consent-row > div:first-child { flex: 1; }
.consent-row-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.consent-row-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* Toggle */
.consent-toggle {
  position: relative;
  display: inline-block;
  width: 46px; height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-toggle input { opacity: 0; width: 0; height: 0; }
.consent-toggle span {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.14);
  border-radius: 100px;
  transition: background 0.25s;
}
.consent-toggle span::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
}
.consent-toggle input:checked + span { background: var(--red); }
.consent-toggle input:checked + span::before { transform: translateX(20px); }
.consent-toggle--locked span { background: rgba(235,40,59,0.35); cursor: not-allowed; }

.consent-modal-actions {
  display: flex; justify-content: flex-end; gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .consent-banner { grid-template-columns: 1fr; padding: 20px; margin: 0 8px 8px; }
  .consent-actions { justify-content: stretch; }
  .consent-btn { flex: 1; text-align: center; }
  .consent-modal-inner { padding: 24px 20px; }
}

/* ============ FAQ · Accordion ============ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.faq-item[open] {
  border-color: rgba(235,40,59,0.24);
  background: #fffefd;
}
.faq-summary {
  padding: 22px 26px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), background 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: white;
}
.faq-body {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-body b { color: var(--ink); font-weight: 700; }

/* ============ KONTAKT-FORMULAR ============ */
.contact-form {
  max-width: 720px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  backdrop-filter: blur(12px);
}
.form-row { margin-bottom: 22px; }
.form-row--2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: border-color 0.25s, background 0.25s;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(235,40,59,0.6);
  background: rgba(255,255,255,0.08);
}
.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}
.form-toggle {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
}
.form-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-toggle label {
  flex: 1;
  padding: 12px 16px;
  border-radius: 9px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  letter-spacing: -0.005em;
}
.form-toggle input:checked + label {
  background: var(--red);
  color: white;
  box-shadow: 0 6px 16px rgba(235,40,59,0.32);
}
.form-slider {
  padding: 18px 18px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
}
.form-slider-value {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.form-slider-value b {
  color: #ff8a95;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}
.form-slider input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.14);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.form-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 3px solid #1a1a1a;
  box-shadow: 0 4px 14px rgba(235,40,59,0.45);
}
.form-slider input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 3px solid #1a1a1a;
  box-shadow: 0 4px 14px rgba(235,40,59,0.45);
}
.form-slider-marks {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.form-submit {
  width: 100%;
  padding: 17px 24px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  margin-top: 8px;
  letter-spacing: -0.005em;
}
.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(235,40,59,0.4);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.form-error {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(235,40,59,0.14);
  border: 1px solid rgba(235,40,59,0.35);
  border-radius: 10px;
  color: #ff8a95;
  font-size: 13.5px;
  line-height: 1.5;
  display: none;
}
.form-error.is-visible { display: block; }
.form-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .contact-form { padding: 28px 22px; }
  .form-row--2 { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 10px; color: white;
  font-weight: 400; font-size: 18px; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer-brand .logo img { width: 34px; height: 34px; }
.footer-brand .logo b { font-weight: 800; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.6);
  max-width: 340px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.14em; color: white; margin-bottom: 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal a { color: rgba(255,255,255,0.6); margin-left: 20px; }
.footer-bottom .legal a:first-child { margin-left: 0; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ============ EMPFEHLUNGS-KASKADE ============ */
#kaskade .section-head { margin-bottom: 50px; }
#kaskade .section-head p {
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.55;
}

.kaskade {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 20px;
  position: relative;
}
.kaskade-stage {
  display: block;
  padding: 0 16px;
}
.kaskade-side {
  text-align: right;
  padding-right: 6px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-top: 8px;
  padding-bottom: 8px;
}
.kaskade-side-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 24px rgba(235,40,59,0.28);
}
.kaskade-side-lbl {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  margin-top: 6px;
  line-height: 1.35;
}
.kaskade-nodes {
  display: grid;
  gap: 12px;
  padding-left: 6px;
}
.kaskade-nodes--7 { grid-template-columns: repeat(7, 78px); justify-content: space-between; padding-left: 6px; }
.kaskade-nodes--6 { grid-template-columns: repeat(6, 1fr); justify-content: space-between; padding-left: 6px; gap: 10px; }
.kaskade-nodes--3 { grid-template-columns: repeat(3, 78px); justify-content: space-around; padding: 0 40px 0 40px; }
.kaskade-nodes--2 { grid-template-columns: repeat(2, 78px); justify-content: space-around; padding: 0 120px; }
.kaskade-stage--source .kaskade-nodes { grid-template-columns: 88px; justify-content: center; padding: 0; }

.kaskade-node {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: all 0.28s ease;
}
.kaskade-node svg { width: 46%; height: 46%; }
.kaskade-node.is-passive { opacity: 0.62; }
.kaskade-node.is-active {
  background: rgba(235,40,59,0.10);
  border-color: rgba(235,40,59,0.55);
  color: #ff8a95;
  box-shadow: 0 0 0 4px rgba(235,40,59,0.08), 0 6px 20px rgba(235,40,59,0.18);
}
.kaskade-node.is-hot {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 0 0 6px rgba(235,40,59,0.14), 0 10px 26px rgba(235,40,59,0.34);
}
.kaskade-node--company {
  aspect-ratio: 1 / 1;
  background: rgba(235,40,59,0.14);
  border-color: rgba(235,40,59,0.55);
  color: var(--red);
  border-radius: 18px;
}
.kaskade-node--company svg { width: 42%; height: 42%; }
.kaskade-node-tag {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.kaskade-node--company .kaskade-node-tag { color: var(--red); }
.kaskade-node--apply .kaskade-node-tag { color: white; }
.kaskade-node-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(235,40,59,0.22);
  animation: kaskadePulse 2s ease-in-out infinite;
}
@keyframes kaskadePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.75; }
}

.kaskade-connect {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  height: 40px;
  margin: 4px 0;
}
.kaskade-connect::after {
  content: "";
  grid-column: 2;
  height: 100%;
  background-image: radial-gradient(circle, rgba(235,40,59,0.55) 1.4px, transparent 1.6px);
  background-size: 6px 6px;
  background-position: center;
  background-repeat: repeat-x;
  mask-image: linear-gradient(to right, transparent 0, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 12%, black 88%, transparent 100%);
}
.kaskade-connect > svg { display: none; }

.kaskade-note {
  margin: 40px auto 0;
  max-width: 620px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.kaskade-note b { color: white; }

/* Kaskade · Desktop = horizontal, Tablet/Mobile = vertikal */
.kaskade-graphic {
  margin: 30px auto 0;
  padding: 20px 12px;
}
.kaskade-graphic svg { width: 100%; height: auto; display: block; }
.kaskade-graphic--vertical { max-width: 620px; padding: 20px 8px; }
.kaskade-graphic:not(.kaskade-graphic--vertical) { max-width: 1100px; display: none; }
.kaskade { display: none; }
@media (min-width: 1000px) {
  .kaskade-graphic:not(.kaskade-graphic--vertical) { display: block; }
  .kaskade-graphic--vertical { display: none; }
}

/* Kaskade Responsive */
@media (max-width: 780px) {
  .kaskade-stage, .kaskade-connect {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }
  .kaskade-side { padding-right: 4px; }
  .kaskade-side-num { font-size: 32px; }
  .kaskade-side-lbl { font-size: 12px; }
  .kaskade-nodes--7 { grid-template-columns: repeat(7, 1fr); }
  .kaskade-nodes--3 { grid-template-columns: repeat(3, 1fr); padding: 0 24px; gap: 12px; }
  .kaskade-nodes--2 { grid-template-columns: repeat(2, 1fr); padding: 0 24%; gap: 12px; }
  .kaskade-node-tag { font-size: 9.5px; letter-spacing: 0.04em; }
}
@media (max-width: 480px) {
  .kaskade { padding: 20px 4px 12px; }
  .kaskade-stage, .kaskade-connect { grid-template-columns: 70px 1fr; gap: 8px; }
  .kaskade-side-num { font-size: 26px; }
  .kaskade-side-lbl { font-size: 10.5px; line-height: 1.3; }
  .kaskade-nodes--7 { gap: 4px; }
  .kaskade-nodes--3 { padding: 0 8px; gap: 6px; }
  .kaskade-nodes--2 { padding: 0 20%; gap: 6px; }
  .kaskade-node svg { width: 52%; height: 52%; }
  .kaskade-node-tag { font-size: 9px; bottom: -18px; letter-spacing: 0; }
  .kaskade-connect { height: 30px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 70px 0; }
  .hero { padding: 110px 0 60px; }
  .hero-image { margin-bottom: -50px; }
  .nav-toggle { display: inline-flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 12px; right: 12px;
    background: rgba(12,12,12,0.96);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 8px;
    gap: 4px;
  }
  .nav-links.mobile-open .btn { margin: 6px 0 0 0; }
}
@media (max-width: 620px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 100px 0 50px; }
  .hero-image { margin: 40px auto -30px; }
  .hero-ctas .btn { width: 100%; }
  .cta-section { padding: 90px 0 100px; }
  .stat { padding: 28px 24px; }
  .prozess-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .prozess-num { width: 44px; height: 44px; font-size: 15px; }
  .prozess-step:not(.prozess-step--last)::before { left: 21px; top: 58px; }
  h1 { font-size: clamp(28px, 8vw, 42px); }
  h1.h1--compact { font-size: clamp(24px, 7vw, 34px); }
  .hero .lead { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .wrap, .wrap--wide { padding: 0 18px; }
  .stat .num { font-size: clamp(46px, 12vw, 60px); }
  .fh-card { padding: 22px 18px; }
  .fh-title { font-size: 20px; }
  .fh-chip { font-size: 12px; padding: 8px 12px; }
  .fh-chip-connector { width: 8px; }
  .du-timeline { padding: 24px 22px; }
  .contact-form { padding: 24px 20px; }
  .form-slider-value { font-size: 22px; }
  .faq-summary { font-size: 15px; padding: 18px 20px; gap: 14px; }
  .faq-body { padding: 0 20px 20px; font-size: 14.5px; }
  .collage-lead-headline {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.4;
    padding: 0 8px;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .collage-lead-headline span { display: inline-block; }
  .collage-lead-headline .sep { margin: 0 0.25em; }
  .collage-lead { gap: 20px; padding: 0 12px; margin: 60px auto -10px; max-width: 100%; }
  .collage-lead-sub { font-size: 14px; }
  .collage-arrow { width: 26px; height: 66px; }
  .audience-band {
    padding: 22px 20px;
    border-radius: 18px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .audience-band-text { font-size: 16px; line-height: 1.4; }
  .audience-band-sub { font-size: 13px; }
  .audience-band::before { width: 180px; height: 180px; top: -60px; left: -60px; }
  .post-collage { margin: 40px auto 0; padding: 0 12px; max-width: 100%; box-sizing: border-box; }
  .du-strip { padding: 22px 20px; }
  .footer { padding: 44px 0 24px; }
}

/* Mobile Landscape · niedriger Viewport */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 90px 0 40px; }
  .hero-image { margin: 20px auto -20px; max-width: 68%; }
  .hero .lead { max-width: 520px; margin-top: 16px; }
  .hero-ctas { margin-top: 22px; }
  .hero-pixels { display: none; }
  .cta-section { padding: 70px 0 80px; }
  .page-hero { padding: 110px 0 70px; }
  .danke { padding: 90px 20px 40px; }
}

/* Tablet Portrait */
@media (min-width: 620px) and (max-width: 900px) {
  .wrap, .wrap--wide { padding: 0 28px; }
  .flow-hero { gap: 30px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stats .stat:last-child { grid-column: 1 / -1; max-width: none; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Ultra-wide */
@media (min-width: 1600px) {
  .hero-image { max-width: 1240px; }
  .hero-inner { max-width: 1080px; }
}
