/* ==========================================================
   CarePulz (von Georg Recruiting) — Landingpage
   Custom layer over Tailwind. Brand DNA + Animations.
   Glass-/Motion-Schicht: siehe carepulz.css (lädt danach).
   ========================================================== */

:root {
  --brand-primary: #3381F6;  /* CarePulz Haupt-Blau */
  --brand-accent:  #0062F4;  /* tieferes Blau: Highlights, Gradient-Ende */
  --brand-light:   #6AA3FF;  /* helles Blau: luftige Verläufe */
  --brand-ink:     #0b1220;  /* Navy: Überschriften */
  --brand-text:    #475172;
  --brand-surface: #e6e9f2;
  --brand-paper:   #f7f9fc;
  --brand-muted:   #6b7591;
  --brand-success: #34a853;
  --brand-orange:  #ff6a3d;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', system-ui, -apple-system, sans-serif; color: var(--brand-text); }

/* ==========================================================
   TYPOGRAPHY UTILITIES
   ========================================================== */
.pre-h {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--brand-ink);
}
.h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-ink);
  margin-bottom: 6px;
}

/* ==========================================================
   BRAND LOCKUP (Wordmark + OS-Tag)
   ========================================================== */
.brand-lockup { text-decoration: none; display: inline-flex; align-items: center; }
.brand-wordmark {
  /* SVG ist 241×20 — proportional via height */
  height: 14px; width: auto;
  display: block;
}
.brand-os {
  display: inline-flex; align-items: center;
  height: 22px;
  padding: 0 8px;
  background: var(--brand-primary);
  color: white;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  border-radius: 6px;
  box-shadow: 0 2px 6px -2px rgba(51, 129, 246,.5);
}
@media (min-width: 640px) {
  .brand-wordmark { height: 16px; }
  .brand-os { height: 26px; font-size: 13px; padding: 0 10px; }
}

/* ==========================================================
   MOBILE BURGER + DRAWER (< 768 px)
   ========================================================== */
.burger {
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  margin-left: 8px;
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.burger:hover { background: var(--brand-surface); }
.burger-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--brand-ink);
  border-radius: 100vw;
  transition: transform .25s var(--ease), opacity .15s var(--ease);
}
/* Burger zu X wenn offen */
.burger[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 64px; right: 0;
  width: min(86vw, 360px);
  height: calc(100vh - 64px);
  background: white;
  border-left: 1px solid var(--brand-surface);
  padding: 24px 20px 32px;
  z-index: 60;
  display: flex; flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
  box-shadow: -20px 0 40px -10px rgba(11,18,32,.18);
}
.mobile-drawer.is-open { transform: translateX(0); }
.md-link {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-ink);
  text-decoration: none;
  border-radius: 10px;
  transition: background .15s var(--ease);
}
.md-link:hover { background: var(--brand-paper); }
.md-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--brand-surface);
}
.md-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
}

.mobile-drawer-bg {
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(11,18,32,.4);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-drawer-bg.is-open {
  opacity: 1;
  visibility: visible;
}

/* Burger nur auf Mobile sichtbar */
@media (min-width: 768px) {
  .burger, .mobile-drawer, .mobile-drawer-bg { display: none !important; }
}

/* ==========================================================
   NAV DROPDOWN
   ========================================================== */
.nav-dd { position: relative; }
.nav-dd-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  font: inherit; color: inherit;
  background: none; border: none; padding: 0;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.nav-dd-trigger:hover { color: var(--brand-ink); }
.nav-dd-arrow { transition: transform .2s var(--ease); flex-shrink: 0; }
.nav-dd:hover .nav-dd-arrow,
.nav-dd:focus-within .nav-dd-arrow { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 8px);
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 14px;
  box-shadow: 0 20px 40px -8px rgba(11,18,32,.16), 0 4px 12px -4px rgba(11,18,32,.06);
  padding: 8px;
  min-width: 280px;
  opacity: 0; visibility: hidden;
  transition: all .22s var(--ease);
  z-index: 100;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 4px);
}
/* invisible bridge so the menu stays open between trigger and panel */
.nav-dd-menu::before {
  content: ''; position: absolute;
  top: -10px; left: 0; right: 0; height: 14px;
}
.nav-dd-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--brand-ink);
  text-decoration: none;
  transition: background .15s var(--ease);
}
.nav-dd-link:hover { background: var(--brand-paper); }
.nav-dd-icon {
  font-size: 18px; line-height: 1;
  width: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-dd-title { font-size: 13px; font-weight: 600; color: var(--brand-ink); line-height: 1.2; }
.nav-dd-sub { font-size: 12px; color: var(--brand-muted); margin-top: 2px; line-height: 1.3; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn-primary, .btn-secondary, .btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; text-decoration: none;
  transition: all .25s var(--ease);
  white-space: nowrap; position: relative;
}
.btn-primary {
  background: var(--brand-primary); color: white;
  padding: 10px 20px; border-radius: 100vw;
  box-shadow: 0 4px 14px -2px rgba(51, 129, 246,.35);
}
.btn-primary:hover {
  background: #1668d8; transform: translateY(-1px);
  box-shadow: 0 8px 24px -4px rgba(51, 129, 246,.45);
}
.btn-secondary {
  background: white; color: var(--brand-ink);
  padding: 10px 20px; border: 1px solid var(--brand-surface); border-radius: 100vw;
}
.btn-secondary:hover {
  border-color: var(--brand-primary); color: var(--brand-primary);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-primary-lg {
  background: var(--brand-primary); color: white;
  padding: 18px 36px; font-size: 18px;
  border-radius: 100vw;
  box-shadow: 0 12px 32px -6px rgba(51, 129, 246,.5);
}
.btn-primary-lg:hover {
  background: #1668d8; transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(51, 129, 246,.6);
}

/* Pulse-Ring um CTA */
.cta-ring {
  position: absolute; inset: 0; border-radius: 100vw;
  box-shadow: 0 0 0 0 rgba(51, 129, 246,.5);
  animation: ctaRing 2.4s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes ctaRing {
  0%   { box-shadow: 0 0 0 0    rgba(51, 129, 246,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(51, 129, 246,0);  }
  100% { box-shadow: 0 0 0 0    rgba(51, 129, 246,0);  }
}

/* ==========================================================
   HERO CUTOUT — Wunschkandidat mit floatenden Pill-Badges
   (Leantree-Style: freigestellte Person + Trust-Pills drumherum)
   ========================================================== */
.hero-cutout {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin: 0 auto;
}
/* Weißer Bottom-Glow — fadet den Hard-Cut des AVIF in den Page-Background */
.hero-cutout::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10%; right: -10%;
  height: 32%;
  background: linear-gradient(
    to top,
    var(--brand-paper) 0%,
    var(--brand-paper) 25%,
    rgba(247, 249, 252, .6) 60%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.cutout-glow {
  position: absolute;
  top: 8%; left: 50%; transform: translateX(-50%);
  width: 78%; height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(51, 129, 246,.22) 0, rgba(51, 129, 246,.10) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: cutoutGlow 6s ease-in-out infinite;
}
@keyframes cutoutGlow {
  0%, 100% { transform: translateX(-50%) scale(1);    opacity: .9; }
  50%      { transform: translateX(-50%) scale(1.08); opacity: 1;  }
}
.cutout-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;        /* echtes Cutout → contain statt cover */
  object-position: center bottom;
}

/* Pill-Badges */
.cutout-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 100vw;
  padding: 8px 16px 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-ink);
  white-space: nowrap;
  box-shadow:
    0 12px 32px -8px rgba(11,18,32,.18),
    0 4px 10px -2px rgba(11,18,32,.06);
  animation: pillFloat 5s ease-in-out infinite;
}
.cutout-pill strong { color: var(--brand); font-weight: 700; }
.pill-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(51, 129, 246,.10);
  flex-shrink: 0;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-success);
  box-shadow: 0 0 0 3px rgba(52,168,83,.20);
  animation: pillDotPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pillDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,168,83,.20); }
  50%      { box-shadow: 0 0 0 6px rgba(52,168,83,.05); }
}
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Positions — gestaffelt um die Person herum, mit verschiedenen Float-Delays */
.pill-1 { top:  6%;  left: -6%;   animation-delay: 0s;   }
.pill-2 { top: 22%;  right: -10%; animation-delay: .6s;  }
.pill-3 { top: 52%;  left: -12%;  animation-delay: 1.2s; }
.pill-4 { top: 64%;  right: -4%;  animation-delay: 1.8s; }
.pill-5 {
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  animation: pillFloatCentered 5s ease-in-out infinite 2.4s;
}
@keyframes pillFloatCentered {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* Responsive */
@media (max-width: 1023px) {
  .hero-cutout { max-width: 440px; aspect-ratio: 1 / 1.1; }
  .cutout-pill { font-size: 12px; padding: 6px 12px 6px 10px; }
  .pill-1 { left: -2%; }
  .pill-2 { right: -2%; }
  .pill-3 { left: -2%; }
  .pill-4 { right: -2%; }
}
@media (max-width: 540px) {
  .hero-cutout { max-width: 320px; }
  .cutout-pill { font-size: 11px; padding: 5px 10px 5px 8px; }
  .pill-ic { width: 18px; height: 18px; }
  .pill-ic svg { width: 11px; height: 11px; }
}

/* ==========================================================
   HERO – ANIMATED DASHBOARD MOCKUP
   ========================================================== */
.dashboard-mockup {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow:
    0 32px 80px -16px rgba(11,18,32,.18),
    0 8px 24px -4px rgba(11,18,32,.08),
    0 1px 0 rgba(11,18,32,.04);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center center;
  border: 1px solid rgba(11,18,32,.06);
  animation: floatBoard 7s ease-in-out infinite;
}
@keyframes floatBoard {
  0%, 100% { transform: perspective(1400px) rotateY(-3deg) rotateX(2deg) translateY(0); }
  50%      { transform: perspective(1400px) rotateY(-3deg) rotateX(2deg) translateY(-8px); }
}
.mockup-chrome {
  background: #f1f4f9; padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--brand-surface);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d8dfeb; }
.mockup-dots span:nth-child(1) { background: #ff6058; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }
.mockup-url { font-size: 11px; color: var(--brand-muted); background: white; padding: 3px 12px; border-radius: 100vw; flex: 1; text-align: center; }
.mockup-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-bottom: 1px solid var(--brand-surface);
}
/* ---- Tabs ---- */
.mockup-tabs .tab {
  padding: 3px 8px; border-radius: 6px;
  color: var(--brand-muted); font-weight: 500;
  transition: all .3s var(--ease);
}
/* Auto-cycling tabs (12s loop: pipeline 0-4s, campaigns 4-8s, reporting 8-12s) */
.tab-pipeline   { animation: tabActive 12s linear infinite 0s;  }
.tab-campaigns  { animation: tabActive 12s linear infinite -8s; }
.tab-reporting  { animation: tabActive 12s linear infinite -4s; }
@keyframes tabActive {
  0%, 33.33%       { background: var(--brand-surface); color: var(--brand-primary); font-weight: 700; }
  33.34%, 100%     { background: transparent; color: var(--brand-muted); font-weight: 500; }
}

/* ---- Mockup-Stage: alle Views stapeln, immer eine sichtbar ---- */
.mockup-stage {
  position: relative;
  min-height: 320px;
}
.mockup-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease);
}
.view-pipeline   { animation: viewShow 12s ease-in-out infinite 0s;  }
.view-campaigns  { animation: viewShow 12s ease-in-out infinite -8s; }
.view-reporting  { animation: viewShow 12s ease-in-out infinite -4s; }
@keyframes viewShow {
  0%, 2%   { opacity: 0; visibility: visible; }
  5%, 30%  { opacity: 1; visibility: visible; }
  33%, 100%{ opacity: 0; visibility: hidden; }
}

