/* ════════════════════════════════════════════════════════════════════════════
   CarePulz, Glass- & Motion-Layer für die Pitch-Landingpage
   ────────────────────────────────────────────────────────────────────────────
   Wird NACH styles.css geladen und legt die Liquid-Glass-Optik + Brand-Lockup
   + Scroll-/Hero-Motion über das bestehende Markup. Spiegelt die Mechanik des
   App-Frontends (gr-os-frontend-local/css/theme.css) 1:1, damit Landingpage und
   Produkt sich gleich anfühlen. Refraktionsfilter #glassRefract wird von
   carepulz.js injiziert. ──────────────────────────────────────────────────── */

:root {
  /* ── Liquid Glass (Refraktion via backdrop-filter: url(#glassRefract)) ─── */
  --glass-bg:        rgba(255, 255, 255, 0.14);
  --glass-bg-strong: rgba(255, 255, 255, 0.26);
  --glass-border:    rgba(255, 255, 255, 0.60);
  --glass-blur:      14px;
  --glass-sat:       170%;
  --glass-shadow:    0 22px 60px rgba(11, 18, 32, 0.16), 0 8px 24px rgba(11, 18, 32, 0.10), 0 1px 2px rgba(11, 18, 32, 0.06);
  --glass-glow:      inset 0 1px 0 rgba(255, 255, 255, 0.90), inset 0 -1px 0 rgba(31, 157, 104, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.10);

  --radius-card: 24px;
  --radius-sm:   16px;
  --radius-pill: 9999px;

  /* Heller Blau-Glass-Hintergrund (gleicher wie App) */
  --app-bg: url("assets/bg-glass.svg") center center / cover no-repeat fixed,
            linear-gradient(155deg, #FCFEFF 0%, #F6FAFF 55%, #EEF4FF 100%);
}

/* Seiten-Hintergrund: helles Blau-Glass-Feld (Cards brechen die Kanten).
   Scrollend (KEIN fixed), robust auf langen Seiten, Mobile & Screenshot-Capture.
   Weiche Blau-Lichtpools geben der Glas-Refraktion an den Kartenrändern Material. */
html {
  background:
    radial-gradient(58% 46% at 82% 6%,  rgba(127,176,255,0.20), transparent 62%),
    radial-gradient(48% 40% at 10% 16%, rgba(169,206,255,0.22), transparent 60%),
    radial-gradient(60% 38% at 88% 52%, rgba(127,176,255,0.16), transparent 60%),
    radial-gradient(52% 34% at 8% 72%,  rgba(169,206,255,0.18), transparent 60%),
    radial-gradient(64% 40% at 90% 92%, rgba(127,176,255,0.16), transparent 60%),
    linear-gradient(160deg, #FCFEFF 0%, #F4F9FF 45%, #EAF2FE 100%);
  background-repeat: no-repeat;
}
body { background: transparent !important; }

/* Glas-Top-Bar: schwebende Navigation. Günstiger Blur (KEIN url(#glassRefract)) -
   die Bar liegt beim Scrollen über bewegtem Inhalt, Refraktion würde pro Scroll-
   Frame neu berechnet → Scroll-Jank. */
.cp-topbar {
  -webkit-backdrop-filter: blur(16px) saturate(160%);
          backdrop-filter: blur(16px) saturate(160%);
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px rgba(11, 18, 32, 0.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIQUID GLASS, token-basierte Komponenten (echte Refraktion, LENS A)
   ═══════════════════════════════════════════════════════════════════════════ */
.glass-card, .glass-panel {
  position: relative;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
          backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-glow);
  isolation: isolate;
}
.glass-card  { background: var(--glass-bg);        border-radius: var(--radius-card); }
.glass-panel { background: var(--glass-bg-strong); }

/* Safari/Firefox ohne url()-backdrop-filter: reiner Blur statt kaputt */
@supports not ((backdrop-filter: url(#glassRefract)) or (-webkit-backdrop-filter: url(#glassRefract))) {
  .glass-card, .glass-panel {
    -webkit-backdrop-filter: blur(22px) saturate(180%) brightness(1.06);
            backdrop-filter: blur(22px) saturate(180%) brightness(1.06);
    background: rgba(255,255,255,0.34);
  }
}

/* ::before, refraktiver Rim (konischer Specular nur auf der Kontur) */
.glass-card::before, .glass-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.6px;
  background:
    conic-gradient(from 210deg at 50% 50%,
      rgba(255,255,255,0.98) 0deg,
      rgba(255,255,255,0.22) 60deg,
      rgba(31,157,104,0.45)  140deg,
      rgba(255,255,255,0.10) 210deg,
      rgba(160,196,255,0.55) 285deg,
      rgba(255,255,255,0.98) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 1;
}
/* ::after, spekularer Glanz + zarte blaue Tiefenkante */
.glass-card::after, .glass-panel::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background:
    radial-gradient(120% 80% at 18% 0%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.12) 26%, rgba(255,255,255,0) 52%),
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(0deg, rgba(31,157,104,0.12) 0%, rgba(31,157,104,0) 26%);
  mix-blend-mode: screen;
  pointer-events: none; z-index: 0;
}
.glass-card > *, .glass-panel > * { position: relative; z-index: 2; }

.glass-card.is-hoverable { transition: transform .28s var(--ease, cubic-bezier(.22,.61,.36,1)), box-shadow .28s ease; }
.glass-card.is-hoverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(11, 18, 32, 0.20), 0 10px 26px rgba(11, 18, 32, 0.12), var(--glass-glow);
}

/* Dunkle Signal-Glaskachel (Navy) für Kontrastpunkte */
.glass-card.is-dark {
  background: linear-gradient(155deg, #0C1019 0%, #06080E 100%);
  color: #fff;
}
.glass-card.is-dark::after { opacity: .5; }

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHT-SEKTIONEN auf Glass-Feld + Light-Karten → Liquid Glass
   (Override über styles.css; dunkle bg-brand-ink/story/agency-Sektionen bleiben)
   ═══════════════════════════════════════════════════════════════════════════ */
section.bg-white, section.bg-brand-paper,
.flow-section, .case-studies-section {
  background: transparent !important;
}

.persona-card, .fc, .step-card, .cs-card, .faq-item {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
          backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: var(--glass-shadow), var(--glass-glow) !important;
  isolation: isolate;
}
.faq-item[open] { background: var(--glass-bg-strong) !important; }

@supports not ((backdrop-filter: url(#glassRefract)) or (-webkit-backdrop-filter: url(#glassRefract))) {
  .persona-card, .fc, .step-card, .cs-card, .faq-item {
    -webkit-backdrop-filter: blur(22px) saturate(180%) brightness(1.06);
            backdrop-filter: blur(22px) saturate(180%) brightness(1.06);
    background: rgba(255,255,255,0.40) !important;
  }
}

/* Conic-Rim + Inhalt-z-index (cs-card ausgenommen, schützt das Poster-Bild) */
.persona-card, .fc, .step-card, .faq-item { position: relative; }
.persona-card::before, .fc::before, .step-card::before, .faq-item::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.6px;
  background: conic-gradient(from 210deg at 50% 50%,
    rgba(255,255,255,0.98) 0deg, rgba(255,255,255,0.22) 60deg,
    rgba(31,157,104,0.45) 140deg, rgba(255,255,255,0.10) 210deg,
    rgba(160,196,255,0.55) 285deg, rgba(255,255,255,0.98) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; z-index: 1;
}
.persona-card > *, .fc > *, .step-card > *, .faq-item > * { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   BRAND-LOCKUP, CarePulz (Puls-Ring-Logo + Wortmarke + "by Georg Recruiting")
   ═══════════════════════════════════════════════════════════════════════════ */
.cp-lockup { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.cp-logo { width: 30px; height: 30px; display: block; color: var(--brand-primary); flex: none; overflow: visible; }
/* overflow:visible → die pulsierenden Ringe (scale 1.08) werden NICHT am SVG-Rand abgeschnitten */
.cp-logo svg { width: 100%; height: 100%; display: block; overflow: visible; }
.cp-namewrap { display: flex; flex-direction: column; line-height: 1; }
.cp-wordmark {
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  color: var(--brand-primary);
}
.cp-wordmark .cp-pulz { color: var(--brand-primary); }
.cp-by {
  font-size: 9.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--brand-muted); text-transform: none; margin-top: 2px;
}

/* Animiertes Puls-Logo: äußere Ringe „atmen" sanft nach außen */
@media (prefers-reduced-motion: no-preference) {
  .cp-logo .ring { transform-origin: 50% 50%; animation: cpPulse 3.2s var(--ease-out, ease-out) infinite; }
  .cp-logo .ring-2 { animation-delay: .4s; }
  .cp-logo .ring-3 { animation-delay: .8s; }
}
@keyframes cpPulse {
  0%, 100% { transform: scale(1);    opacity: var(--o, .4); }
  50%      { transform: scale(1.08); opacity: calc(var(--o, .4) + .25); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOTION, Hero-Aurora + Reveal-Verfeinerung
   ═══════════════════════════════════════════════════════════════════════════ */
/* Driftende, weiche Farb-Auren (ersetzt statische Hero-Glows visuell) */
.cp-aurora { position: absolute; border-radius: 9999px; filter: blur(8px); pointer-events: none; will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .cp-aurora-1 { animation: cpDrift1 16s ease-in-out infinite; }
  .cp-aurora-2 { animation: cpDrift2 20s ease-in-out infinite; }
  .cp-aurora-3 { animation: cpDrift3 24s ease-in-out infinite; }
}
@keyframes cpDrift1 { 0%,100% { transform: translate(0,0)      scale(1); }   50% { transform: translate(40px,30px)   scale(1.12); } }
@keyframes cpDrift2 { 0%,100% { transform: translate(0,0)      scale(1); }   50% { transform: translate(-50px,20px)  scale(1.08); } }
@keyframes cpDrift3 { 0%,100% { transform: translate(0,0)      scale(1.05); } 50% { transform: translate(30px,-40px)  scale(1); } }

/* Reveal: weicher, mit Stagger via --d (von carepulz.js gesetzt) */
.reveal { transition-delay: var(--d, 0ms); }

/* Glas-Shimmer-Sweep für hervorgehobene Glas-Flächen */
.glass-shimmer { overflow: hidden; }
.glass-shimmer::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); pointer-events: none; z-index: 3;
}
@media (prefers-reduced-motion: no-preference) {
  .glass-shimmer:hover::before { animation: cpShimmer 1.1s ease; }
}
@keyframes cpShimmer { to { left: 130%; } }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO, zentrierte Headline + Subline + auto-cyclender Dashboard-Loop
   ═══════════════════════════════════════════════════════════════════════════ */
.cp-hero-h {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700; color: var(--brand-ink);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05; letter-spacing: -0.025em;
  max-width: 19ch; margin: 0 auto;
  text-wrap: balance;
}
.cp-hero-h .bg-clip-text { -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.cp-hero-sub {
  font-size: clamp(15px, 1.05vw, 17px); line-height: 1.6;
  color: var(--brand-muted);
  max-width: 54ch; margin: 18px auto 0;
}
.cp-hero-sub strong { color: var(--brand-ink); font-weight: 600; }

/* Bühne für das Dashboard + schwebende Pills */
.cp-hero-stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.cph-stage-glow {
  position: absolute; inset: 6% 4% 10% 4%; z-index: 0; pointer-events: none;
  background: radial-gradient(62% 60% at 50% 38%, rgba(31,157,104,0.22), transparent 70%);
  filter: blur(34px);
}

/* Eigenständiges Hero-Dashboard: cyclet von selbst (kein scroll-pin → dashScene*/dsnActive*/dashCursorPath laufen) */
.cp-hero-dash {
  position: relative; z-index: 1;
  margin: 0 auto;
  transform: none;
  will-change: transform;
}
.cp-hero-dash .dash-stage { min-height: 360px; }
@media (prefers-reduced-motion: no-preference) {
  .cp-hero-dash { animation: cpHeroFloat 8s ease-in-out infinite; }
}
@keyframes cpHeroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Schwebende Glass-Capability-Pills um das Board */
.cph-pill {
  position: absolute; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 9999px;
  font-size: 13px; font-weight: 600; color: var(--brand-ink);
  white-space: nowrap;
  background: rgba(255,255,255,.72);
  /* Günstiger Blur statt url(#glassRefract): Pills liegen über dem ANIMIERTEN
     Dashboard, SVG-Refraktion würde hier jeden Frame neu berechnet → Jank. */
  -webkit-backdrop-filter: blur(14px) saturate(150%);
          backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.cph-pill-ic { display: inline-flex; }
.cph-pill .pill-dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--brand-success); box-shadow: 0 0 0 3px rgba(52,168,83,.18); }
.cph-pill-tl { top: 17%;    left: -5%; }
.cph-pill-tr { top: 31%;   right: -5%; }
.cph-pill-bl { bottom: 24%; left: -5%; }
.cph-pill-br { bottom: 9%;  right: -3%; }
@media (prefers-reduced-motion: no-preference) {
  .cph-pill { animation: cphPillFloat 5s ease-in-out infinite; }
  .cph-pill-tr { animation-delay: .6s; }
  .cph-pill-bl { animation-delay: 1.2s; }
  .cph-pill-br { animation-delay: 1.8s; }
}
@keyframes cphPillFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
/* Auf <lg ausblenden (Board kollabiert, Pills würden überlappen) */
@media (max-width: 1023px) {
  .cph-pill { display: none; }
  .cp-hero-stage { padding: 0; }
}

/* prefers-reduced-motion: Hero-Dashboard ruhig, Pipeline-Szene fix sichtbar */
@media (prefers-reduced-motion: reduce) {
  .cp-hero-dash, .cp-hero-dash * { animation: none !important; }
  .cp-hero-dash .dash-scene-pipeline { opacity: 1 !important; visibility: visible !important; }
  .cp-hero-dash .dash-scene-campaigns,
  .cp-hero-dash .dash-scene-reporting { opacity: 0 !important; visibility: hidden !important; }
  .cp-hero-dash .dash-cursor { display: none; }
  .cph-pill { animation: none !important; }
}

/* ── Hero-Einblendung OHNE IntersectionObserver (sofort beim ersten Paint) ──
   Above-the-fold darf nicht auf den JS-Observer warten (der bei schwerem
   Initial-Render verzögert feuert). Reine CSS-Animation mit fill-both + Delay. */
.cp-rise { animation: cpRise .7s var(--ease, ease) both; animation-delay: var(--d, 0ms); }
@keyframes cpRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .cp-rise { animation: none; opacity: 1; transform: none; }
}

/* ── Performance: Off-Screen-Sektionen vom ersten Paint ausnehmen ──
   Riesige Seite (~24.000 px) + Tailwind-CDN-Runtime → langsamer First Paint.
   content-visibility überspringt Layout/Paint für nicht sichtbare Sektionen.
   Ausgenommen: Hero (erste Section) + Scroll-Pin-#produkt (misst Positionen). */
main > section { content-visibility: auto; contain-intrinsic-size: auto 900px; }
main > section:first-of-type,
#produkt,
#cases { content-visibility: visible; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO-DASHBOARD-MOCK „.cpd", helles Liquid-Glass im ECHTEN CarePulz-Look
   (Glass-Sidebar + Puls-Logo, Stat-Cards mit Sparklines, Trend-Chart, Kampagnen-
   Cards, Pipeline-Kanban). Cyclet Dashboard → Kampagnen → Bewerber, Sidebar-Sync.
   ═══════════════════════════════════════════════════════════════════════════ */
.cpd {
  position: relative; z-index: 1; text-align: left;
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--brand-ink);
}
.cpd-chrome { display:flex; align-items:center; gap:12px; padding:11px 16px; border-bottom:1px solid rgba(255,255,255,.55); background:rgba(255,255,255,.45); }
.cpd-dots { display:flex; gap:6px; }
.cpd-dots span { width:11px; height:11px; border-radius:50%; }
.cpd-dots span:nth-child(1){ background:#ff5f57 } .cpd-dots span:nth-child(2){ background:#febc2e } .cpd-dots span:nth-child(3){ background:#28c840 }
.cpd-url { flex:1; text-align:center; font-size:12px; color:var(--brand-muted); }
.cpd-live { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:700; color:var(--brand-primary); background:rgba(31,157,104,.10); border:1px solid rgba(31,157,104,.25); padding:3px 10px; border-radius:9999px; }
.cpd-live-dot { width:7px; height:7px; border-radius:50%; background:#34a853; box-shadow:0 0 0 3px rgba(52,168,83,.18); }
.cpd-body { display:grid; grid-template-columns:210px 1fr; }
.cpd-side { position:relative; display:flex; flex-direction:column; gap:2px; padding:16px 12px 14px; background:rgba(255,255,255,.34); border-right:1px solid rgba(255,255,255,.55); }
.cpd-brand { display:flex; align-items:center; gap:9px; padding:2px 8px 12px; }
.cpd-logo { width:26px; height:26px; color:var(--brand-primary); flex:none; }
.cpd-logo svg { width:100%; height:100%; display:block; }
.cpd-name { font-weight:700; font-size:18px; letter-spacing:-.02em; color:var(--brand-ink); }
.cpd-navlabel { font-size:10px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:rgb(120 132 156); padding:10px 10px 5px; }
.cpd-nav { display:flex; align-items:center; gap:10px; padding:8px 11px; border-radius:11px; font-size:13px; font-weight:500; color:rgb(74 86 110); text-decoration:none; }
.cpd-nav svg { width:18px; height:18px; flex:none; }
.cpd-badge { margin-left:auto; font-size:10px; font-weight:700; color:var(--brand-primary); background:rgba(31,157,104,.12); border-radius:9999px; padding:1px 7px; }
.cpd-nav.is-active { background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600; }
.cpd-user { display:flex; align-items:center; gap:9px; margin-top:auto; padding:9px; border-radius:14px; background:rgba(255,255,255,.45); }
.cpd-user-avi { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:12px; background:linear-gradient(135deg,var(--brand-primary),var(--brand-light)); flex:none; }
.cpd-user-name { font-size:12.5px; font-weight:600; color:var(--brand-ink); line-height:1.1; }
.cpd-user-role { font-size:11px; color:var(--brand-muted); }
.cpd-cursor { position:absolute; left:14px; top:96px; z-index:20; pointer-events:none; filter:drop-shadow(0 2px 5px rgba(11,18,32,.25)); }
.cpd-main { min-width:0; padding:18px; }
.cpd-stage { position:relative; min-height:392px; }
.cpd-scene { position:absolute; inset:0; opacity:0; visibility:hidden; display:flex; flex-direction:column; gap:14px; }
.cpd-head .cpd-h1 { font-size:19px; font-weight:700; letter-spacing:-.01em; color:var(--brand-ink); }
.cpd-head .cpd-sub { font-size:12.5px; color:var(--brand-muted); margin-top:2px; }
.cpd-kpis { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.cpd-stat { padding:13px 14px !important; border-radius:16px !important; }
.cpd-stat .stat-value { font-size:24px; }
.cpd-unit { font-size:14px; font-weight:600; color:var(--brand-muted); margin-left:2px; }
.cpd-statfoot { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-top:8px; }
.cpd-trend { font-size:11px; font-weight:700; color:var(--brand-primary); }
.cpd-stat.is-dark .cpd-trend, .cpd-stat.is-dark .cpd-unit { color:var(--brand-light); }
.cpd-spark { width:54px; height:22px; }
.cpd-panel { padding:16px !important; border-radius:18px !important; }
.cpd-panel-head { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:10px; gap:10px; }
.cpd-panel-title { font-size:14px; font-weight:700; color:var(--brand-ink); }
.cpd-legend { display:flex; gap:14px; font-size:11px; color:var(--brand-muted); white-space:nowrap; }
.cpd-legend i { display:inline-block; width:9px; height:9px; border-radius:50%; margin-right:5px; vertical-align:middle; }
.cpd-trend-svg { width:100%; height:150px; display:block; }
.cpd-camps { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.cpd-camp { padding:15px !important; border-radius:16px !important; }
.cpd-camp-head { display:flex; align-items:flex-start; justify-content:space-between; gap:8px; margin-bottom:12px; }
.cpd-camp-title { font-size:13.5px; font-weight:600; color:var(--brand-ink); margin-top:1px; }
.cpd-pill { font-size:10px; font-weight:700; padding:3px 8px; border-radius:9999px; white-space:nowrap; }
.cpd-pill-active { color:var(--brand-primary); background:rgba(31,157,104,.12); }
.cpd-pill-setup { color:#b4690e; background:rgba(217,146,11,.14); }
.cpd-camp-metrics { display:flex; gap:14px; margin-bottom:12px; }
.cpd-m-l { display:block; font-size:10px; color:var(--brand-muted); }
.cpd-m-v { display:block; font-size:15px; font-weight:700; color:var(--brand-ink); white-space:nowrap; }
.cpd-bar { height:6px; border-radius:9999px; background:rgba(31,157,104,.12); overflow:hidden; }
.cpd-bar span { display:block; height:100%; border-radius:9999px; background:var(--brand-primary); }
.cpd-kanban { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.cpd-col { background:rgba(255,255,255,.4); border:1px solid rgba(255,255,255,.6); border-radius:14px; padding:10px; display:flex; flex-direction:column; gap:8px; }
.cpd-col-head { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:700; color:var(--brand-ink); }
.cpd-dot { width:7px; height:7px; border-radius:50%; }
.cpd-cnt { margin-left:auto; font-size:10px; color:var(--brand-muted); background:rgba(31,157,104,.10); border-radius:9999px; padding:0 6px; }
.cpd-cardlet { display:flex; align-items:center; gap:8px; background:#fff; border:1px solid rgba(11,18,32,.06); border-radius:11px; padding:8px; box-shadow:0 2px 6px rgba(11,18,32,.05); }
.cpd-avi { width:26px; height:26px; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:10px; font-weight:700; flex:none; }
.cpd-cl-name { font-size:12px; font-weight:600; color:var(--brand-ink); line-height:1.1; }
.cpd-cl-meta { font-size:10px; color:var(--brand-muted); }
.cpd-stat.is-dark { background:linear-gradient(155deg,#0C1019,#06080E) !important; color:#fff; border-color:rgba(255,255,255,.12) !important; }
.cpd-stat.is-dark .stat-label { color:rgba(255,255,255,.55); }
.cpd-stat.is-dark .stat-value { color:#fff; }

/* Auto-Cycle: 3 Szenen (12s), Sidebar-Sync + Cursor (reuse dashScene*-Timing) */
.cpd-scene-1 { opacity:1; visibility:visible; }
.cpd-nav-1 { background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600; }
@media (prefers-reduced-motion: no-preference) {
  .cpd-scene-1 { opacity:0; visibility:hidden; animation: dashScenePipeline  12s ease-in-out infinite; }
  .cpd-scene-2 { animation: dashSceneCampaigns 12s ease-in-out infinite; }
  .cpd-scene-3 { animation: dashSceneReporting 12s ease-in-out infinite; }
  .cpd-nav-1 { background:transparent; color:rgb(74 86 110); font-weight:500; animation: cpdNav1 12s ease-in-out infinite; }
  .cpd-nav-2 { animation: cpdNav2 12s ease-in-out infinite; }
  .cpd-nav-3 { animation: cpdNav3 12s ease-in-out infinite; }
  .cpd-cursor { animation: cpdCursor 12s ease-in-out infinite; }
}
@keyframes cpdNav1 { 0%,28%{ background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600 } 30%,93%{ background:transparent; color:rgb(74 86 110); font-weight:500 } 96%,100%{ background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600 } }
@keyframes cpdNav2 { 0%,32%{ background:transparent; color:rgb(74 86 110); font-weight:500 } 34%,60%{ background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600 } 62%,100%{ background:transparent; color:rgb(74 86 110); font-weight:500 } }
@keyframes cpdNav3 { 0%,64%{ background:transparent; color:rgb(74 86 110); font-weight:500 } 66%,93%{ background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600 } 95%,100%{ background:transparent; color:rgb(74 86 110); font-weight:500 } }
@keyframes cpdCursor {
  0%{ top:96px; transform:scale(1) } 4%{ transform:scale(.82) } 8%,28%{ transform:scale(1) }
  31%{ top:132px } 34%{ transform:scale(.82) } 38%,60%{ transform:scale(1) }
  63%{ top:168px } 66%{ transform:scale(.82) } 70%,92%{ transform:scale(1) }
  100%{ top:96px; transform:scale(1) }
}
@media (max-width:1023px) {
  .cpd-body { grid-template-columns:1fr; }
  .cpd-side { display:none; }
  .cpd-kpis { grid-template-columns:repeat(2,1fr); }
  .cpd-camps { grid-template-columns:1fr; }
  .cpd-kanban { grid-template-columns:repeat(2,1fr); }
  .cpd-stage { min-height:560px; }
}
@media (prefers-reduced-motion: reduce) { .cpd-cursor { display:none; } }

/* ═══════════════════════════════════════════════════════════════════════════
   #produkt, scroll-gepinntes helles Dashboard + Erklär-Kacheln
   (Szenen/Nav/Cursor/Tiles werden von data-scene auf .cpd-stage-pin gesteuert,
   gesetzt vom Scroll-Pin-JS. Pipeline → Kampagnen → Reporting.)
   ═══════════════════════════════════════════════════════════════════════════ */
.cpd-stage-pin { position: relative; }
/* Heading + Dashboard pinnen GEMEINSAM als ein Block → Heading bleibt während der Szenen oben sichtbar
   und löst sich am Pin-Ende zusammen mit dem Dashboard (kein Hängenbleiben/Überlappen). */
.scroll-pin.is-pinning .cpd-pin-sticky {
  position: sticky;
  /* Block etwas nach unten gesetzt: Luft über dem Heading, Dashboard näher an den unteren Rand */
  top: clamp(90px, calc(50vh - 315px), 215px);
}
.cpd-stage-pin {
  transform-origin: center top;
  transition: transform .45s var(--ease), opacity .45s var(--ease), filter .45s var(--ease);
}
.scroll-pin.is-pinning .cpd-stage-pin[data-exit="1"] { transform: scale(.95); opacity:.7; }
.scroll-pin.is-pinning .cpd-stage-pin[data-exit="2"] { transform: scale(.88); opacity:.3; filter: blur(3px); }

/* Dashboard auf dunkler Sektion → OPAKER heller Hintergrund (kein Glas-Matsch) */
.cpd-pinned {
  background: linear-gradient(160deg,#FCFEFF 0%,#F4F9FF 52%,#EAF2FE 100%);
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: 0 44px 100px -34px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.10);
}
/* Fortschritts-Balken am oberen Dashboard-Rand, läuft beim Scrollen mit (nur im Pin sichtbar) */
.cpd-pin-progress { position:absolute; top:0; left:0; right:0; height:3px; z-index:30; background:rgba(31,157,104,.15); border-radius:var(--radius-card) var(--radius-card) 0 0; overflow:hidden; opacity:0; transition:opacity .3s ease; }
.cpd-pin-progress span { display:block; height:100%; width:100%; transform-origin:left center; transform:scaleX(var(--pin-progress,0)); background:linear-gradient(90deg,var(--brand-primary),var(--brand-accent)); box-shadow:0 0 12px rgba(31,157,104,.7); }
.scroll-pin.is-pinning .cpd-pin-progress { opacity:1; }
/* Szenen NICHT auto-cyclen, per data-scene gesteuert */
.cpd-pinned .cpd-scene { animation: none !important; opacity:0; visibility:hidden; transition: opacity .45s var(--ease); }
.cpd-stage-pin[data-scene="pipeline"]  .cpd-scene-pipeline,
.cpd-stage-pin[data-scene="campaigns"] .cpd-scene-campaigns,
.cpd-stage-pin[data-scene="reporting"] .cpd-scene-reporting { opacity:1; visibility:visible; }
/* Sidebar-Nav aktiv je Szene */
.cpd-stage-pin[data-scene="pipeline"]  .cpd-nav-bewerber,
.cpd-stage-pin[data-scene="campaigns"] .cpd-nav-kampagnen,
.cpd-stage-pin[data-scene="reporting"] .cpd-nav-dash { background:rgba(31,157,104,.12); color:var(--brand-primary); font-weight:600; }
/* Cursor: Position aus --cursor-y (JS) */
.cpd-pinned .cpd-cursor {
  animation: none !important;
  top: var(--cursor-y, 168px); left: var(--cursor-x, 14px);
  transform: scale(var(--cursor-scale,1));
  transition: top .5s var(--ease), transform .15s ease;
}

/* Erklär-Kacheln (auf dunkler Sektion) */
.cpd-explain { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:20px; }
.cpd-tile { padding:18px 20px; border-radius:18px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); transition: all .45s var(--ease); opacity:.45; }
.cpd-tile-ic { width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.08); color:#fff; margin-bottom:11px; }
.cpd-tile-t { font-size:15.5px; font-weight:700; color:#fff; margin-bottom:6px; }
.cpd-tile-s { font-size:13px; line-height:1.55; color:rgba(255,255,255,.62); }
.cpd-tile-s strong { color:#fff; font-weight:600; }
.cpd-stage-pin[data-scene="pipeline"]  .cpd-tile-pipeline,
.cpd-stage-pin[data-scene="campaigns"] .cpd-tile-campaigns,
.cpd-stage-pin[data-scene="reporting"] .cpd-tile-reporting {
  opacity:1; background:rgba(31,157,104,.16); border-color:rgba(31,157,104,.5);
  box-shadow:0 14px 36px -12px rgba(31,157,104,.45);
}
.cpd-stage-pin[data-scene="pipeline"]  .cpd-tile-pipeline .cpd-tile-ic,
.cpd-stage-pin[data-scene="campaigns"] .cpd-tile-campaigns .cpd-tile-ic,
.cpd-stage-pin[data-scene="reporting"] .cpd-tile-reporting .cpd-tile-ic { background:var(--brand-primary); }

/* Ohne Pin (Mobile <1024 / kein JS): Pipeline-Szene zeigen, alle Kacheln sichtbar */
@media (max-width:1023px) {
  .cpd-explain { grid-template-columns:1fr; }
  .cpd-tile { opacity:1; }
}

/* ── Hero-Motion: zufällige Puls-„Tropfen", Pop + nach außen schwächer werdende
   Wellen (wie ein Tropfen aufs Wasser / das CarePulz-Puls-Logo). ── */
.cp-pulses { position:absolute; inset:0; }
.cp-pulse { position:absolute; width:14px; height:14px; transform:translate(-50%,-50%); }
.cp-pulse::before { content:""; position:absolute; inset:0; border-radius:50%; background:radial-gradient(circle, rgba(31,157,104,.9), rgba(31,157,104,0) 68%); opacity:0; }
.cp-pulse i { position:absolute; inset:0; border-radius:50%; border:1.5px solid rgba(31,157,104,.5); opacity:0; }
@media (prefers-reduced-motion: no-preference) {
  .cp-pulse::before { animation: cpDrop var(--dur,12s) ease-out infinite; animation-delay: var(--dl,0s); }
  .cp-pulse i { animation: cpRipple var(--dur,12s) cubic-bezier(.2,.55,.3,1) infinite; }
  .cp-pulse i:nth-child(1) { animation-delay: var(--dl,0s); }
  .cp-pulse i:nth-child(2) { animation-delay: calc(var(--dl,0s) + var(--dur,12s) * .06); }
  .cp-pulse i:nth-child(3) { animation-delay: calc(var(--dl,0s) + var(--dur,12s) * .12); }
  .cp-pulse i:nth-child(4) { animation-delay: calc(var(--dl,0s) + var(--dur,12s) * .18); }
}
/* langsamer Pop, lange sichtbar; Wellen expandieren über 40% der Dauer (kleinschrittig), dann langer ruhiger Gap → seltener */
@keyframes cpDrop   { 0%{ transform:scale(.4); opacity:0 } 2%{ opacity:.9 } 11%{ transform:scale(1.9); opacity:0 } 100%{ opacity:0 } }
@keyframes cpRipple { 0%{ transform:scale(.35); opacity:0 } 4%{ opacity:.55 } 40%{ transform:scale(10); opacity:0 } 100%{ transform:scale(10); opacity:0 } }

/* ── Features: Hub-Mark = Puls-Logo (statt „CP") ── */
.cp-hubmark { display:flex; align-items:center; justify-content:center; width:100%; height:100%; color:#fff; }
.cp-hubmark svg { width:62%; height:62%; display:block; }

/* ── Features-Card „CI-konforme Kampagnen": CarePulz → Plattformen → Bewerber ── */
.fa-platforms { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:7px; height:100%; padding:6px 0; }
.fpl-src { width:40px; height:40px; color:#fff; }
.fpl-src svg { width:100%; height:100%; display:block; }
.fpl-link { position:relative; width:2px; height:20px; border-radius:2px; background:linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.30)); }
.fpl-dot { position:absolute; left:50%; top:0; width:6px; height:6px; margin-left:-3px; border-radius:50%; background:var(--brand-light); box-shadow:0 0 8px var(--brand-primary); opacity:0; }
@media (prefers-reduced-motion: no-preference){ .fpl-dot { animation: fplDot 2.6s ease-in-out infinite; } .fpl-dot-d { animation-delay:1.3s; } }
@keyframes fplDot { 0%{ top:0; opacity:0 } 12%{ opacity:1 } 88%{ opacity:1 } 100%{ top:100%; opacity:0 } }
.fpl-channels { display:flex; gap:8px; }
.fpl-ch { width:38px; height:38px; border-radius:11px; background:#fff; border:1px solid rgba(255,255,255,.7); display:flex; align-items:center; justify-content:center; box-shadow:0 4px 12px rgba(0,0,0,.25); }
.fpl-ch img { width:21px; height:21px; object-fit:contain; }
@media (prefers-reduced-motion: no-preference){ .fpl-ch { animation: fplPing 3.4s ease-in-out infinite; } .fpl-ch-2{ animation-delay:.35s } .fpl-ch-3{ animation-delay:.7s } .fpl-ch-4{ animation-delay:1.05s } }
@keyframes fplPing { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-4px); box-shadow:0 8px 18px rgba(31,157,104,.5) } }
.fpl-out { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#34a853,#7bcd91); color:#fff; font-weight:700; font-size:12px; display:flex; align-items:center; justify-content:center; }

/* Story-1: echte ASB-Ad (quadratisches Creative) im Phone-Mockup */
.ad-post-image-full { position:relative; aspect-ratio:1/1; height:auto !important; overflow:hidden; }
.ad-post-image-full .ad-post-photo { position:static !important; width:100%; height:100%; object-fit:cover; display:block; }

/* ── Vergleich: Herkömmlich vs. CarePulz ── */
.cmp-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:980px; margin:0 auto; align-items:stretch; }
@media (max-width:767px){ .cmp-grid{ grid-template-columns:1fr; } }
.cmp-card { border-radius:24px; padding:30px 28px; display:flex; flex-direction:column; }
.cmp-old { background:#fff; border:1px solid var(--brand-surface); }
.cmp-new { background:linear-gradient(160deg, rgba(31,157,104,.10), rgba(31,157,104,.03)); border:1px solid rgba(31,157,104,.30); box-shadow:0 28px 64px -26px rgba(31,157,104,.35); }
.cmp-head { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.cmp-tag { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 12px; border-radius:9999px; white-space:nowrap; }
.cmp-tag-old { color:var(--brand-muted); background:var(--brand-surface); }
.cmp-tag-new { color:#fff; background:var(--brand-primary); }
.cmp-title { font-size:18px; font-weight:700; color:var(--brand-ink); }
.cmp-list { display:flex; flex-direction:column; gap:14px; }
.cmp-list li { position:relative; padding-left:34px; font-size:14.5px; line-height:1.5; color:var(--brand-text); }
.cmp-new .cmp-list li { color:var(--brand-ink); }
.cmp-list strong { color:var(--brand-ink); font-weight:600; }
.cmp-x, .cmp-c { position:absolute; left:0; top:1px; width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; }
.cmp-x { background:rgba(120,132,156,.16); color:rgb(120,132,156); }
.cmp-c { background:var(--brand-primary); color:#fff; }

/* ── Pricing ── */
.price-points { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; margin:30px 0 34px; }
.price-point { background:#fff; border:1px solid var(--brand-surface); border-radius:18px; padding:20px 30px; min-width:160px; box-shadow:0 12px 30px -16px rgba(11,18,32,.15); }
.price-point-v { font-size:30px; font-weight:800; color:var(--brand-primary); line-height:1; }
.price-point-l { font-size:13px; color:var(--brand-muted); margin-top:7px; }
.cp-pricing-cta { margin:0 auto; }

/* ── Pricing als dunkler Einschub direkt unter den Case Studies ── */
.pricing-band { position:relative; overflow:hidden; padding:94px 0 104px; background:linear-gradient(165deg,#0C1322 0%,#070B14 100%); color:#fff; }
.pricing-band-bg { position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(58% 50% at 82% -5%, rgba(31,157,104,.24), transparent 60%),
    radial-gradient(50% 46% at 8% 105%, rgba(15,127,80,.18), transparent 60%); }
.pricing-eyebrow { color:var(--brand-light) !important; }
.pricing-h { color:#fff; }
.pricing-accent { background:linear-gradient(90deg,var(--brand-light),var(--brand-accent)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.pricing-lead { margin:18px auto 0; max-width:700px; font-size:17px; line-height:1.65; color:rgba(255,255,255,.72); }
.pricing-lead strong { color:#fff; font-weight:600; }
.pricing-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:44px 0 40px; }
@media (max-width:767px){ .pricing-cards{ grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; } }
.pricing-card { position:relative; isolation:isolate; padding:30px 26px; border-radius:var(--radius-card); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); box-shadow:0 26px 64px -30px rgba(0,0,0,.7); -webkit-backdrop-filter:blur(12px) saturate(150%); backdrop-filter:blur(12px) saturate(150%); transition:transform .28s var(--ease), background .28s ease; }
.pricing-card:hover { transform:translateY(-4px); background:rgba(255,255,255,.09); }
.pricing-card::before { content:""; position:absolute; inset:0; border-radius:inherit; padding:1.4px;
  background:conic-gradient(from 210deg at 50% 50%, rgba(255,255,255,.72) 0deg, rgba(255,255,255,.08) 70deg, rgba(31,157,104,.6) 150deg, rgba(255,255,255,.05) 220deg, rgba(160,196,255,.5) 300deg, rgba(255,255,255,.72) 360deg);
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; z-index:1; }
.pricing-card > * { position:relative; z-index:2; }
.pricing-card-v { font-size:40px; font-weight:800; line-height:1; letter-spacing:-.02em; color:#fff; }
.pricing-card-l { margin-top:11px; font-size:15px; font-weight:700; color:var(--brand-light); }
.pricing-card-d { margin-top:8px; font-size:13.5px; line-height:1.55; color:rgba(255,255,255,.6); }
.pricing-fine { margin-top:18px; font-size:13.5px; color:rgba(255,255,255,.5); }

/* ── Agentur-Link unter den Stat-Widgets ── */
.agency-link { display:inline-flex; align-items:center; gap:8px; margin-top:6px; font-size:15px; font-weight:600; color:#fff; text-decoration:none; padding:12px 22px; border-radius:9999px; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.06); transition:all .25s var(--ease); }
.agency-link:hover { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.45); transform:translateY(-1px); }
.agency-link svg { width:16px; height:16px; }
/* Im rechten Stat-Block: bündiger, volle Breite unter den 6 KPIs */
.agency-link-block { grid-column:1 / -1; width:100%; margin-top:0; justify-content:center; padding:15px 22px; }

/* ── Agentur/Team-Section: Award-Badge + Träger-Logo-Strip (Social Proof) ── */
.agency-award { display:inline-flex; align-items:center; gap:11px; margin-top:18px; padding:9px 18px 9px 14px; border-radius:9999px; background:linear-gradient(120deg, rgba(255,196,84,.18), rgba(255,255,255,.06)); border:1px solid rgba(255,200,90,.40); color:rgba(255,255,255,.92); font-size:13.5px; line-height:1.3; text-align:left; backdrop-filter:blur(8px); }
.agency-award svg { width:22px; height:22px; flex:none; color:#ffc857; }
.agency-award strong { color:#fff; font-weight:700; }

.agency-trust { margin-top:48px; text-align:center; }
.agency-trust-label { font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; font-weight:700; color:rgba(255,255,255,.5); margin-bottom:18px; }
.agency-trust-logos { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px; }
.agency-trust-chip { display:flex; align-items:center; justify-content:center; height:58px; min-width:104px; padding:10px 20px; background:rgba(255,255,255,.94); border:1px solid rgba(255,255,255,.5); border-radius:14px; box-shadow:0 12px 30px -16px rgba(0,0,0,.55); transition:transform .25s var(--ease); }
.agency-trust-chip:hover { transform:translateY(-3px); }
.agency-trust-chip img { max-height:36px; max-width:118px; width:auto; object-fit:contain; display:block; }
@media (max-width:767px){ .agency-trust-chip { height:50px; min-width:88px; padding:8px 14px; } .agency-trust-chip img { max-height:28px; max-width:92px; } }

/* ── Case Studies: horizontaler Scroll-Pin (Careflow-Stil) ── */
.cs-pin-wrap { position:relative; padding:0 !important; }
.cs-pin { position:sticky; top:0; height:100vh; min-height:660px; display:flex; flex-direction:column; overflow:hidden; padding:52px 0 26px; }
.cs-pin-wrap .cs-header { margin:0 auto 24px; flex:none; }
.cs-viewport { flex:1 1 auto; min-height:0; display:flex; align-items:center; overflow:hidden; width:100%; }
/* der eigentliche Track: horizontale Flex-Reihe, per JS translateX */
.cs-grid.cs-track { display:flex; flex-wrap:nowrap; gap:26px; max-width:none; width:max-content; margin:0; padding:10px max(28px, calc((100vw - 1240px) / 2)); will-change:transform; transition:none; }
.cs-pin-wrap .cs-card { width:430px; flex:0 0 430px; }
.cs-pin-foot { flex:none; display:flex; flex-direction:column; align-items:center; gap:11px; padding:14px 24px 0; }
.cs-progress { width:min(380px, 64vw); height:4px; border-radius:99px; background:var(--brand-surface); overflow:hidden; }
.cs-progress span { display:block; height:100%; width:100%; transform-origin:left center; transform:scaleX(0); background:linear-gradient(90deg, var(--brand-primary), var(--brand-accent)); border-radius:99px; }
.cs-pin-wrap .cs-footnote { margin:0; font-size:13px; color:var(--brand-muted); text-align:center; }

/* Fallback ohne Pin (Mobile / reduced-motion): normaler horizontaler Swipe */
.cs-no-pin .cs-pin { position:static; height:auto; min-height:0; display:block; overflow:visible; padding:70px 0 0; }
.cs-no-pin .cs-viewport { overflow-x:auto; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; }
.cs-no-pin .cs-grid.cs-track { transform:none !important; }
.cs-no-pin .cs-card { scroll-snap-align:center; }
@media (max-width:1023px){ .cs-pin-wrap .cs-card { width:300px; flex-basis:300px; } }

/* ════════════════════════════════════════════════════════════════════════════
   UNIFIED LIQUID-GLASS PASS, eine Design-Sprache über die GANZE Seite.
   QUELLE: /opt/carepulz-design-handover (DESIGN-GUIDELINES.md): hell-dominant,
   Liquid Glass überall, Manrope, ruhige Typo-Hierarchie, Navy nur als Akzent.
   REVERSIBEL: alles unter `body.cp-unified`, Klasse am <body> entfernen → exakt
   der vorherige Look (dunkle Sektionen, alte Karten). Es wird nichts gelöscht.
   ──────────────────────────────────────────────────────────────────────────── */

/*, Typo-Skala (Tokens; harmlos auch ohne die Klasse), */
:root {
  --h1: clamp(36px, 5.6vw, 66px);   /* Hero */
  --h2: clamp(27px, 3.2vw, 44px);   /* Sektions-Headlines */
  --h3: clamp(17px, 1.3vw, 21px);   /* Karten-/Untertitel */
}

/* 1) DUNKLE SEKTIONEN → helles Glass-Feld (Agentur-Foto-Sektion bleibt dunkel,
   weil sie kein bg-brand-ink ist, sondern .agency-section). */
body.cp-unified section.bg-brand-ink:not(#produkt) { background: transparent !important; color: var(--brand-ink); }
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white,
body.cp-unified section.bg-brand-ink:not(#produkt) h1,
body.cp-unified section.bg-brand-ink:not(#produkt) h2,
body.cp-unified section.bg-brand-ink:not(#produkt) h3 { color: var(--brand-ink) !important; }
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white\/90,
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white\/80,
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white\/70,
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white\/65,
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white\/60,
body.cp-unified section.bg-brand-ink:not(#produkt) .text-white\/50 { color: var(--brand-text) !important; }
/* dekorative dunkle Radial-Glows in Ex-Dunkel-Sektionen dezenter */
body.cp-unified section.bg-brand-ink:not(#produkt) > .absolute.inset-0 { opacity: .45; }

/* 2) ALLE Kacheln → Liquid Glass (light). feat-anim bleibt dunkler „Screen". */
body.cp-unified .feat-card,
body.cp-unified .stat-card,
body.cp-unified .price-point,
body.cp-unified .trust-badge,
body.cp-unified .contact-card {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow), var(--glass-glow) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
          backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border-radius: var(--radius-card) !important;
  position: relative; isolation: isolate;
}
body.cp-unified .feat-card::before,
body.cp-unified .stat-card::before,
body.cp-unified .price-point::before,
body.cp-unified .trust-badge::before,
body.cp-unified .contact-card::before {
  content:""; position:absolute; inset:0; height:auto; opacity:1; border-radius:inherit; padding:1.6px;
  background: conic-gradient(from 210deg at 50% 50%,
    rgba(255,255,255,0.45) 0deg, rgba(255,255,255,0.12) 60deg,
    rgba(31,157,104,0.28) 140deg, rgba(255,255,255,0.08) 210deg,
    rgba(160,196,255,0.32) 285deg, rgba(255,255,255,0.45) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none; z-index:1;
}
body.cp-unified .feat-card > *,
body.cp-unified .stat-card > *,
body.cp-unified .price-point > *,
body.cp-unified .trust-badge > *,
body.cp-unified .contact-card > * { position:relative; z-index:2; }

/* Text in den neuen Glass-Karten dunkel */
body.cp-unified .feat-title { color: var(--brand-ink) !important; }
body.cp-unified .feat-desc { color: var(--brand-text) !important; }
body.cp-unified .stat-num { color: var(--brand-ink) !important; }
body.cp-unified .stat-num .stat-prefix { color: var(--brand-muted) !important; }
body.cp-unified .stat-label { color: var(--brand-text) !important; }
body.cp-unified .stat-label strong { color: var(--brand-ink) !important; }
body.cp-unified .contact-card .text-white\/70,
body.cp-unified .contact-card { color: var(--brand-ink); }
body.cp-unified .contact-card .contact-link { color: var(--brand-text) !important; }
body.cp-unified .contact-card .contact-link:hover { color: var(--brand-primary) !important; }

/* feat-anim: dunkler Navy-„Screen" im hellen Card → weiße Animationen bleiben sichtbar */
body.cp-unified .feat-anim {
  background: radial-gradient(120% 80% at 50% 25%, rgba(31,157,104,.30), transparent 62%), linear-gradient(160deg, #0C1019 0%, #06080E 100%) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: #fff;
}
/* Inhalt im dunklen feat-anim-Screen bleibt hell (Section-Override zurücknehmen) */
body.cp-unified .feat-anim .text-white { color: #fff !important; }
body.cp-unified .feat-anim .text-white\/70,
body.cp-unified .feat-anim .text-white\/60,
body.cp-unified .feat-anim .text-white\/50 { color: rgba(255,255,255,.7) !important; }

/* 3) TYPO-SKALA konsequent anwenden */
body.cp-unified .cp-hero-h { font-size: var(--h1); }
body.cp-unified .h2,
body.cp-unified .agency-hero-h { font-size: var(--h2); }
body.cp-unified .h3,
body.cp-unified .agency-h2,
body.cp-unified .feat-title,
body.cp-unified .cmp-title { font-size: var(--h3); }

/* ════════════════════════════════════════════════════════════════════════════
   UNTERSEITEN (Impressum / Ressourcen / Tools / Referenzen), geteilte Chrome
   ──────────────────────────────────────────────────────────────────────────── */
.subpage-hero { padding: 132px 0 48px; text-align: center; }
.subpage-hero .pre-h { margin-bottom: 14px; }
.subpage-h1 { font-family:'Manrope',system-ui,sans-serif; font-weight:800; color:var(--brand-ink); font-size:clamp(34px,5vw,62px); line-height:1.05; letter-spacing:-.025em; max-width:20ch; margin:0 auto; text-wrap:balance; }
.subpage-lead { margin:18px auto 0; max-width:60ch; font-size:clamp(15px,1.1vw,18px); line-height:1.6; color:var(--brand-muted); }
.sp-section { padding: 20px 0 90px; }
.sp-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.sp-wrap-narrow { max-width: 760px; }
.sp-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.sp-card { padding: 26px 26px 28px; }
.sp-card-title { font-size:19px; font-weight:700; color:var(--brand-ink); margin:14px 0 7px; }
.sp-card-text { font-size:14.5px; line-height:1.6; color:var(--brand-text); }
.sp-card-ic { width:46px; height:46px; border-radius:13px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--brand-primary),var(--brand-accent)); }
.sp-soon { display:inline-flex; align-items:center; gap:7px; font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--brand-primary); background:rgba(31,157,104,.1); border:1px solid rgba(31,157,104,.25); padding:5px 12px; border-radius:9999px; }
.sp-legal { font-size:15px; line-height:1.7; color:var(--brand-text); }
.sp-legal h2 { font-size:18px; font-weight:700; color:var(--brand-ink); margin:26px 0 8px; }
.sp-legal .ph { color:var(--brand-muted); font-style:italic; }

/* Featured-Ressource (Workbook): Text links, schwebendes 3D-Mockup rechts */
.cp-resource-feat { display:grid; grid-template-columns:1.05fr .95fr; gap:44px; align-items:center; padding:42px 46px; }
@media (max-width:860px){ .cp-resource-feat { grid-template-columns:1fr; gap:26px; padding:30px 24px; text-align:center; } }
/* gespiegelte Ressource (Score-Visual links, Text rechts), nur Desktop */
@media (min-width:861px){ .cp-rf-rev .cp-rf-text { order:2; } .cp-rf-rev .cp-rf-visual { order:1; } }
.cp-rf-title { font-size:clamp(26px,2.6vw,38px); font-weight:800; color:var(--brand-ink); line-height:1.08; letter-spacing:-.02em; margin:14px 0 12px; }
.cp-rf-text p { font-size:15.5px; line-height:1.65; color:var(--brand-text); }
.cp-rf-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; margin:20px 0 28px; }
.cp-rf-list li { display:flex; gap:11px; align-items:flex-start; font-size:14.5px; line-height:1.45; color:var(--brand-ink); text-align:left; }
.cp-rf-check { flex:none; width:22px; height:22px; border-radius:50%; background:var(--brand-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; margin-top:1px; }
@media (max-width:860px){ .cp-rf-list { max-width:430px; margin-left:auto; margin-right:auto; } }
.cp-rf-visual { display:flex; align-items:center; justify-content:center; }
.cp-workbook-img { width:min(100%,370px); height:auto; display:block; filter:drop-shadow(0 38px 56px rgba(11,18,32,.28)); }
@media (prefers-reduced-motion: no-preference){ .cp-workbook-img { animation: cpBookFloat 6.5s ease-in-out infinite; transform-origin:center; will-change:transform; } }
@keyframes cpBookFloat { 0%,100% { transform:translateY(0) rotate(-1.2deg); } 50% { transform:translateY(-14px) rotate(.5deg); } }

/* ── Andromeda-Report: PDF-Cover als schwebendes 3D-Dokument mit Tiefe + Badge ── */
.cp-report-doc { position:relative; width:min(100%,330px); perspective:1500px; }
.cp-report-doc img {
  width:100%; height:auto; display:block;
  border-radius:3px 11px 11px 3px;            /* links Buchrücken, rechts offene Seiten */
  transform: rotateY(-19deg) rotateX(3deg);
  transform-origin:center;
  /* gestapelte Solid-Shadows rechts = Papierdicke / Seitenstapel, dazu weicher Schlagschatten */
  box-shadow:
    2px 0 0 #eef2fa, 4px 1px 0 #e2e9f5, 6px 1px 0 #eef2fa,
    8px 2px 0 #dbe3f1, 10px 2px 0 #e8eef8, 12px 3px 0 #d6dfee,
    38px 30px 56px -16px rgba(11,18,32,.42);
  will-change:transform;
}
@media (prefers-reduced-motion: no-preference){
  .cp-report-doc img { animation: cpReportFloat 7.5s ease-in-out infinite; }
}
@keyframes cpReportFloat {
  0%,100% { transform: rotateY(-19deg) rotateX(3deg) translateY(0); }
  50%     { transform: rotateY(-12deg) rotateX(2deg) translateY(-14px); }
}
.cp-report-badge {
  position:absolute; right:-8px; bottom:22px; z-index:2;
  display:inline-flex; align-items:center; padding:9px 15px; border-radius:9999px;
  font-size:12.5px; font-weight:700; color:var(--brand-ink);
  background:rgba(255,255,255,.82); -webkit-backdrop-filter:blur(14px) saturate(150%); backdrop-filter:blur(14px) saturate(150%);
  border:1px solid var(--glass-border); box-shadow:var(--glass-shadow);
}
@media (max-width:860px){ .cp-report-doc { width:min(78%,300px); margin:0 auto; } .cp-report-badge { right:0; } }

/* ── Ärzte-Leitfaden: 16:9-Deck-Mockup (gestapelte Folien + sanftes Schweben) ── */
.cp-deck-mock { position:relative; width:min(100%,470px); margin:0 auto; }
.cp-deck-mock::before, .cp-deck-mock::after { content:""; position:absolute; inset:0; border-radius:16px; }
.cp-deck-mock::after  { background:#f1f5fb; border:1px solid rgba(11,18,32,.07); transform:translate(11px,10px); z-index:0; }
.cp-deck-mock::before { background:#e2e9f5; border:1px solid rgba(11,18,32,.06); transform:translate(22px,20px); z-index:0; }
.cp-deck-frame { position:relative; z-index:1; border-radius:16px; overflow:hidden; border:1px solid rgba(11,18,32,.1); box-shadow:0 28px 60px -26px rgba(11,18,32,.46); }
.cp-deck-frame img { display:block; width:100%; aspect-ratio:16/9; object-fit:cover; }
.cp-deck-badge { position:absolute; left:-8px; top:16px; z-index:3; display:inline-flex; align-items:center; gap:6px; padding:9px 15px; border-radius:9999px; font-size:12.5px; font-weight:700; color:var(--brand-ink); background:rgba(255,255,255,.86); -webkit-backdrop-filter:blur(14px) saturate(150%); backdrop-filter:blur(14px) saturate(150%); border:1px solid var(--glass-border); box-shadow:var(--glass-shadow); }
@media (prefers-reduced-motion:no-preference){ .cp-deck-mock { animation:cpDeckFloat 8s ease-in-out infinite; } }
@keyframes cpDeckFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
@media (max-width:860px){ .cp-deck-mock { width:min(84%,400px); } .cp-deck-mock::after { transform:translate(8px,7px); } .cp-deck-mock::before { transform:translate(15px,14px); } }

/* ── „Echter Mensch" / Kampagnenmanagement (Section über Persona) ── */
.cp-human-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
@media (max-width:860px){ .cp-human-grid { grid-template-columns:1fr; gap:34px; } .cp-human-visual { order:-1; } }
.cp-human-list { list-style:none; padding:0; margin:26px 0 0; display:flex; flex-direction:column; gap:12px; }
.cp-human-list li { display:flex; gap:12px; align-items:flex-start; font-size:15.5px; line-height:1.5; color:var(--brand-ink); }
.cp-human-check { flex:none; width:24px; height:24px; border-radius:50%; background:var(--brand-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; margin-top:1px; }
.cp-human-visual { position:relative; min-height:460px; display:flex; align-items:flex-end; justify-content:center; }
.cp-human-disc { position:absolute; top:6px; left:50%; transform:translateX(-50%); width:min(390px,86%); aspect-ratio:1; border-radius:50%; background:radial-gradient(circle at 50% 38%, var(--brand-light) 0%, var(--brand-primary) 52%, var(--brand-accent) 100%); box-shadow:0 44px 90px -34px rgba(31,157,104,.65); }
.cp-human-img { position:relative; z-index:1; width:min(430px,94%); height:auto; display:block; filter:drop-shadow(0 24px 44px rgba(11,18,32,.18));
  /* nur die UNTERE Kante ganz leicht weich auslaufen lassen (kein Geist) */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%); }
.cp-human-badge { position:absolute; left:2%; bottom:7%; z-index:2; display:inline-flex; align-items:center; gap:11px; padding:11px 16px; border-radius:16px; background:rgba(255,255,255,.74); -webkit-backdrop-filter:blur(14px) saturate(150%); backdrop-filter:blur(14px) saturate(150%); border:1px solid var(--glass-border); box-shadow:var(--glass-shadow); font-size:13px; line-height:1.25; color:var(--brand-ink); }
.cp-human-badge strong { font-weight:700; }
.cp-human-badge-dot { width:9px; height:9px; border-radius:50%; background:var(--brand-success); box-shadow:0 0 0 3px rgba(52,168,83,.18); flex:none; }

/* ── Case Studies: einheitliche Poster (Logo auf Blau) + „Jetzt Video anschauen"-Button + Lightbox ── */
/* Logo bleibt mittig zentriert; Button fest in der rechten unteren Ecke (einheitlich auf allen Karten) */
.cs-watch { position:absolute; right:14px; bottom:14px; z-index:3; display:inline-flex; align-items:center; gap:7px; padding:8px 14px; border-radius:9999px; font-size:12.5px; font-weight:700; color:var(--brand-primary); background:rgba(255,255,255,.96); border:1px solid rgba(255,255,255,.7); box-shadow:0 10px 24px -10px rgba(11,18,32,.45); cursor:pointer; transition:transform .2s var(--ease), background .2s; }
.cs-watch:hover { transform:translateY(-2px); background:#fff; }
.cs-watch svg { color:var(--brand-primary); }
/* VitalCura: niedrig aufgelöstes Raster-Logo durch sauberes weißes Inline-SVG ersetzt (Wortmarke + Ellipsen-Ring) */
/* gleiche Höhe wie die anderen Logos (Wortmarke+Ring), width per Aspect */
.cs-vc-logo { filter: none; height: 30%; width: auto; max-width: 54%; }

/* ── Ressourcen: Webinar-Aufzeichnung, animierter Videoscreen, flankiert von Sören (links) & John (rechts) ── */
.cp-webinar-vis { position: relative; width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 1.9 / 1; }
.cp-rf-visual .btn-primary svg { vertical-align: -2px; }
/* Videoscreen-Mockup (Mitte), öffnet Vimeo-Lightbox via data-vimeo */
.cp-webinar-screen {
  position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%);
  z-index: 2; width: 62%; aspect-ratio: 16 / 9; border: 0; padding: 0; cursor: pointer;
  border-radius: 15px; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #2a4f86 0%, #16294a 55%, #0b1220 100%);
  box-shadow: 0 34px 64px -26px rgba(11,18,32,.62), inset 0 0 0 1px rgba(255,255,255,.09);
  transition: transform .25s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  .cp-webinar-screen { animation: cpScreenFloat 6.5s ease-in-out infinite; }
}
@keyframes cpScreenFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-11px); } }
.cp-ws-top { position: absolute; top: 9px; left: 11px; display: flex; gap: 5px; z-index: 3; }
.cp-ws-top i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.32); }
.cp-ws-badge { position: absolute; top: 8px; right: 10px; z-index: 3; font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16); padding: 3px 8px; border-radius: 100vw; }
.cp-ws-play {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  z-index: 3; width: 54px; height: 54px; border-radius: 50%; padding-left: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary); background: rgba(255,255,255,.96);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.55);
  transition: transform .25s var(--ease), background .2s;
}
.cp-ws-play::before { content: ''; position: absolute; inset: -9px; border-radius: 50%; border: 2px solid rgba(255,255,255,.55); }
@media (prefers-reduced-motion: no-preference) {
  .cp-ws-play::before { animation: cpPlayPulse 2.2s ease-out infinite; }
}
@keyframes cpPlayPulse { 0% { transform: scale(.78); opacity: .65; } 100% { transform: scale(1.65); opacity: 0; } }
.cp-webinar-screen:hover { transform: translateX(-50%) translateY(-4px); }
.cp-webinar-screen:hover .cp-ws-play { background: #fff; transform: translate(-50%,-50%) scale(1.07); }
.cp-ws-bar { position: absolute; left: 11px; right: 11px; bottom: 11px; height: 5px; border-radius: 100vw; background: rgba(255,255,255,.22); z-index: 3; overflow: hidden; }
.cp-ws-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 38%; border-radius: inherit; background: linear-gradient(90deg, var(--brand-light), #fff); }
@media (prefers-reduced-motion: no-preference) {
  .cp-ws-bar-fill { animation: cpBarFill 5.5s ease-in-out infinite; }
}
@keyframes cpBarFill { 0% { width: 8%; } 50% { width: 64%; } 100% { width: 8%; } }
/* freigestellte Personen flankieren den Screen (stehen leicht davor an den Seiten) */
.cp-webinar-person { position: absolute; bottom: 0; z-index: 4; margin: 0; width: 48%; }
.cp-webinar-person img { width: 100%; height: auto; display: block; filter: drop-shadow(0 14px 24px rgba(11,18,32,.26)); }
.cp-webinar-person--left  { left: -8%; }
.cp-webinar-person--right { right: -8%; }
@media (max-width: 860px) { .cp-webinar-vis { max-width: 400px; } }

/* Landingpage-Generator: Laptop-Mock mit geöffneter (generierter) AWO-Mittelrhein-Landingpage */
.cp-laptop { width: 100%; max-width: 460px; margin: 0 auto; filter: drop-shadow(0 26px 46px rgba(11,18,32,.26)); }
.cp-laptop-screen {
  position: relative;
  background: #0b0e15;
  border: 1px solid #313845;
  border-radius: 14px 14px 5px 5px;
  padding: 9px 9px 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.cp-laptop-cam { position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: #2c333f; }
.cp-laptop-screen img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; border-radius: 4px; }
/* aufgeklapptes Deck: Scharnier + angedeutete Tastatur + Trackpad, leicht perspektivisch (Trapez) */
/* sauberes MacBook-Deck (wie Referenz): dünne Alu-Leiste mit Öffnungs-Kerbe, KEINE sichtbaren Tasten */
.cp-laptop-deck {
  position: relative;
  width: 113%; margin-left: -6.5%;
  height: 16px;
  background: linear-gradient(180deg, #eaeef3 0%, #d4d9e1 30%, #bcc2cd 72%, #a7adba 100%);
  border-radius: 2px 2px 12px 12px;
  box-shadow: 0 17px 26px -13px rgba(11,18,32,.42), inset 0 1px 0 rgba(255,255,255,.6);
}
.cp-laptop-deck::before {            /* Öffnungs-Kerbe vorne mittig */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 86px; height: 6px; border-radius: 0 0 9px 9px;
  background: linear-gradient(180deg, #a9afbc, #cad0d9);
}
@media (max-width: 860px) { .cp-laptop { max-width: 380px; } }

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE-FIX Dashboards (<1024px)
   Auf Desktop füllt das Dashboard via aspect-ratio:16/9 + flex (.cpd-stage min-height:0).
   Auf Mobile gibt es kein aspect-ratio → die min-height:0 ließ das Dashboard auf ~86px
   kollabieren, die absolut positionierten Cycle-Szenen liefen darüber hinaus.
   Hier: Dashboard wieder als Block, Bühne bekommt feste Höhe für die Szenen.
   ════════════════════════════════════════════════════════════════════════════ */
/* (Mobile-Dashboard-Fix steht am Dateiende, muss nach den Desktop-Flexfill-Regeln stehen) */
/* Lightbox */
.cs-lightbox { position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; background:rgba(11,18,32,.84); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); padding:24px; }
.cs-lightbox.is-open { display:flex; }
.cs-lightbox-inner { position:relative; width:min(980px,100%); aspect-ratio:16/9; background:#000; border-radius:16px; box-shadow:0 44px 100px -28px rgba(0,0,0,.75); }
.cs-lightbox-inner iframe { position:absolute; inset:0; width:100%; height:100%; border:0; border-radius:16px; }
.cs-lightbox-close { position:absolute; top:-44px; right:0; width:34px; height:34px; border:0; border-radius:50%; background:rgba(255,255,255,.92); color:var(--brand-ink); font-size:20px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.cs-lightbox-close:hover { background:#fff; }

/* ════════════════════════════════════════════════════════════════════════════
   HERO-REFINEMENT, Careflow-Aufbau (Struktur, NICHT Farben/Serif):
   freistehendes rundes Glass-Menü, breitere + größere Headline, kleinere Subline,
   Dashboard breiter & im 16:9-Desktop-Format (weiterhin freistehend).
   ──────────────────────────────────────────────────────────────────────────── */
:root { --h1: clamp(37px, 5.9vw, 72px); }   /* Hero-Headline: etwas größer (Tom 12.07.), mit Präsenz + breiter gezogen */

/* Freistehendes, rundes Glass-Pill-Menü (statt voller Topbar-Leiste) */
.cp-topbar { background: transparent !important; border-bottom: 0 !important; box-shadow: none !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; padding-top: 14px; }
.cp-navpill {
  border-radius: 9999px;
  background: rgba(255,255,255,.66);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
          backdrop-filter: blur(18px) saturate(165%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 44px -16px rgba(11,18,32,.24), inset 0 1px 0 rgba(255,255,255,.75);
}

/* Headline breiter + größer, Subline kleiner + mehr Luft (Careflow-Atmung, weniger gestaucht) */
.cp-hero-h  { max-width: 34ch; line-height: 1.1; }   /* breiter gezogen, etwas mehr Zeilenluft */
.cp-hero-sub { font-size: clamp(14px, .95vw, 16px); line-height: 1.7; max-width: 52ch; margin-top: 32px; }

/* Dashboard breiter + 16:9 (Desktop-Bildschirm), Inhalt füllt die Höhe */
.cp-hero-stage { max-width: min(1240px, 95vw); }
.cpd        { display: flex; flex-direction: column; }
.cpd-chrome { flex: none; }
.cpd-body   { flex: 1 1 auto; min-height: 0; }
.cpd-main   { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.cpd-stage  { flex: 1 1 auto; min-height: 0; }
/* Haupt-Block jeder Szene füllt die Resthöhe → realistischer Desktop-Look */
.cpd-chart  { flex: 1 1 auto; display: flex; flex-direction: column; min-height: 0; }
.cpd-chart .cpd-trend-svg { flex: 1 1 auto; height: auto; min-height: 120px; }
/* Kanban füllt die Höhe (mehr Bewerber sichtbar), Kampagnen-Karten bleiben KLEIN (natürl. Höhe, oben) */
.cpd-kanban { flex: 1 1 auto; align-content: stretch; }
.cpd-camps  { flex: 0 0 auto; align-content: start; align-items: start; }
@media (min-width: 1024px) {
  .cp-hero-dash.cpd, .cpd-pinned.cpd { aspect-ratio: 16 / 9; }
  /* #produkt: 16:9-Dashboard LINKS (größer), kompakte Erklär-Karten RECHTS daneben */
  .cpd-stage-pin { display: flex; align-items: center; gap: 26px; }
  .cpd-stage-pin > .cpd-pinned { flex: 1 1 72%; min-width: 0; }
  .cpd-stage-pin > .cpd-explain {
    flex: 1 1 28%; display: flex; flex-direction: column; gap: 12px; margin-top: 0;
    grid-template-columns: none;   /* überschreibt das alte 3-Spalten-Grid */
  }
  /* Karten kompakter, damit alles ohne Beschnitt passt */
  .cpd-stage-pin > .cpd-explain .cpd-tile   { padding: 15px 16px; border-radius: 16px; }
  .cpd-stage-pin > .cpd-explain .cpd-tile-ic{ width: 30px; height: 30px; margin-bottom: 8px; }
  .cpd-stage-pin > .cpd-explain .cpd-tile-t { font-size: 14px; margin-bottom: 4px; }
  .cpd-stage-pin > .cpd-explain .cpd-tile-s { font-size: 11.5px; line-height: 1.45; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REFERENZEN-SEITE, Trustpilot-Leiste · Text-Testimonials · breite Case-Study-Reihen
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Bewertungen (Google + Trustpilot) + Kennzahlen-Leiste ── */
.ref-trust { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden; }
.ref-ratings { display: flex; flex-wrap: wrap; }
.ref-ratings .ref-tp { flex: 1 1 280px; }
.ref-ratings .ref-tp + .ref-tp { border-left: 1px solid var(--glass-border); }
.ref-statrow { display: flex; flex-wrap: wrap; border-top: 1px solid var(--glass-border); }
.ref-statrow .ref-stat { flex: 1 1 160px; min-width: 150px; text-align: center; padding: 22px 18px; }
.ref-statrow .ref-stat + .ref-stat { border-left: 1px solid var(--glass-border); }
.ref-google-g { width: 22px; height: 22px; flex: none; }
/* Trustpilot-Sterne grün (#00b67a); Google-Sterne gelb (Override unten) */
@media (max-width: 600px) {
  .ref-ratings .ref-tp + .ref-tp,
  .ref-statrow .ref-stat + .ref-stat { border-left: 0; border-top: 1px solid var(--glass-border); }
}
.ref-stat-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(30px, 3.4vw, 44px); color: var(--brand-ink); line-height: 1; letter-spacing: -.02em; }
.ref-stat-lbl { font-size: 13px; color: var(--brand-muted); margin-top: 8px; line-height: 1.35; }
.ref-tp { flex: 1.4 1 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 24px 22px; text-align: center; }
.ref-tp-top { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; color: var(--brand-ink); }
.ref-tp-top .ref-tp-greenstar { width: 22px; height: 22px; color: #00b67a; }
.tp-stars { display: inline-flex; gap: 3px; }
.tp-stars i { width: 26px; height: 26px; background: #00b67a; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; }
.tp-stars i svg { width: 17px; height: 17px; color: #fff; }
/* Google-Sterne gelb (#FBBC05, Googles Gold), Trustpilot bleibt grün (#00b67a) */
.ref-tp-google .tp-stars i { background: #FBBC05; }
.ref-tp-meta { font-size: 14px; color: var(--brand-text); }
.ref-tp-meta strong { color: var(--brand-ink); font-weight: 800; }
.ref-tp-link { font-size: 12.5px; color: var(--brand-muted); text-decoration: none; }
.ref-tp-link:hover { color: var(--brand-primary); }

/* ── Text-Testimonials ── */
.ref-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .ref-quotes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ref-quotes { grid-template-columns: 1fr; } }
.ref-quote { display: flex; flex-direction: column; padding: 26px 24px; }
.ref-quote-stars { display: inline-flex; gap: 2px; margin-bottom: 15px; }
.ref-quote-stars i { width: 18px; height: 18px; background: #f5a623; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; }
.ref-quote-stars i svg { width: 12px; height: 12px; color: #fff; }
.ref-quote-text { font-size: 15px; line-height: 1.62; color: var(--brand-ink); flex: 1 1 auto; }
.ref-quote-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--glass-border); }
.ref-quote-avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.ref-quote-name { font-weight: 700; color: var(--brand-ink); font-size: 14px; line-height: 1.2; }
.ref-quote-role { font-size: 12px; color: var(--brand-muted); margin-top: 2px; }

/* ── Breite Case-Study-Reihen (zickzack, alternierend) ── */
.ref-cases { display: flex; flex-direction: column; gap: 22px; }
.ref-case { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 38px; align-items: center; padding: 28px 32px; }
.ref-case-media { width: 100%; }
.ref-case-media .cs-poster { aspect-ratio: 16 / 10; border-radius: 16px; }
.ref-case:nth-of-type(even) .ref-case-media { order: 2; }
.ref-case-num { display: inline-block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13px; color: var(--brand-primary); letter-spacing: .12em; }
.ref-case-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(20px, 1.9vw, 27px); color: var(--brand-ink); letter-spacing: -.015em; line-height: 1.12; margin-top: 4px; }
.ref-case-tag { display: inline-block; font-size: 13px; color: var(--brand-primary); font-weight: 600; margin-top: 5px; }
.ref-case-text { font-size: 14.5px; line-height: 1.62; color: var(--brand-text); margin: 14px 0 18px; }
.ref-case .cs-kpi-big { font-size: clamp(22px, 2.1vw, 28px); }
.ref-case .cs-stats { margin-top: 16px; }
@media (max-width: 820px) {
  .ref-case { grid-template-columns: 1fr; gap: 20px; padding: 22px; }
  .ref-case:nth-of-type(even) .ref-case-media { order: 0; }
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE-FIX Dashboards (<1024px), MUSS am Dateiende stehen (nach .cpd{display:flex}
   und .cpd-stage{min-height:0}, sonst überschreiben die Desktop-Flexfill-Regeln diese hier).
   Desktop füllt das Dashboard via aspect-ratio:16/9 + flex; auf Mobile fehlt das aspect-ratio,
   wodurch min-height:0 das Dashboard auf ~86px kollabieren ließ und die absolut positionierten
   Cycle-Szenen darüber hinausliefen. Hier: Dashboard als Block, Bühne mit fester Höhe.
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .cpd            { display: block; }
  .cpd-body       { display: block; }
  .cpd-main       { display: block; }
  .cpd-stage      { min-height: 540px; }
  .cp-hero-dash .dash-stage { min-height: 540px; }
}
@media (max-width: 430px) {
  .cpd-stage      { min-height: 566px; }   /* schmaler → 2-Spalten-Kanban wird etwas höher */
}

/* ════════════════════════════════════════════════════════════════════════════
   KLICK-PULS, bei jedem Mausklick entsteht am Cursor der CarePulz-Impuls
   (gleiche Optik wie der Hero-Puls: Dot-Pop + expandierende Ringe). Einmalig,
   pointer-events:none (blockt nie Klicks), wird per JS nach ~0.95s entfernt.
   ════════════════════════════════════════════════════════════════════════════ */
.cp-click-pulse { position: fixed; width: 16px; height: 16px; transform: translate(-50%, -50%); pointer-events: none; z-index: 150; }
.cp-click-pulse::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(31,157,104,.9), rgba(31,157,104,0) 68%); opacity: 0; animation: cpClickDrop .55s ease-out forwards; }
.cp-click-pulse i { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(31,157,104,.55); opacity: 0; }
.cp-click-pulse i:nth-child(1) { animation: cpClickRipple .85s cubic-bezier(.2,.55,.3,1) forwards; }
.cp-click-pulse i:nth-child(2) { animation: cpClickRipple .85s cubic-bezier(.2,.55,.3,1) .08s forwards; }
.cp-click-pulse i:nth-child(3) { animation: cpClickRipple .85s cubic-bezier(.2,.55,.3,1) .16s forwards; }
@keyframes cpClickDrop   { 0% { transform: scale(.4); opacity: 0; } 20% { opacity: .9; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes cpClickRipple { 0% { transform: scale(.4); opacity: 0; } 14% { opacity: .6; } 100% { transform: scale(7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .cp-click-pulse { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE-FEINSCHLIFF 15.06.2026 (Tom-Feedback), muss am Dateiende stehen
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* 6) Ressourcen: Visual (Bild/Animation) zuerst statt unten angeheftet */
  .cp-resource-feat .cp-rf-visual { order: -1; }
  /* 5) Jessy „Nicht nur Software": blauer Kreis tiefer, weniger Leerraum oben */
  .cp-human-visual { min-height: 340px; }
  .cp-human-disc { top: 12%; width: min(310px, 72%); }
}
@media (max-width: 767px) {
  /* 1) Nav-Pill nicht bündig am Rand, etwas Abstand zu den Screen-Kanten */
  .cp-topbar { padding-left: 12px; padding-right: 12px; }
  /* 2) Produkt-Dashboard: ohne Scroll-Animation KEINE „stuck" Blau-Hervorhebung, alle Kacheln gleich */
  .cpd-stage-pin[data-scene] .cpd-tile-pipeline,
  .cpd-stage-pin[data-scene] .cpd-tile-campaigns,
  .cpd-stage-pin[data-scene] .cpd-tile-reporting {
    opacity: 1; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none;
  }
  .cpd-stage-pin[data-scene] .cpd-tile-pipeline .cpd-tile-ic,
  .cpd-stage-pin[data-scene] .cpd-tile-campaigns .cpd-tile-ic,
  .cpd-stage-pin[data-scene] .cpd-tile-reporting .cpd-tile-ic { background: rgba(255,255,255,.08); }
  .cpd-explain .cpd-tile { padding: 13px 15px; }
  /* 2) Produkt-Dashboard etwas kürzer (zeigt statisch nur die Pipeline-Szene) */
  .cpd-pinned .cpd-stage { min-height: 496px; }
  /* 4) Storytelling-Mockups (Social-Ad, Funnel, Bewerbermanagement) kleiner */
  .story-mockup { max-width: 288px; margin-left: auto; margin-right: auto; }
  /* iPhone-Mocks auf Mobile gerade stellen (kein 3D-Kippen, sonst zu eng) */
  .ad-phone, .funnel-phone { transform: none; box-shadow: 0 22px 50px -18px rgba(11,18,32,.5), 0 0 0 1px rgba(31,157,104,.16); }
}

/* ==========================================================
   AGENTUR-SUBSEITE (agentur.html)
   - Showreel-Karten (öffnen die globale Vimeo-Lightbox via [data-vimeo])
   - Leistungs-Karten (Mehr-Link), Final-CTA-Buttons
   ========================================================== */
.ag-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ag-reel {
  display: block; width: 100%; text-align: left; padding: 0;
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 22px 46px -26px rgba(11,18,32,.34);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ag-reel:hover { transform: translateY(-4px); box-shadow: 0 34px 64px -28px rgba(11,18,32,.46); }
.ag-reel .cs-poster {
  position: relative;
  aspect-ratio: 16 / 10;
}
.ag-reel-play {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 26px -8px rgba(11,18,32,.5);
  transition: transform .2s var(--ease);
}
.ag-reel:hover .ag-reel-play { transform: scale(1.08); }
.ag-reel-play svg { width: 18px; height: 18px; color: var(--brand-primary); margin-left: 2px; }
.ag-reel-cap { padding: 15px 18px 17px; }
.ag-reel-name { font-weight: 700; font-size: 15.5px; color: var(--brand-ink); }
.ag-reel-tag { font-size: 12.5px; color: var(--brand-muted); margin-top: 3px; }

/* Leistungs-Karten: Mehr-Link am Fuß */
.ag-svc { display: flex; flex-direction: column; }
.ag-svc .sp-card-text { flex: 1; }
.ag-svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--brand-primary);
  transition: gap .2s var(--ease);
}
.ag-svc:hover .ag-svc-more { gap: 11px; }
.ag-svc-more svg { width: 15px; height: 15px; }

/* Final-CTA: Buttons nebeneinander. Hinweis: das Design-Layer (Z. 657) macht
   section.bg-brand-ink hell -> Sekundär-Button muss für hellen Grund gestylt sein. */
.ag-cta-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.btn-ghost-ink {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 9999px;
  font-weight: 600; font-size: 15px; color: var(--brand-ink);
  border: 1px solid rgba(11,18,32,.16);
  background: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: all .25s var(--ease);
}
.btn-ghost-ink:hover { background: #fff; border-color: rgba(11,18,32,.30); transform: translateY(-1px); box-shadow: 0 10px 24px -14px rgba(11,18,32,.4); }

/* --- Teamfoto (alleinstehend, gerahmt) --- */
.ag-team {
  position: relative; margin: 0;
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 44px 96px -42px rgba(11,18,32,.46);
}
.ag-team img { display: block; width: 100%; height: auto; }
.ag-team-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 18px; border-radius: 16px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 18px 40px -20px rgba(11,18,32,.5);
  font-size: 13.5px; line-height: 1.3; color: var(--brand-ink);
}
.ag-team-badge strong { font-weight: 700; }
.ag-team-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--brand-success); box-shadow: 0 0 0 4px rgba(52,168,83,.18); }

/* --- Story-Säulen (aufgedröselt) --- */
.ag-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.ag-pillar { padding: 30px 28px 32px; }
.ag-pillar-num {
  font-size: 42px; font-weight: 800; line-height: 1;
  color: transparent; -webkit-background-clip: text; background-clip: text;
  background-image: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
}
.ag-pillar-title { font-size: 19px; font-weight: 700; color: var(--brand-ink); margin: 15px 0 9px; letter-spacing: -.01em; }
.ag-pillar-text { font-size: 14.5px; line-height: 1.62; color: var(--brand-text); }

/* --- KPI-Widgets --- */
.ag-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ag-kpi { padding: 26px 24px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.ag-kpi:hover { transform: translateY(-3px); }
.ag-kpi-ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); box-shadow: 0 10px 22px -10px rgba(31,157,104,.6); margin-bottom: 18px; }
.ag-kpi-v { font-size: clamp(30px, 3vw, 40px); font-weight: 800; line-height: 1; letter-spacing: -.02em; color: var(--brand-ink); }
.ag-kpi-plus { color: var(--brand-accent); }
.ag-kpi-l { font-size: 13.5px; line-height: 1.5; color: var(--brand-muted); margin-top: 10px; }

/* --- Award (Deutscher Agenturpreis) --- */
.ag-award { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: center; padding: 40px 46px; }
.ag-award-media { display: flex; align-items: center; justify-content: center; }
.ag-award-media img { width: 100%; max-width: 280px; height: auto; }
.ag-award-h { font-size: clamp(24px, 2.6vw, 36px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: var(--brand-ink); margin: 12px 0 16px; }
.ag-award-text { font-size: 15.5px; line-height: 1.65; color: var(--brand-text); }
.ag-award-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.ag-award-list li { display: flex; gap: 11px; align-items: center; font-size: 14.5px; line-height: 1.4; color: var(--brand-ink); }
.ag-award-check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(15,127,80,.12); border: 1px solid rgba(15,127,80,.34); color: var(--brand-accent); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

@media (max-width: 860px) {
  .ag-reel-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ag-pillars { grid-template-columns: 1fr; }
  .ag-award { grid-template-columns: 1fr; gap: 24px; padding: 32px 26px; text-align: center; }
  .ag-award-media img { max-width: 200px; }
  .ag-award-list { max-width: 320px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .ag-kpi-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  .ag-reel-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}
/* Final-CTA: Buttons sauber gestapelt & gleich breit auf Mobile */
@media (max-width: 480px) {
  .ag-cta-btns { flex-direction: column; align-items: stretch; }
  .ag-cta-btns > a { width: 100%; justify-content: center; }
  .ag-team-badge { left: 12px; bottom: 12px; padding: 10px 14px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   FUNKTIONEN, Kern-Kompartimente (.corefn, baut auf .story-*) + Kachel-Extras
   ══════════════════════════════════════════════════════════════════════════ */
/* Recycelte .cpd-Dashboards laufen hier OHNE Sidebar → Content füllt die volle
   Breite (mobil ist das ohnehin der Standard, vgl. .cpd-body @≤1023px). */
.corefn .cpd-body { grid-template-columns: 1fr; }
/* Block 03 (Reporting) ist ein breites Dashboard, kein hohes Funnel-Phone →
   den auf das Funnel getunten Sticky-Offset (styles.css :nth-of-type(3)) neutralisieren. */
#features .story-block:nth-of-type(3) .story-mockup-wrap { top: 100px; }

/* Info-Chip unter dem Text („2 Min · 48 h", „von CarePulzAI erstellt") */
.corefn-chip {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 24px;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  color: var(--brand-light);
  background: rgba(31,157,104,.12);
  border: 1px solid rgba(31,157,104,.28);
  padding: 9px 15px; border-radius: 9999px;
}
.corefn-chip-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(95,211,160,.18);
}

/* Icon-Kacheln ohne .fa-*-Animation (KI-Check, KI-Kommunikation, Landingpage) */
.corefn-tile-ic {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; color: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
}
.corefn-tile-ic svg { width: 100%; height: 100%; }

/* „bald"-Badge oben rechts auf einer Feature-Kachel */
.feat-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(31,157,104,.14);
  border: 1px solid rgba(31,157,104,.30);
  padding: 4px 10px; border-radius: 9999px;
}
/* Fix: `.feat-card > *` (cp-unified) zwingt sonst position:relative auf → Badge wird zum
   vollbreiten Balken oben & schiebt die .feat-anim nach unten (LP-Tile-Glitch). Höhere Spezifität. */
body.cp-unified .feat-card > .feat-badge { position: absolute; top: 14px; right: 14px; left: auto; width: auto; z-index: 4; }

/* ══════════════════════════════════════════════════════════════════════════
   FUNKTIONEN v2 (18.07.), HELLES Theme, Block-Visuals, Tile-Animationen
   ══════════════════════════════════════════════════════════════════════════ */
/* Sektion HELL statt dunkler story-section */
.story-section.corefn { background: linear-gradient(180deg,#F6FAFF 0%,#FFFFFF 48%,#F3F7FF 100%); color: var(--brand-ink); }
.story-section.corefn::before {
  background:
    radial-gradient(760px 560px at 84% 6%, rgba(31,157,104,.08), transparent 70%),
    radial-gradient(680px 480px at 16% 94%, rgba(15,127,80,.06), transparent 70%);
}
.corefn .story-header .h2, .corefn .story-h3 { color: var(--brand-ink); }
.corefn .story-header p { color: var(--brand-muted); }
.corefn .story-text, .corefn .story-text p { color: var(--brand-text); }
.corefn .story-text p strong { color: var(--brand-ink); }
.corefn .story-bullets, .corefn .story-bullets li, .corefn .story-bullets span { color: var(--brand-text); }
.corefn .story-bullets strong { color: var(--brand-ink); font-weight: 600; }
.corefn .story-num, .corefn .corefn-chip { display: none; }        /* Nummern + Wiederhol-Chips raus */
/* „weitere Funktionen"-Kacheln kräftiger auf hell */
.corefn .feat-card { background:#fff; border:1px solid var(--brand-surface); box-shadow:0 20px 44px -26px rgba(11,18,32,.20); }
.corefn .feat-title { color: var(--brand-ink); }
.corefn .feat-desc { color: var(--brand-text); }
/* Blöcke vertikal mittig → Mock nicht mehr „eingeklemmt", auf Texthöhe */
.corefn .story-grid { align-items: center; }
.corefn .story-mockup-wrap { position: static; align-self: center; }
#features .story-block:nth-of-type(3) .story-mockup-wrap { top: auto; }
.corefn .story-mockup { max-width: 460px; }
.corefn .story-block:nth-of-type(odd)  .story-mockup { margin-left: auto; }

/* ── Block 01: Booking-Flow (Buchung → Stelle aus ATS → erster Bewerber) ── */
.fa-booking { width:100%; max-width:420px; margin:0 auto; background:#fff; border:1px solid var(--brand-surface); border-radius:20px; padding:22px 20px; box-shadow:0 26px 64px -32px rgba(11,18,32,.24); }
.fab-step { display:flex; align-items:center; gap:13px; padding:13px 15px; border:1px solid var(--brand-surface); border-radius:14px; background:#fff; position:relative; }
.fab-step-ic { width:38px; height:38px; border-radius:11px; flex:none; display:flex; align-items:center; justify-content:center; background:rgba(31,157,104,.10); color:var(--brand-primary); }
.fab-step-ic svg { width:20px; height:20px; }
.fab-step-t { font-size:14px; font-weight:700; color:var(--brand-ink); line-height:1.2; }
.fab-step-s { font-size:12px; color:var(--brand-muted); margin-top:2px; }
.fab-step-badge { margin-left:auto; font-size:11px; font-weight:800; color:var(--brand-success); background:rgba(52,168,83,.12); border-radius:9999px; padding:3px 9px; }
.fab-connect { width:2px; height:15px; margin:3px 0 3px 33px; background:linear-gradient(var(--brand-primary),rgba(31,157,104,.25)); border-radius:2px; }
@media (prefers-reduced-motion:no-preference){
  .fab-step { opacity:.4; transform:translateY(3px); animation: fabStep 5.4s ease-in-out infinite; }
  .fab-step-2 { animation-delay:.55s; }
  .fab-step-3 { animation-delay:1.1s; }
  .fab-connect { transform:scaleY(0); transform-origin:top; animation: fabConn 5.4s ease-in-out infinite; }
  .fab-connect-2 { animation-delay:.55s; }
  .fab-step-3 .fab-step-badge { opacity:0; animation: fabPop 5.4s ease-in-out infinite; animation-delay:1.4s; }
}
@keyframes fabStep { 0%,6%{opacity:.4;transform:translateY(3px)} 16%,90%{opacity:1;transform:translateY(0)} 100%{opacity:.4;transform:translateY(3px)} }
@keyframes fabConn { 0%,8%{transform:scaleY(0)} 18%,90%{transform:scaleY(1)} 100%{transform:scaleY(0)} }
@keyframes fabPop { 0%,24%{opacity:0;transform:scale(.6)} 32%,90%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(.6)} }

/* ── Block 04: ATS-Anbindung, Hub + ATS-Logos (dunkles „Diagramm-Panel") ── */
.corefn-atsbox { position:relative; width:100%; max-width:440px; height:360px; margin:0 auto; border-radius:22px; overflow:hidden;
  background:radial-gradient(120% 90% at 50% 0%, #12203a 0%, #0b1526 55%, #070c16 100%);
  border:1px solid rgba(255,255,255,.09); box-shadow:0 34px 80px -38px rgba(11,18,32,.6); }
.corefn-atsbox .fa-bms { position:absolute; inset:26px; }

/* ── Tile-Animationen (in dunkler .feat-anim-Box) ── */
/* KI-Stellenanzeigen-Check: Dokument + Scan-Balken + Häkchen */
.fa-jobcheck { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.faj-doc { position:relative; width:104px; height:128px; background:#fff; border-radius:10px; box-shadow:0 12px 30px -12px rgba(0,0,0,.5); padding:16px 14px; overflow:hidden; }
.faj-line { height:7px; border-radius:4px; background:#e3e9f3; margin-bottom:9px; }
.faj-line.s1{width:70%} .faj-line.s2{width:100%} .faj-line.s3{width:88%} .faj-line.s4{width:60%}
.faj-scan { position:absolute; left:0; right:0; height:26px; top:-26px; background:linear-gradient(180deg,transparent,rgba(31,157,104,.28),transparent); }
.faj-badge { position:absolute; right:-10px; bottom:-10px; width:40px; height:40px; border-radius:50%; background:var(--brand-success); display:flex; align-items:center; justify-content:center; color:#fff; box-shadow:0 8px 20px -6px rgba(52,168,83,.6); opacity:0; transform:scale(.4); }
.faj-badge svg{ width:22px; height:22px; }
@media (prefers-reduced-motion:no-preference){
  .faj-scan { animation: fajScan 3.4s ease-in-out infinite; }
  .faj-badge { animation: fabPop 3.4s ease-in-out infinite; animation-delay:1.6s; }
}
@keyframes fajScan { 0%{top:-26px} 55%,100%{top:128px} }

/* KI-Bewerber-Kommunikation: Chat-Bubble tippt → Text, mit Funke */
.fa-aichat { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:22px; }
.fac-bubble { align-self:flex-start; max-width:78%; background:#fff; color:var(--brand-ink); font-size:12.5px; font-weight:600; padding:10px 13px; border-radius:14px 14px 14px 4px; box-shadow:0 8px 20px -10px rgba(0,0,0,.4); }
.fac-bubble.out { align-self:flex-end; background:var(--brand-primary); color:#fff; border-radius:14px 14px 4px 14px; opacity:0; transform:translateY(6px); }
.fac-typing span{ display:inline-block; width:6px; height:6px; margin:0 1.5px; border-radius:50%; background:rgba(31,157,104,.55); }
.fac-spark{ position:absolute; top:20px; right:22px; color:var(--brand-light); font-size:18px; }
@media (prefers-reduced-motion:no-preference){
  .fac-typing span{ animation: aiDot 1.1s ease-in-out infinite; }
  .fac-typing span:nth-child(2){ animation-delay:.15s } .fac-typing span:nth-child(3){ animation-delay:.3s }
  .fac-bubble.out{ animation: facOut 4.2s ease-in-out infinite; }
  .fac-spark{ animation: facSpark 4.2s ease-in-out infinite; }
}
@keyframes aiDot { 0%,100%{opacity:.35;transform:translateY(0)} 50%{opacity:1;transform:translateY(-3px)} }
@keyframes facOut { 0%,34%{opacity:0;transform:translateY(6px)} 46%,92%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(6px)} }
@keyframes facSpark { 0%,30%{opacity:0;transform:scale(.5) rotate(-20deg)} 42%,70%{opacity:1;transform:scale(1) rotate(0)} 100%{opacity:0;transform:scale(.5)} }

/* Landingpage-Generator: Browserfenster, Blöcke bauen sich auf */
.fa-lp { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.falp-win { width:150px; background:#fff; border-radius:11px; overflow:hidden; box-shadow:0 14px 34px -14px rgba(0,0,0,.5); }
.falp-bar { display:flex; gap:4px; padding:8px 10px; background:#eef2f8; }
.falp-bar i{ width:7px;height:7px;border-radius:50%;background:#cfd8e6 }
.falp-body { padding:12px; display:flex; flex-direction:column; gap:8px; }
.falp-hero { height:34px; border-radius:6px; background:linear-gradient(135deg,var(--brand-primary),var(--brand-light)); }
.falp-b { height:8px; border-radius:4px; background:#e3e9f3; }
.falp-b.s1{width:80%} .falp-b.s2{width:100%}
.falp-btn { height:14px; width:52px; border-radius:5px; background:var(--brand-primary); }
@media (prefers-reduced-motion:no-preference){
  .falp-hero,.falp-b,.falp-btn { opacity:0; transform:translateY(5px); animation: falpBuild 4.4s ease-in-out infinite; }
  .falp-b.s1{ animation-delay:.3s } .falp-b.s2{ animation-delay:.5s } .falp-btn{ animation-delay:.8s }
}
@keyframes falpBuild { 0%,8%{opacity:0;transform:translateY(5px)} 20%,90%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(5px)} }

/* ══════════════════════════════════════════════════════════════════════════
   FUNKTIONEN v3 (18.07.), je Funktion eine breite Liquid-Glass-Box, Mock zum Text
   ══════════════════════════════════════════════════════════════════════════ */
.corefn .story-block[data-story] {
  max-width: 1120px; margin: 0 auto 26px;
  padding: clamp(28px,3.4vw,50px);
  border-radius: 28px; position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(150deg, rgba(255,255,255,.9), rgba(244,249,255,.74));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 66px -40px rgba(11,18,32,.30);
  -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%);
}
.corefn .story-block[data-story]::before {           /* Liquid-Glass-Rim */
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1.5px; pointer-events:none; z-index:1;
  background: conic-gradient(from 210deg at 50% 50%, rgba(255,255,255,.95), rgba(31,157,104,.22) 140deg, rgba(255,255,255,.55) 285deg, rgba(255,255,255,.95));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.corefn .story-block[data-story] > .story-grid { position: relative; z-index: 2; gap: clamp(30px,4vw,60px); }
/* Mockups: standardmäßig FLACH. Nur die Ads-Phone neigt sich subtil ZUM Text. */
.corefn .story-mockup { max-width: 420px; transition: transform .5s var(--ease); transform: none; }
/* Block 02 Ads: fertiges Mockup-PNG (Klinikum NF) + Radar-Ringe & App-Icons dahinter. */
.corefn .story-block[data-story="ads"] .story-mockup { max-width: 340px; transform: none; }
.story-mockup-ads { position: relative; }
.ad-mock-img { position:relative; z-index:2; display:block; width:100%; height:auto; margin:0 auto; filter: drop-shadow(0 34px 54px rgba(11,18,32,.30)); }
.ad-radar { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:0; pointer-events:none; }
.ad-ring { position:absolute; border-radius:50%; border:1.5px solid rgba(31,157,104,.16); }
.ad-ring-1 { width:265px; height:265px; }
.ad-ring-2 { width:390px; height:390px; border-style:dashed; border-color:rgba(31,157,104,.15); }
.ad-ring-3 { width:500px; height:500px; border-color:rgba(31,157,104,.08); }
@media (prefers-reduced-motion:no-preference){ .ad-radar { animation: adRadarSpin 55s linear infinite; } }
@keyframes adRadarSpin { to { transform: rotate(360deg); } }
.ad-appicon { position:absolute; z-index:1; width:56px; height:56px; border-radius:15px; box-shadow:0 14px 30px -10px rgba(11,18,32,.38); object-fit:cover; overflow:hidden; }
.ad-appicon-ig { top:4%; left:1%; transform:rotate(-9deg); }
.ad-appicon-fb { top:34%; right:-3%; transform:rotate(8deg); }
.ad-appicon-g { bottom:13%; left:-3%; transform:rotate(6deg); background:#fff; display:flex; align-items:center; justify-content:center; }
.ad-appicon-g img { width:60%; height:60%; object-fit:contain; }
@media (max-width:1023px){ .ad-ring-3 { display:none; } .ad-appicon { width:46px; height:46px; } }
/* Block 03 Reporting: volles Dashboard im Laptop, breit wie die Textspalte, gerade */
.corefn .story-block[data-story="reporting"] .story-mockup { max-width: 560px; }
@media (max-width: 1023px) {
  .corefn .story-mockup { transform: none; max-width: 460px; margin: 0 auto; }
  .corefn .story-block[data-story="ads"] .story-mockup { max-width: 300px; }
}

/* ── Block 01: Formular → Kampagne einreichen → Bewerbungs-Benachrichtigungen ── */
.fa-book2 { width:100%; max-width:390px; margin:0 auto; display:flex; flex-direction:column; gap:13px; }
.fbk-form { background:#fff; border:1px solid var(--brand-surface); border-radius:16px; padding:16px 16px 14px; box-shadow:0 22px 46px -28px rgba(11,18,32,.24); }
.fbk-form-h { font-size:14px; font-weight:800; color:var(--brand-ink); margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.fbk-form-h::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--brand-primary); box-shadow:0 0 0 4px rgba(31,157,104,.16); }
.fbk-field { display:flex; justify-content:space-between; align-items:center; gap:10px; padding:9px 12px; border:1px solid var(--brand-surface); border-radius:10px; margin-bottom:8px; }
.fbk-lbl { font-size:10.5px; color:var(--brand-muted); font-weight:600; }
.fbk-val { font-size:12.5px; color:var(--brand-ink); font-weight:700; }
.fbk-submit { margin-top:4px; text-align:center; background:var(--brand-primary); color:#fff; font-size:13px; font-weight:800; padding:11px; border-radius:11px; }
.fbk-notes { display:flex; flex-direction:column; gap:8px; }
.fbk-note { display:flex; align-items:center; gap:11px; background:#fff; border:1px solid var(--brand-surface); border-left:3px solid var(--brand-success); border-radius:12px; padding:10px 13px; box-shadow:0 12px 28px -16px rgba(11,18,32,.22); opacity:0; transform:translateX(26px); transition:opacity .45s var(--ease), transform .45s var(--ease); }
.fbk-note-ic { width:30px; height:30px; border-radius:9px; background:rgba(52,168,83,.12); display:flex; align-items:center; justify-content:center; font-size:15px; flex:none; }
.fbk-note-ic--img { background:transparent; border-radius:0; overflow:visible; }
.fbk-note-ic--img img { width:30px; height:30px; border-radius:7px; display:block; }
.fbk-note-t { font-size:12.5px; font-weight:700; color:var(--brand-ink); line-height:1.2; }
.fbk-note-s { font-size:10.5px; color:var(--brand-muted); margin-top:1px; }
/* JS-gesteuert (Script direkt unter dem Block): Felder werden Zeichen für Zeichen getippt →
   „Kampagne einreichen" pulst → Meldungen sliden nacheinander rein → alles raus → Loop. */
.fbk-val { min-height:1.15em; white-space:nowrap; }
/* Feste Feldhöhe → beim Tippen schiebt sich nichts nach unten (statisch) */
.fbk-field { min-height:41px; }
.fbk-val.typing::after { content:""; display:inline-block; width:2px; height:1.02em; background:var(--brand-primary); margin-left:2px; vertical-align:-2px; border-radius:1px; animation:fbkBlink .75s step-end infinite; }
@keyframes fbkBlink { 50%{opacity:0} }
.fbk-submit.pulse { animation:fbkPulse .55s ease; }
@keyframes fbkPulse { 0%{transform:scale(1)} 45%{transform:scale(.955)} 100%{transform:scale(1)} }
.fbk-note.show { opacity:1 !important; transform:translateX(0) !important; }

/* ── Block 03: Laptop-Mockup (realistischer 16:10-Screen) mit Reporting-Dashboard.
   Eigene cpl-*-Klassen (nicht cp-laptop-*, die kollidieren mit toter Alt-Definition oben). ── */
.cpl-laptop { width:100%; max-width:500px; margin:0 auto; }
.cpl-screen { background:#0b1220; border:1px solid rgba(11,18,32,.85); border-radius:14px 14px 5px 5px; padding:9px; box-shadow:0 34px 56px -34px rgba(11,18,32,.5); }
.cpl-dash { aspect-ratio:16/10; background:linear-gradient(180deg,#fbfcff,#f1f6fd); border-radius:8px; padding:13px 14px; display:flex; flex-direction:column; gap:10px; overflow:hidden; }
.cpl-top { flex:none; display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.cpl-title { font-size:15px; font-weight:800; color:var(--brand-ink); }
.cpl-sub { font-size:10.5px; color:var(--brand-muted); margin-top:2px; }
.cpl-live { flex:none; display:inline-flex; align-items:center; gap:6px; font-size:10.5px; font-weight:700; color:var(--brand-success); background:rgba(52,168,83,.12); padding:4px 9px; border-radius:999px; }
.cpl-live-dot { width:6px; height:6px; border-radius:50%; background:var(--brand-success); box-shadow:0 0 0 3px rgba(52,168,83,.18); }
.cpl-body { flex:1; min-height:0; display:grid; grid-template-columns:1fr 1.12fr; gap:9px; }
.cpl-kpis { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:8px; }
.cpl-kpi { background:#fff; border:1px solid var(--brand-surface); border-radius:11px; padding:8px 10px; display:flex; flex-direction:column; justify-content:center; }
.cpl-k-l { font-size:9.5px; color:var(--brand-muted); font-weight:600; line-height:1.15; }
.cpl-k-v { font-size:19px; font-weight:800; color:var(--brand-ink); line-height:1.05; margin:2px 0; }
.cpl-k-t { font-size:9.5px; font-weight:700; }
.cpl-k-t.up { color:var(--brand-success); }
.cpl-chart { background:#fff; border:1px solid var(--brand-surface); border-radius:11px; padding:10px 12px; display:flex; flex-direction:column; min-height:0; }
.cpl-chart-head { flex:none; display:flex; align-items:baseline; justify-content:space-between; gap:8px; margin-bottom:6px; }
.cpl-chart-head span:first-child { font-size:11.5px; font-weight:800; color:var(--brand-ink); }
.cpl-chart-sub { font-size:9.5px; color:var(--brand-muted); }
.cpl-svg { flex:1; width:100%; min-height:0; display:block; }
.cpl-base { position:relative; height:12px; width:112%; margin-left:-6%; background:linear-gradient(180deg,#e3e8f1,#b6c1d2); border-radius:0 0 11px 11px; box-shadow:inset 0 2px 2px rgba(255,255,255,.7), 0 12px 20px -12px rgba(11,18,32,.4); }
.cpl-lip { position:absolute; top:0; left:50%; transform:translateX(-50%); width:15%; height:5px; background:rgba(11,18,32,.16); border-radius:0 0 6px 6px; }
@media (max-width:1023px){ .cpl-base { width:108%; margin-left:-4%; } }

/* ── Block 04: Flow Social-Ads → CarePulz → euer ATS (3 gleich große Quadrate) ── */
.fa-flow { position:relative; display:flex; align-items:flex-start; justify-content:space-between; gap:8px; padding:28px 6px 4px; }
.ff-col { display:flex; flex-direction:column; align-items:center; gap:11px; text-align:center; z-index:2; flex:0 0 auto; width:112px; }
.ff-node { width:112px; height:112px; border-radius:22px; background:#fff; border:1px solid var(--brand-surface); box-shadow:0 16px 34px -18px rgba(11,18,32,.24); display:flex; align-items:center; justify-content:center; }
.ff-node .ff-ic { font-size:36px; line-height:1; }
.ff-node .ff-glyph { width:48px; height:48px; color:var(--brand-primary); display:block; }
.ff-node .ff-glyph svg { width:100%; height:100%; display:block; }
.ff-hub .ff-node { background:linear-gradient(150deg,var(--brand-primary),var(--brand-accent)); border-color:transparent; box-shadow:0 20px 44px -16px rgba(31,157,104,.55); }
.ff-hub .ff-node .cp-hubmark { width:54px; height:54px; color:#fff; display:block; }
.ff-hub .ff-node .cp-hubmark svg { width:100%; height:100%; }
.ff-label { font-size:13px; font-weight:800; color:var(--brand-ink); }
.ff-sub { font-size:10.5px; color:var(--brand-muted); line-height:1.25; max-width:118px; }
/* Echte Logos in den Nodes, vertikal auf der Box-Mittellinie zentriert */
.ff-src .ff-node, .ff-ats .ff-node { padding:12px; }
.ff-logos-stack { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; width:100%; height:100%; }
.ff-logos-stack img { max-width:66px; max-height:26px; width:auto; height:auto; object-fit:contain; display:block; }
.ff-logos-grid { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:7px 9px; place-items:center; width:100%; height:100%; }
.ff-logos-grid img { max-width:100%; max-height:20px; width:auto; height:auto; object-fit:contain; display:block; border-radius:3px; }
/* Track + Punkte exakt auf Node-Mitte: padding-top 28 + halbe Node 56 = 84px. Punkte laufen HINTER den Boxen (z-index unter .ff-col). */
.ff-track { position:absolute; left:17%; right:17%; top:84px; height:2px; z-index:0; background:repeating-linear-gradient(90deg, rgba(31,157,104,.4) 0 6px, transparent 6px 12px); }
.ff-dot { position:absolute; top:84px; left:17%; width:11px; height:11px; margin:-5.5px 0 0 -5.5px; border-radius:50%; background:var(--brand-primary); box-shadow:0 0 0 4px rgba(31,157,104,.20); z-index:1; }
/* Staffel statt zwei paralleler Punkte: EIN Punkt läuft Social Ads → CarePulz (verschwindet hinter
   der Box, die dann kurz pulsiert) → weiter zum ATS. Punkt-z-index < Node (läuft hinter die Boxen). */
.ff-dot-2 { display:none; }
@media (prefers-reduced-motion:no-preference){
  .ff-dot-1 { animation: ffRelay 4.6s ease-in-out infinite; }
  .ff-hub .ff-node { animation: ffHubPulse 4.6s ease-in-out infinite; }
}
@keyframes ffRelay {
  0%   { left:17%; opacity:0; }
  6%   { opacity:1; }
  38%  { left:50%; opacity:1; }   /* kommt bei CarePulz an (verschwindet hinter der Box) */
  54%  { left:50%; opacity:1; }   /* kurze Pause = Puls */
  88%  { left:83%; opacity:1; }   /* weiter zum ATS */
  100% { left:83%; opacity:0; }
}
@keyframes ffHubPulse {
  0%,36%   { transform:scale(1);    box-shadow:0 20px 44px -16px rgba(31,157,104,.55); }
  46%      { transform:scale(1.11); box-shadow:0 22px 52px -12px rgba(31,157,104,.85); }
  58%,100% { transform:scale(1);    box-shadow:0 20px 44px -16px rgba(31,157,104,.55); }
}

/* ── Tile KI-Stellenanzeigen-Check: echtes Mini-Stelleninserat + Score ── */
.faj-doc { padding:14px 13px; }
.faj-doc-title { font-size:10px; font-weight:800; color:var(--brand-ink); line-height:1.2; margin-bottom:9px; }
.faj-doc-title span { display:block; font-size:7.5px; font-weight:600; color:#9aa6bb; margin-top:2px; }
.faj-tline { height:5px; border-radius:3px; background:#e3e9f3; margin-bottom:6px; }
.faj-tline.s1{width:92%} .faj-tline.s2{width:100%} .faj-tline.s3{width:74%}
.faj-badge { width:46px; height:46px; font-size:0; }
.faj-badge::after { content:"92"; font-size:15px; font-weight:800; }
.faj-badge svg { display:none; }
.faj-badge-lbl { position:absolute; right:-8px; bottom:-20px; font-size:8px; font-weight:800; color:var(--brand-success); }

/* ══════════════════════════════════════════════════════════════════════════
   KOMBI-SEKTION, „Nicht nur Software" + „Für wen" + „Daten in Europa" als Karten
   ══════════════════════════════════════════════════════════════════════════ */
.corefn-combo { position:relative; padding:88px 0 100px; background:linear-gradient(180deg,#FFFFFF 0%,#F4F8FF 100%); }
.cc-wrap { max-width:1180px; margin:0 auto; padding:0 24px; }
.cc-head { text-align:center; max-width:680px; margin:0 auto 46px; }
.cc-head .h2 { color:var(--brand-ink); }
.cc-head p { margin-top:14px; color:var(--brand-muted); font-size:clamp(15px,1.1vw,18px); line-height:1.6; }
/* Bento (12-Spalten-Raster): Jessy-Banner voll · Zeile 2 = 6/6 · Zeile 3 versetzt = 7/5 */
.cc-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:20px; align-items:stretch; }
.cc-a { grid-column:span 12; }   /* Nicht nur Software, Banner Text + Jessy */
.cc-c { grid-column:span 6; }    /* Für dein Haus (Bilder) */
.cc-d { grid-column:span 6; }    /* Daten in Europa (Deutschland-Karte) */
@media (max-width:900px){
  .cc-grid{ grid-template-columns:1fr; max-width:560px; margin:0 auto; }
  .cc-a,.cc-c,.cc-d,.cc-e,.cc-f{ grid-column:1; }
}
.cc-card { display:flex; flex-direction:column; padding:26px 24px 28px; border-radius:24px; position:relative; isolation:isolate; overflow:hidden;
  background:linear-gradient(150deg, rgba(255,255,255,.92), rgba(244,249,255,.78));
  border:1px solid rgba(255,255,255,.9); box-shadow:0 26px 58px -38px rgba(11,18,32,.30);
  -webkit-backdrop-filter:blur(10px) saturate(150%); backdrop-filter:blur(10px) saturate(150%); }
.cc-card::before { content:""; position:absolute; inset:0; border-radius:inherit; padding:1.5px; pointer-events:none; z-index:1;
  background:conic-gradient(from 210deg at 50% 50%, rgba(255,255,255,.95), rgba(31,157,104,.22) 140deg, rgba(255,255,255,.55) 285deg, rgba(255,255,255,.95));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; }
.cc-card > * { position:relative; z-index:2; }
.cc-title { font-size:19px; font-weight:800; letter-spacing:-.01em; color:var(--brand-ink); margin:0 0 8px; line-height:1.18; }
.cc-text { font-size:13.5px; line-height:1.55; color:var(--brand-text); }
.cc-list { margin-top:14px; display:flex; flex-direction:column; gap:7px; }
.cc-list li { display:flex; gap:9px; align-items:flex-start; font-size:13px; line-height:1.4; color:var(--brand-text); list-style:none; }
.cc-list li::before { content:"✓"; color:var(--brand-primary); font-weight:800; flex:none; }
.cc-trust { margin-top:auto; padding-top:16px; display:flex; flex-wrap:wrap; gap:8px; }
.cc-trust-badge { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; color:var(--brand-ink); background:#fff; border:1px solid var(--brand-surface); border-radius:10px; padding:7px 11px; }
.cc-trust-badge img { height:17px; width:auto; object-fit:contain; }

/* A, Jessy-Banner: Text links + Foto mit blauem Disc rechts (aus dem Original) */
.cc-human { display:grid; grid-template-columns:1.12fr 1fr; gap:34px; align-items:center; }
@media (max-width:760px){ .cc-human{ grid-template-columns:1fr; gap:14px; } .cc-human-visual{ order:-1; } }
.cc-a .cc-title { font-size:clamp(21px,2vw,28px); margin-bottom:12px; }
.cc-human-text .pre-h { margin-bottom:10px; }
.cc-human-visual { position:relative; min-height:308px; display:flex; align-items:flex-end; justify-content:center; }
.cc-human-visual .cp-human-disc { top:6px; width:min(300px,82%); }
.cc-human-visual .cp-human-img { width:min(310px,90%); }
.cc-human-visual .cp-human-badge { left:0; bottom:6%; }
@media (max-width:760px){ .cc-human-visual{ min-height:270px; } }

/* C, Für dein Haus: Bild oben, Text darunter */
.cc-card--img { padding:0; }
.cc-img { height:190px; background-size:cover; background-position:center 30%; }
.cc-card--img .cc-body { padding:22px 24px 26px; display:flex; flex-direction:column; flex:1; }

/* C, vier Standort-Fotos geteilt, mit leicht angeschrägten Trennern */
.cc-img--split { display:flex; position:relative; overflow:hidden; background:#fff; }
/* Jedes Bild ist ein Parallelogramm → echte schräge Schnitte; der weiße Grund
   zeigt sich in den weggeschnittenen Ecken als diagonaler Trenner (kein Balken). */
.cc-img-half { flex:1; position:relative; background-size:cover; background-position:center;
  clip-path:polygon(21px 0, 100% 0, calc(100% - 21px) 100%, 0 100%); }
.cc-img-half:first-child { clip-path:polygon(0 0, 100% 0, calc(100% - 21px) 100%, 0 100%); }
.cc-img-half:last-child  { clip-path:polygon(21px 0, 100% 0, 100% 100%, 0 100%); }

/* D, Deine Daten: Deutschland-Karte */
.cc-map { margin-top:14px; display:flex; justify-content:center; }
.cc-d .de-map-wrap { max-width:268px; }

/* E, Zitat / Stimme aus dem Team · F, In Zahlen (4 KPIs), Zeile 3 */
.cc-e { grid-column:span 7; background:linear-gradient(150deg, rgba(240,246,255,.96), rgba(228,239,255,.9)); }
.cc-f { grid-column:span 5; }
.cc-e > .pre-h { color:var(--brand-primary); }
.cc-quotemark { display:block; font-size:42px; line-height:.8; color:var(--brand-light); font-weight:800; margin:0 0 6px; }
.cc-quote { margin:0; font-size:clamp(15px,1.15vw,17px); line-height:1.55; font-weight:600; letter-spacing:-.01em; color:var(--brand-ink); }
.cc-quote em { font-style:normal; color:var(--brand-primary); }
.cc-attrib { margin-top:16px; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.cc-attrib-name { font-weight:800; color:var(--brand-ink); font-size:13.5px; }
.cc-attrib-sep { color:var(--brand-muted); }
.cc-attrib-role { color:var(--brand-muted); font-size:12.5px; }
.cc-kpis { margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.cc-kpi { background:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.9); border-radius:14px; padding:14px 15px; box-shadow:0 12px 26px -20px rgba(11,18,32,.3); }
.cc-kpi-v { font-size:clamp(22px,2vw,28px); font-weight:800; color:var(--brand-primary); line-height:1; letter-spacing:-.02em; }
.cc-kpi-l { font-size:11px; color:var(--brand-muted); margin-top:6px; line-height:1.3; }
@media (max-width:900px){ .cc-e,.cc-f{ grid-column:1; } }

/* ── Tile Landingpage-Generator: sauberes Fenster mit Inhalt (Fix) ── */
.fa-lp { padding:14px; }
.falp-win { width:170px; max-width:100%; }
.falp-hero { height:40px; border-radius:6px; background:linear-gradient(135deg,var(--brand-primary),var(--brand-light)); display:flex; align-items:center; justify-content:center; }
.falp-hero-txt { color:#fff; font-size:8px; font-weight:800; letter-spacing:.02em; }
.falp-b { height:6px; }
.falp-btn { height:16px; width:60px; display:flex; align-items:center; justify-content:center; }
.falp-btn-txt { color:#fff; font-size:7px; font-weight:800; }

/* ══════════════════════════════════════════════════════════════════════════
   AGENTUR, Cinematic Scroll (Karten fliegen aus der Tiefe, Foto deckt am Ende)
   Default = statisches, lesbares Dark-Layout (Mobile / no-JS / reduced-motion).
   .is-cinema (per JS ab ≥980px, kein reduced-motion) = sticky 3D-Fly-Through.
   ══════════════════════════════════════════════════════════════════════════ */
.agency-cinema { position:relative; background:radial-gradient(120% 90% at 50% -10%, #0f1a2e 0%, #070b14 62%, #05070d 100%); color:#fff; overflow:hidden; }
.agc-stage { max-width:1160px; margin:0 auto; padding:86px 24px 96px; }
.agc-eyebrow { font-size:12px; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:var(--brand-light); margin-bottom:14px; }
.agc-headline { font-family:'Manrope',system-ui,sans-serif; font-weight:800; font-size:clamp(28px,4.4vw,60px); line-height:1.04; letter-spacing:-.028em; color:#fff; text-wrap:balance; }
.agc-intro { text-align:center; max-width:820px; margin:0 auto 46px; }
.agc-scrollhint { display:none; }
.agc-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(212px,1fr)); gap:16px; }
.agc-card { background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.12); border-radius:18px; padding:22px 20px; -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); }
.agc-v { font-size:clamp(30px,3vw,40px); font-weight:800; letter-spacing:-.02em; color:#fff; line-height:1; }
.agc-v span { color:var(--brand-light); }
.agc-t { font-size:16px; font-weight:800; color:#fff; line-height:1.2; }
.agc-l { font-size:13px; line-height:1.45; color:rgba(255,255,255,.62); margin-top:9px; }
.agc-ic { font-size:26px; line-height:1; margin-bottom:10px; }
.agc-award { background:linear-gradient(150deg, rgba(31,157,104,.32), rgba(255,255,255,.05)); border-color:rgba(95,211,160,.42); }
.agc-award-ic { width:38px; height:38px; color:var(--brand-light); margin-bottom:10px; }
.agc-award-ic svg { width:100%; height:100%; }
.agc-photo { display:none; }
.agc-endcard { max-width:560px; margin:44px auto 0; background:rgba(17,25,43,.92); border:1px solid rgba(255,255,255,.14); border-radius:24px; overflow:hidden; box-shadow:0 30px 70px -30px rgba(0,0,0,.7); }
.agc-endcard-photo { aspect-ratio:16/9; overflow:hidden; }
.agc-endcard-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.agc-endcard-body { padding:24px 28px 28px; text-align:center; }
.agc-endcard-h { font-family:'Manrope',system-ui,sans-serif; font-weight:800; font-size:clamp(20px,2.3vw,29px); line-height:1.14; letter-spacing:-.02em; color:#fff; margin:8px 0 0; }
.agc-endcard-p { font-size:15px; line-height:1.6; color:rgba(255,255,255,.74); margin:12px auto 0; max-width:44ch; }
.agc-endcard-cta { display:inline-flex; align-items:center; gap:7px; margin-top:20px; color:#fff; font-weight:700; font-size:14px; background:var(--brand-primary); border:1px solid rgba(255,255,255,.16); padding:11px 22px; border-radius:100vw; transition:background .2s var(--ease); }
.agc-endcard-cta:hover { background:var(--brand-accent); }
.agc-endcard-cta svg { width:15px; height:15px; }

/* ── Cinema-Modus ── */
.agency-cinema.is-cinema { overflow:visible; }
.agency-cinema.is-cinema .agc-track { position:relative; height:520vh; }
.agency-cinema.is-cinema .agc-stage { position:sticky; top:0; height:100vh; max-width:none; margin:0; padding:0; overflow:hidden; perspective:1200px; transform-style:preserve-3d; }
/* Blauer Tiefen-Fade von unten nach oben (mehr Räumlichkeit statt plain) */
.agency-cinema.is-cinema .agc-stage::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none; background:radial-gradient(125% 72% at 50% 122%, rgba(31,157,104,.40), rgba(31,157,104,.12) 42%, transparent 68%); }
.agency-cinema.is-cinema .agc-intro { position:absolute; inset:0; max-width:none; display:flex; flex-direction:column; align-items:center; justify-content:center; margin:0; padding:24px; z-index:6; transform-style:preserve-3d; transform-origin:center center; will-change:transform,opacity; }
.agency-cinema.is-cinema .agc-scrollhint { display:flex; align-items:center; gap:9px; margin-top:34px; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.agc-mouse { width:20px; height:32px; border:2px solid rgba(255,255,255,.4); border-radius:12px; position:relative; }
.agc-mouse span { position:absolute; left:50%; top:6px; width:3px; height:6px; margin-left:-1.5px; background:#fff; border-radius:2px; animation:agcMouse 1.7s ease-in-out infinite; }
@keyframes agcMouse { 0%,100%{transform:translateY(0);opacity:1} 60%{transform:translateY(8px);opacity:.2} }
.agency-cinema.is-cinema .agc-cards { position:absolute; inset:0; display:block; transform-style:preserve-3d; }
.agency-cinema.is-cinema .agc-card { position:absolute; left:50%; top:50%; width:290px; margin:0; opacity:0; visibility:hidden; will-change:transform,opacity,filter; box-shadow:0 34px 80px -34px rgba(0,0,0,.75); background:rgba(17,25,43,.9); border-color:rgba(255,255,255,.14); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px); }
/* End-Kachel im Cinema-Modus: mittelgroß, zentriert, KEIN Vollbild (Foto bleibt scharf) */
.agency-cinema.is-cinema .agc-endcard { position:absolute; left:50%; top:50%; width:min(520px,86vw); margin:0; opacity:0; z-index:20; transform:translate(-50%,-50%) scale(.92); will-change:opacity,transform; }
/* Mobile (<980px, kein Cinema): nur die „Agentur hinter CarePulz"-Karte, keine Zahlen-Karten/Intro (Tom-Wunsch) */
@media (max-width: 979px) {
  .agency-cinema .agc-intro,
  .agency-cinema .agc-cards { display: none !important; }
  .agency-cinema .agc-endcard { margin: 0 auto !important; }
}

/* ==========================================================
   CLOSING CTA CARD (Endkarte mit Pflegefachkraft + Handschrift)
   ========================================================== */
.close-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  align-items: stretch;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(31,157,104,.30), transparent 52%),
    linear-gradient(135deg, #111c31 0%, #0b1220 58%, #0a0f1a 100%);
  box-shadow: 0 44px 100px -34px rgba(0,0,0,.65);
}
.close-card::before {
  content: ""; position: absolute; left: -8%; bottom: -34%;
  width: 58%; height: 82%; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(15,127,80,.24), transparent 70%);
}
.close-card-body {
  position: relative; z-index: 2;
  padding: 56px 24px 48px 56px;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
}
.close-card-body .pre-h { color: var(--brand-light); margin: 0; }
.close-card .close-card-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  margin: 12px 0 0;
}
.close-card .close-card-h2 .cc-em { color: var(--brand-light); -webkit-text-fill-color: var(--brand-light); }
.close-card-sub {
  color: rgba(255,255,255,.78);
  font-size: 17px; line-height: 1.6;
  max-width: 34ch;
  margin: 18px 0 0;
}
.close-card-cta-wrap {
  margin-top: 28px;
}
.close-card-contact {
  display: flex; align-items: center; gap: 13px;
  margin-top: 30px;
}
.close-card-contact img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; flex: none;
  border: 2px solid rgba(255,255,255,.16);
}
.close-card-contact .ccc-name { display: block; font-weight: 700; color: #fff; font-size: 15px; }
.close-card-contact .ccc-links { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); }
.close-card-contact a { color: rgba(255,255,255,.82); text-decoration: none; }
.close-card-contact a:hover { color: var(--brand-light); }

.close-card-figure {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.close-card-nurse {
  align-self: flex-end;
  width: auto; height: 100%;
  max-height: 560px;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.5));
}
/* Kleiner schräger Schnörkel-Textbaustein, dessen Pfeil auf die PFK zeigt */
.close-card-note {
  position: absolute; top: 30px; left: 6px; z-index: 4;
  width: 180px; pointer-events: none;
}
.close-card-note .ccn-text {
  display: inline-block;
  font-family: 'Caveat', 'Manrope', cursive;
  font-weight: 700;
  font-size: 31px; line-height: .96;
  color: var(--brand-light);
  transform: rotate(-8deg);
  text-align: center;
}
.close-card-note .ccn-arrow {
  position: absolute; left: 74px; top: 42px;
  width: 88px; height: auto;
  color: var(--brand-light);
}

@media (max-width: 860px) {
  .close-card {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }
  .close-card-body {
    padding: 42px 26px 16px;
    align-items: center;
  }
  .close-card-h2 { font-size: clamp(26px, 7vw, 36px); }
  .close-card-sub { margin-left: auto; margin-right: auto; }
  .close-card-contact { justify-content: center; align-items: center; text-align: left; margin-top: 24px; }
  .close-card-contact .ccc-links { font-size: 12px; word-break: break-word; }
  .close-card-figure { order: 2; padding: 0; margin-top: 4px; }
  .close-card-nurse { height: auto; width: auto; max-height: 320px; }
  .close-card-note { left: 4px; top: 6px; width: 150px; }
  .close-card-note .ccn-text { font-size: 25px; }
  .close-card-note .ccn-arrow { left: 60px; top: 34px; width: 68px; }
}


/* ==========================================================
   „SO STARTEN WIR", Vertikale Timeline (statt 3 gleicher Karten,
   damit es sich klar vom Pricing-Block absetzt = ein „Weg")
   ========================================================== */
.journey { list-style:none; margin:0 auto; padding:0; max-width:680px; }
.journey-step { position:relative; display:grid; grid-template-columns:60px 1fr; column-gap:26px; padding-bottom:42px; }
.journey-step:last-child { padding-bottom:0; }
/* durchgehende, vertikale Verbindungslinie durch die Nummern-Mitten */
.journey-step::before { content:""; position:absolute; left:29px; top:64px; bottom:-2px; width:2px;
  background:linear-gradient(180deg, var(--brand-primary), rgba(31,157,104,.22)); z-index:0; }
.journey-step:last-child::before { display:none; }
.journey-num { align-self:start; width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color:#fff; font-size:24px; font-weight:800; display:grid; place-items:center;
  box-shadow:0 12px 26px -8px rgba(31,157,104,.55); position:relative; z-index:1; }
.journey-body { padding-top:5px; min-width:0; }
.journey-tag { display:inline-block; background:var(--brand-surface); color:var(--brand-primary);
  font-size:11px; font-weight:700; letter-spacing:.04em; padding:4px 11px; border-radius:100vw; margin-bottom:10px; }
.journey-title { font-family:'Manrope',system-ui,sans-serif; font-weight:800; font-size:clamp(19px,2vw,23px);
  letter-spacing:-.015em; line-height:1.2; color:var(--brand-ink); margin:0; }
.journey-text { color:var(--brand-text); font-size:15px; line-height:1.62; margin:8px 0 0; max-width:54ch; }
.journey-foot { display:inline-flex; align-items:center; gap:8px; margin-top:12px;
  font-size:12.5px; font-weight:700; color:var(--brand-primary); }
.journey-foot::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--brand-primary); flex:none; }
@media (max-width:560px){
  .journey-step { grid-template-columns:48px 1fr; column-gap:18px; padding-bottom:34px; }
  .journey-step::before { left:23px; top:52px; }
  .journey-num { width:48px; height:48px; font-size:20px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SUMMIT-PROMO-BAR, dauerhaft an der unteren Bildschirmkante, wegklickbar
   ══════════════════════════════════════════════════════════════════════════ */
.cp-summit-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 46px; padding: 9px 50px 9px 18px;
  background: linear-gradient(90deg, #0F7F50 0%, #1F9D68 100%);
  color: #fff; font-family: 'Manrope', system-ui, sans-serif;
  box-shadow: 0 -6px 24px rgba(11,18,32,.20);
  transform: translateY(0); opacity: 1;
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .32s ease;
}
.cp-summit-bar.cp-out { transform: translateY(105%); opacity: 0; }
.cp-summit-link {
  display: flex; align-items: center; gap: 12px;
  color: #fff; text-decoration: none;
  font-size: 14.5px; font-weight: 600; line-height: 1.25;
  max-width: min(96vw, 1080px);
}
.cp-summit-link:hover .cp-summit-cta { background: rgba(255,255,255,.30); }
.cp-summit-ic { flex: none; width: 22px; height: 22px; opacity: .95; }
.cp-summit-ic svg { width: 100%; height: 100%; }
.cp-summit-txt strong { font-weight: 800; }
.cp-summit-cta {
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.32);
  padding: 6px 13px; border-radius: 9999px; font-weight: 700; font-size: 13px;
  white-space: nowrap; transition: background .15s ease;
}
.cp-summit-cta svg { width: 14px; height: 14px; }
.cp-summit-x {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; flex: none; border: 0; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff; border-radius: 50%;
  font-size: 12px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.cp-summit-x:hover { background: rgba(255,255,255,.30); }
.cp-summit-x:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
/* Cookie-Consent-Banner über die Summit-Bar heben, solange sie sichtbar ist */
body.cp-has-summit #cp-consent { bottom: 70px; }
@media (max-width: 640px) {
  .cp-summit-bar { padding: 9px 44px 9px 14px; gap: 10px; }
  .cp-summit-txt { font-size: 12.5px; }
  .cp-summit-date { display: none; }
  .cp-summit-cta { display: none; }
  body.cp-has-summit #cp-consent { bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING-TIERS (3 Karten Basic/Professional/Enterprise), global,
   genutzt auf pricing-intern.html UND in der #pricing-Sektion der Startseite.
   ══════════════════════════════════════════════════════════════════════════ */
.pr-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
@media (max-width:900px){ .pr-grid{ grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; } }
.pr-tier { display:flex; flex-direction:column; padding:32px 28px; }
.pr-tier--blue { background:linear-gradient(160deg,#1F9D68 0%,#0F7F50 100%); border-radius:var(--radius-card,24px); box-shadow:0 34px 74px -30px rgba(31,157,104,.55); color:#fff; position:relative; isolation:isolate; transition:transform .28s var(--ease,cubic-bezier(.22,.61,.36,1)), box-shadow .28s ease; }
.pr-tier--blue:hover { transform:translateY(-4px); box-shadow:0 40px 84px -30px rgba(31,157,104,.62); }
.pr-tier--blue .pr-tier-name { color:#fff; }
.pr-tier--blue .pr-tier-badge { color:#fff; background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.36); }
.pr-tier--blue .pr-tier-desc { color:rgba(255,255,255,.88); }
.pr-tier--blue .pr-price-v { color:#fff; }
.pr-tier--blue .pr-price-u, .pr-tier--blue .pr-price-sub { color:rgba(255,255,255,.82); }
.pr-tier--blue .pr-feat li { color:rgba(255,255,255,.92); }
.pr-tier-name { font-size:22px; font-weight:800; letter-spacing:-.02em; color:var(--brand-ink); }
.pr-tier-badge { display:inline-block; align-self:flex-start; margin-top:11px; font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--brand-primary); background:rgba(31,157,104,.10); border:1px solid rgba(31,157,104,.22); padding:5px 11px; border-radius:9999px; }
.pr-tier-desc { margin-top:15px; font-size:14.5px; line-height:1.5; color:var(--brand-muted); }
.pr-price { display:flex; align-items:baseline; gap:8px; margin-top:22px; flex-wrap:wrap; }
.pr-price-v { font-size:42px; font-weight:800; line-height:1; letter-spacing:-.03em; color:var(--brand-ink); }
.pr-price-u { font-size:15px; font-weight:600; color:var(--brand-muted); }
.pr-price-pre { font-size:16px; font-weight:700; color:var(--brand-muted); }
.pr-feat { list-style:none; padding:0; margin:20px 0 0; display:grid; gap:11px; }
.pr-feat li { display:flex; gap:10px; align-items:flex-start; font-size:14.5px; line-height:1.45; color:var(--brand-text); }
.pr-feat li svg { flex:none; width:19px; height:19px; margin-top:1px; }
.pr-note { margin-top:28px; font-size:12.5px; line-height:1.6; color:var(--brand-muted); text-align:center; max-width:70ch; margin-left:auto; margin-right:auto; }
.pr-size { margin-top:14px; padding:11px 14px; border-radius:12px; background:rgba(31,157,104,.08); border:1px solid rgba(31,157,104,.18); }
.pr-size-main { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:800; letter-spacing:-.01em; color:var(--brand-ink); }
.pr-size-main svg { flex:none; width:17px; height:17px; color:var(--brand-primary); }
.pr-size-sub { display:block; margin-top:3px; padding-left:25px; font-size:12.5px; line-height:1.4; color:var(--brand-muted); }
.pr-tier--blue .pr-size { background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.32); }
.pr-tier--blue .pr-size-main, .pr-tier--blue .pr-size-main svg { color:#fff; }
.pr-tier--blue .pr-size-sub { color:rgba(255,255,255,.85); }
.pr-cta { margin-top:auto; padding-top:24px; }
.pr-cta-btn { display:flex; align-items:center; justify-content:center; gap:7px; width:100%; padding:13px 18px; border-radius:9999px; font-weight:700; font-size:14.5px; text-decoration:none; transition:transform .15s ease, box-shadow .2s ease, background .2s ease; }
.pr-cta-btn svg { flex:none; width:16px; height:16px; }
.pr-tier:not(.pr-tier--blue) .pr-cta-btn { background:linear-gradient(180deg,#1F9D68,#0F7F50); color:#fff; box-shadow:0 10px 24px -8px rgba(15,127,80,.45); }
.pr-tier:not(.pr-tier--blue) .pr-cta-btn:hover { transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(15,127,80,.55); }
.pr-tier--blue .pr-cta-btn { background:#fff; color:#0F7F50; box-shadow:0 12px 26px -10px rgba(0,0,0,.35); }
.pr-tier--blue .pr-cta-btn:hover { transform:translateY(-2px); background:#eef4ff; }
.pr-ribbon { position:absolute; top:0; left:50%; transform:translate(-50%,-50%); z-index:3; display:inline-flex; align-items:center; gap:5px; background:#fff; color:#0F7F50; font-size:11.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:6px 15px; border-radius:9999px; box-shadow:0 12px 26px -8px rgba(0,0,0,.42); white-space:nowrap; }
.pr-ribbon svg { width:13px; height:13px; }

/* Budget-Ersparnis-Einschub (Full-Width), Bild als CSS-background (keine Layout-Höhe wie ein absolutes <img>), eigene Klassen (kein .h2/cp-unified-Konflikt) */
.budget-band { position:relative; background-image:linear-gradient(90deg,rgba(11,18,32,.95) 0%,rgba(11,18,32,.88) 44%,rgba(11,18,32,.78) 100%),url('assets/team-stock.jpg'); background-size:cover; background-position:center 22%; }
.budget-band .bb-title { font-family:'Manrope',system-ui,sans-serif; font-weight:800; font-size:clamp(28px,3.4vw,46px); line-height:1.12; letter-spacing:-.02em; color:#fff; margin:0; }
.budget-band .bb-title .bb-accent { color:var(--brand-light); }
.budget-band .bb-text p { color:rgba(255,255,255,.86); font-size:1.0625rem; line-height:1.65; }
.budget-band .bb-text strong { color:#fff; font-weight:700; }
@media (max-width:1023px){ .budget-band { background-position:70% center; } }

/* Fallstudien-Poster mit zwei Logos (NeuroNetzwerk + Team3) */
.cs-poster-logos { position:relative; z-index:1; display:flex; align-items:center; justify-content:center; gap:26px; width:100%; }
.cs-poster-logos img { height:auto; width:auto; max-height:44px; max-width:48%; object-fit:contain; filter:brightness(0) invert(1) drop-shadow(0 6px 16px rgba(0,0,0,.25)); }
.cs-poster-logos img.is-round { max-height:96px; max-width:30%; }
@media (max-width:1023px){ .cs-poster-logos img { max-height:38px; } .cs-poster-logos img.is-round { max-height:84px; } }
