/* ════════════════════════════════════════════════════════════════════════════
   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(51, 129, 246, 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(51,129,246,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(51,129,246,0.12) 0%, rgba(51,129,246,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(51,129,246,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(51,129,246,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(51,129,246,.10); border:1px solid rgba(51,129,246,.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(51,129,246,.12); border-radius:9999px; padding:1px 7px; }
.cpd-nav.is-active { background:rgba(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.12); color:var(--brand-primary); font-weight:600 } 30%,93%{ background:transparent; color:rgb(74 86 110); font-weight:500 } 96%,100%{ background:rgba(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.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(51,129,246,.16); border-color:rgba(51,129,246,.5);
  box-shadow:0 14px 36px -12px rgba(51,129,246,.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(51,129,246,.9), rgba(51,129,246,0) 68%); opacity:0; }
.cp-pulse i { position:absolute; inset:0; border-radius:50%; border:1.5px solid rgba(51,129,246,.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(51,129,246,.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(51,129,246,.10), rgba(51,129,246,.03)); border:1px solid rgba(51,129,246,.30); box-shadow:0 28px 64px -26px rgba(51,129,246,.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(51,129,246,.24), transparent 60%),
    radial-gradient(50% 46% at 8% 105%, rgba(0,98,244,.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(51,129,246,.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; 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(51,129,246,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;
}
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(51,129,246,.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(51,129,246,.1); border:1px solid rgba(51,129,246,.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(51,129,246,.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; } }

/* ── Ressourcen: KI-Gehaltsrechner-Generator — animiertes Rechner-Mockup (Entgeltspanne füllt sich) ── */
.cp-salary-svg { display: block; }
.cp-salary-fill { width: 206px; }
.cp-salary-knob { cx: 234px; }
@media (prefers-reduced-motion: no-preference) {
  .cp-salary-fill { animation: grgFill 4.6s ease-in-out infinite; }
  .cp-salary-knob { animation: grgKnob 4.6s ease-in-out infinite; }
}
@keyframes grgFill { 0%, 100% { width: 118px; } 50% { width: 250px; } }
@keyframes grgKnob { 0%, 100% { cx: 146px; } 50% { cx: 278px; } }

/* 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(33px, 5.2vw, 64px); }   /* Hero-Headline: kompakt, aber 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: 26px; }

/* 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; }
/* Google-Sterne ebenfalls in Trustpilot-Grün (Tom-Wunsch) — erben von .tp-stars i (#00b67a) */
@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; }
.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(51,129,246,.9), rgba(51,129,246,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(51,129,246,.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(51,129,246,.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(51,129,246,.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(0,98,244,.12); border: 1px solid rgba(0,98,244,.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; }
}