.kanban {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 6px 12px 16px;
}
.kanban-col {
  background: var(--brand-paper); border-radius: 10px; padding: 8px;
  min-height: 180px;
}
.col-head {
  font-size: 10px; font-weight: 600; color: var(--brand-ink);
  display: flex; align-items: center; gap: 5px; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.col-head .badge {
  margin-left: auto; background: var(--brand-surface);
  border-radius: 100vw; padding: 1px 6px; font-size: 9px;
}
.card {
  background: white; border-radius: 8px; padding: 6px 7px;
  margin-bottom: 5px; box-shadow: 0 1px 3px rgba(11,18,32,.06);
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; transition: all .3s var(--ease);
  border: 1px solid transparent;
}
.card .avi {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 9px; flex-shrink: 0;
}
.card-name { font-weight: 600; color: var(--brand-ink); font-size: 11px; line-height: 1; }
.card-meta { color: var(--brand-muted); font-size: 9px; line-height: 1.2; margin-top: 1px; }
.card > div:not(.avi) { display: flex; flex-direction: column; }

/* Per-card subtle entry animation, staggered */
.card-anim-a { animation: cardFloat 6s ease-in-out infinite 0.0s; }
.card-anim-b { animation: cardFloat 6s ease-in-out infinite 0.5s; }
.card-anim-c { animation: cardFloat 6s ease-in-out infinite 1.0s; }
.card-anim-d { animation: cardFloat 6s ease-in-out infinite 1.5s; }
.card-anim-e { animation: cardFloat 6s ease-in-out infinite 2.0s; }
.card-anim-f { animation: cardFloat 6s ease-in-out infinite 2.5s; }
.card-anim-g { animation: cardFloat 6s ease-in-out infinite 3.0s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 1px 3px rgba(11,18,32,.06); }
  50%      { transform: translateY(-2px) scale(1.01); box-shadow: 0 4px 10px rgba(11,18,32,.10); }
}

/* ---- Campaigns view ---- */
.campaigns-list { padding: 6px 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.camp-row {
  background: white; border: 1px solid var(--brand-surface); border-radius: 10px;
  padding: 8px 10px; display: grid;
  grid-template-columns: 24px 1fr auto;
  grid-template-areas: "ch info stat" "bar bar bar";
  gap: 6px 10px; align-items: center;
  box-shadow: 0 1px 3px rgba(11,18,32,.04);
}
.camp-channel {
  grid-area: ch;
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px; color: white;
}
.camp-channel.meta   { background: linear-gradient(135deg, #0866FF, #1877F2); }
.camp-channel.google { background: linear-gradient(135deg, #EA4335, #FBBC04); }
.camp-info { grid-area: info; min-width: 0; }
.camp-name { font-size: 11px; font-weight: 600; color: var(--brand-ink); line-height: 1.2; }
.camp-meta { font-size: 9px; color: var(--brand-muted); line-height: 1.3; margin-top: 1px; }
.camp-stat { grid-area: stat; text-align: right; }
.camp-stat-val { font-size: 12px; font-weight: 700; color: var(--brand-ink); line-height: 1; white-space: nowrap; }
.camp-stat-lbl { font-size: 8px; color: var(--brand-muted); text-transform: uppercase; letter-spacing: .05em; }
.camp-bar { grid-area: bar; height: 4px; background: var(--brand-surface); border-radius: 100vw; overflow: hidden; }
.camp-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 100vw;
  animation: campBarGrow 1.2s var(--ease-out) both;
}
@keyframes campBarGrow {
  from { width: 0 !important; }
}

/* ---- Reporting view ---- */
.reporting-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 6px 12px 8px;
}
.rep-kpi {
  background: white; border: 1px solid var(--brand-surface); border-radius: 10px;
  padding: 8px 10px;
}
.rep-kpi-lbl { font-size: 9px; color: var(--brand-muted); text-transform: uppercase; letter-spacing: .04em; }
.rep-kpi-val { font-size: 18px; font-weight: 800; color: var(--brand-ink); line-height: 1.1; margin-top: 2px; white-space: nowrap; }
.rep-eur     { font-size: 11px; font-weight: 700; color: var(--brand-accent); }
.rep-kpi-delta { font-size: 9px; font-weight: 700; margin-top: 2px; }
.rep-kpi-delta.up   { color: var(--brand-success); }
.rep-kpi-delta.down { color: var(--brand-success); } /* "−12% Kosten" ist gut */
.rep-chart {
  padding: 4px 12px 16px;
}

/* Live-Dot */
.dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-success); position: relative;
}
.dot-pulse::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; background: rgba(52,168,83,.4);
  animation: pulse 1.8s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ==========================================================
   SHOWCASE DASHBOARD (Section: Was ist GR OS)
   ========================================================== */
.dash-shell {
  background: linear-gradient(180deg, #11192b, #0a1322);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(51, 129, 246,.18);
  overflow: hidden;
}
.dash-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff6058; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28ca42; }
.dash-url {
  flex: 1; text-align: center;
  font-size: 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  padding: 4px 14px; border-radius: 100vw;
  max-width: 360px; margin: 0 auto;
}
.dash-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  color: var(--brand-success);
  background: rgba(52,168,83,.12);
  border: 1px solid rgba(52,168,83,.28);
  padding: 3px 9px; border-radius: 100vw;
}

.dash-body { display: grid; grid-template-columns: 200px 1fr; min-height: 560px; }

/* Sidebar */
.dash-side {
  position: relative;
  background: rgba(0,0,0,.18);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 12px;
  display: flex; flex-direction: column;
}
.dash-side-brand {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding: 0 4px;
}
.dash-side-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white; font-weight: 800; font-size: 14px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.dash-side-os {
  color: white; font-weight: 700; font-size: 13px;
  letter-spacing: .08em;
}
.dash-side-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dsn-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s var(--ease);
}
.dsn-item:hover { background: rgba(255,255,255,.04); color: white; }
.dsn-item.is-active {
  background: rgba(51, 129, 246,.16);
  color: white; font-weight: 600;
  box-shadow: inset 2px 0 0 var(--brand-accent);
}
.dsn-i { font-size: 14px; line-height: 1; width: 18px; text-align: center; }
.dsn-badge {
  margin-left: auto;
  background: var(--brand-primary);
  color: white;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 100vw;
}

