/* ============================================================
   RedCastle eG — Funnel: KONSOLIDIERTES STYLESHEET (main.css)
   ============================================================
   Zusammengeführt am 2026-07-17 aus (Ladereihenfolge = Kaskade):
     1. ds/colors_and_type.css  (Design-System: Tokens + Basis)
     2. styles.css              (Landingpage-Komponenten)
     3. modernize.css           (Editorial-Layer, SOC-Widget, Scrolly)
     4. mobile.css              (Responsive Overrides)
     5. refresh.css             (Refresh 2026: Glow-BG, CTAs, Glass)
   Die Abschnittsreihenfolge in dieser Datei entspricht exakt der
   bisherigen Kaskade — Abschnitte NICHT umsortieren!
   animations.css bleibt separat (nur Landingpage, VOR main.css laden).
   Backup des Alt-Zustands: _css-backup-20260717/
   ============================================================ */

/* Teko (display) — kept on Google Fonts; matches the logo wordmark. */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&display=swap");

/* Roboto (body / default) — local variable fonts shipped in ds/fonts. */
@font-face {
  font-family: "Roboto";
  src: url("ds/fonts/Roboto-VariableFont_wdth_wght.ttf") format("truetype-variations"),
       url("ds/fonts/Roboto-VariableFont_wdth_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("ds/fonts/Roboto-Italic-VariableFont_wdth_wght.ttf") format("truetype-variations"),
       url("ds/fonts/Roboto-Italic-VariableFont_wdth_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   1. DESIGN TOKENS
   (zusammengeführte :root-Blöcke aller Schichten; bei Konflikt
   gewinnt der Wert der spätesten Schicht — hier bereits eingesetzt)
   ============================================================ */
:root {
  /* ---- Brand (Logodefinition) ---- */
  --rc-blutrot:        #e30613;
  --rc-blutrot-700:    #b80510;
  --rc-blutrot-800:    #8e040c;
  --rc-apfelrot:       #931813;
  --rc-apfelrot-700:   #75130f;
  --rc-apfelrot-800:   #560e0b;
  --rc-skyblue:        #7DD4F8;
  --rc-skyblue-600:    #4FC0F0;
  --rc-skyblue-200:    #BFE9FB;

  /* ---- Neutrals ---- */
  --rc-black:          #0A0A0A;
  --rc-ink:            #1A1A1A;
  --rc-graphite:       #2E2E2E;
  --rc-stone-700:      #4A4A4A;
  --rc-stone-500:      #7A7A7A;
  --rc-stone-300:      #B5B5B5;
  --rc-stone-200:      #D9D9D9;
  --rc-stone-100:      #ECECEC;
  --rc-stone-50:       #F5F5F5;
  --rc-paper:          #FAFAFA;
  --rc-white:          #FFFFFF;

  /* ---- Semantic surfaces & foreground ---- */
  --bg:                var(--rc-white);
  --bg-muted:          var(--rc-stone-50);
  --bg-elevated:       var(--rc-white);
  --bg-inverse:        var(--rc-ink);
  --fg1:               var(--rc-ink);
  --fg2:               var(--rc-stone-700);
  --fg3:               var(--rc-stone-500);
  --fg-on-dark:        var(--rc-white);
  --fg-on-red:         var(--rc-white);
  --border:            var(--rc-stone-200);
  --border-strong:     var(--rc-stone-300);
  --divider:           var(--rc-stone-100);
  --accent:            var(--rc-blutrot);
  --accent-hover:      var(--rc-blutrot-700);
  --accent-press:      var(--rc-blutrot-800);
  --accent-dark:       var(--rc-apfelrot);
  --link:              var(--rc-blutrot);
  --link-hover:        var(--rc-apfelrot);
  --focus-ring:        rgba(227, 6, 19, 0.35);
  --selection-bg:      rgba(125, 212, 248, 0.45);

  /* ---- Typography ---- */
  --font-display:      "Teko", "Oswald", "Arial Narrow", sans-serif;
  --font-body:         "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-mono:         "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  --text-xs:           11px;
  --text-sm:           12px;
  --text-base:         13px;
  --text-md:           14px;
  --text-lg:           16px;
  --text-xl:           18px;
  --text-2xl:          22px;
  --text-3xl:          28px;
  --text-4xl:          36px;
  --text-5xl:          48px;
  --text-6xl:          64px;
  --text-display:      80px;
  --leading-tight:     1.15;
  --leading-snug:      1.3;
  --leading-normal:    1.5;
  --leading-loose:     1.7;
  --tracking-tight:    -0.01em;
  --tracking-normal:   0;
  --tracking-wide:     0.04em;
  --tracking-caps:     0.08em;
  --weight-light:      300;
  --weight-regular:    400;
  --weight-medium:     500;
  --weight-bold:       700;

  /* ---- Spacing (4px base) ---- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ---- Radii ---- */
  --radius-none: 0;
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-xl:   14px;
  --radius-pill: 999px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(10, 10, 10, 0.06);
  --shadow-sm: 0 2px 4px rgba(10, 10, 10, 0.06), 0 1px 2px rgba(10,10,10,0.04);
  --shadow-md: 0 6px 16px rgba(10, 10, 10, 0.08), 0 2px 4px rgba(10,10,10,0.04);
  --shadow-lg: 0 18px 36px rgba(10, 10, 10, 0.12), 0 6px 12px rgba(10,10,10,0.06);
  --shadow-red: 0 8px 20px rgba(227, 6, 19, 0.22);

  /* ---- Motion ---- */
  --ease-out:       cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:       120ms;
  --dur-base:       200ms;
  --dur-slow:       320ms;

  /* ---- Dark theme (styles.css, Werte final aus modernize.css) ---- */
  --bg-fortress:    #08090b;
  --bg-fortress-2:  #0e1014;
  --bg-fortress-3:  #14171c;
  --bg-fortress-4:  #1c2027;
  --bg-warm:        #12100d;
  --bg-cool:        #0b0e15;
  --rule-on-dark:   rgba(255,255,255,0.08);
  --rule-on-dark-strong: rgba(255,255,255,0.15);
  --vline: rgba(255,255,255,0.10);
  --vline-active: var(--rc-blutrot);
  --font-headline:  "Teko", "Oswald", "Arial Narrow", sans-serif;
  --max-w: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  /* ---- Refresh 2026 ---- */
  --radius-card: 16px;
  --radius-btn: 10px;
  --glass: rgba(255,255,255,0.04);
  --glass-strong: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
}

/* ============================================================
   2. BASIS — Element-Defaults (Design System)
   ============================================================ */
html { font-size: var(--text-base); }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--fg1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--selection-bg); color: var(--fg1); }

h1 {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-normal);
  color: var(--rc-skyblue);
  margin: 0 0 var(--space-4);
  text-transform: none;
}
h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  color: var(--fg1);
  margin: 0 0 var(--space-3);
}
h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  color: var(--fg1);
  margin: 0 0 var(--space-2);
}
h4 {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  color: var(--fg1);
  margin: 0 0 var(--space-2);
}
h5 {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-md);
  line-height: var(--leading-snug);
  color: var(--fg1);
  margin: 0 0 var(--space-2);
}
h6 {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg2);
  margin: 0 0 var(--space-2);
}