.dash-side-foot {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 12px; margin-top: 12px;
}
.dsn-user { display: flex; align-items: center; gap: 8px; padding: 0 4px; }
.dsn-user-avi {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #ff6a3d, #f5a76b);
  color: white; font-weight: 700; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.dsn-user-name { font-size: 12px; font-weight: 600; color: white; line-height: 1.1; }
.dsn-user-role { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 1px; }

/* Main */
.dash-main { padding: 18px; display: flex; flex-direction: column; gap: 16px; min-width: 0; }

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dkpi {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 12px;
}
.dkpi-l { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.dkpi-v {
  font-size: 18px; font-weight: 800; color: white;
  margin-top: 4px;
  display: flex; align-items: baseline; gap: 8px;
  white-space: nowrap;
}
.dkpi-eur { font-size: 12px; font-weight: 700; color: var(--brand-accent); }
.dkpi-d {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  padding: 2px 6px; border-radius: 4px;
}
.dkpi-d.up { color: var(--brand-success); background: rgba(52,168,83,.12); }

/* overflow:clip schneidet visuell ab, ohne einen neuen Scroll-Container zu erzeugen
   (im Gegensatz zu overflow:hidden, das `position: sticky` von Kindern blockiert) */
.section-clip {
  overflow: clip;
  /* Fallback für Browser ohne overflow:clip-Unterstützung */
}
@supports not (overflow: clip) {
  .section-clip { overflow: hidden; }
}

/* ==========================================================
   SCROLL-PIN für Big-Dashboard (Desktop only, via JS aktiviert)
   ========================================================== */
.scroll-pin { position: relative; }
.scroll-pin.is-pinning {
  /* genug Scroll-Distanz für 4 Phasen (Pipeline → Kampagnen → Reporting → Exit) */
  min-height: 280vh;
}
.scroll-pin.is-pinning .dash-shell {
  position: sticky;
  /* Vertikal mittig im Viewport, mind. 90 px vom oberen Rand —
     Dashboard ist ca. 700 px hoch, also Hälfte = 350 px. */
  top: max(90px, calc(50vh - 350px));
  z-index: 1;
  transform-origin: center top;
  transition: transform .4s var(--ease), opacity .4s var(--ease), filter .4s var(--ease);
}

/* Im Scroll-Pin-Mode: alle Auto-Loop-Animations deaktivieren — JS übernimmt Scenes via data-scene */
.scroll-pin.is-pinning .dash-scene-pipeline,
.scroll-pin.is-pinning .dash-scene-campaigns,
.scroll-pin.is-pinning .dash-scene-reporting {
  animation: none !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
}
.scroll-pin.is-pinning .dash-shell[data-scene="pipeline"]   .dash-scene-pipeline,
.scroll-pin.is-pinning .dash-shell[data-scene="campaigns"]  .dash-scene-campaigns,
.scroll-pin.is-pinning .dash-shell[data-scene="reporting"]  .dash-scene-reporting {
  opacity: 1;
  visibility: visible;
}

.scroll-pin.is-pinning .dsn-item-pipeline,
.scroll-pin.is-pinning .dsn-item-campaigns,
.scroll-pin.is-pinning .dsn-item-reporting {
  animation: none !important;
  background: transparent;
  color: rgba(255,255,255,.6); font-weight: 500;
  box-shadow: none;
  transition: all .3s var(--ease);
}
.scroll-pin.is-pinning .dash-shell[data-scene="pipeline"]   .dsn-item-pipeline,
.scroll-pin.is-pinning .dash-shell[data-scene="campaigns"]  .dsn-item-campaigns,
.scroll-pin.is-pinning .dash-shell[data-scene="reporting"]  .dsn-item-reporting {
  background: rgba(51, 129, 246,.16);
  color: white; font-weight: 600;
  box-shadow: inset 2px 0 0 var(--brand-accent);
}

.scroll-pin.is-pinning .dash-cursor {
  animation: none !important;
  top: var(--cursor-y, 76px) !important;
  left: var(--cursor-x, 14px) !important;
  transform: scale(var(--cursor-scale, 1));
  transition: top .5s var(--ease), left .5s var(--ease), transform .15s ease;
}

/* Exit-Animation am Ende des Scroll-Pin-Bereichs: scale down + fade + blur */
.scroll-pin.is-pinning .dash-shell[data-exit="1"] {
  transform: scale(.94);
  opacity: .65;
  filter: blur(2px);
}
.scroll-pin.is-pinning .dash-shell[data-exit="2"] {
  transform: scale(.86);
  opacity: .25;
  filter: blur(6px);
}

/* Stage: drei Szenen wechseln im 12-Sekunden-Loop — non-overlapping windows */
.dash-stage {
  position: relative;
  flex: 1; min-height: 440px;
  overflow: hidden;
}
.dash-scene {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  display: flex; flex-direction: column;
  z-index: 1;
  background: linear-gradient(180deg, #11192b, #0a1322);
}
.dash-scene-pipeline   { animation: dashScenePipeline   12s ease-in-out infinite; }
.dash-scene-campaigns  { animation: dashSceneCampaigns  12s ease-in-out infinite; }
.dash-scene-reporting  { animation: dashSceneReporting  12s ease-in-out infinite; }

/* Pipeline: 0-30 % visible (Cursor klickt @ 4 %, Pipeline aktiv) */
/* sanfte Crossfades; Pipeline blendet zum Schleifen-Ende WIEDER ein (95→100 %),
   damit 100 % == 0 % → kein abrupter „Pop" beim Zurückspringen auf Dashboard */
@keyframes dashScenePipeline {
  0%, 26%   { opacity: 1; visibility: visible; z-index: 2; }
  30%       { opacity: 0; visibility: visible; z-index: 1; }
  31%, 93%  { opacity: 0; visibility: hidden;  z-index: 1; }
  95%       { opacity: 0; visibility: visible; z-index: 2; }
  100%      { opacity: 1; visibility: visible; z-index: 2; }
}
/* Kampagnen: ~35-58 % sichtbar (Cursor klickt @ 34 %) */
@keyframes dashSceneCampaigns {
  0%, 30%   { opacity: 0; visibility: hidden;  z-index: 1; }
  31%       { opacity: 0; visibility: visible; z-index: 2; }
  35%, 58%  { opacity: 1; visibility: visible; z-index: 2; }
  62%       { opacity: 0; visibility: visible; z-index: 1; }
  63%, 100% { opacity: 0; visibility: hidden;  z-index: 1; }
}
/* Reporting: ~67-91 % sichtbar (Cursor klickt @ 67 %) */
@keyframes dashSceneReporting {
  0%, 62%   { opacity: 0; visibility: hidden;  z-index: 1; }
  63%       { opacity: 0; visibility: visible; z-index: 2; }
  67%, 91%  { opacity: 1; visibility: visible; z-index: 2; }
  95%       { opacity: 0; visibility: visible; z-index: 1; }
  96%, 100% { opacity: 0; visibility: hidden;  z-index: 1; }
}

/* Sidebar items: synchron zur Stage aktiv */
.dsn-item-pipeline   { animation: dsnActivePipeline   12s ease-in-out infinite; }
.dsn-item-campaigns  { animation: dsnActiveCampaigns  12s ease-in-out infinite; }
.dsn-item-reporting  { animation: dsnActiveReporting  12s ease-in-out infinite; }
@keyframes dsnActivePipeline {
  0%, 30%   { background: rgba(51, 129, 246,.16); color: white; font-weight: 600; box-shadow: inset 2px 0 0 var(--brand-accent); }
  32%, 100% { background: transparent; color: rgba(255,255,255,.6); font-weight: 500; box-shadow: none; }
}
@keyframes dsnActiveCampaigns {
  0%, 32%   { background: transparent; color: rgba(255,255,255,.6); font-weight: 500; box-shadow: none; }
  34%, 62%  { background: rgba(51, 129, 246,.16); color: white; font-weight: 600; box-shadow: inset 2px 0 0 var(--brand-accent); }
  64%, 100% { background: transparent; color: rgba(255,255,255,.6); font-weight: 500; box-shadow: none; }
}
@keyframes dsnActiveReporting {
  0%, 64%   { background: transparent; color: rgba(255,255,255,.6); font-weight: 500; box-shadow: none; }
  66%, 93%  { background: rgba(51, 129, 246,.16); color: white; font-weight: 600; box-shadow: inset 2px 0 0 var(--brand-accent); }
  95%, 100% { background: transparent; color: rgba(255,255,255,.6); font-weight: 500; box-shadow: none; }
}

/* Cursor läuft über die Sidebar-Items und „klickt" */
.dash-cursor {
  position: absolute;
  top: 76px; left: 10px;  /* startet auf Pipeline-Item */
  width: 22px; height: 22px;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  animation: dashCursorPath 12s ease-in-out infinite;
}
.dash-cursor svg { display: block; }
/* Y-Positionen der Sidebar-Items in der Praxis:
   item1 (Pipeline)  ≈ 76px
   item2 (Kampagnen) ≈ 116px
   item3 (Reporting) ≈ 156px
   (basierend auf padding 16px + brand 18px + nav-item ~36px) */
@keyframes dashCursorPath {
  0%       { top:  76px; left: 14px; transform: scale(1); }
  4%       { top:  76px; left: 14px; transform: scale(.8); }   /* click pipeline */
  8%, 25%  { top:  76px; left: 14px; transform: scale(1); }
  30%      { top: 116px; left: 14px; transform: scale(1); }
  34%      { top: 116px; left: 14px; transform: scale(.8); }   /* click kampagnen */
  38%, 58% { top: 116px; left: 14px; transform: scale(1); }
  63%      { top: 156px; left: 14px; transform: scale(1); }
  67%      { top: 156px; left: 14px; transform: scale(.8); }   /* click reporting */
  71%, 92% { top: 156px; left: 14px; transform: scale(1); }
  100%     { top:  76px; left: 14px; transform: scale(1); }
}

.dash-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 16px;
  flex: 1; min-height: 0;
}
.dash-panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.dash-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; gap: 10px;
}
.dash-panel-title { font-size: 13px; font-weight: 700; color: white; }
.dash-panel-sub { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 1px; }
.dash-tabs { display: flex; gap: 4px; }
.dt {
  padding: 3px 9px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.55);
  border-radius: 5px;
}
.dt.is-active { background: rgba(51, 129, 246,.18); color: var(--brand-accent); }
.dash-pill {
  font-size: 10px; font-weight: 700;
  color: var(--brand-accent);
  background: rgba(0, 98, 244,.14);
  padding: 2px 8px; border-radius: 100vw;
}

/* Kanban */
.dash-kanban {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; flex: 1; min-height: 0;
}
.dkb-col {
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.dkb-head {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .04em;
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 4px;
}
.dkb-bullet { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dkb-cnt {
  margin-left: auto;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  font-size: 9px; padding: 0 5px; border-radius: 100vw;
}
.dkb-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 7px;
  padding: 7px 8px;
  display: flex; align-items: center; gap: 7px;
}
.dkb-card .avi {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 9px;
  flex-shrink: 0;
}
.dkb-name { font-size: 11px; font-weight: 600; color: white; line-height: 1.1; }
.dkb-meta { font-size: 9px; color: rgba(255,255,255,.55); margin-top: 1px; }

/* Right col: reporting + campaigns — stacked with explicit, equal heights */
.dash-side-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 0;
}
.dash-side-col > .dash-panel { min-height: 0; }
.dash-chart {
  height: 70px;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.dash-chart-bars rect {
  transform-origin: bottom;
  animation: chartBarUp .8s var(--ease-out) both;
}
.dash-chart-bars rect:nth-child(1) { animation-delay: .0s; }
.dash-chart-bars rect:nth-child(2) { animation-delay: .07s; }
.dash-chart-bars rect:nth-child(3) { animation-delay: .14s; }
.dash-chart-bars rect:nth-child(4) { animation-delay: .21s; }
.dash-chart-bars rect:nth-child(5) { animation-delay: .28s; }
.dash-chart-bars rect:nth-child(6) { animation-delay: .35s; }
.dash-chart-bars rect:nth-child(7) { animation-delay: .42s; }
@keyframes chartBarUp {
  from { transform: scaleY(.0); }
  to   { transform: scaleY(1); }
}
.dash-chart-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 8px;
  flex-shrink: 0;
}
.dcs-l { font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .04em; }
.dcs-v { font-size: 14px; font-weight: 700; color: white; margin-top: 2px; white-space: nowrap; }