p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--fg1);
  margin: 0 0 var(--space-3);
  text-wrap: pretty;
}

small, .small {
  font-size: var(--text-sm);
  color: var(--fg2);
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--link-hover); }

strong, b { font-weight: var(--weight-bold); }
em, i    { font-style: italic; }

code, kbd, samp, pre {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.on-red { color: var(--rc-white); }
.on-dark { color: var(--rc-white); }

/* ============================================================
   3. LANDINGPAGE-BASIS (ehem. styles.css)
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg-fortress); color: #f5f5f5; font-size: 16px; line-height: 1.55; }

/* Hide focus ring on click, keep for keyboard */
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

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

/* ---------- Headlines (Teko, per Design System) ---------- */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(56px, 8vw, 108px); line-height: 0.95; color: var(--rc-skyblue); }
h2 { font-size: clamp(40px, 6vw, 84px); line-height: 0.98; color: #fff; }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.1; color: #fff; font-weight: 600; }

p { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55; color: rgba(255,255,255,0.78); text-wrap: pretty; }
.lead.on-dark { color: rgba(255,255,255,0.78); }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section { padding: clamp(72px, 9vw, 140px) 0; }

.dark { background: var(--bg-fortress); color: #f5f5f5; }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.site-header .brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: #fff;
}
.site-header .brand-lockup .logo { height: 32px; width: auto; }
.site-header .brand-lockup .slogan {
  font-family: var(--font-headline);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
@media (max-width: 640px) {
  .site-header .brand-lockup .slogan { display: none; }
}
.footer-slogan {
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--rc-blutrot);
  margin: 0 0 12px;
}
.site-header .meta {
  display: flex; gap: 28px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.78);
}
.site-header .meta a { color: inherit; text-decoration: none; }
.site-header .meta a:hover { color: #fff; }
.site-header .meta .phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .site-header .meta .label { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--rc-blutrot);
  color: #fff;
  box-shadow: 0 8px 22px rgba(227,6,19,0.28);
}
.btn-primary:hover { background: var(--rc-blutrot-700); }
.btn-primary:active { background: var(--rc-blutrot-800); }

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: #fff; color: var(--rc-ink); border-color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: #fff; color: var(--rc-ink); border-color: #fff; }

.btn-on-red {
  background: #fff;
  color: var(--rc-blutrot);
}
.btn-on-red:hover { background: #f5f5f5; }

.btn-on-red-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-on-red-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-lg { padding: 20px 32px; font-size: 16px; }

/* ============================================================
   HERO — STUFE 1
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 110px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #1a1a1a 0%, #0a0a0a 60%, #050505 100%);
  color: #f5f5f5;
}

.hero-silhouette {
  position: absolute;
  inset: auto 0 0 0;
  height: 360px;
  pointer-events: none;
  opacity: 0.22;
  z-index: 1;
}
.hero-silhouette svg { width: 100%; height: 100%; display: block; }

.hero-glow {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80%;
  background: radial-gradient(circle at 50% 40%, rgba(227,6,19,0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  margin: 22px auto 22px;
  font-feature-settings: "ss01";
}
.hero h1 .accent { color: var(--rc-blutrot); }

.hero .lead {
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

/* ============================================================
   STUFE 2 — IHR PROBLEM
   ============================================================ */
.s2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.s2-header .right { padding-top: 8px; }
@media (max-width: 820px) { .s2-header { grid-template-columns: 1fr; gap: 24px; } }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-on-dark);
  border: 1px solid var(--rule-on-dark);
}
.pain-card {
  background: var(--bg-fortress-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
  transition: background var(--dur-base) var(--ease-out);
}
.pain-card:hover { background: var(--bg-fortress-3); }
.pain-card .icon {
  width: 36px; height: 36px;
  color: var(--rc-blutrot);
  flex-shrink: 0;
}
.pain-card p {
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  text-wrap: pretty;
}
.pain-card .q {
  color: var(--rc-skyblue);
  font-weight: 600;
}
@media (max-width: 980px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

.s2-cta-row { margin-top: 56px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.s2-cta-row .note { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ============================================================
   STUFE 3 — DIE LÖSUNG (dark)
   ============================================================ */
.s3 { padding: clamp(80px, 10vw, 160px) 0; }
.s3-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 820px) { .s3-header { grid-template-columns: 1fr; gap: 24px; } }

.step-num {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--rc-blutrot);
  font-weight: 600;
  font-feature-settings: "tnum";
  margin-bottom: 8px;
}

.s3-kernaussage {
  margin-top: 96px;
  padding: 48px;
  border: 1px solid var(--rule-on-dark);
  border-left: 4px solid var(--rc-blutrot);
  background: rgba(255,255,255,0.02);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.s3-kernaussage p {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #fff;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 720px) { .s3-kernaussage { grid-template-columns: 1fr; padding: 32px; } }

/* ============================================================
   STUFE 4 — UNSERE LÖSUNG (dark)
   ============================================================ */
.s4 { background: var(--bg-fortress-2); padding: clamp(80px, 10vw, 160px) 0; position: relative; }

.s4-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 820px) { .s4-header { grid-template-columns: 1fr; gap: 24px; } }

.s4-video-wrap {
  max-width: 880px;
  margin: 0 auto 80px;
  position: relative;
}
.s4-video {
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}
.s4-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.s4-video::before, .s4-video::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--rc-blutrot);
}
.s4-video::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.s4-video::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.s4-video .caption {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 96px;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}
.benefit {
  padding: 40px 32px 40px 0;
  border-left: 1px solid var(--rule-on-dark);
  padding-left: 32px;
}
.benefit:first-child { border-left: 0; padding-left: 0; }
.benefit .icon {
  width: 40px; height: 40px;
  color: var(--rc-blutrot);
  margin-bottom: 24px;
}
.benefit h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.benefit p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
@media (max-width: 980px) { .benefits { grid-template-columns: repeat(2, 1fr); } .benefit { padding: 32px 20px; border-left: 0; border-top: 1px solid var(--rule-on-dark); } .benefit:first-child, .benefit:nth-child(2) { border-top: 0; } .benefit:nth-child(odd) { border-right: 1px solid var(--rule-on-dark); } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } .benefit { border-right: 0 !important; border-top: 1px solid var(--rule-on-dark) !important; } .benefit:first-child { border-top: 0 !important; } }

/* Trust row */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.trust-card {
  padding: 32px 28px;
  background: var(--bg-fortress-3);
  border: 1px solid var(--rule-on-dark);
  display: flex; flex-direction: column; gap: 16px;
}
.trust-card .icon { width: 36px; height: 36px; color: var(--rc-blutrot); }
.trust-card h4 { font-size: 18px; font-weight: 600; margin: 0; color: #fff; font-family: var(--font-headline); letter-spacing: 0.005em; }
.trust-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0; }
@media (max-width: 820px) { .trust { grid-template-columns: 1fr; } }

/* Abschluss-Block */
.s4-abschluss {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 0 0;
}
.s4-abschluss .quote {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  color: #fff;
  text-wrap: balance;
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}
.s4-abschluss .quote::before, .s4-abschluss .quote::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  background: var(--rc-blutrot);
  margin: 0 auto 32px;
}
.s4-abschluss .quote::after { margin: 32px auto 0; }
.s4-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.final-cta .crenel-bottom svg path { fill: var(--bg-fortress); }
.final-cta {
  background: var(--rc-blutrot);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
  pointer-events: none;
}
.final-cta .crenel-top, .final-cta .crenel-bottom {
  position: absolute; left: 0; right: 0; height: 18px; pointer-events: none;
}
.final-cta .crenel-top { top: 0; }
.final-cta .crenel-bottom { bottom: 0; transform: scaleY(-1); }
.final-cta .crenel-top svg, .final-cta .crenel-bottom svg { width: 100%; height: 100%; display: block; }

.final-cta .inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 820px) { .final-cta .inner { grid-template-columns: 1fr; gap: 40px; } }

.final-cta h2 { color: #fff; margin-bottom: 18px; }
.final-cta .lead { color: rgba(255,255,255,0.92); max-width: 580px; margin: 0 0 32px; }
.final-cta .contact {
  background: rgba(0,0,0,0.18);
  padding: 32px 32px;
  border: 1px solid rgba(255,255,255,0.18);
}
.final-cta .contact h4 {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 600; margin: 0 0 18px;
}
.final-cta .contact .line {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.final-cta .contact .line:first-of-type { border-top: 0; padding-top: 0; }
.final-cta .contact .line:hover { color: rgba(255,255,255,0.8); }
.final-cta .contact .line .icon { width: 22px; height: 22px; flex-shrink: 0; }

.final-cta .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-fortress);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 36px;
  font-size: 14px;
}
.site-footer .top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-on-dark);
  margin-bottom: 24px;
}
@media (max-width: 820px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer h5 {
  color: #fff; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 16px; font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .brand .logo { width: 160px; margin-bottom: 20px; }
.site-footer .brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; max-width: 320px; }
.site-footer .bottom {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.site-footer .bottom a { color: inherit; }
.site-footer .bottom .legal-links { display: flex; gap: 20px; }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--rc-blutrot);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(227,6,19,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), background var(--dur-fast);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--rc-blutrot-700); }
.sticky-cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7ce39a;
  box-shadow: 0 0 0 4px rgba(124,227,154,0.25);
  animation: pulse 2s infinite var(--ease-out);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(124,227,154,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(124,227,154,0.05); }
}
@media (max-width: 540px) {
  .sticky-cta { right: 12px; bottom: 12px; padding: 12px 16px; font-size: 13px; }
}

/* ============================================================
   4. MODERNIZE-SCHICHT (ehem. modernize.css)
   Layered effects, editorial layout, SOC widget, scrollytelling,
   testimonials, photo treatments.
   ============================================================ */

/* ---------- Global grain overlay ---------- */
body { position: relative; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Per-section atmosphere — radial gradients ---------- */
.hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(227,6,19,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 100%, #14171c 0%, var(--bg-fortress) 60%, #050608 100%);
}
#stufe-2 {
  background:
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(125,212,248,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 70%, rgba(227,6,19,0.06) 0%, transparent 60%),
    var(--bg-fortress);
}
.s3 {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(125,212,248,0.05) 0%, transparent 60%),
    var(--bg-fortress-2);
}
.s4 {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(227,6,19,0.05) 0%, transparent 60%),
    var(--bg-fortress);
}

/* ---------- Vertical brand line (left edge, fixed) ---------- */
.brand-rail {
  position: fixed;
  top: 0; bottom: 0;
  left: 28px;
  width: 1px;
  background: var(--vline);
  z-index: 30;
  pointer-events: none;
}
.brand-rail::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 1px;
  height: var(--rail-progress, 0%);
  background: var(--vline-active);
  box-shadow: 0 0 12px rgba(227,6,19,0.5);
  transition: height 60ms linear;
}
.brand-rail .marker {
  position: absolute;
  left: -3px;
  width: 7px; height: 7px;
  background: var(--bg-fortress);
  border: 1px solid var(--vline);
  transform: rotate(45deg);
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out);
}
.brand-rail .marker.is-active {
  border-color: var(--rc-blutrot);
  background: var(--rc-blutrot);
}
.brand-rail .label {
  position: absolute;
  left: 14px;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  pointer-events: auto;
  text-decoration: none;
  transition: color 300ms var(--ease-out);
}
.brand-rail a.marker-link:hover .label,
.brand-rail .marker.is-active + .label {
  color: var(--rc-blutrot);
}
.brand-rail .top-mark,
.brand-rail .bot-mark {
  position: absolute;
  left: -3px;
  width: 7px; height: 7px;
  background: var(--vline);
}
.brand-rail .top-mark { top: 0; }
.brand-rail .bot-mark { bottom: 0; }

@media (max-width: 980px) {
  .brand-rail { display: none; }
}

/* Push site content right of the rail */
@media (min-width: 981px) {
  body { padding-left: 0; }
}

/* ---------- Editorial — Section number badge ---------- */
.section-tag {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
}
.section-tag .index {
  font-family: var(--font-headline);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  text-stroke: 1px rgba(255,255,255,0.18);
  display: inline-block;
}
.section-tag .index .dot {
  color: var(--rc-blutrot);
  -webkit-text-stroke: 0;
}
.section-tag .meta {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 12px;
}
.section-tag .meta .kicker {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-blutrot);
  font-weight: 600;
}
.section-tag .meta .title {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Hero — two-column layout with dashboard preview ---------- */
.hero-inner.editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  text-align: left;
  align-items: center;
  max-width: 1300px;
}
@media (max-width: 1080px) {
  .hero-inner.editorial { grid-template-columns: 1fr; gap: 56px; }
}