.dash-camps { display: flex; flex-direction: column; gap: 6px; min-height: 0; overflow: hidden; flex: 1; }
.dcamp {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  grid-template-areas: "ic info stat" "bar bar bar";
  gap: 4px 8px;
  padding: 8px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  align-items: center;
}
.dcamp-ic {
  grid-area: ic;
  width: 22px; height: 22px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px; color: white;
}
.dcamp-ic.meta   { background: linear-gradient(135deg, #0866FF, #1877F2); }
.dcamp-ic.google { background: linear-gradient(135deg, #EA4335, #FBBC04); }
.dcamp-info { grid-area: info; min-width: 0; }
.dcamp-name { font-size: 11px; font-weight: 600; color: white; line-height: 1.1; }
.dcamp-meta { font-size: 9px; color: rgba(255,255,255,.55); margin-top: 1px; }
.dcamp-stat {
  grid-area: stat;
  font-size: 12px; font-weight: 700; color: white;
  white-space: nowrap;
}
.dcamp-bar {
  grid-area: bar;
  height: 3px; background: rgba(255,255,255,.06);
  border-radius: 100vw; overflow: hidden;
}
.dcamp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 100vw;
  width: var(--w);
  animation: dampBarGrow 1.4s var(--ease-out) both;
}
@keyframes dampBarGrow {
  from { width: 0; }
  to   { width: var(--w); }
}

/* Scene 2: Kampagnen full-width */
.dash-camps-big {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1; min-height: 0;
}
.dcamp-big {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  grid-template-areas: "ic info kpis" "bar bar bar";
  gap: 8px 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  align-items: center;
}
.dcamp-big .dcamp-ic {
  grid-area: ic;
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: white;
}
.dcamp-big .dcamp-ic.meta   { background: linear-gradient(135deg, #0866FF, #1877F2); }
.dcamp-big .dcamp-ic.google { background: linear-gradient(135deg, #EA4335, #FBBC04); }
.dcamp-big .dcamp-info { grid-area: info; min-width: 0; }
.dcamp-big .dcamp-name { font-size: 13px; font-weight: 600; color: white; line-height: 1.2; }
.dcamp-big .dcamp-meta { font-size: 10px; color: rgba(255,255,255,.55); margin-top: 2px; }
.dcamp-big .dcamp-bar { grid-area: bar; }
.dcamp-kpis {
  grid-area: kpis;
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 16px;
}
.dcamp-kpis > div { display: flex; flex-direction: column; align-items: flex-end; }
.dckpi-l { font-size: 9px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; }
.dckpi-v { font-size: 12px; font-weight: 700; color: white; white-space: nowrap; }
.dcamp-add {
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: 12px; font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.dcamp-add:hover {
  background: rgba(51, 129, 246,.18);
  border-color: var(--brand-accent);
  color: white;
}

/* Scene 3: Reporting full-width */
.dash-rep-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  flex: 1; min-height: 0;
}
.dash-rep-chart {
  background: rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 12px;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.dash-rep-chart svg { width: 100%; height: 100%; max-height: 240px; }
.dash-rep-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dashRepDraw 2.4s ease-out forwards 0.2s;
}
@keyframes dashRepDraw { to { stroke-dashoffset: 0; } }
.dash-rep-kpis {
  display: flex; flex-direction: column; gap: 8px;
}
.drk {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px 12px;
}
.drk-l { font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .04em; }
.drk-v { font-size: 18px; font-weight: 800; color: white; margin-top: 3px; white-space: nowrap; }
.drk-d {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  margin-top: 4px;
  padding: 2px 6px; border-radius: 4px;
}
.drk-d.up { color: var(--brand-success); background: rgba(52,168,83,.14); }

/* Caption row */
.dash-caps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 20px;
}
.dash-cap {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
}
.dash-cap-ic { font-size: 22px; line-height: 1; }
.dash-cap-t { font-size: 14px; font-weight: 700; color: white; line-height: 1.1; }
.dash-cap-s { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }

/* Mobile/tablet: collapse the showcase */
@media (max-width: 1023px) {
  .dash-body { grid-template-columns: 1fr; min-height: 0; }
  .dash-side { display: none; }
  .dash-cursor { display: none; }
  .dash-stage { min-height: 540px; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-side-col { grid-template-rows: auto auto; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-kanban { grid-template-columns: repeat(2, 1fr); }
  .dash-caps { grid-template-columns: repeat(2, 1fr); }
  .dash-rep-grid { grid-template-columns: 1fr; }
  .dash-rep-kpis { flex-direction: row; flex-wrap: wrap; }
  .drk { flex: 1; min-width: 140px; }
  .dcamp-kpis { display: none; }
}
@media (max-width: 540px) {
  .dash-main { padding: 12px; }
  .dash-stage { min-height: 620px; }
  .dash-kanban { grid-template-columns: 1fr; }
  .dash-caps { grid-template-columns: 1fr; }
}

/* ==========================================================
   PERSONA CARDS
   ========================================================== */
.persona-card {
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 16px; padding: 28px;
  transition: all .35s var(--ease);
}
.persona-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 32px -8px rgba(51, 129, 246,.18);
}
.persona-card .num {
  font-size: 28px; font-weight: 800; color: var(--brand-primary);
  margin-bottom: 6px;
}
.persona-card p { font-size: 14px; line-height: 1.6; color: var(--brand-text); }

/* ==========================================================
   FEATURE-CARD-STACK (was ist GR OS) — 2x2 Grid mit Staggered-Versatz
   ========================================================== */
.feature-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto;
}
.fc {
  background: white; padding: 22px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px -6px rgba(11,18,32,.12);
  border: 1px solid var(--brand-surface);
  transition: all .3s var(--ease);
}
.fc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(51, 129, 246,.22);
}
/* Subtle staggered offset for visual interest (statt absolute-Overlap) */
.fc-1 { transform: translateY(0); }
.fc-2 { transform: translateY(24px); }
.fc-3 { transform: translateY(-10px); }
.fc-4 { transform: translateY(14px); }
.fc-1:hover { transform: translateY(-6px); }
.fc-2:hover { transform: translateY(18px); }
.fc-3:hover { transform: translateY(-16px); }
.fc-4:hover { transform: translateY(8px); }
.fc-icon { font-size: 28px; margin-bottom: 8px; line-height: 1; }
.fc-title { font-weight: 700; color: var(--brand-ink); font-size: 16px; }
.fc-meta { color: var(--brand-muted); font-size: 13px; margin-top: 2px; }

/* ==========================================================
   FEATURE GRID (GoSprint-Stil)
   ========================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat-card-wide { grid-column: span 1; }
@media (min-width: 1024px) {
  .feat-grid { grid-template-columns: 1fr 1fr 1fr; }
  .feat-card-wide { grid-column: span 1; }
}
.feat-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 129, 246,.5), transparent);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.feat-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-color: rgba(51, 129, 246,.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -16px rgba(0, 98, 244,.30);
}
.feat-card:hover::before { opacity: 1; }
.feat-anim {
  position: relative;
  height: 200px;
  margin: -8px -8px 16px;
  border-radius: 14px;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(51, 129, 246,.10), transparent 60%),
    rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.feat-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.feat-desc { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.65); }

/* ---- Anim 1: Pipeline mini ---- */
.fa-pipeline {
  width: 100%;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.fap-col {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  margin-bottom: 2px;
}
.fap-bullet { width: 6px; height: 6px; border-radius: 50%; }
.fap-cnt {
  margin-left: auto;
  background: rgba(255,255,255,.08);
  font-size: 9px; padding: 0 5px; border-radius: 100vw;
  font-style: normal;
}
.fap-card {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 11px; font-weight: 600; color: white;
  position: relative;
}
.fap-avi {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 9px;
  flex-shrink: 0;
}
.fap-arrow {
  position: absolute; right: 8px;
  color: var(--brand-accent);
  font-weight: 800;
  animation: fapArrow 1.8s ease-in-out infinite;
}
@keyframes fapArrow {
  0%, 100% { transform: translateX(0); opacity: .8; }
  50%      { transform: translateX(6px); opacity: 1; }
}
.fap-anim-1 { animation: fapFloat 4s ease-in-out infinite 0s; }
.fap-anim-2 { animation: fapFloat 4s ease-in-out infinite .3s; }
.fap-anim-3 { animation: fapFloat 4s ease-in-out infinite .6s; }
@keyframes fapFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* ---- Anim 2: Channel Orbit ---- */
.fa-orbit {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fao-center {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 14px; letter-spacing: .04em;
  z-index: 2;
  box-shadow: 0 8px 24px -6px rgba(51, 129, 246,.6), inset 0 0 0 1px rgba(255,255,255,.18);
}
.fao-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(51, 129, 246,.3);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.fao-ring-1 { width: 130px; height: 130px; animation: faoRing 12s linear infinite; }
.fao-ring-2 { width: 175px; height: 175px; animation: faoRing 18s linear infinite reverse; border-color: rgba(51, 129, 246,.18); }
@keyframes faoRing { to { transform: translate(-50%, -50%) rotate(360deg); } }

.fao-chip {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: white; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 100vw;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  animation: faoChipFloat 4s ease-in-out infinite;
}
.fao-chip-1 { top: 12%;  left: 6%;  animation-delay: 0s;   }
.fao-chip-2 { top: 8%;   right: 6%; animation-delay: .8s;  }
.fao-chip-3 { bottom: 20%; left: 4%; animation-delay: 1.6s; }
.fao-chip-4 { bottom: 14%; right: 8%; animation-delay: 2.4s; }
.fao-chip-5 { bottom: 6%;  left: 50%; transform: translateX(-50%); animation-delay: 3.2s; }
@keyframes faoChipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.fao-chip-5 {
  /* keep translateX */
  animation-name: faoChipFloatCentered;
}
@keyframes faoChipFloatCentered {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -4px); }
}

/* ---- Anim 3: Reporting chart ---- */
.fa-chart {
  width: 100%;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.fac-head { display: flex; align-items: flex-start; justify-content: space-between; }
.fac-t { font-size: 11px; font-weight: 700; color: white; }
.fac-s { font-size: 10px; color: rgba(255,255,255,.55); margin-top: 1px; }
.fac-pill {
  background: rgba(0, 98, 244,.18); color: var(--brand-accent);
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 100vw;
}
.fac-svg { height: 50px; }
.fac-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: facDraw 2.5s ease-out forwards .3s; }
@keyframes facDraw { to { stroke-dashoffset: 0; } }
.fac-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; border-top: 1px solid rgba(255,255,255,.06); padding-top: 8px; }
.fac-k-l { font-size: 9px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .03em; }
.fac-k-v { font-size: 11px; font-weight: 700; color: white; margin-top: 1px; white-space: nowrap; }
.fac-up { color: var(--brand-success); font-size: 9px; }

/* ---- Anim 4: WhatsApp ---- */
.fa-whatsapp {
  width: 100%;
  background: rgba(0,0,0,.28);
  background-image:
    repeating-linear-gradient(135deg, rgba(37,211,102,.04) 0 1px, transparent 1px 8px);
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.faw-bubble {
  max-width: 85%;
  padding: 6px 10px;
  font-size: 11px; line-height: 1.35;
  border-radius: 12px;
  opacity: 0;
  animation: fawIn .5s ease-out forwards;
}
.faw-in {
  background: rgba(255,255,255,.08);
  color: white;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.faw-out {
  background: #25D366;
  color: #07221a;
  font-weight: 600;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.faw-anim-1 { animation-delay: .2s; }
.faw-anim-2 { animation-delay: 1.2s; }
.faw-anim-3 { animation-delay: 2.2s; }
.faw-anim-4 { animation-delay: 3.2s; }
@keyframes fawIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faw-typing {
  background: rgba(255,255,255,.08);
  align-self: flex-start;
  padding: 8px 12px;
  border-bottom-left-radius: 4px;
  display: flex; gap: 4px;
}
.faw-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: fawDot 1.2s ease-in-out infinite;
}
.faw-typing span:nth-child(2) { animation-delay: .2s; }
.faw-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes fawDot {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50%      { opacity: 1;  transform: translateY(-2px); }
}

/* ---- Anim 5: BMS Integration (square radial layout, 5 nodes around OS hub) ---- */
.feat-anim-bms { height: 260px; padding: 12px; }  /* mehr Platz, damit rexx unten reinpasst */
.fa-bms {
  position: relative;
  width: 100%; height: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;  /* quadratisch: % == SVG-Koords */
}
.fab-flow {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.fab-line {
  stroke: #0062F4;
  stroke-width: 1.4;
  stroke-dasharray: 3 4;
  stroke-linecap: round;
  opacity: .85;
  animation: fabLineDash 1.6s linear infinite;
}
.fab-l2 { animation-delay: -.3s; }
.fab-l3 { animation-delay: -.6s; }
.fab-l4 { animation-delay: -.9s; }
.fab-l5 { animation-delay: -1.2s; }
@keyframes fabLineDash {
  to { stroke-dashoffset: -14; }
}

/* Center hub */
.fab-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 28px -6px rgba(51, 129, 246,.6), inset 0 0 0 1px rgba(255,255,255,.2);
}
.fab-hub-mark { color: white; font-weight: 800; font-size: 13px; letter-spacing: .04em; }

/* Provider Nodes — Position in % matcht 1:1 die SVG-Linien-Endpunkte */
.fab-node {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  background: white;
  border: 1px solid rgba(255,255,255,.20);
  color: var(--brand-ink);
  font-size: 10px; font-weight: 700;
  padding: 4px 9px 4px 5px;
  border-radius: 100vw;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
}
.fab-node img {
  width: 18px; height: 18px;
  border-radius: 5px;
  object-fit: contain;
  background: white;
  flex-shrink: 0;
}
/* Pentagon around hub — matches SVG line endpoints exactly */
.fab-node-1 { top: 12%; left: 50%; }   /* top         → SmartRecruiters */
.fab-node-2 { top: 40%; left: 88%; }   /* upper-right → Personio */
.fab-node-3 { top: 85%; left: 76%; }   /* lower-right → BITE */
.fab-node-4 { top: 85%; left: 24%; }   /* lower-left  → softgarden */
.fab-node-5 { top: 40%; left: 12%; }   /* upper-left  → rexx */

/* ---- Anim 6: Mobile Phone ---- */
.fa-mobile {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.fam-phone {
  width: 130px;
  background: #0a1322;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 6px;
  position: relative;
  box-shadow: 0 16px 32px -8px rgba(0,0,0,.5);
}
.fam-screen {
  background: linear-gradient(180deg, #11192b, #050912);
  border-radius: 10px;
  padding: 16px 8px 8px;
  position: relative;
  height: 170px;
  overflow: hidden;
}
.fam-notch {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px; background: black; border-radius: 100vw;
}
.fam-status {
  text-align: center; font-size: 9px;
  color: rgba(255,255,255,.5); font-weight: 600;
  margin-bottom: 10px;
}
.fam-noti {
  display: flex; align-items: flex-start; gap: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(-8px);
  animation: famNoti .5s ease-out forwards;
}
.fam-noti-1 { animation-delay: .6s; }
.fam-noti-2 { animation-delay: 1.6s; }
@keyframes famNoti {
  to { opacity: 1; transform: translateY(0); }
}
.fam-noti-ic {
  width: 18px; height: 18px;
  background: var(--brand-primary);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.fam-noti-t { font-size: 9px; font-weight: 700; color: white; line-height: 1.1; }
.fam-noti-m { font-size: 8px; color: rgba(255,255,255,.6); margin-top: 1px; }

/* Reduce on mobile */
@media (max-width: 1023px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-anim { height: 180px; }
}

/* ==========================================================
   FEATURE ROWS (Features-Section)
   ========================================================== */
.feature-row {
  background: var(--brand-paper);
  border-radius: 16px; padding: 22px 26px;
  display: grid; grid-template-columns: 64px 1fr; gap: 14px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
}
.feature-row:hover {
  background: white;
  border-color: var(--brand-surface);
  box-shadow: 0 8px 20px -4px rgba(11,18,32,.06);
  transform: translateY(-2px);
}
.fr-num {
  font-size: 24px; font-weight: 800; color: var(--brand-primary);
  font-feature-settings: 'tnum';
}
.feature-row p { color: var(--brand-text); line-height: 1.6; }

/* ==========================================================
   LOGO MARQUEE
   ========================================================== */
.marquee {
  width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, white 8%, white 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 8%, white 92%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; padding: 8px 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track img {
  height: 36px; width: auto; max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.6); opacity: .65;
  transition: all .3s var(--ease);
}
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   STAT CARDS (Dark Section)
   ========================================================== */
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 28px;
  transition: all .35s var(--ease);
  backdrop-filter: blur(6px);
}
.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
  border-color: rgba(0, 98, 244,.4);
  box-shadow: 0 12px 32px -8px rgba(0, 98, 244,.25);
}
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800; color: white;
  line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.stat-num .stat-prefix { font-size: .55em; font-weight: 700; color: rgba(255,255,255,.65); }
.stat-num .stat-suffix { font-size: .6em; font-weight: 700; vertical-align: baseline; }
.stat-label {
  color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.5;
}
.stat-label strong { color: white; font-weight: 600; }

/* ==========================================================
   CHECK ROWS (Für wen)
   ========================================================== */
.checkrow {
  background: white; border: 1px solid var(--brand-surface);
  border-radius: 14px; padding: 18px 22px;
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
  transition: all .25s var(--ease);
}
.checkrow:hover {
  border-color: var(--brand-success);
  box-shadow: 0 6px 16px -4px rgba(52,168,83,.18);
  transform: translateX(4px);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(52,168,83,.12); color: var(--brand-success);
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.checkrow p { font-size: 15px; color: var(--brand-text); }
.checkrow p strong { color: var(--brand-ink); font-weight: 600; }

/* ==========================================================
   PAIN ROWS (All-in-One / Recruiting-Teams)
   ========================================================== */
.painrow {
  background: white; border: 1px solid var(--brand-surface);
  border-radius: 14px; padding: 18px 20px;
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
  transition: all .25s var(--ease);
}
.painrow:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 6px 16px -4px rgba(255,106,61,.18);
  transform: translateY(-2px);
}
.pain-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,106,61,.12); color: var(--brand-orange);
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.painrow p { font-size: 14px; line-height: 1.55; color: var(--brand-text); }
.painrow p strong { color: var(--brand-ink); font-weight: 600; }

.pitch-li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start;
  font-size: 17px; line-height: 1.55; color: var(--brand-text);
  background: white; padding: 16px 20px;
  border-radius: 14px; border: 1px solid var(--brand-surface);
  transition: all .25s var(--ease);
}
.pitch-li:hover { transform: translateX(4px); border-color: var(--brand-primary); }
.pitch-li strong { color: var(--brand-ink); font-weight: 600; }

/* ==========================================================
   FACTS
   ========================================================== */
.fact {
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface);
  border-radius: 14px; padding: 22px 26px;
  transition: all .3s var(--ease);
}
.fact:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(11,18,32,.08);
}
.fact-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-muted); margin-bottom: 6px;
}
.fact-value { font-size: 17px; font-weight: 600; color: var(--brand-ink); }

/* ==========================================================
   "Das bringen Sie mit" — Photo + Checks-Grid
   ========================================================== */
.bringen-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.bringen-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 50px -16px rgba(11,18,32,.25);
  position: sticky; top: 90px;
}
.bringen-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.bringen-photo-tag {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 14px;
}
.bringen-photo-eye {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-primary);
}
.bringen-photo-name {
  font-size: 14px; font-weight: 700;
  color: var(--brand-ink);
  margin-top: 2px;
}
.bringen-checks {
  display: flex; flex-direction: column;
  gap: 12px;
}
@media (max-width: 1023px) {
  .bringen-grid { grid-template-columns: 1fr; gap: 28px; }
  .bringen-photo { position: relative; top: 0; aspect-ratio: 16/9; max-height: 360px; }
}