.hero h1.oversized {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  text-align: left;
  margin: 0 0 28px;
}
.hero-inner.editorial .lead {
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-inner.editorial .hero-cta-row {
  justify-content: flex-start;
  margin-bottom: 0;
}
.hero-side {
  position: relative;
  min-height: 480px;
}

/* ---------- Live SOC dashboard widget ---------- */
.soc-widget {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent),
    var(--bg-fortress-3);
  border: 1px solid var(--rule-on-dark-strong);
  padding: 0;
  font-family: var(--font-body);
  color: #fff;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  isolation: isolate;
}
.soc-widget::before,
.soc-widget::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid var(--rc-blutrot);
  z-index: 2;
}
.soc-widget::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.soc-widget::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.soc-widget__chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-on-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.25);
}
.soc-widget__chrome .left { display: inline-flex; align-items: center; gap: 10px; }
.soc-widget__chrome .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7ce39a;
  box-shadow: 0 0 0 0 rgba(124,227,154,0.6);
  animation: pulseLive 2s ease-out infinite;
}
@keyframes pulseLive {
  0%   { box-shadow: 0 0 0 0   rgba(124,227,154,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(124,227,154,0);    }
  100% { box-shadow: 0 0 0 0   rgba(124,227,154,0);    }
}
.soc-widget__chrome .right { font-variant-numeric: tabular-nums; color: rgba(255,255,255,0.45); }

.soc-widget__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 18px; }

.soc-stat-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule-on-dark);
}
.soc-stat-row .cell {
  padding: 14px 16px;
  border-left: 1px solid var(--rule-on-dark);
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.015);
}
.soc-stat-row .cell:first-child { border-left: 0; }
.soc-stat-row .label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.soc-stat-row .value {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.soc-stat-row .value.accent { color: var(--rc-skyblue); }
.soc-stat-row .delta {
  font-size: 11px;
  color: rgba(124,227,154,0.85);
  font-variant-numeric: tabular-nums;
}

.soc-systems {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.soc-systems .sys {
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rule-on-dark);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.soc-systems .sys .sd {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7ce39a;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(124,227,154,0.5);
  animation: pulseLive 2.6s ease-out infinite;
}
.soc-systems .sys.warn .sd { background: #f7c545; animation-name: pulseWarn; }
.soc-systems .sys.crit .sd { background: var(--rc-blutrot); animation-name: pulseCrit; }
@keyframes pulseWarn {
  0%   { box-shadow: 0 0 0 0   rgba(247,197,69,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(247,197,69,0);    }
  100% { box-shadow: 0 0 0 0   rgba(247,197,69,0);    }
}
@keyframes pulseCrit {
  0%   { box-shadow: 0 0 0 0   rgba(227,6,19,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(227,6,19,0);    }
  100% { box-shadow: 0 0 0 0   rgba(227,6,19,0);    }
}
.soc-systems .sys .name { font-weight: 500; }
.soc-systems .sys .meta { margin-left: auto; color: rgba(255,255,255,0.35); font-size: 11px; font-variant-numeric: tabular-nums; }

.soc-log {
  border: 1px solid var(--rule-on-dark);
  background: rgba(0,0,0,0.35);
  height: 152px;
  overflow: hidden;
  position: relative;
  font-family: var(--font-mono, "SFMono-Regular", Menlo, monospace);
  font-size: 11.5px;
  line-height: 1.5;
}
.soc-log::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,23,28,0.85) 0%, transparent 25%, transparent 75%, rgba(20,23,28,0.85) 100%);
  pointer-events: none;
}
.soc-log__inner { padding: 10px 14px; display: flex; flex-direction: column; gap: 5px; }
.soc-log .row {
  display: grid;
  grid-template-columns: 70px 70px 1fr auto;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  animation: logIn 400ms var(--ease-out) forwards;
}
@keyframes logIn { to { opacity: 1; transform: translateY(0); } }
.soc-log .row .ts { color: rgba(255,255,255,0.4); }
.soc-log .row .sys { color: var(--rc-skyblue); }
.soc-log .row .msg {
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  text-overflow: ellipsis;
}
.soc-log .row .sev { color: rgba(124,227,154,0.9); font-weight: 600; }
.soc-log .row.warn .sev { color: #f7c545; }
.soc-log .row.crit .sev { color: var(--rc-blutrot); }
.soc-log .row.crit .msg { color: #fff; }

/* ---------- Stufe 3 — Scrollytelling sticky layout ---------- */
.s3.scrolly { padding-top: clamp(80px, 10vw, 160px); padding-bottom: 0; }
.scrolly-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.scrolly-text {
  display: flex; flex-direction: column;
  padding-bottom: 30vh;
}
.scrolly-step {
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-right: 24px;
  opacity: 0.32;
  transition: opacity 1100ms var(--ease-out);
}
.scrolly-step.is-active { opacity: 1; }
.scrolly-step .step-num {
  font-family: var(--font-headline);
  font-size: 14px;
  color: var(--rc-blutrot);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.scrolly-step .step-num::before {
  content: "";
  width: 28px; height: 1px; background: var(--rc-blutrot);
  display: inline-block;
}
.scrolly-step h3 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  margin-bottom: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.005em;
}
.scrolly-step p {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0;
}

.scrolly-visual {
  position: sticky;
  top: 14vh;
  height: 72vh;
  background: var(--bg-fortress-3);
  border: 1px solid var(--rule-on-dark-strong);
  overflow: hidden;
}
.scrolly-visual::before,
.scrolly-visual::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--rc-blutrot);
  z-index: 2;
}
.scrolly-visual::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.scrolly-visual::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.sv-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 1200ms var(--ease-out);
}
.sv-stage.is-active { opacity: 1; }
.sv-stage svg { width: 75%; height: auto; max-height: 70%; }

/* Step counter overlay */
.sv-counter {
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 3;
}
.sv-counter .cur { color: var(--rc-blutrot); }
.sv-progress {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  height: 1px;
  background: var(--rule-on-dark);
  z-index: 3;
}
.sv-progress > i {
  display: block; height: 1px;
  background: var(--rc-blutrot);
  width: 0;
  transition: width 600ms var(--ease-out);
}

@media (max-width: 980px) {
  .scrolly-wrap { grid-template-columns: 1fr; gap: 40px; }
  .scrolly-visual { position: relative; top: auto; height: 360px; order: -1; }
  .scrolly-step { min-height: auto; padding: 32px 0; opacity: 1; }
}

/* ---------- Photo treatment — Duotone ---------- */
.duotone {
  position: relative;
  overflow: hidden;
  background: var(--bg-fortress);
  isolation: isolate;
}
.duotone img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  mix-blend-mode: luminosity;
}
.duotone::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--rc-apfelrot);
  mix-blend-mode: multiply;
  z-index: 1;
}
.duotone::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8,9,11,0.4) 100%);
  z-index: 2;
}
.duotone.cool::before { background: #1a2a3a; mix-blend-mode: multiply; }
.duotone.red::before  { background: var(--rc-blutrot); mix-blend-mode: multiply; }
.duotone .photo-caption {
  position: absolute; left: 20px; bottom: 18px;
  z-index: 3;
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ---------- Stufe 4 — Editorial photo + stats block ---------- */
.s4-photoblock {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 80px;
  margin-bottom: 80px;
  align-items: stretch;
}
.s4-photoblock .duotone {
  min-height: 420px;
}
.s4-photoblock .stats-callout {
  background: var(--bg-fortress-3);
  border: 1px solid var(--rule-on-dark);
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
}
.s4-photoblock .stats-callout .kicker {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-blutrot);
  font-weight: 600;
}
.s4-photoblock .stats-callout h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 12px 0 0;
}
.s4-photoblock .micro-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
}
.s4-photoblock .micro-stats .cell {
  padding: 20px 0 0;
  border-left: 1px solid var(--rule-on-dark);
  padding-left: 16px;
}
.s4-photoblock .micro-stats .cell:first-child { border-left: 0; padding-left: 0; }
.s4-photoblock .micro-stats .v {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 500;
  color: var(--rc-skyblue);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.s4-photoblock .micro-stats .l {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
}
@media (max-width: 860px) {
  .s4-photoblock { grid-template-columns: 1fr; }
}

/* ---------- Social proof — industry bar + testimonials ---------- */
.proof {
  background: var(--bg-fortress-2);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.industry-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule-on-dark);
  margin-bottom: 72px;
}
.industry-bar .label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-blutrot);
  font-weight: 600;
  max-width: 200px;
  line-height: 1.4;
}
.industry-bar .industries-list {
  display: flex; flex-wrap: wrap; gap: 0;
}
.industry-bar .industries-list span {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 0 24px;
  border-left: 1px solid var(--rule-on-dark);
  letter-spacing: 0.005em;
  transition: color 300ms var(--ease-out);
}
.industry-bar .industries-list span:first-child { border-left: 0; padding-left: 0; }
.industry-bar .industries-list span:hover { color: #fff; }

.testimonials {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--bg-fortress-3);
  border: 1px solid var(--rule-on-dark);
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
  position: relative;
}
.testimonial::before {
  content: "„";
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-headline);
  font-size: 120px;
  color: var(--rc-blutrot);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}