/* ==========================================================
   AGENTUR / ÜBER UNS — Foto als Full-Section-Background
   ========================================================== */
.agency-section {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.agency-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.agency-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.agency-bg-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11,18,32,.85) 0%,
      rgba(11,18,32,.78) 30%,
      rgba(11,18,32,.88) 70%,
      rgba(11,18,32,.95) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(51, 129, 246,.15), transparent 70%);
}

.agency-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
}
.agency-hero-h {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1; letter-spacing: -.02em;
  color: white;
}
.agency-h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.15; letter-spacing: -.02em;
  color: white;
  margin-bottom: 22px;
}

.agency-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.agency-text { color: rgba(255,255,255,.82); }
.agency-text p strong { font-weight: 600; }

.agency-bullets {
  display: flex; flex-direction: column;
  gap: 12px;
  list-style: none; padding: 0; margin: 0;
}
.agency-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px; line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.agency-bullets li strong { color: white; font-weight: 600; }
.agency-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0, 98, 244,.18);
  border: 1px solid rgba(0, 98, 244,.4);
  color: var(--brand-accent);
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}

.agency-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: sticky; top: 90px;
}
.agstat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-left: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}
.agstat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.09);
  border-color: rgba(0, 98, 244,.55);
}
.agstat-v {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: white;
  letter-spacing: -.02em;
  white-space: nowrap;
  margin-bottom: 8px;
}
.agstat-pre { font-size: .55em; font-weight: 700; color: rgba(255,255,255,.55); }
.agstat-plus { font-size: .55em; color: var(--brand-accent); font-weight: 700; }
.agstat-eur { font-size: .55em; color: var(--brand-accent); font-weight: 700; }
.agstat-l { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,.7); }

@media (max-width: 1023px) {
  .agency-section { padding: 70px 0 80px; }
  .agency-grid { grid-template-columns: 1fr; gap: 40px; }
  .agency-stats { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .agency-stats { grid-template-columns: 1fr; }
  .agency-hero-h { font-size: 26px; }
  .agency-h2 { font-size: 22px; }
}

/* ==========================================================
   FLOW SECTION — Channels → OS → Träger
   ========================================================== */
.flow-section {
  background: var(--brand-paper);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.flow-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 500px at 50% 30%, rgba(51, 129, 246,.08), transparent 70%),
    radial-gradient(500px 400px at 10% 80%, rgba(0, 98, 244,.06), transparent 70%);
}
.flow-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 20px;
  position: relative;
}
.flow-stage {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 110px 1fr 110px 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
}

/* Nodes — each a clean card with equal height */
.flow-node {
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 22px;
  box-shadow: 0 12px 30px -10px rgba(11,18,32,.10);
  padding: 28px 22px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  text-align: center;
  min-height: 260px;
  position: relative;
}
.flow-node-label {
  font-size: 11px; font-weight: 800;
  color: var(--brand-muted);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 4px;
}
.flow-node-icon {
  width: 88px; height: 88px;
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-ink);
  margin: 12px 0;
}
.flow-node-name {
  font-size: 15px; font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.2;
}
.flow-node-sub {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 4px;
}

/* OS Hub — pulsing rounded square, properly centered inside the card */
.flow-os {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(51, 129, 246,.10), transparent 70%),
    white;
  border-color: rgba(51, 129, 246,.30);
}
.flow-os-square {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px -8px rgba(51, 129, 246,.5),
              inset 0 0 0 1px rgba(255,255,255,.18);
  margin: 12px 0;
}
.flow-os-mark {
  position: relative; z-index: 2;
  color: white;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .04em;
}
/* Pulse-Ringe sind jetzt KINDER vom Square (nicht von .flow-os),
   damit sie millimetergenau auf dem Square zentriert sitzen. */
.flow-os-ring {
  position: absolute;
  inset: 0;                    /* exakt deckungsgleich mit dem Square */
  border-radius: 18px;
  border: 2px solid var(--brand-primary);
  opacity: 0;
  animation: flowOsPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.flow-os-ring-2 { animation-delay: 1.2s; }
@keyframes flowOsPulse {
  0%   { transform: scale(.95); opacity: .6; }
  100% { transform: scale(2.0); opacity: 0;  }
}

/* Channel grid (right node) */
.flow-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
  max-width: 180px;
  margin: 12px 0;
}
.flow-ch {
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface);
  border-radius: 10px;
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease);
}
.flow-ch:nth-child(2n)  { animation: flowChFloat 4s ease-in-out infinite .3s; }
.flow-ch:nth-child(3n)  { animation: flowChFloat 4s ease-in-out infinite .6s; }
.flow-ch:nth-child(4n)  { animation: flowChFloat 4s ease-in-out infinite 1.2s; }
.flow-ch img { width: 20px; height: 20px; }
@keyframes flowChFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Lines BETWEEN cards — span their grid cell */
.flow-line {
  position: relative;
  align-self: center;
  height: 60px;
  width: 100%;
}
.flow-line svg { display: block; width: 100%; height: 100%; }
.flow-line-label {
  position: absolute;
  bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand-primary);
  white-space: nowrap;
}

/* Dots-Animation läuft jetzt via SMIL <animate> direkt im SVG */

/* Foot stats */
.flow-foot {
  max-width: 720px;
  margin: 70px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.flow-foot-stat {
  display: flex; flex-direction: column; align-items: center;
}
.flow-foot-v {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.flow-foot-l {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 1023px) {
  .flow-section { padding: 70px 0 80px; }
  .flow-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .flow-line {
    height: 60px;
    width: 4px;
    margin: 0 auto;
    align-self: center;
  }
  .flow-line svg {
    width: 100%; height: 100%;
    transform: rotate(90deg);
  }
  .flow-line-label {
    position: static;
    transform: none;
    background: transparent;
    text-align: center;
    margin-top: 4px;
    display: block;
  }
  .flow-foot { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================
   TRUST ROW (Externer Datenschutz)
   ========================================================== */
.trust-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--brand-surface);
}
.trust-row-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.trust-row-logos {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 14px;
  padding: 10px 16px 10px 12px;
  box-shadow: 0 4px 14px -4px rgba(11,18,32,.08);
  transition: all .25s var(--ease);
}
.trust-badge:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(51, 129, 246,.18);
}
.trust-badge img {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.trust-badge-name {
  font-size: 14px; font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.1;
}
.trust-badge-sub {
  font-size: 11px; color: var(--brand-muted);
  margin-top: 2px;
}

/* ==========================================================
   MAP-CARD (Wo läuft GR OS) — Deutschlandkarte
   ========================================================== */
.map-card {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(51, 129, 246,.10), transparent 60%),
    linear-gradient(180deg, #fff, var(--brand-paper));
  border-radius: 24px;
  padding: 24px 24px 56px;
  border: 1px solid var(--brand-surface);
  overflow: hidden;
  box-shadow: 0 20px 50px -16px rgba(11,18,32,.12);
  color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
}
/* Quadratischer Wrapper: SVG-Geometrie (1000×1000) → 1:1.
   Pins werden via --px/--py als % darin positioniert. */
.de-map-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.de-map-object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(51, 129, 246,.18));
  pointer-events: none;
  opacity: .88;
}
/* Pin-Overlay-SVG: gleiche viewBox wie die DE-Karte → Pins millimetergenau */
.de-pins-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.de-pin-link {
  animation: dashFlow 1.6s linear infinite;
  opacity: .9;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -22; }
}

/* Pulsierende Aura um den Pin-Dot */
.de-pin-aura {
  transform-origin: center;
  transform-box: fill-box;
  animation: dePinAura 2.4s ease-out infinite;
}
.de-pin-aura-2 {
  transform-origin: center;
  transform-box: fill-box;
  animation: dePinAura 2.4s ease-out infinite .6s;
}
.de-pin-aura-delay { animation-delay: 1.2s; }
.de-pin-aura-2.de-pin-aura-delay { animation-delay: 1.8s; }
@keyframes dePinAura {
  0%   { transform: scale(.5); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0;  }
}

/* HTML-Labels: % relativ zum quadratischen wrap (matcht SVG-Koords 1:1) */
.pin-label {
  position: absolute;
  top: var(--py);
  left: var(--px);
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 12px;
  padding: 7px 12px;
  box-shadow: 0 8px 20px -4px rgba(11,18,32,.20);
  white-space: nowrap;
  z-index: 3;
}
.pin-label .pin-city { font-weight: 700; font-size: 12px; color: var(--brand-ink); line-height: 1.1; }
.pin-label .pin-host { font-size: 10px; color: var(--brand-muted); font-weight: 500; margin-top: 2px; }
/* Frankfurt-Label unten-rechts vom Pin (Richtung Hessen-Innland) */
.pin-label-frankfurt   { transform: translate(18px, 18px); }
/* Falkenstein-Label oben-links vom Pin (Richtung Thüringen, weg vom Kartenrand) */
.pin-label-falkenstein { transform: translate(calc(-100% - 18px), calc(-100% - 18px)); }
@media (max-width: 540px) {
  .pin-label { padding: 5px 9px; border-radius: 10px; }
  .pin-label .pin-city { font-size: 10px; }
  .pin-label .pin-host { font-size: 9px; }
}

/* Badge "Made in Germany" */
.map-badge {
  position: absolute;
  bottom: 18px;
  left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 100vw;
  padding: 8px 16px;
  font-size: 12px; font-weight: 700;
  color: var(--brand-ink);
  box-shadow: 0 8px 20px -4px rgba(11,18,32,.10);
  white-space: nowrap;
  z-index: 4;
}
.map-badge-flag { font-size: 14px; line-height: 1; }

/* ==========================================================
   STEP CARDS
   ========================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-surface) 12%, var(--brand-surface) 88%, transparent);
  z-index: 0;
}
.step-card {
  background: white; border: 1px solid var(--brand-surface);
  border-radius: 18px; padding: 28px 26px;
  transition: all .35s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
  z-index: 1;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-primary);
  box-shadow: 0 18px 40px -10px rgba(51, 129, 246,.22);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white; font-size: 20px; font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 6px 16px -4px rgba(51, 129, 246,.4);
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
}
.step-tag {
  display: inline-block;
  align-self: center;
  background: var(--brand-surface);
  color: var(--brand-primary);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100vw;
  letter-spacing: .04em;
  margin-top: 32px; margin-bottom: 14px;
}
.step-card .h3 { text-align: center; }
.step-card p {
  color: var(--brand-text); font-size: 15px; line-height: 1.6;
  text-align: center; margin-top: 6px;
  flex: 1;
}
.step-foot {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  text-align: center;
  padding-top: 14px;
  border-top: 1px dashed var(--brand-surface);
}
@media (max-width: 1023px) {
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
}

/* ==========================================================
   STORY SECTION (Sticky-Mockup + Scroll-Fade)
   ========================================================== */
.story-section {
  background: linear-gradient(180deg, #0a1322 0%, #060a14 50%, #0a1322 100%);
  color: white;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 600px at 80% 10%, rgba(51, 129, 246,.12), transparent 70%),
    radial-gradient(700px 500px at 20% 90%, rgba(0, 98, 244,.10), transparent 70%);
}
.story-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
}
.story-header .pre-h { color: var(--brand-accent); }
.story-header .h2 { color: white; }
.story-header p { color: rgba(255,255,255,.72); }

.story-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 60px;
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text { color: rgba(255,255,255,.78); }
.story-num {
  display: inline-block;
  font-size: 13px; font-weight: 800;
  color: var(--brand-accent);
  letter-spacing: .14em;
  padding: 6px 14px;
  background: rgba(0, 98, 244,.12);
  border: 1px solid rgba(0, 98, 244,.30);
  border-radius: 100vw;
  margin-bottom: 22px;
}
.story-h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
}
.story-text p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
}
.story-text p strong { color: white; font-weight: 600; }
.story-bullets {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.story-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.story-bullets strong { color: white; font-weight: 600; }
.story-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(52,168,83,.18);
  color: var(--brand-success);
  font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}

/* Sticky-Mockup-Wrap + Scroll-Fade */
.story-mockup-wrap {
  position: sticky;
  top: 100px;
  height: min-content;
  align-self: start;
}
/* Funnel-Mockup vertikal zentrieren (höher anliegen, damit es mittig im Block bleibt) */
.story-block:nth-of-type(3) .story-mockup-wrap {
  top: max(100px, calc(50vh - 260px));
}
.story-mockup {
  transition: opacity .55s var(--ease), filter .55s var(--ease), transform .55s var(--ease);
  will-change: opacity, filter, transform;
}
/* Fade/Blur, wenn der Block den Viewport verlässt */
.story-block.is-fading .story-mockup {
  opacity: .35;
  filter: blur(10px);
  transform: scale(.94);
}

/* Alternating layout: every second block flips */
.story-block:nth-of-type(odd) .story-grid {
  grid-template-areas: "text mockup";
}
.story-block:nth-of-type(even) .story-grid {
  grid-template-areas: "mockup text";
}
.story-block:nth-of-type(odd) .story-text { grid-area: text; }
.story-block:nth-of-type(odd) .story-mockup-wrap { grid-area: mockup; }
.story-block:nth-of-type(even) .story-text { grid-area: text; }
.story-block:nth-of-type(even) .story-mockup-wrap { grid-area: mockup; }