.testimonial .cite {
  display: flex; align-items: center; gap: 14px;
}
.testimonial .cite .who { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.testimonial .cite .who strong { color: #fff; font-weight: 600; }
.testimonial .cite .who span { color: rgba(255,255,255,0.55); }

.testimonial.small {
  background: var(--bg-fortress-3);
  padding: 36px 32px;
  gap: 24px;
}
.testimonial.small blockquote { font-size: clamp(17px, 1.4vw, 20px); }

/* ---------- Section divider — bleed transition ---------- */
.section-bleed {
  position: relative;
  height: 1px;
  margin: 0;
  background: var(--rule-on-dark);
}
.section-bleed::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 7px; height: 7px;
  background: var(--rc-blutrot);
  transform: translateX(-50%) rotate(45deg);
}

/* Team photo: keep heads visible */
.duotone.team-photo {
  aspect-ratio: 3 / 2;
  max-height: 620px;
}
.duotone.team-photo img {
  object-position: center 28%;
}
@media (max-width: 720px) {
  .duotone.team-photo { aspect-ratio: 4 / 3; }
  .duotone.team-photo img { object-position: center 30%; }
}

/* Video iframe: keep crisp; prevent blurring from ancestor transforms/filters */
.s4-video,
.s4-video iframe {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
.s4-video { isolation: isolate; }

/* ---------- Overrides — make older bits fit new dark depth ---------- */
.section.dark { background: transparent; }   /* let radial gradient show */
#stufe-2 { padding: clamp(80px, 10vw, 140px) 0; }
.hero-glow,
.hero-silhouette { z-index: 1; }   /* keep behind editorial inner */

.s4-video-wrap { margin-bottom: 0; }

/* Final CTA: drop the radial walking-light (aus animations.css) */
.final-cta::after { display: none; }

/* Sticky CTA on top of body grain */
.sticky-cta { z-index: 1100; }

/* ============================================================
   5. RESPONSIVE OVERRIDES (ehem. mobile.css)
   Muss VOR der Refresh-Schicht stehen (Kaskade)!
   ============================================================ */

/* Prevent slide-in animations from causing horizontal scroll */
html, body { overflow-x: clip; }

/* ---------- Global — Tablet (≤980px) ---------- */
@media (max-width: 980px) {
  :root {
    --gutter: clamp(20px, 5vw, 32px);
  }

  .section-tag .index {
    font-size: clamp(48px, 12vw, 72px);
  }

  .site-header .brand-lockup .slogan {
    font-size: 14px;
    padding-left: 12px;
  }

  .soc-stat-row .value { font-size: 22px; }
}

/* ---------- Phone — ≤720px ---------- */
@media (max-width: 720px) {

  /* ----- HEADER ----- */
  .site-header { padding: 16px var(--gutter); }
  .site-header .brand-lockup { gap: 10px; }
  .site-header .brand-lockup .logo { height: 26px; }

  /* ----- HERO ----- */
  .hero { padding: 110px 0 80px; }
  .hero h1.oversized {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.98;
    text-align: left;
  }
  .hero-inner.editorial {
    gap: 36px;
    text-align: left;
    grid-template-columns: 1fr;
  }
  .hero-inner.editorial .lead { font-size: 16px; line-height: 1.55; }
  .hero-side { min-height: 0; }

  /* SOC widget — compress padding & font, keep readable */
  .soc-widget__chrome {
    padding: 12px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .soc-widget__body { padding: 14px 14px 16px; gap: 14px; }
  .soc-stat-row .cell { padding: 10px 12px; }
  .soc-stat-row .label { font-size: 8.5px; }
  .soc-stat-row .value { font-size: 18px; }
  .soc-stat-row .delta { font-size: 10px; }
  .soc-systems { grid-template-columns: 1fr 1fr; gap: 6px; }
  .soc-systems .sys { padding: 8px 10px; font-size: 11px; gap: 8px; }
  .soc-systems .sys .meta { font-size: 10px; }
  .soc-log { height: 128px; font-size: 10.5px; }
  .soc-log .row { grid-template-columns: 56px 54px 1fr auto; gap: 8px; }
  .soc-log__inner { padding: 8px 12px; }

  /* ----- SECTION TAG ----- */
  .section-tag {
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
  }
  .section-tag .index { font-size: clamp(42px, 13vw, 56px); }
  .section-tag .meta .kicker { font-size: 10px; letter-spacing: 0.18em; }
  .section-tag .meta .title { font-size: 12px; }

  /* ----- SECTION HEADERS ----- */
  .s2-header, .s3-header, .s4-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .s2-header h2 br, .s3-header h2 br, .s4-header h2 br { display: none; }
  .s2-header h2, .s3-header h2, .s4-header h2 {
    font-size: clamp(30px, 9vw, 52px);
    line-height: 1.0;
  }
  .s2-header .lead, .s3-header .lead, .s4-header .lead {
    font-size: 15px;
  }

  /* ----- PAIN GRID ----- */
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card {
    padding: 26px 22px;
    gap: 14px;
    min-height: 0;
  }
  .pain-card p { font-size: 15px; }
  .pain-card .icon { width: 30px; height: 30px; }
  /* On mobile, all cards slide up — no horizontal slide */
  @media (prefers-reduced-motion: no-preference) {
    .pain-card:nth-child(3n+1),
    .pain-card:nth-child(3n+3) {
      transform: translateY(28px);
    }
    .pain-card:nth-child(3n+1).is-visible,
    .pain-card:nth-child(3n+3).is-visible {
      transform: translateY(0);
    }
  }

  /* ----- BUTTONS ----- */
  .btn {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .btn-lg { padding: 16px 22px; font-size: 15px; }
  .hero-cta-row,
  .s2-cta-row,
  .s4-cta-row,
  .final-cta .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .s2-cta-row .note { font-size: 13px; text-align: center; margin-top: 4px; }

  /* Sticky CTA — keep visible but smaller */
  .sticky-cta {
    right: 12px; bottom: 12px;
    padding: 11px 16px;
    font-size: 13px;
  }
  /* Reduce wave radius on mobile to avoid huge halos around full-width buttons */
  @media (prefers-reduced-motion: no-preference) {
    @keyframes waveRed {
      0%   { box-shadow: 0 6px 16px rgba(227,6,19,0.28), 0 0 0 0   rgba(227,6,19,0.55); }
      100% { box-shadow: 0 6px 16px rgba(227,6,19,0.28), 0 0 0 24px rgba(227,6,19,0);    }
    }
    @keyframes waveSky {
      0%   { box-shadow: 0 0 0 0   rgba(125,212,248,0.55); }
      100% { box-shadow: 0 0 0 24px rgba(125,212,248,0);    }
    }
    @keyframes waveWhite {
      0%   { box-shadow: 0 0 0 0   rgba(255,255,255,0.55); }
      100% { box-shadow: 0 0 0 24px rgba(255,255,255,0);    }
    }
  }

  /* ----- SCROLLY (Stufe 3) ----- */
  .scrolly-wrap { gap: 28px; }
  .scrolly-visual { height: 280px; }
  .scrolly-step h3 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.0;
  }
  .scrolly-step p { font-size: 15px; }
  .scrolly-step { padding: 20px 0; }

  .s3-kernaussage {
    margin-top: 56px !important;
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .s3-kernaussage p { font-size: 22px; line-height: 1.15; }

  /* ----- STUFE 4 ----- */
  .s4-photoblock { gap: 24px; margin: 56px 0; }
  .s4-photoblock .duotone { min-height: 280px; }
  .s4-photoblock .stats-callout {
    padding: 28px 22px;
    gap: 24px;
  }
  .s4-photoblock .stats-callout h3 {
    font-size: 22px;
  }
  .s4-photoblock .micro-stats { gap: 0; }
  .s4-photoblock .micro-stats .cell { padding-top: 16px; padding-left: 12px; }
  .s4-photoblock .micro-stats .v { font-size: 24px; }
  .s4-photoblock .micro-stats .l { font-size: 11px; }

  /* Video frame: thinner accent corners, less drop-shadow on mobile */
  .s4-video::before, .s4-video::after { width: 14px; height: 14px; }

  /* Benefits row — already collapses to 1fr at 600px; tighten padding */
  .benefit { padding: 24px 16px !important; }
  .benefit h3 { font-size: 19px; }

  /* Trust cards already stack at 820px; tighten padding */
  .trust-card { padding: 24px 22px; }
  .trust-card h4 { font-size: 17px; }
  .trust-card p { font-size: 13px; }

  /* Team photo — keep heads, slightly less tall */
  .duotone.team-photo { aspect-ratio: 4 / 3; max-height: 380px; }
  .duotone.team-photo img { object-position: center 30%; }

  /* Abschluss-Block quote */
  .s4-abschluss { padding-top: 32px; }
  .s4-abschluss .quote { font-size: clamp(22px, 6.8vw, 32px); margin-bottom: 28px; }
  .s4-abschluss .quote::before, .s4-abschluss .quote::after { width: 40px; margin-bottom: 22px; }
  .s4-abschluss .quote::after { margin: 22px auto 0; }

  /* ----- SOCIAL PROOF ----- */
  .proof { padding: 64px 0; }
  .industry-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 36px;
    margin-bottom: 40px;
  }
  .industry-bar .industries-list { gap: 4px 12px; }
  .industry-bar .industries-list span {
    padding: 0 12px;
    font-size: 17px;
    line-height: 1.4;
  }
  .industry-bar .industries-list span:first-child { padding-left: 0; }

  .testimonials { gap: 20px; }
  .testimonial { padding: 32px 26px; gap: 22px; }
  .testimonial blockquote { font-size: 18px; }
  .testimonial::before { font-size: 80px; top: 4px; left: 16px; }
  .testimonial.small { padding: 26px 22px; }
  .testimonial.small blockquote { font-size: 16px; }
  .testimonial .cite .who { font-size: 12px; }

  /* ----- FINAL CTA ----- */
  .final-cta { padding: 80px 0; }
  .final-cta .inner { gap: 32px; }
  .final-cta h2 { font-size: clamp(30px, 9vw, 48px); }
  .final-cta .lead { font-size: 15px; margin-bottom: 24px; }
  .final-cta .contact { padding: 24px 22px; }
  .final-cta .contact .line { font-size: 14px; padding: 12px 0; }
  .final-cta .contact .line .icon { width: 18px; height: 18px; }
  .final-cta .contact h4 { font-size: 11px; margin-bottom: 14px; }

  /* ----- FOOTER ----- */
  .site-footer { padding: 56px 0 24px; }
  .site-footer .top { gap: 32px; padding-bottom: 36px; }
  .site-footer .brand .logo { width: 130px; }
  .site-footer .brand .footer-slogan { font-size: 15px; }
  .site-footer .brand p { font-size: 13px; }
  .site-footer .bottom { font-size: 11px; gap: 12px; }
  .site-footer .bottom .legal-links { gap: 14px; }

  /* ----- SECTION SPACING ----- */
  .section { padding: 64px 0; }
  .s3.scrolly { padding-top: 64px; }

  /* Reduce noise grain slightly on mobile so backlit screens don't smear */
  body::before { opacity: 0.04; }

  /* Section-tag stack vertically on smallest phones */
  @media (max-width: 400px) {
    .section-tag { flex-direction: column; align-items: flex-start; gap: 8px; }
    .section-tag .meta { padding-bottom: 0; }
  }
}

/* ---------- Phone portrait tight — ≤420px ---------- */
@media (max-width: 420px) {
  .site-header .brand-lockup .logo { height: 24px; }
  .hero { padding: 96px 0 60px; }
  .hero h1.oversized { font-size: clamp(36px, 10.5vw, 48px); }
  .soc-systems { grid-template-columns: 1fr; }
  .soc-log .row {
    grid-template-columns: 50px 46px 1fr auto;
    gap: 6px;
    font-size: 10px;
  }
}

/* ---------- Touch — disable hover-only effects ---------- */
@media (hover: none) {
  .pain-card:hover { translate: none; box-shadow: none; }
  .pain-card:hover .icon { transform: none; }
  .step:hover .step-icon { transform: none; }
  .benefit:hover .icon { transform: none; color: var(--rc-blutrot); }
  .btn:hover { animation-play-state: running; }
  .btn:hover::before { transform: translateX(-120%); }
}

/* ============================================================
   6. REFRESH-2026-SCHICHT (ehem. refresh.css)
   Überschreibt alles davor — MUSS zuletzt stehen.
   - Continuous background image (Designer glow)
   - Modern CTA redesign, Glass cards + rounded radii
   - Team photo natural, Funnel shell + forms + cookie banner
   ============================================================ */

/* ---------- Continuous background ---------- */
body {
  background:
    url("assets/bg-glow.jpg") center / cover no-repeat fixed,
    #0a0a0c;
}
/* let the image show through — sections become translucent layers */
.hero,
#stufe-2,
.s3,
.s4,
.proof {
  background: transparent;
}
/* gentle darkening bands to keep text readable over the glow */
.hero { background: linear-gradient(180deg, rgba(8,9,11,0.30), rgba(8,9,11,0.05) 40%, transparent); }
#stufe-2 { background: rgba(8,9,11,0.18); }
.s3 { background: rgba(8,9,11,0.30); }
.s4 { background: rgba(8,9,11,0.18); }
.proof { background: rgba(8,9,11,0.34); }
.site-footer { background: rgba(5,6,8,0.78); backdrop-filter: blur(8px); }

/* hero fortress silhouette: soften against photo bg */
.hero-silhouette { opacity: 0.14; }

/* ---------- Modern CTA system ---------- */
.btn, .sticky-cta {
  animation: none !important;   /* kill old wave/blink */
  border-radius: var(--radius-btn);
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

/* PRIMARY — gradient red, soft glow, slow breathing + periodic sheen */
.btn-primary {
  background: linear-gradient(160deg, #ff2433 0%, var(--rc-blutrot) 45%, #b00410 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 10px 30px rgba(227,6,19,0.30),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover {
  background: linear-gradient(160deg, #ff3a48 0%, #ef0a18 45%, #c00511 100%);
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(227,6,19,0.42),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:active { transform: translateY(0); }

/* slow, calm glow breathing — die "Bewegung" ohne Blinken */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary { animation: ctaBreath 5.5s ease-in-out infinite !important; }
  @keyframes ctaBreath {
    0%, 100% { box-shadow: 0 10px 30px rgba(227,6,19,0.26), inset 0 1px 0 rgba(255,255,255,0.22); }
    50%      { box-shadow: 0 12px 40px rgba(227,6,19,0.48), inset 0 1px 0 rgba(255,255,255,0.22); }
  }
  /* periodic sheen sweep, every ~7s */
  .btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: ctaSheen 7s var(--ease-in-out) infinite;
    pointer-events: none;
  }
  @keyframes ctaSheen {
    0%, 78%  { transform: translateX(-130%); }
    92%, 100% { transform: translateX(130%); }
  }
}

/* SECONDARY / GHOST — glassmorphism */
.btn-secondary,
.btn-ghost-light {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:hover,
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
  transform: translateY(-2px);
}

/* ON-RED variants (final CTA section) */
.btn-on-red {
  background: #fff;
  color: var(--rc-blutrot);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn-on-red:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.btn-on-red-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.btn-on-red-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

/* STICKY CTA */
.sticky-cta {
  border-radius: 999px;
  background: linear-gradient(160deg, #ff2433, var(--rc-blutrot) 60%, #b00410);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 36px rgba(227,6,19,0.38);
}
.sticky-cta:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: no-preference) {
  .sticky-cta.is-visible { animation: ctaBreath 5.5s ease-in-out infinite !important; }
}

/* ---------- Glass cards + rounded radii ---------- */
.pain-grid { background: transparent; border: 0; gap: 14px; }
.pain-card {
  background: rgba(20,23,28,0.55);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pain-card:hover { background: rgba(26,30,37,0.65); }

.soc-widget {
  border-radius: var(--radius-card);
  background: rgba(14,16,20,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
}
.soc-widget::before, .soc-widget::after { display: none; }  /* drop corner brackets — dated */
.soc-widget__chrome { border-radius: var(--radius-card) var(--radius-card) 0 0; }

.trust-card,
.testimonial,
.s4-photoblock .stats-callout,
.s3-kernaussage {
  border-radius: var(--radius-card);
  background: rgba(20,23,28,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}
.s3-kernaussage { border-left: 4px solid var(--rc-blutrot); }

.scrolly-visual {
  border-radius: var(--radius-card);
  background: rgba(14,16,20,0.66);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}
.scrolly-visual::before, .scrolly-visual::after { display: none; }

.duotone { border-radius: var(--radius-card); }
.s4-video {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.s4-video::before, .s4-video::after { display: none; }
.s4-video { box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px var(--glass-border); }

.benefits { border: 0; gap: 14px; }
.benefit {
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-card);
  background: rgba(20,23,28,0.45);
  padding: 32px 28px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.final-cta .contact {
  border-radius: var(--radius-card);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

/* ---------- Team photo — friendly, no dark filter ---------- */
.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.team-photo::before { display: none !important; }  /* no multiply tint */
.team-photo::after {
  /* only a whisper of bottom shade so the caption stays readable */
  background: linear-gradient(180deg, transparent 70%, rgba(8,9,11,0.45) 100%) !important;
}
.team-photo img {
  filter: none !important;            /* natural colors */
  mix-blend-mode: normal !important;
  object-position: center 25%;
}
.team-photo .photo-caption {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* building photo keeps a light red grade but much friendlier */
.duotone.red::before { opacity: 0.45; }
.duotone.red img { filter: grayscale(40%) contrast(1.02) brightness(1.0); }

/* ---------- Funnel shell (Ad / Opt-In / Danke pages) ---------- */
.funnel-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.funnel-header {
  display: flex; align-items: center; justify-content: center;
  padding: 28px var(--gutter) 0;
}
.funnel-header .logo { height: 34px; }
.funnel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(32px, 6vw, 72px) var(--gutter);
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.funnel-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-skyblue);
  font-weight: 600;
  margin: 0 0 14px;
  text-align: center;
}
.funnel-main h1 {
  font-family: var(--font-headline);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  color: #fff;
  text-align: center;
  margin: 0 0 18px;
  font-weight: 500;
}
.funnel-main h1 .accent { color: var(--rc-blutrot); }
.funnel-main .sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.78);
  text-align: center;
  max-width: 560px;
  margin: 0 0 36px;
}

.funnel-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 16px;
}
.funnel-note { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; }

.funnel-footer {
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid var(--glass-border);
  background: rgba(5,6,8,0.55);
}
.funnel-footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.funnel-footer a:hover { color: #fff; }
.funnel-footer .links { display: flex; gap: 18px; }

/* progress dots for funnel steps */
.funnel-steps {
  display: flex; gap: 8px; align-items: center;
  margin: 18px auto 0;
  justify-content: center;
}
.funnel-steps .fdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.funnel-steps .fdot.active { background: var(--rc-blutrot); box-shadow: 0 0 10px rgba(227,6,19,0.6); }

/* ---------- Opt-In-Formular ---------- */
.optin-card {
  width: 100%;
  max-width: 520px;
  background: rgba(16,18,23,0.78);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 36px 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.optin-card .field { margin-bottom: 18px; }
.optin-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.optin-card input[type="text"],
.optin-card input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.optin-card input:focus {
  border-color: var(--rc-skyblue);
  background: rgba(255,255,255,0.09);
}
.optin-card input::placeholder { color: rgba(255,255,255,0.35); }
.optin-card .consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 4px 0 20px;
}
.optin-card .consent input { margin-top: 2px; accent-color: var(--rc-blutrot); }
.optin-card .btn { width: 100%; justify-content: center; }
.optin-card .error {
  color: #ff8089;
  font-size: 13px;
  margin-top: 10px;
  display: none;
}
.optin-card .error.show { display: block; }

.optin-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  width: 100%;
}
.optin-benefits li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.optin-benefits li::before {
  content: "✓";
  color: var(--rc-skyblue);
  font-weight: 700;
  flex-shrink: 0;
}

/* DOI step explainer on Danke page */
.doi-steps {
  display: flex; flex-direction: column; gap: 0;
  width: 100%; max-width: 520px;
  margin-bottom: 32px;
}
.doi-step {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--glass-border);
}
.doi-step:first-child { border-top: 0; }
.doi-step .n {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--rc-blutrot);
  font-weight: 600;
  flex-shrink: 0;
  width: 32px;
}
.doi-step .t strong { color: #fff; display: block; margin-bottom: 4px; font-size: 15px; }
.doi-step .t span { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.5; }

/* ---------- Consent-Modal v2 (per consent.js erzeugt) ----------
   Zentriertes Modal + abgedunkelter Backdrop. Beide Buttons der
   ersten Ebene sind gleich gross und gleichwertig (keine Dark
   Patterns). Button-Fuellfarbe #CF0000 laut CONSENT-SPEC v2. */
.rc-consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,5,8,0.62);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-out);
}
.rc-consent-backdrop.show { opacity: 1; pointer-events: auto; }
.rc-consent-modal {
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: rgba(14,16,20,0.97);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  padding: 26px 28px;
  transform: translateY(14px);
  transition: transform 300ms var(--ease-out);
  outline: none;
}
.rc-consent-backdrop.show .rc-consent-modal { transform: translateY(0); }
.rc-consent-modal h4 {
  margin: 0 0 10px;
  font-family: var(--font-headline);
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}
.rc-consent-modal .rc-cm-copy {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.rc-cm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rc-cm-level2 .rc-cm-actions { grid-template-columns: 1fr; }
.rc-cm-btn {
  appearance: none;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.rc-cm-btn-fill {
  background: #CF0000;
  border: 1px solid #CF0000;
  color: #fff;
}
.rc-cm-btn-fill:hover { background: var(--rc-blutrot-700); border-color: var(--rc-blutrot-700); }
.rc-cm-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
}
.rc-cm-btn-outline:hover { background: rgba(255,255,255,0.08); }
.rc-cm-link {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  cursor: pointer;
}
.rc-cm-link:hover { color: #fff; }
.rc-cm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.rc-cm-row-static { cursor: default; }
.rc-cm-row strong { color: #fff; font-size: 13.5px; }
.rc-cm-level2 .rc-cm-actions { margin-top: 16px; }
.rc-cm-switch { position: relative; flex-shrink: 0; width: 44px; height: 24px; }
.rc-cm-switch input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: pointer;
}
.rc-cm-slider {
  display: block;
  width: 100%; height: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  transition: background var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.rc-cm-slider::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--dur-base) var(--ease-out);
}
.rc-cm-switch input:checked + .rc-cm-slider { background: #CF0000; }
.rc-cm-switch input:checked + .rc-cm-slider::after { transform: translateX(20px); }
.rc-cm-switch input:focus-visible + .rc-cm-slider {
  outline: 2px solid var(--rc-skyblue);
  outline-offset: 2px;
}
.rc-consent-modal .rc-cm-privacy {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.rc-consent-modal .rc-cm-privacy a { color: var(--rc-skyblue); }
@media (max-width: 480px) {
  .rc-cm-actions { grid-template-columns: 1fr; }
  .rc-consent-modal { padding: 22px 20px; }
}

/* Sticky CTA immer unten rechts, niemals links */
.sticky-cta {
  position: fixed !important;
  left: auto !important;
  right: 24px !important;
  bottom: 24px !important;
}
@media (max-width: 540px) {
  .sticky-cta { right: 12px !important; bottom: 12px !important; }
}

/* Testimonials: gleiche Schriftgröße für beide Zitate */
.testimonial.small blockquote { font-size: clamp(20px, 2vw, 28px); }

/* Footer: größerer Slogan, Aufbau wie Hauptwebsite */
.site-footer .brand .footer-slogan {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  max-width: 320px;
  color: #fff;
}
.site-footer .brand .logo { width: 180px; }

/* Brand-Rail: Labels entfernt, Marker korrekt absolut positionieren */
.brand-rail .marker-link { position: absolute; left: 0; }
.brand-rail .label { display: none; }

/* Micro-Stats: einheitliche Kacheln ohne Trennlinien */
.s4-photoblock .micro-stats {
  border-top: 0 !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px !important;
}
.s4-photoblock .micro-stats .cell {
  border: 0 !important;
  padding: 18px 16px !important;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s4-photoblock .micro-stats .v { margin-bottom: 0 !important; }

/* ---------- Mobile polish for funnel ---------- */
@media (max-width: 720px) {
  .optin-card { padding: 28px 22px; }
  .funnel-cta-row { width: 100%; }
  .funnel-cta-row .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   7. KOMPATIBILITÄT zu animations.css
   animations.css wird (nur Landingpage) VOR main.css geladen und
   verlor dadurch den .pain-card-transition-Konflikt gegen die
   Basis-Regel aus Abschnitt 3 — hier wird die ursprünglich
   gewinnende Regel aus animations.css wiederhergestellt.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .pain-card {
    transition-property: opacity, transform, background, box-shadow, translate;
    transition-duration: 2400ms, 2400ms, 200ms, 420ms, 420ms;
    transition-timing-function: var(--ease-out);
    transition-delay: calc(var(--i, 0) * 220ms), calc(var(--i, 0) * 220ms), 0ms, 0ms, 0ms;
  }
}