/* ----- Mock 1: Social Ad (Instagram-style) ----- */
.ad-phone {
  width: 100%;
  max-width: 300px;                       /* schmaler (iPhone-Proportion) */
  margin: 0 auto;
  background: #0a1322;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 48px;                    /* rundere Ecken (iPhone) */
  padding: 9px;
  /* 3D-schwebend: dezent in den Raum gekippt + weicher Schwebe-Schatten */
  transform: perspective(1500px) rotateY(-15deg) rotateX(3deg);
  transform-origin: 60% 50%;
  box-shadow: 34px 48px 78px -30px rgba(11,18,32,.55), 8px 12px 26px -16px rgba(11,18,32,.30), 0 0 0 1px rgba(51,129,246,.16);
  transition: transform .6s var(--ease);
}
.ad-screen {
  background: #fff;
  border-radius: 40px;                    /* passend zum runderen Rahmen */
  overflow: hidden;
  position: relative;
  padding-top: 32px;                      /* Platz für Dynamic Island */
  padding-bottom: 16px;                   /* Platz für Home-Indicator */
}
/* Dynamic Island (statt dünnem Notch) */
.ad-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 94px; height: 27px;
  background: #000; border-radius: 100vw;
  z-index: 6;
}
/* Home-Indicator-Balken unten (Apple-Geste „zurück ins Hauptmenü") */
.ad-home {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  width: 36%; max-width: 116px; height: 5px;
  background: rgba(11,18,32,.82); border-radius: 100vw;
  z-index: 6;
}
.ad-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 22px 4px;
  font-size: 11px; font-weight: 700; color: var(--brand-ink);
}
.ad-status-icons { font-size: 8px; letter-spacing: 2px; color: var(--brand-muted); }
.ad-app-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.ad-app-logo { display: inline-flex; align-items: center; }
.ad-app-icons { display: inline-flex; align-items: center; }
.ad-stories {
  display: flex; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.ad-story-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(45deg, #6AA3FF, #3381F6, #0062F4);  /* einheitlich Blau statt Instagram-Verlauf */
  position: relative;
}
.ad-story-circle::after {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbe8ff, #b9d2f7);
  border: 2px solid white;
}
.ad-story-1::after { background: linear-gradient(135deg, #cfe0ff, #9cc0f5); }
.ad-story-2::after { background: linear-gradient(135deg, #a9ccff, #5b9bf0); }
.ad-story-3::after { background: linear-gradient(135deg, #c3dbff, #79a8ec); }
.ad-story-4::after { background: linear-gradient(135deg, #dcebff, #86b3f1); }

.ad-post { background: white; }
.ad-post-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
}
.ad-post-avi {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3381F6, #0062F4);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 11px;
  flex-shrink: 0;
}
.ad-post-name {
  font-size: 12px; font-weight: 700; color: var(--brand-ink);
  line-height: 1.2;
}
.ad-post-meta { font-size: 10px; color: var(--brand-muted); margin-top: 1px; }
.ad-post-more { margin-left: auto; color: var(--brand-muted); font-size: 16px; line-height: 1; }

.ad-post-image {
  height: 320px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
  color: white;
  overflow: hidden;
}
.ad-post-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.ad-image-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,32,.50) 0%, rgba(11,18,32,0) 30%, rgba(11,18,32,0) 60%, rgba(11,18,32,.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.ad-image-overlay {
  z-index: 2; position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.ad-image-headline {
  font-size: 24px; font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  color: white;
}
.ad-image-headline span {
  display: inline-block;
  font-size: 32px; font-weight: 900;
  color: #FFE17A;
  letter-spacing: -0.02em;
}
.ad-image-sub {
  margin-top: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.92);
  letter-spacing: 0;
}
.ad-image-benefits {
  list-style: none; padding: 10px 12px; margin: 0;
  font-size: 12px; font-weight: 700;
  position: relative; z-index: 2;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  color: white;
}
.ad-image-benefits li {
  padding: 4px 0;
  border-top: 1px dashed rgba(255,255,255,.18);
}
.ad-image-benefits li:first-child { border-top: none; padding-top: 0; }
.ad-image-benefits li:last-child { padding-bottom: 0; }

.ad-post-cta { padding: 10px 14px; }
.ad-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #3381F6, #0062F4);
  color: white;
  font-size: 13px; font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(51, 129, 246,.4);
}
.ad-post-actions {
  display: flex; gap: 16px;
  padding: 8px 14px 16px;
  font-size: 22px;
}
.ad-action-heart {
  animation: adHeart 2.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes adHeart {
  0%, 100% { color: var(--brand-ink); transform: scale(1); }
  50%      { color: #e0245e; transform: scale(1.15); }
}

/* ----- Mock 2: Channels Orbit ----- */
.channels-orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
}
.ch-hub {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: 0 16px 40px -10px rgba(51, 129, 246,.6), inset 0 0 0 1px rgba(255,255,255,.2);
}
.ch-hub-mark { color: white; font-weight: 800; font-size: 18px; letter-spacing: .02em; line-height: 1; }
.ch-hub-os {
  color: rgba(255,255,255,.85); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; margin-top: 4px;
  padding: 2px 6px;
  background: rgba(255,255,255,.18);
  border-radius: 4px;
}
.ch-rings { position: absolute; inset: 0; pointer-events: none; }
.ch-ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px dashed rgba(51, 129, 246,.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ch-ring-1 { width: 38%; height: 38%; animation: chRingSpin 22s linear infinite; }
.ch-ring-2 { width: 65%; height: 65%; animation: chRingSpin 32s linear infinite reverse; }
.ch-ring-3 { width: 95%; height: 95%; animation: chRingSpin 44s linear infinite; border-color: rgba(0, 98, 244,.14); }
@keyframes chRingSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.ch-chip {
  position: absolute;
  background: white;
  border: 1px solid rgba(255,255,255,.10);
  color: var(--brand-ink);
  font-size: 12px; font-weight: 700;
  padding: 5px 11px 5px 5px;
  border-radius: 100vw;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  animation: chChipFloat 5s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}
.ch-ic {
  width: 18px; height: 18px;
  border-radius: 5px;
  object-fit: contain;
  background: white;
  padding: 2px;
  flex-shrink: 0;
}
@keyframes chChipFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -3px; }
}
@keyframes chChipFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -3px; }
}
/* 11 positions on one even circle around the hub
   (radius ≈ 44 % of container, angle steps of 360°/11 ≈ 32.7°, starting at top)
   Formula used: top = 50 - 44·cos(θ), left = 50 + 44·sin(θ) */
.ch-pos-1  { top:  6.0%; left: 50.0%; }   /*   0° */
.ch-pos-2  { top: 12.7%; left: 75.5%; }   /*  32.7° */
.ch-pos-3  { top: 31.1%; left: 91.5%; }   /*  65.5° */
.ch-pos-4  { top: 56.1%; left: 93.4%; }   /*  98.2° */
.ch-pos-5  { top: 79.8%; left: 81.4%; }   /* 130.9° */
.ch-pos-6  { top: 93.7%; left: 60.2%; }   /* 163.6° */
.ch-pos-7  { top: 93.7%; left: 39.8%; }   /* 196.4° */
.ch-pos-8  { top: 79.8%; left: 18.6%; }   /* 229.1° */
.ch-pos-9  { top: 56.1%; left:  6.6%; }   /* 261.8° */
.ch-pos-10 { top: 31.1%; left:  8.5%; }   /* 294.5° */
.ch-pos-11 { top: 12.7%; left: 24.5%; }   /* 327.3° */
/* Stagger the float animation */
.ch-pos-2  { animation-delay: -.4s; }
.ch-pos-3  { animation-delay: -.8s; }
.ch-pos-4  { animation-delay: -1.2s; }
.ch-pos-5  { animation-delay: -1.6s; }
.ch-pos-6  { animation-delay: -2.0s; }
.ch-pos-7  { animation-delay: -2.4s; }
.ch-pos-8  { animation-delay: -2.8s; }
.ch-pos-9  { animation-delay: -3.2s; }
.ch-pos-10 { animation-delay: -3.6s; }
.ch-pos-11 { animation-delay: -4.0s; }

/* ----- Mock 3: Funnel ----- */
.funnel-phone {
  width: 100%; max-width: 300px;          /* schmaler (iPhone-Proportion) */
  margin: 0 auto;
  background: #0a1322;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 48px;                     /* rundere Ecken */
  padding: 9px;
  /* 3D-schwebend (wie Mock 1) */
  transform: perspective(1500px) rotateY(-15deg) rotateX(3deg);
  transform-origin: 60% 50%;
  box-shadow: 34px 48px 78px -30px rgba(11,18,32,.55), 8px 12px 26px -16px rgba(11,18,32,.30), 0 0 0 1px rgba(51,129,246,.16);
  transition: transform .6s var(--ease);
}
.funnel-screen {
  background: white;
  border-radius: 40px;                     /* passend zum runderen Rahmen */
  padding: 48px 20px 28px;                 /* oben Platz für Dynamic Island, unten für Home-Indicator */
  position: relative;
  min-height: 650px;                       /* gleiche Höhe wie das Ad-iPhone (war 460 → wirkte „mini") */
  display: flex; flex-direction: column;
}
.funnel-head { margin-bottom: 22px; }
.funnel-progress {
  height: 6px;
  background: var(--brand-surface);
  border-radius: 100vw;
  overflow: hidden;
}
.funnel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 100vw;
  width: 20%;
  animation: funnelProgress 16s ease-in-out infinite;
}
@keyframes funnelProgress {
  0%, 8%     { width: 20%; }
  10%, 28%   { width: 40%; }
  30%, 48%   { width: 60%; }
  50%, 68%   { width: 80%; }
  70%, 90%   { width: 100%; }
  92%, 100%  { width: 20%; }
}
.funnel-step-label {
  font-size: 11px; color: var(--brand-muted);
  margin-top: 10px; text-align: center;
}
.funnel-stage {
  position: relative;
  flex: 1;
  min-height: 280px;
}
.funnel-step {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden;
}
.funnel-step-1 { animation: funnelStep 16s ease-in-out infinite 0s; }
.funnel-step-2 { animation: funnelStep 16s ease-in-out infinite -12.8s; }
.funnel-step-3 { animation: funnelStep 16s ease-in-out infinite -9.6s; }
.funnel-step-4 { animation: funnelStep 16s ease-in-out infinite -6.4s; }
.funnel-step-5 { animation: funnelStep 16s ease-in-out infinite -3.2s; }
@keyframes funnelStep {
  0%, 1%      { opacity: 0; visibility: visible; transform: translateY(8px); }
  3%, 19%     { opacity: 1; visibility: visible; transform: translateY(0); }
  20%, 100%   { opacity: 0; visibility: hidden;  transform: translateY(-8px); }
}
.funnel-q {
  font-size: 18px; font-weight: 700; color: var(--brand-ink);
  margin-bottom: 14px; line-height: 1.25;
}
.funnel-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--brand-paper);
  border: 1.5px solid var(--brand-surface);
  color: var(--brand-ink);
  font-size: 14px; font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.funnel-btn-active {
  background: rgba(51, 129, 246,.06);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: 0 4px 12px -2px rgba(51, 129, 246,.18);
}
.funnel-input {
  background: var(--brand-paper);
  border: 1.5px solid var(--brand-surface);
  border-radius: 12px;
  padding: 12px 16px;
}
.funnel-input-label {
  display: block;
  font-size: 11px; color: var(--brand-muted);
  font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 2px;
}
.funnel-input-val {
  font-size: 15px; font-weight: 600; color: var(--brand-ink);
}
.funnel-cursor {
  display: inline-block;
  color: var(--brand-primary);
  font-weight: 400;
  animation: funnelCursorBlink 1s steps(2) infinite;
}
@keyframes funnelCursorBlink {
  50% { opacity: 0; }
}
.funnel-done-ic {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brand-success), #7bcd91);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 32px; font-weight: 800;
  margin: 30px auto 18px;
  box-shadow: 0 12px 30px -6px rgba(52,168,83,.5);
}
.funnel-done-h {
  font-size: 22px; font-weight: 800; color: var(--brand-ink);
  text-align: center;
}
.funnel-done-s {
  font-size: 13px; color: var(--brand-muted);
  text-align: center; margin-top: 6px;
}
.funnel-next {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  font-size: 14px; font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 14px;
  box-shadow: 0 6px 16px -4px rgba(51, 129, 246,.4);
}

/* ----- Mock 4: AI Bewerber-Management ----- */
.ai-card {
  background: white;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 30px 70px -16px rgba(0,0,0,.45);
  color: var(--brand-ink);
  max-width: 420px;
  margin: 0 auto;
}
.ai-card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--brand-surface);
  margin-bottom: 12px;
}
.ai-card-avi {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.ai-card-info { flex: 1; min-width: 0; }
.ai-card-name { font-size: 16px; font-weight: 700; color: var(--brand-ink); line-height: 1.1; }
.ai-card-meta { font-size: 12px; color: var(--brand-muted); margin-top: 2px; }
.ai-card-stage {
  font-size: 11px; font-weight: 700;
  background: rgba(0, 98, 244,.12);
  color: var(--brand-primary);
  padding: 4px 10px;
  border-radius: 100vw;
  white-space: nowrap;
}
.ai-tabs {
  display: flex; gap: 4px;
  margin-bottom: 12px;
  background: var(--brand-paper);
  padding: 4px;
  border-radius: 10px;
}
.ai-tab {
  flex: 1; text-align: center;
  font-size: 11px; font-weight: 600;
  color: var(--brand-muted);
  padding: 6px 8px;
  border-radius: 7px;
  cursor: pointer;
}
.ai-tab-active {
  background: white;
  color: var(--brand-ink);
  box-shadow: 0 2px 6px -2px rgba(11,18,32,.10);
}
.ai-notes {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
  max-height: 130px;
  overflow: hidden;
  position: relative;
  padding-right: 12px;            /* Platz für die fiktive Scrollbar */
}
/* fiktive Scrollbar rechts — lässt die Notizen-Liste scrollbar wirken (Jana K. „geht weiter") */
.ai-notes::before {               /* Track */
  content: ''; position: absolute; top: 1px; right: 2px; bottom: 1px;
  width: 4px; border-radius: 100vw; background: rgba(11,18,32,.07);
}
.ai-notes::after {                /* Thumb oben → signalisiert mehr Inhalt darunter */
  content: ''; position: absolute; top: 1px; right: 2px;
  width: 4px; height: 54%; border-radius: 100vw; background: rgba(11,18,32,.24);
}
.ai-note {
  display: flex; gap: 10px;
  padding: 10px;
  background: var(--brand-paper);
  border-radius: 10px;
}
.ai-note-avi {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 10px;
  flex-shrink: 0;
}
.ai-note-head {
  font-size: 11px; color: var(--brand-muted);
  margin-bottom: 4px;
}
.ai-note-head strong { color: var(--brand-ink); font-weight: 600; }
.ai-note-text { font-size: 13px; line-height: 1.45; color: var(--brand-text); }

.ai-ai-panel {
  background: linear-gradient(135deg, rgba(51, 129, 246,.05), rgba(0, 98, 244,.10));
  border: 1px solid rgba(51, 129, 246,.18);
  border-radius: 12px;
  padding: 14px;
}
.ai-ai-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.ai-ai-ic {
  font-size: 16px;
  animation: aiSparkle 3s ease-in-out infinite;
}
@keyframes aiSparkle {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.2) rotate(15deg); }
}
.ai-ai-prompts { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.ai-ai-prompt {
  background: white;
  border: 1px solid var(--brand-surface);
  color: var(--brand-text);
  font-size: 11px; font-weight: 600;
  padding: 5px 10px;
  border-radius: 100vw;
  cursor: pointer;
}
.ai-ai-prompt-active {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}
.ai-ai-output {
  background: white;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--brand-text);
  margin-bottom: 12px;
  min-height: 110px;
  overflow: hidden;
}
.ai-ai-line {
  opacity: 0;
  animation: aiTypeIn .8s ease-out forwards;
}
.ai-ai-l-1 { animation-delay: .5s; }
.ai-ai-l-2 { animation-delay: 1.5s; }
.ai-ai-l-3 { animation-delay: 2.5s; }
.ai-ai-l-4 { animation-delay: 3.5s; }
@keyframes aiTypeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ai-ai-cursor {
  color: var(--brand-primary);
  animation: funnelCursorBlink 1s steps(2) infinite;
}
.ai-ai-send {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  font-size: 12px; font-weight: 700;
  padding: 9px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px -2px rgba(51, 129, 246,.4);
}

/* Mobile / Tablet collapse */
@media (max-width: 1023px) {
  .story-section { padding: 70px 0; }
  .story-block { padding: 40px 20px; min-height: 0; }
  .story-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: "text" "mockup" !important;
    gap: 30px;
  }
  .story-mockup-wrap { position: static; top: auto; }
  .story-h3 { font-size: clamp(24px, 5vw, 32px); }
  .ch-chip { font-size: 10px; padding: 4px 9px; }
  .channels-orbit { max-width: 320px; }
}

/* ==========================================================
   CASE STUDIES (unter Agentur)
   ========================================================== */
.case-studies-section {
  background: var(--brand-paper);
  padding: 100px 0 110px;
  position: relative;
}
.cs-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.cs-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cs-card {
  background: white;
  border: 1px solid var(--brand-surface);
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: 0 6px 18px -8px rgba(11,18,32,.08);
}
.cs-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-primary);
  box-shadow: 0 20px 40px -10px rgba(51, 129, 246,.20);
}
.cs-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1220;
  overflow: hidden;
}
.cs-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
/* Logo-Poster-Variante: für Cases ohne Video — großes Logo auf Brand-Gradient */
.cs-poster {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(51, 129, 246,.22), transparent 70%),
    linear-gradient(135deg, #3381F6 0%, #0062F4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cs-poster::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10) 0, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.08) 0, transparent 30%);
  pointer-events: none;
}
.cs-poster-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--brand-ink);
  font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100vw;
  z-index: 2;
}
.cs-poster-logo {
  /* GLEICHE HÖHE für alle Logos (width:auto) → optisch einheitlich.
     Höhe bewusst moderat, weil die Raster-Logos nur ~64px hoch sind → kein Blur-Upscaling
     (Marienhaus war bei height:60% riesig & unscharf). Sehr breite Logos werden per max-width gedeckelt. */
  height: 30%;
  width: auto;
  max-width: 56%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(0,0,0,.25));
  z-index: 1;
}
.cs-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.cs-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--brand-surface);
}
.cs-logo {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--brand-surface);
  padding: 6px;
  object-fit: contain;
  flex-shrink: 0;
}
.cs-name {
  font-size: 15px; font-weight: 700;
  color: var(--brand-ink); line-height: 1.2;
}
.cs-tag {
  font-size: 12px; color: var(--brand-muted);
  font-weight: 500; margin-top: 2px;
}
.cs-kpi-big {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
  line-height: 1.22;   /* mehr Zeilenluft: g-/p-Unterlängen werden nicht mehr von der Subline überlagert/abgeschnitten */
  padding-bottom: 1px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-kpi-sub {
  font-size: 13px;
  color: var(--brand-text);
  line-height: 1.5;
  margin-top: 6px;
}
.cs-stats {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--brand-surface);
}
.cs-stats li {
  display: flex; flex-direction: column;
  align-items: flex-start;
  font-size: 11px;
}
.cs-stat-v {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
  white-space: nowrap;
}
.cs-stat-l {
  font-size: 11px;
  color: var(--brand-muted);
  margin-top: 3px;
  letter-spacing: .02em;
}

.cs-footnote {
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  color: var(--brand-muted);
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 1023px) {
  .cs-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .case-studies-section { padding: 70px 0 80px; }
  .cs-grid { grid-template-columns: 1fr; gap: 18px; }
  .cs-body { padding: 18px; }
  .cs-stats { grid-template-columns: repeat(3, 1fr); }
  .cs-stat-v { font-size: 14px; }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-item {
  background: var(--brand-paper);
  border: 1px solid var(--brand-surface);
  border-radius: 14px; padding: 0;
  transition: all .25s var(--ease);
}
.faq-item[open] { background: white; box-shadow: 0 6px 18px -6px rgba(11,18,32,.08); border-color: var(--brand-primary); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; padding-right: 50px;
  font-weight: 600; color: var(--brand-ink); font-size: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 24px; font-weight: 400;
  color: var(--brand-primary); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  padding: 0 22px 20px; color: var(--brand-text);
  line-height: 1.65; animation: fadein .4s var(--ease);
}

/* ==========================================================
   CONTACT CARDS (Footer-CTA)
   ========================================================== */
.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px; padding: 28px;
  backdrop-filter: blur(6px);
  transition: all .3s var(--ease);
}
.contact-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(0, 98, 244,.4);
  transform: translateY(-2px);
}
.contact-link {
  display: flex; align-items: center; gap: 10px;
  color: white; text-decoration: none;
  padding: 8px 0; font-size: 14px;
  transition: color .2s;
}
.contact-link:hover { color: var(--brand-accent); }

/* Kontakt-Card mit Tom-Foto */
.contact-card-tom { padding: 28px 28px 24px; }
.contact-card-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.contact-photo {
  width: 104px; height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid rgba(0, 98, 244,.55);
  box-shadow: 0 8px 22px -4px rgba(0, 98, 244,.4), inset 0 0 0 2px rgba(255,255,255,.08);
  flex-shrink: 0;
  background: white;
}
@media (max-width: 540px) {
  .contact-photo { width: 84px; height: 84px; }
  .contact-card-tom { padding: 22px; }
}
.contact-links { display: flex; flex-direction: column; gap: 4px; padding-top: 6px; }

/* ==========================================================
   SCROLL-REVEAL (Intersection-Observer based)
   ========================================================== */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* ==========================================================
   KEYFRAMES (shared)
   ========================================================== */
@keyframes fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ==========================================================
   RESPONSIVE — Mobile-First Polish
   ========================================================== */

/* CTA-Button auf Mobile full-width, größerer Tap-Target */
@media (max-width: 639px) {
  .btn-cta {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }
  .btn-cta-lg {
    width: 100%;
    min-height: 60px;
    font-size: 17px;
    padding: 18px 24px !important;
  }
}

/* Tablet & Mobile: Dashboard-Mockup vereinfachen + Sections-Padding reduzieren */
@media (max-width: 1023px) {
  /* Sections atmen weniger auf kleinen Screens */
  section.py-20 { padding-top: 60px; padding-bottom: 60px; }
  section.lg\:py-28 { padding-top: 60px; padding-bottom: 60px; }
  .pt-16.lg\:pt-24 { padding-top: 40px; }
  .pb-24.lg\:pb-32 { padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .dashboard-mockup {
    transform: none;
    animation: none;
    margin-top: 24px;
    border-radius: 14px;
  }
  .mockup-chrome { padding: 6px 10px; }
  .mockup-dots span { width: 8px; height: 8px; }
  .mockup-url { font-size: 9px; padding: 2px 8px; }
  /* Kanban: auf 2 Columns auf Tablet, dann auf Mobile auf 1 horizontal-scroll */
  .kanban {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px; padding: 6px 10px 12px;
  }
  .kanban-col { min-height: 100px; padding: 6px; }
  .col-head { font-size: 9px; }
  .card { padding: 5px 6px; }
  .card .avi { width: 18px; height: 18px; font-size: 8px; }
  .card-name { font-size: 10px; }
  .card-meta { font-size: 8px; }

  .feature-card-stack { gap: 12px; max-width: none; }
  .fc { padding: 16px 18px; }
  .fc-1, .fc-2, .fc-3, .fc-4 { transform: none !important; }
  .fc-1:hover, .fc-2:hover, .fc-3:hover, .fc-4:hover { transform: translateY(-4px) !important; }
  .map-card { padding: 16px 16px 50px; }
  .de-map-wrap { max-width: 360px; }
  .pin-card { padding: 5px 9px; border-radius: 10px; }
  .pin-card .pin-city { font-size: 11px; }
  .pin-card .pin-host { font-size: 9px; }
  .map-badge { font-size: 11px; padding: 6px 12px; bottom: 12px; }

  /* Größere FAQ-Summary auf mobile (besser tappbar) */
  .faq-item summary { padding: 16px 18px; padding-right: 44px; font-size: 15px; }
  .faq-a { padding: 0 18px 16px; font-size: 14px; }

  /* Stat-Cards padding reduzieren */
  .stat-card { padding: 22px 20px; border-radius: 16px; }
  .stat-num { margin-bottom: 6px; }

  /* Persona + Feature-Rows kompakter */
  .persona-card { padding: 20px; }
  .persona-card .num { font-size: 24px; }
  .feature-row { padding: 18px 20px; grid-template-columns: 48px 1fr; }
  .fr-num { font-size: 20px; }

  /* Checkrows kompakter */
  .checkrow { padding: 14px 16px; }
  .pitch-li { padding: 14px 16px; font-size: 15px; }

  /* Step-Cards */
  .step-card { padding: 24px; }

  /* Contact-Cards */
  .contact-card { padding: 22px; }

  /* Logo-Marquee Gap kleiner + Logos kleiner */
  .marquee-track { gap: 36px; }
  .marquee-track img { height: 28px; max-width: 110px; }
}

/* Sehr kleine Screens (≤ 380px) */
@media (max-width: 380px) {
  .max-w-7xl.px-5 { padding-left: 16px; padding-right: 16px; }
  /* Quick-Facts (Hero KPIs) noch kompakter */
  .grid.grid-cols-2.sm\:grid-cols-4 > .rounded-2xl { padding: 10px; }
  .grid.grid-cols-2.sm\:grid-cols-4 > .rounded-2xl > .text-2xl { font-size: 20px; }
}

/* Custom "xs:" breakpoint via @media (für Headline-Größe) */
@media (min-width: 420px) {
  .xs\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .card-anim-a, .card-anim-b, .card-anim-c, .card-anim-d, .card-anim-e, .card-anim-f, .card-anim-g,
  .dashboard-mockup, .cta-ring, .dot-pulse::before,
  .tab-pipeline, .tab-campaigns, .tab-reporting,
  .view-pipeline, .view-campaigns, .view-reporting,
  .de-pin-link, .de-pin-aura, .de-pin-aura-2,
  .camp-bar-fill,
  .dash-cursor, .dash-scene-pipeline, .dash-scene-campaigns, .dash-scene-reporting,
  .dsn-item-pipeline, .dsn-item-campaigns, .dsn-item-reporting,
  .fab-line, .dash-rep-line {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .dash-scene-pipeline { opacity: 1; visibility: visible; }
  .dash-scene-campaigns, .dash-scene-reporting { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .card-anim-a, .card-anim-b, .card-anim-c, .card-anim-d, .card-anim-e, .card-anim-f, .card-anim-g,
  .dashboard-mockup, .cta-ring, .dot-pulse::before,
  .tab-pipeline, .tab-campaigns, .tab-reporting,
  .view-pipeline, .view-campaigns, .view-reporting,
  .de-pin-link, .de-pin-aura, .de-pin-aura-2,
  .camp-bar-fill,
  .dash-cursor, .dash-scene-pipeline, .dash-scene-campaigns, .dash-scene-reporting,
  .dsn-item-pipeline, .dsn-item-campaigns, .dsn-item-reporting,
  .fab-line, .dash-rep-line {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .dash-scene-pipeline { opacity: 1; visibility: visible; }
  .dash-scene-campaigns, .dash-scene-reporting { opacity: 0; visibility: hidden; }
}
