/* ═══════════════════════════════════════════
   EDGE AGENTS — Design System v4
   Helles Premium-Design · Exo 2
   Violett / Türkis / Gelb (Akzent)
   Leitidee: Ein Anruf wird zu einer erledigten Aufgabe.
   ═══════════════════════════════════════════ */

:root {
  /* Farben */
  --violet: #6D28D9;
  --violet-deep: #4A12A8;
  --violet-soft: #F1EAFE;
  --teal: #00B8AD;
  --teal-bright: #17E0D2;
  --teal-soft: #E0F9F7;
  --teal-deep: #00756E;
  --gold: #EAB308;
  --gold-deep: #A16207;
  --gold-soft: #FEF9C3;
  --ink: #0E1220;
  --ink-60: #4E5566;
  --ink-40: #8A90A0;
  --bg: #FFFFFF;
  --bg-alt: #F5F6FA;
  --surface: #FFFFFF;
  --line: #E3E6EE;
  --line-strong: #C9CEDC;

  /* Typo */
  --font-display: "Exo 2", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Form — viereckig, dezent abgerundet */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-crisp: 0 1px 2px rgba(14, 18, 32, .06), 0 8px 24px rgba(14, 18, 32, .07);
  --shadow-deep: 0 2px 6px rgba(14, 18, 32, .08), 0 24px 56px rgba(74, 18, 168, .14);

  --space-1: 8px; --space-2: 16px; --space-3: 24px;
  --space-4: 32px; --space-5: 48px; --space-6: 64px; --space-7: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { background: var(--bg); }
body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════ GLOBALER ANIMIERTER HINTERGRUND ═══════════ */
.site-bg {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
  background: var(--bg);
}
.site-bg__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px;
  opacity: .5;
  animation: siteGridPan 40s linear infinite;
}
@keyframes siteGridPan { to { background-position: 60px 60px, 60px 0; } }
.site-bg__aurora {
  position: absolute; border-radius: 50%;
  filter: blur(80px); mix-blend-mode: multiply; opacity: .55;
}
.site-bg__aurora--1 {
  width: 560px; height: 560px; top: -6%; right: -6%;
  background: radial-gradient(circle at 45% 45%, rgba(124,58,237,.5), transparent 62%);
  animation: siteA 26s ease-in-out infinite;
}
.site-bg__aurora--2 {
  width: 540px; height: 540px; bottom: -10%; left: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(0,184,173,.48), transparent 62%);
  animation: siteB 30s ease-in-out infinite;
}
.site-bg__aurora--3 {
  width: 460px; height: 460px; top: 42%; left: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(234,179,8,.32), transparent 60%);
  animation: siteC 34s ease-in-out infinite;
}
.site-bg__aurora--4 {
  width: 480px; height: 480px; top: 8%; left: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,.34), transparent 62%);
  animation: siteD 38s ease-in-out infinite;
}
@keyframes siteA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px,80px) scale(1.18); } }
@keyframes siteB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(100px,-70px) scale(1.14); } }
@keyframes siteC { 0%,100% { transform: translate(0,0) scale(1); opacity:.3; } 50% { transform: translate(-80px,-60px) scale(1.26); opacity:.55; } }
@keyframes siteD { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,90px) scale(1.2); } }

/* Aufsteigende Signal-Partikel — seitenweit */
.site-bg__particles { position: absolute; inset: 0; }
.site-bg__particles i {
  position: absolute; bottom: -12px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 7px 1px rgba(0,184,173,.3);
  opacity: 0;
  animation: siteRise 16s linear infinite;
}
.site-bg__particles i:nth-child(1){ left: 6%;  animation-delay: 0s; }
.site-bg__particles i:nth-child(2){ left: 14%; animation-delay: 5s; background: var(--violet); box-shadow: 0 0 7px 1px rgba(124,58,237,.3); }
.site-bg__particles i:nth-child(3){ left: 22%; animation-delay: 10s; }
.site-bg__particles i:nth-child(4){ left: 30%; animation-delay: 2.5s; background: var(--gold); box-shadow: 0 0 7px 1px rgba(234,179,8,.3); }
.site-bg__particles i:nth-child(5){ left: 38%; animation-delay: 7.5s; }
.site-bg__particles i:nth-child(6){ left: 46%; animation-delay: 12.5s; background: var(--violet); box-shadow: 0 0 7px 1px rgba(124,58,237,.3); }
.site-bg__particles i:nth-child(7){ left: 54%; animation-delay: 3.5s; }
.site-bg__particles i:nth-child(8){ left: 62%; animation-delay: 9s; background: var(--gold); box-shadow: 0 0 7px 1px rgba(234,179,8,.3); }
.site-bg__particles i:nth-child(9){ left: 70%; animation-delay: 14s; }
.site-bg__particles i:nth-child(10){ left: 78%; animation-delay: 1.5s; background: var(--violet); box-shadow: 0 0 7px 1px rgba(124,58,237,.3); }
.site-bg__particles i:nth-child(11){ left: 86%; animation-delay: 6.5s; }
.site-bg__particles i:nth-child(12){ left: 94%; animation-delay: 11.5s; background: var(--gold); box-shadow: 0 0 7px 1px rgba(234,179,8,.3); }
.site-bg__particles i:nth-child(13){ left: 10%; animation-delay: 13s; }
.site-bg__particles i:nth-child(14){ left: 50%; animation-delay: 4.5s; }
.site-bg__particles i:nth-child(15){ left: 66%; animation-delay: 15s; background: var(--violet); box-shadow: 0 0 7px 1px rgba(124,58,237,.3); }
.site-bg__particles i:nth-child(16){ left: 82%; animation-delay: 8.5s; }
@keyframes siteRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  8% { opacity: .42; }
  88% { opacity: .22; }
  100% { transform: translateY(-100vh) scale(.4); opacity: 0; }
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.01em; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.grad-text {
  background: linear-gradient(95deg, var(--violet) 5%, var(--teal) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--violet);
}
.grad-text::after { content: "_"; -webkit-text-fill-color: var(--gold); color: var(--gold); font-weight: 700; animation: caretBlink 1.2s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.mobile-copy { display: none; }

/* ── Buttons: viereckig, abgerundete Ecken ── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  letter-spacing: .01em;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, background-position .25s ease;
  min-height: 48px;
}
.btn:active { transform: scale(.97); }
.btn--sm { padding: 9px 18px; font-size: 13.5px; min-height: 44px; }
.btn--primary {
  background: linear-gradient(115deg, var(--violet-deep), var(--violet) 45%, var(--teal));
  background-size: 170% 100%; background-position: 0 0;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 6px 20px rgba(0, 184, 173, .28);
}
.btn--primary::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 6px; height: 2px;
  background: var(--gold); border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.btn--primary:hover { background-position: 95% 0; transform: translateY(-2px); }
.btn--primary:hover::after { transform: scaleX(1); }
.btn--ghost {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--violet-deep); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn--light:hover { transform: translateY(-2px); }

/* ── Eyebrow: Gradient-Text ── */
.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  letter-spacing: .01em;
  background: linear-gradient(95deg, var(--teal-deep) 15%, var(--violet) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--violet);
  margin-bottom: var(--space-2);
}
@keyframes dotPulse { 0%,100% { opacity: 1;} 50% { opacity: .3;} }

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav--scrolled { box-shadow: 0 4px 20px rgba(14,18,32,.07); }
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  transition: padding .25s ease;
}
.nav--scrolled .nav__inner { padding-top: 8px; padding-bottom: 8px; }
.nav__brand { display: flex; align-items: center; gap: 12px; overflow: visible; }
.brand-mark { width: 42px; height: 42px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -.01em;
  display: flex; align-items: center; line-height: 1.22;
  padding-bottom: 2px;
  color: var(--violet-deep);
}
.brand-grad {
  background: linear-gradient(95deg, var(--violet) 0%, var(--teal) 55%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--teal);
}
.nav__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-menu { position: relative; }
.nav-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(14,18,32,.06);
  transition: border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.nav-menu__toggle:hover,
.nav-menu.is-open .nav-menu__toggle {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: 0 10px 26px rgba(109,40,217,.12);
}
.nav-menu__toggle svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transition: transform .18s ease;
}
.nav-menu.is-open .nav-menu__toggle svg { transform: rotate(180deg); }
.nav-menu__icon {
  display: grid;
  gap: 3px;
  width: 18px;
}
.nav-menu__icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.nav-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 640px;
  max-width: calc(100vw - 32px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(14,18,32,.18);
  display: grid;
  grid-template-columns: 1.1fr .95fr .85fr;
  gap: 10px;
  transform-origin: top right;
  animation: menuIn .18s ease both;
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.nav-menu__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-menu__group p {
  margin: 0 0 4px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
}
.nav-menu__group a {
  display: block;
  min-height: 0;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.nav-menu__group a:hover,
.nav-menu__group a.is-active {
  background: linear-gradient(135deg, rgba(111,45,255,.08), rgba(0,184,173,.08));
  border-color: rgba(111,45,255,.18);
  transform: translateY(-1px);
}
.nav-menu__group a b {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
}
.nav-menu__group a span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-60);
}

/* ═══════════ HERO ═══════════ */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Aurora-Blobs — langsam driftend */
.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: multiply;
  opacity: .5;
}
.aurora--1 {
  width: 560px; height: 560px; top: -160px; right: -80px;
  background: radial-gradient(circle at 40% 40%, rgba(124,58,237,.5), transparent 62%);
  animation: auroraA 22s ease-in-out infinite;
}
.aurora--2 {
  width: 500px; height: 500px; bottom: -200px; left: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(0,184,173,.45), transparent 62%);
  animation: auroraB 26s ease-in-out infinite;
}
.aurora--3 {
  width: 320px; height: 320px; top: 30%; left: 44%;
  background: radial-gradient(circle at 50% 50%, rgba(234,179,8,.3), transparent 60%);
  animation: auroraC 30s ease-in-out infinite;
}
@keyframes auroraA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,50px) scale(1.12); } }
@keyframes auroraB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,-40px) scale(1.08); } }
@keyframes auroraC { 0%,100% { transform: translate(0,0) scale(1); opacity:.3; } 50% { transform: translate(-40px,-30px) scale(1.2); opacity:.5; } }

/* Wanderndes Präzisions-Grid */
.hero__grid {
  position: absolute; inset: -2px;
  background-image:
    radial-gradient(circle 2px at center, var(--line-strong) 1.2px, transparent 1.4px),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 64px 64px;
  opacity: .55;
  mask-image: radial-gradient(ellipse 85% 75% at 60% 35%, rgba(0,0,0,.9), transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 60% 35%, rgba(0,0,0,.9), transparent 78%);
  animation: gridPan 32s linear infinite;
}
@keyframes gridPan { to { background-position: 64px 64px, 64px 0, 0 64px; } }

/* Scan-Lichtstrahl */
.hero__beam {
  position: absolute; top: 0; bottom: 0; width: 34%;
  left: -34%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55) 45%, rgba(0,184,173,.12) 55%, transparent);
  transform: skewX(-14deg);
  animation: beamSweep 9s ease-in-out infinite;
}
@keyframes beamSweep { 0% { left: -40%; } 55%,100% { left: 130%; } }

/* Aufsteigende Signal-Partikel */
.hero__particles { position: absolute; inset: 0; }
.hero__particles i {
  position: absolute; bottom: -10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px 1px rgba(0,184,173,.5);
  opacity: 0;
  animation: rise 12s linear infinite;
}
.hero__particles i:nth-child(1){ left: 8%; animation-delay: 0s; }
.hero__particles i:nth-child(2){ left: 18%; animation-delay: 2.2s; background: var(--violet); box-shadow: 0 0 8px 1px rgba(124,58,237,.5); }
.hero__particles i:nth-child(3){ left: 27%; animation-delay: 5s; }
.hero__particles i:nth-child(4){ left: 39%; animation-delay: 7.5s; background: var(--gold); box-shadow: 0 0 8px 1px rgba(234,179,8,.5); }
.hero__particles i:nth-child(5){ left: 48%; animation-delay: 1.2s; }
.hero__particles i:nth-child(6){ left: 57%; animation-delay: 9s; background: var(--violet); box-shadow: 0 0 8px 1px rgba(124,58,237,.5); }
.hero__particles i:nth-child(7){ left: 66%; animation-delay: 3.6s; }
.hero__particles i:nth-child(8){ left: 74%; animation-delay: 6.4s; background: var(--gold); box-shadow: 0 0 8px 1px rgba(234,179,8,.5); }
.hero__particles i:nth-child(9){ left: 83%; animation-delay: 10.5s; }
.hero__particles i:nth-child(10){ left: 90%; animation-delay: 4.4s; background: var(--violet); box-shadow: 0 0 8px 1px rgba(124,58,237,.5); }
.hero__particles i:nth-child(11){ left: 13%; animation-delay: 8.2s; }
.hero__particles i:nth-child(12){ left: 62%; animation-delay: 11s; }
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: .9; }
  85% { opacity: .5; }
  100% { transform: translateY(-88vh) scale(.4); opacity: 0; }
}

.hero__spark {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 3px rgba(234,179,8,.5);
  animation: sparkFloat 9s ease-in-out infinite;
}
.hero__spark--1 { top: 22%; left: 46%; animation-delay: 0s; }
.hero__spark--2 { top: 64%; left: 12%; animation-delay: 3s; width: 5px; height: 5px; }
.hero__spark--3 { top: 38%; right: 8%; animation-delay: 6s; width: 5px; height: 5px; }
@keyframes sparkFloat { 0%,100% { transform: translateY(0); opacity: .8; } 50% { transform: translateY(-18px); opacity: .35; } }
.hero__inner {
  position: relative; z-index: 1; max-width: 1240px; margin: 0 auto;
  padding: var(--space-7) 24px var(--space-6);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-6); align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 66px); font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: var(--space-3);
}
.hero__sub { font-size: 18px; color: var(--ink-60); max-width: 540px; margin-bottom: var(--space-4); }
.hero__cta { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-2); }
.hero__minor {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--teal-deep);
  margin-bottom: var(--space-4);
}
.hero__minor:hover { color: var(--violet); }
.hero__trust { list-style: none; display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-60);
}
.mobile-flow-card { display: none; }
.trust-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  background: var(--teal-soft);
  display: grid; place-items: center;
}
.trust-check svg { width: 12px; height: 12px; fill: var(--teal-deep); }

/* Hero-Visual: Command Center + Panther */
.hero__visual { position: relative; min-height: 460px; display: flex; align-items: center; }
.hero-panther {
  position: absolute; right: -6px; bottom: -2px;
  width: 150px;
  opacity: .92;
  z-index: 3;
  filter: drop-shadow(0 14px 22px rgba(74, 18, 168, .22));
  animation: pantherIn 1s cubic-bezier(.25,.7,.3,1) both .6s;
}
@keyframes pantherIn { from { opacity: 0; transform: translateX(40px); } to { opacity: .92; transform: none; } }
.console {
  position: relative; z-index: 2;
  width: 100%; max-width: 470px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(124,58,237,.06);
  animation: consoleFloat 7s ease-in-out infinite;
}
.console__aura {
  position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(120deg, rgba(124,58,237,.5), rgba(0,184,173,.5), rgba(234,179,8,.4));
  filter: blur(16px); opacity: .4;
  animation: auraPulse 5s ease-in-out infinite;
}
@keyframes consoleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes auraPulse { 0%,100% { opacity: .28; } 50% { opacity: .5; } }
.console::before, .console::after,
.flow__stage::before, .flow__stage::after {
  content: ""; position: absolute; width: 22px; height: 22px; pointer-events: none;
}
.console::before { top: -7px; left: -7px; border-top: 2.5px solid var(--violet); border-left: 2.5px solid var(--violet); }
.console::after { bottom: -7px; right: -7px; border-bottom: 2.5px solid var(--teal); border-right: 2.5px solid var(--teal); }
.console__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em;
}
.console__status { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); animation: dotPulse 1.8s infinite; }
.console__title { color: var(--ink-60); }
.console__id { margin-left: auto; color: var(--gold-deep); }
.console__rows { padding: 6px 0; }
.c-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px dashed var(--line);
  animation: rowIn .5s ease both;
}
.c-row:nth-child(1) { animation-delay: .2s; }
.c-row:nth-child(2) { animation-delay: 1s; }
.c-row:nth-child(3) { animation-delay: 1.8s; }
.c-row:nth-child(4) { animation-delay: 2.6s; }
@keyframes rowIn { from { opacity: 0; transform: translateX(-10px);} to { opacity: 1; transform: none;} }
.c-time { font-family: var(--font-mono); font-size: 11px; color: var(--ink-40); padding-top: 3px; flex-shrink: 0; }
.c-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 4px; flex-shrink: 0; margin-top: 1px;
}
.c-tag--teal { background: var(--teal-soft); color: var(--teal-deep); }
.c-tag--violet { background: var(--violet-soft); color: var(--violet); }
.c-tag--gold { background: var(--gold-soft); color: var(--gold-deep); }
.c-body b { font-family: var(--font-display); font-size: 14.5px; display: block; line-height: 1.3; }
.c-body small { color: var(--ink-40); font-size: 12.5px; }
.console__wave {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
}
.console__wave-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--teal); }
.hero-waves { display: flex; align-items: center; gap: 4px; height: 34px; }
.hero-waves span {
  width: 4px; border-radius: 2px; height: 10px;
  background: linear-gradient(180deg, var(--violet), var(--teal));
  animation: wave 1.2s ease-in-out infinite;
}
.hero-waves span:nth-child(2n) { animation-delay: .14s; }
.hero-waves span:nth-child(3n) { animation-delay: .28s; }
.hero-waves span:nth-child(4n) { animation-delay: .42s; }
.hero-waves span:nth-child(5n) { animation-delay: .56s; }
@keyframes wave { 0%,100% { height: 8px;} 50% { height: 30px;} }

/* KUNDEN-CTA */
.missed {
  max-width: 1120px;
  margin: 38px auto 0;
  padding: 0 24px var(--space-4);
  position: relative;
  z-index: 3;
}
.missed__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  overflow: hidden;
  padding: clamp(14px, 1.7vw, 21px);
  border: 1px solid #f7d866;
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255, 238, 150, .92), rgba(255, 252, 235, .96) 42%, rgba(229, 255, 251, .92)),
    repeating-linear-gradient(135deg, rgba(112, 46, 255, .06) 0 1px, transparent 1px 18px);
  box-shadow: 0 24px 70px rgba(146, 93, 0, .13), 0 0 0 1px rgba(255,255,255,.7) inset;
}
.missed__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #5b21d6;
  background: linear-gradient(135deg, #fff8c9, #f0e7ff 58%, #dffffb);
  box-shadow: 0 14px 30px rgba(91, 33, 214, .15);
}
.missed__mark svg { width: 22px; height: 22px; fill: currentColor; }
.missed__kicker {
  margin: 0 0 5px;
  color: #9a6a00;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.missed__copy h2 {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 29px);
  line-height: 1.08;
  font-weight: 900;
  color: var(--ink);
}
.missed__copy p:last-child {
  max-width: 600px;
  margin: 7px 0 0;
  color: var(--ink-60);
  font-size: 13.5px;
  line-height: 1.55;
}
.missed__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(82px, 1fr));
  gap: 8px;
}
.missed__stats span {
  min-width: 94px;
  padding: 10px 12px;
  border: 1px solid rgba(91, 33, 214, .16);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}
.missed__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  color: var(--violet);
}
.missed__stats small {
  display: block;
  margin-top: 4px;
  color: var(--ink-60);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.missed__btn {
  min-width: 126px;
  min-height: 46px;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(112, 46, 255, .24);
}

/* ═══════════ PROBLEM: VORHER/NACHHER ═══════════ */
.problem { max-width: 1240px; margin: 0 auto; padding: 30px 24px 60px; }
.problem__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-6); align-items: center; }
.problem__copy h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; margin-bottom: var(--space-2); }
.problem__text { color: var(--ink-60); font-size: 16.5px; max-width: 480px; margin-bottom: var(--space-4); }
.problem__visual {
  display: flex; align-items: stretch; gap: var(--space-2);
}
.pcompare {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.pcompare--before { opacity: .82; }
.pcompare--after {
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(0,184,173,.12);
}
.pcompare__head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.pdot { width: 9px; height: 9px; border-radius: 50%; }
.pdot--red { background: #EF4444; }
.pdot--teal { background: var(--teal); animation: dotPulse 1.8s infinite; }
.pcompare ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pcompare li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-60); }
.pcompare--after li { animation: rowIn .5s ease both; }
.pcompare--after li:nth-child(1) { animation-delay: .15s; }
.pcompare--after li:nth-child(2) { animation-delay: .3s; }
.pcompare--after li:nth-child(3) { animation-delay: .45s; }
.pcompare--after li:nth-child(4) { animation-delay: .6s; }
.pcompare--after li:nth-child(5) { animation-delay: .75s; }
.pmark {
  width: 19px; height: 19px; border-radius: 5px; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.pmark--x {
  position: relative;
  background: #FEE2E2;
  color: #B91C1C;
  font-size: 0;
}
.pmark--x::before,
.pmark--x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.pmark--x::before { transform: translate(-50%, -50%) rotate(45deg); }
.pmark--x::after { transform: translate(-50%, -50%) rotate(-45deg); }
.pmark--ok { background: var(--teal-soft); }
.pmark--ok svg { width: 11px; height: 11px; fill: var(--teal-deep); }
.pcompare__arrow {
  align-self: center; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(109,40,217,.3);
}
.pcompare__arrow svg { width: 18px; height: 18px; fill: #fff; }

/* ═══════════ SECTIONS ═══════════ */
.section { max-width: 1240px; margin: 0 auto; padding: 64px 24px; }
.section + .section { padding-top: 36px; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.section__head h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; letter-spacing: -.015em; margin-bottom: var(--space-2); }
.section__sub { color: var(--ink-60); font-size: 17px; }

/* ═══════════ DEMO: SHOWCASE ═══════════ */
.demo { position: relative; border-top: 1px solid var(--line); padding-bottom: 16px; }
.demo__bgwaves {
  position: absolute; left: 0; right: 0; top: 40%; height: 320px;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(109,40,217,.05), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(0,184,173,.05) 34px 35px);
  pointer-events: none;
}
.demo__tabs {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: var(--space-5);
  position: relative;
}
.demo-tab {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  padding: 11px 20px; min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface); color: var(--ink-60);
  transition: border-color .15s ease, color .15s ease;
}
.demo-tab.is-active {
  border-color: var(--violet);
  color: var(--violet-deep);
  background: var(--violet-soft);
  box-shadow: 0 4px 14px rgba(109,40,217,.14);
}
.demo-tab[aria-disabled="true"] { cursor: default; opacity: .65; }
.demo-tab__soon {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
  background: var(--gold-soft); color: var(--gold-deep);
  padding: 2px 7px; border-radius: 4px;
}
.demo__stage {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-5);
  align-items: center; justify-content: center;
}

.iphone { position: relative; }
.iphone::after { /* Lichtreflex */
  content: ""; position: absolute; inset: 10px;
  border-radius: 44px;
  background: linear-gradient(115deg, rgba(255,255,255,.14) 0%, transparent 22%);
  pointer-events: none; z-index: 5;
}
.iphone__frame {
  width: 320px; height: 656px;
  background: #101014;
  border-radius: 52px;
  padding: 10px;
  box-shadow: var(--shadow-deep), inset 0 0 0 2px #3a3a42;
  position: relative;
}
.iphone__frame::before {
  content: ""; position: absolute; left: -3px; top: 140px; width: 3px; height: 64px;
  background: #2c2c33; border-radius: 2px 0 0 2px;
  box-shadow: 0 84px 0 #2c2c33;
}
.iphone__frame::after {
  content: ""; position: absolute; right: -3px; top: 180px; width: 3px; height: 92px;
  background: #2c2c33; border-radius: 0 2px 2px 0;
}
.iphone__screen {
  width: 100%; height: 100%;
  border-radius: 42px; overflow: hidden; position: relative;
  background: linear-gradient(175deg, #121030 0%, #1C1442 48%, #072F2C 100%);
  color: #fff;
}
.iphone__island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 30px; background: #000; border-radius: 18px; z-index: 5;
}
.iphone__statusbar {
  position: absolute; top: 14px; left: 0; right: 0; z-index: 4;
  display: flex; justify-content: space-between; padding: 0 26px;
  font-size: 14px; font-weight: 600;
}
.sb-icons { display: flex; align-items: center; gap: 6px; }
.sb-icons svg { height: 12px; width: auto; fill: #fff; }

.callscreen {
  position: absolute; inset: 0; padding: 74px 22px 30px;
  display: none; flex-direction: column;
}
.callscreen.is-active { display: flex; animation: screenIn .35s ease; }
.callscreen--active.is-active {
  display: grid;
  grid-template-rows: 48px 142px 188px 66px;
  row-gap: 10px;
  padding-bottom: 28px;
}
@keyframes screenIn { from { opacity: 0; transform: scale(1.03);} to { opacity: 1; transform: scale(1);} }

.caller { text-align: center; }
.caller__label { font-size: 14px; opacity: .75; letter-spacing: .04em; margin-bottom: 18px; }
.caller__avatar {
  width: 92px; height: 92px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
}
.caller__name { font-size: 27px; font-weight: 600; }
.caller__num { font-size: 14px; opacity: .65; margin-top: 6px; }
.caller--small { margin-bottom: 0; }
.caller--small .caller__name { font-size: 21px; }
.caller__timer { font-size: 14px; opacity: .7; font-variant-numeric: tabular-nums; margin-top: 4px; }

.incoming-actions {
  margin-top: auto;
  display: flex; justify-content: space-between; padding: 0 18px 12px;
}
.in-action { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; opacity: .9; }

.ring-btn {
  width: 72px; height: 72px; border-radius: 50%;
  min-width: 72px; min-height: 72px;
  border: 0; padding: 0; aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  transition: transform .15s ease, filter .15s ease;
}
.ring-btn svg { width: 32px; height: 32px; fill: #fff; }
.ring-btn:hover { transform: scale(1.07); }
.ring-btn:active { transform: scale(.94); }
.ring-btn--decline { background: #FF3B30; }
.ring-btn--decline svg { transform: rotate(135deg); }
.ring-btn--accept { background: #34C759; animation: acceptPulse 1.6s ease-in-out infinite; }
@keyframes acceptPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,199,89,.55); }
  50% { box-shadow: 0 0 0 16px rgba(52,199,89,0); }
}
.ring-btn--end {
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  margin: 0 auto;
  align-self: center;
  flex: 0 0 auto;
}

.agent-voice {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 16px 16px 14px;
  text-align: center;
  margin-bottom: 0;
  backdrop-filter: blur(8px);
  min-height: 142px;
}
.voice-bars { display: flex; justify-content: center; align-items: center; gap: 4px; height: 32px; margin-bottom: 8px; }
.voice-bars span {
  width: 4px; border-radius: 2px; height: 8px;
  background: linear-gradient(180deg, var(--teal-bright), var(--violet));
}
.is-speaking .voice-bars span { animation: wave .9s ease-in-out infinite; }
.is-speaking .voice-bars span:nth-child(2n) { animation-delay: .12s; }
.is-speaking .voice-bars span:nth-child(3n) { animation-delay: .24s; }
.is-speaking .voice-bars span:nth-child(4n) { animation-delay: .36s; }
.is-speaking .voice-bars span:nth-child(5n) { animation-delay: .48s; }
.voice-bars--sm { height: 24px; gap: 3px; margin: 8px 0; }
.voice-bars--sm span { width: 3px; }
.agent-voice__label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  opacity: .85; display: flex; align-items: center; justify-content: center; gap: 7px;
  font-weight: 600;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); animation: dotPulse 1.4s infinite; }
.agent-voice__text {
  font-size: 12.6px;
  margin-top: 8px;
  min-height: 52px;
  max-height: 52px;
  overflow: hidden;
  opacity: .95;
  line-height: 1.32;
}

.callpad {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 10px;
  padding: 0 6px; margin-top: 0;
  flex: 0 0 auto;
  align-self: stretch;
}
.pad-btn {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.85);
  min-width: 0;
}
.pad-btn svg {
  width: 62px; height: 62px; padding: 17px;
  min-width: 62px; min-height: 62px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  fill: #fff;
  transition: background .15s ease, transform .15s ease;
}
.pad-btn:hover svg { background: rgba(255,255,255,.24); }
.pad-btn:active svg { transform: scale(.92); }
.pad-btn.is-on svg { background: #fff; fill: var(--ink); }
.pad-btn--disabled {
  cursor: default;
  opacity: .72;
  pointer-events: none;
}
.pad-btn--disabled svg {
  background: rgba(255,255,255,.1);
}

.callscreen--ended { justify-content: center; text-align: center; }
.ended-box { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ended-check {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  display: grid; place-items: center;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
.ended-check svg { width: 38px; height: 38px; fill: #fff; }
@keyframes popIn { from { transform: scale(.3); opacity: 0;} to { transform: scale(1); opacity: 1;} }
.ended-box h3 { font-size: 22px; }
.ended-box p { font-size: 14.5px; opacity: .85; line-height: 1.55; }
.ended-box b { color: var(--teal-bright); }

/* Live-Status neben dem Telefon */
.demo__copy { position: relative; }
.demo__copy h3 { font-size: 24px; font-weight: 700; margin-bottom: var(--space-3); }
.livestatus { list-style: none; display: flex; flex-direction: column; }
.lstep {
  position: relative;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0 14px 4px;
  opacity: .55;
  transition: opacity .3s ease;
}
.lstep::before {
  content: ""; position: absolute; left: 12px; top: 40px; bottom: -6px;
  width: 2px; background: var(--line);
}
.lstep:last-child::before { display: none; }
.lstep__dot {
  position: relative; z-index: 1;
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  margin-top: 3px; margin-left: 3px;
  background: var(--surface);
  border: 2px solid var(--line-strong);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.lstep b { font-family: var(--font-display); font-size: 16px; display: block; line-height: 1.3; }
.lstep small { color: var(--ink-60); font-size: 13.5px; }
.lstep.is-active { opacity: 1; }
.lstep.is-active .lstep__dot {
  border-color: var(--teal);
  background: var(--teal-soft);
  box-shadow: 0 0 0 5px rgba(0,184,173,.15);
  animation: dotPulse 1.4s infinite;
}
.lstep.is-done { opacity: .9; }
.lstep.is-done .lstep__dot {
  border-color: var(--teal);
  background: var(--teal);
}
.subsite .lstep.is-active .lstep__dot {
  color: #EFFFFD;
  background: linear-gradient(135deg, rgba(124,58,237,.55), rgba(23,224,210,.42));
  border-color: rgba(34,211,238,.65);
  box-shadow: 0 0 0 5px rgba(34,211,238,.10), 0 12px 26px rgba(23,224,210,.18);
}
.subsite .lstep.is-done .lstep__dot {
  color: #EFFFFD;
  background: rgba(23,224,210,.22);
  border-color: rgba(23,224,210,.45);
}
.demo-note {
  margin-top: var(--space-4);
  border: 1px solid rgba(0,184,173,.28); border-left: 4px solid #22c55e;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(220,252,231,.96), rgba(224,249,247,.96));
  padding: 14px 18px;
  font-size: 14.5px; color: #166534;
  box-shadow: 0 12px 28px rgba(34,197,94,.13);
  position: relative;
}
.demo-note::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,.16);
  animation: acceptPulse 1.4s ease-in-out infinite;
  vertical-align: 1px;
}
.demo-note b { color: #14532d; }

/* ═══════════ FLOW: ANRUF → KALENDER ═══════════ */
.flow { position: relative; }
.flow__stage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  min-height: 500px;
  padding: 40px var(--space-4) 112px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.flow__stage::before { top: -7px; left: -7px; border-top: 2.5px solid var(--violet); border-left: 2.5px solid var(--violet); }
.flow__stage::after { bottom: -7px; right: -7px; border-bottom: 2.5px solid var(--teal); border-right: 2.5px solid var(--teal); }
.flow__bgclip {
  position: absolute; inset: 0; border-radius: var(--radius); overflow: hidden; pointer-events: none;
}
.flow__bgclip::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 2px at center, var(--line-strong) 1.2px, transparent 1.4px),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px, 56px 56px;
  background-position: 28px 28px, 0 0, 0 0;
  opacity: .55;
}

.flow__link {
  position: absolute; left: 50%; top: 46%;
  transform: translate(-50%, -60%);
  width: min(46%, 420px); height: 40px;
  opacity: 0; transition: opacity .5s ease;
  z-index: 1;
}
.flow__link path { stroke: var(--teal); stroke-width: 2; stroke-dasharray: 6 7; }
.flow__link circle { fill: var(--gold); }
.flow__stage.step-linked .flow__link { opacity: 1; }
.flow__stage.step-linked .flow__link path { animation: dashMove 1.2s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -26; } }

.flow-phone {
  position: relative; z-index: 2;
  width: 190px; height: 390px;
  background: #101014; border-radius: 34px; padding: 7px;
  box-shadow: var(--shadow-deep);
  transform: translateX(0) scale(1);
  transition: transform 1s cubic-bezier(.5, 0, .2, 1);
  flex-shrink: 0;
}
.flow-phone__screen {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden; position: relative;
  background: linear-gradient(175deg, #121030, #1C1442 50%, #072F2C);
  color: #fff; text-align: center;
}
.flow-phone__island {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 18px; background: #000; border-radius: 10px; z-index: 3;
}
.fp-incoming, .fp-active {
  position: absolute; inset: 0; padding: 44px 14px 22px;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transition: opacity .4s ease;
}
.fp-incoming.is-on, .fp-active.is-on { opacity: 1; }
.fp-label { font-size: 10.5px; opacity: .7; letter-spacing: .05em; margin-bottom: 12px; }
.fp-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  margin-bottom: 10px;
}
.fp-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.fp-timer { font-size: 11px; opacity: .65; font-variant-numeric: tabular-nums; margin-top: 2px; }
.fp-ringrow { margin-top: auto; display: flex; gap: 44px; }
.fp-ring { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; }
.fp-ring svg { width: 20px; height: 20px; fill: #fff; }
.fp-ring--red { background: #FF3B30; }
.fp-ring--red svg { transform: rotate(135deg); }
.fp-ring--green { background: #34C759; }
.fp-ring--pulse { animation: acceptPulse 1.5s infinite; }
.fp-bubble {
  background: rgba(255,255,255,.12); border-radius: 10px 10px 10px 3px;
  font-size: 11px; padding: 8px 10px; margin-top: 10px; text-align: left;
  line-height: 1.4; align-self: flex-start; max-width: 92%;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.fp-bubble--agent {
  background: linear-gradient(120deg, rgba(109,40,217,.6), rgba(0,184,173,.45));
  border-radius: 10px 10px 3px 10px; align-self: flex-end;
}
.fp-bubble.is-on { opacity: 1; transform: translateY(0); }

.flow-laptop {
  position: relative; z-index: 2;
  width: min(440px, 42vw);
  margin-left: var(--space-6);
  opacity: 0; transform: translateX(60px) scale(.96);
  transition: opacity .8s ease, transform .8s cubic-bezier(.5, 0, .2, 1);
}
.flow__stage.step-laptop .flow-laptop { opacity: 1; transform: translateX(0) scale(1); }
.flow__stage.step-phone-left .flow-phone { transform: translateX(-40px) scale(.94); }
.laptop__screen {
  background: var(--surface);
  border: 2px solid var(--line-strong); border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-crisp);
  position: relative;
}
.laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #E4E6EF, #C4C8D6);
  border-radius: 0 0 14px 14px;
  position: relative;
}
.laptop__base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 5px; background: #AEB3C4; border-radius: 0 0 8px 8px;
}
.laptop__topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px; border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--r { background: #FF5F57; } .dot--y { background: #FEBC2E; } .dot--g { background: #28C840; }
.laptop__title { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--ink-60); }

.calendar { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.cal-row { display: flex; align-items: stretch; gap: 10px; }
.cal-time { font-family: var(--font-mono); font-size: 11px; color: var(--ink-40); width: 42px; padding-top: 6px; flex-shrink: 0; }
.cal-slot { flex: 1; min-height: 40px; border-top: 1px dashed var(--line-strong); padding-top: 3px; }
.cal-event {
  border-radius: var(--radius-sm); padding: 7px 12px; font-size: 12.5px;
  display: flex; flex-direction: column; gap: 1px;
}
.cal-event--muted { background: var(--teal-soft); color: var(--teal-deep); border-left: 3px solid var(--teal); }
.cal-event--new {
  background: var(--violet-soft); color: var(--violet-deep);
  border-left: 3px solid var(--violet);
  transform-origin: top left;
  transform: scaleY(0); opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.3,.64,1), opacity .3s ease;
  min-height: 44px;
}
.cal-event--new b { font-size: 13px; }
.cal-event--new small { color: var(--ink-60); font-size: 11.5px; }
.flow__stage.step-event .cal-event--new { transform: scaleY(1); opacity: 1; }
.cal-event--new b::after {
  content: ""; display: inline-block; width: 2px; height: 12px;
  background: var(--violet); margin-left: 2px; vertical-align: -1px;
  animation: caretBlink 1s steps(1) infinite;
}
.flow__stage.step-done .cal-event--new b::after { display: none; }

.cal-toast {
  position: absolute; right: 12px; bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--teal-bright);
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  padding: 9px 14px; border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(14,18,32,.35);
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.4,.64,1);
}
.cal-toast svg { width: 15px; height: 15px; fill: var(--teal-bright); }
.flow__stage.step-done .cal-toast { opacity: 1; transform: translateY(0); }

/* Status-Chips der Ablaufanimation */
.flow__meta {
  position: absolute; left: 0; right: 0; bottom: 76px;
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 0 var(--space-3);
  z-index: 3;
}
.fchip {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--ink-40);
  opacity: .35;
  transform: translateY(3px);
  transition: opacity .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.fchip.is-on { opacity: 1; transform: translateY(0); border-color: var(--violet); color: var(--violet-deep); }
.fchip--4.is-on { border-color: var(--teal); color: var(--teal-deep); }
.fchip--5.is-on { border-color: var(--gold); color: var(--gold-deep); }

.flow__caption {
  position: absolute; left: 0; right: 0; bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  flex-wrap: wrap;
  z-index: 3;
}
.flow__caption p {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-crisp);
  padding: 11px 22px; border-radius: var(--radius);
  min-width: 320px; justify-content: center;
  transition: opacity .3s ease;
}
.flow__caption-dot {
  width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  transform: rotate(45deg);
  animation: dotPulse 1.8s ease-in-out infinite;
}

/* ═══════════ STIMME ═══════════ */
.voice { border-top: 1px solid var(--line); }
.voice__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-6); align-items: start; }
.voice__profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
.vprofile {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-2) var(--space-3);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vprofile:hover { transform: translateY(-3px); }
.vprofile.is-active {
  border-color: var(--violet);
  box-shadow: 0 12px 30px rgba(109,40,217,.14);
}
.vprofile__badge {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .08em;
  background: var(--gold-soft); color: var(--gold-deep);
  padding: 3px 7px; border-radius: 4px;
}
.vprofile b { font-family: var(--font-display); font-size: 15.5px; }
.vprofile__desc { font-size: 12.5px; color: var(--ink-60); }
.vprofile__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  min-width: 138px;
  padding: 8px 12px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(253, 210, 64, .22), rgba(111, 45, 255, .13));
  border: 1px solid rgba(111, 45, 255, .16);
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}
.vprofile__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 6px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.vprofile.is-active .vprofile__play {
  background: linear-gradient(135deg, var(--gold), var(--violet));
  border-color: transparent;
  color: #fff;
}
.voice-bars--vp { height: 34px; gap: 3px; margin: 4px 0 2px; }
.voice-bars--vp span { width: 3.5px; animation: none; height: 9px; }
.vprofile.is-active .voice-bars--vp span { animation: wave 1s ease-in-out infinite; }
.vprofile.is-active .voice-bars--vp span:nth-child(2n) { animation-delay: .12s; }
.vprofile.is-active .voice-bars--vp span:nth-child(3n) { animation-delay: .24s; }
.vprofile.is-active .voice-bars--vp span:nth-child(4n) { animation-delay: .36s; }
.voice__props { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.voice__props li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px; color: var(--ink-60); font-weight: 500;
}
.voice__props li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300756E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.voice__hint {
  text-align: center;
  font-size: 13.5px; color: var(--ink-40);
  margin-top: var(--space-5);
}

/* ═══════════ AUFGABEN (Bento) ═══════════ */
.tasks { border-top: 1px solid var(--line); }
.tasks__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--space-3);
}
.task {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.task:hover { transform: translateY(-4px); box-shadow: var(--shadow-crisp); }
.task--calls:hover { border-color: var(--violet); }
.task--calendar:hover { border-color: var(--teal); }
.task--intake:hover { border-color: var(--gold); }
.task--team:hover { border-color: var(--violet); }
.task h3 { font-size: 20px; font-weight: 700; margin-bottom: var(--space-2); }
.task__list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-3); }
.task__list li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; color: var(--ink-60);
}
.task__list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--violet-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236D28D9'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.task--calendar .task__list li::before { background-color: var(--teal-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300756E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E"); }
.task--intake .task__list li::before { background-color: var(--gold-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A16207'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E"); }

/* Mini-Visuals in den Aufgabenkarten */
.mini-call {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.mini-call--second { margin-top: 8px; opacity: .85; }
.mini-call__pulse {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal);
  animation: dotPulse 1.6s infinite;
}
.mini-call b { font-family: var(--font-display); font-size: 13.5px; display: block; line-height: 1.3; }
.mini-call small { font-size: 12px; color: var(--ink-60); }
.mini-call__ok {
  margin-left: auto;
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  background: var(--teal-soft);
  display: grid; place-items: center;
}
.mini-call__ok svg { width: 13px; height: 13px; fill: var(--teal-deep); }
.mini-cal { display: flex; flex-direction: column; gap: 7px; }
.mini-cal__row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-40);
}
.mini-cal__ev {
  font-family: var(--font-body); font-style: normal; font-size: 12.5px; font-weight: 600;
  border-radius: 5px; padding: 5px 12px; flex: 1;
}
.mini-cal__ev--teal { background: var(--teal-soft); color: var(--teal-deep); }
.mini-cal__ev--new { background: var(--violet-soft); color: var(--violet-deep); }
.mini-cal__ev--moved { background: var(--gold-soft); color: var(--gold-deep); }
.mini-note {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.mini-note b { font-family: var(--font-display); font-size: 13.5px; display: block; }
.mini-note small { font-size: 12px; color: var(--ink-60); display: block; margin: 3px 0 6px; }
.mini-note__route { font-size: 12px; font-weight: 600; color: var(--violet); }
.mini-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.mini-summary__bar {
  background: var(--violet-soft); color: var(--violet-deep);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .06em;
  padding: 7px 12px;
}
.mini-summary p { font-size: 12.5px; color: var(--ink-60); padding: 10px 12px; }

/* ═══════════ BRANCHEN-SWITCHER ═══════════ */
.brswitch {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-crisp);
}
.brswitch__tabs {
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.brtab {
  flex: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 15px 12px; min-height: 48px;
  color: var(--ink-60);
  border-bottom: 3px solid transparent;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
  white-space: nowrap;
}
.brtab:hover { color: var(--violet); }
.brtab.is-active {
  color: var(--violet-deep);
  border-bottom-color: var(--violet);
  background: var(--surface);
}
.brswitch__panel { padding: var(--space-4); }
.brswitch__panel.is-switching .brcase { animation: paneIn .35s ease; }
.brcase { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }
.brcase__chat { display: flex; flex-direction: column; gap: 9px; }
.brmsg {
  max-width: 92%;
  padding: 11px 15px;
  font-size: 14px; line-height: 1.5;
  border-radius: 14px;
  animation: brMsgIn .4s ease both;
}
.brmsg--caller:nth-of-type(1) { animation-delay: .02s; }
.brmsg--agent:nth-of-type(2)  { animation-delay: .12s; }
.brmsg:nth-child(3) { animation-delay: .22s; }
.brmsg:nth-child(4) { animation-delay: .32s; }
.brmsg:nth-child(5) { animation-delay: .42s; }
.brmsg:nth-child(6) { animation-delay: .52s; }
@keyframes brMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.brmsg--caller {
  align-self: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.brmsg--agent {
  align-self: flex-end;
  background: linear-gradient(120deg, var(--violet), var(--teal));
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Admin-Dashboard */
.admin { border-top: 1px solid var(--line); }
.admin__shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(109,40,217,.18);
  background:
    radial-gradient(circle at 18% 10%, rgba(109,40,217,.18), transparent 32%),
    radial-gradient(circle at 85% 16%, rgba(23,224,210,.16), transparent 28%),
    linear-gradient(135deg, #0E1220, #171333 48%, #082F33);
  color: #fff;
  box-shadow: 0 28px 80px rgba(14,18,32,.22);
  padding: 22px;
}
.admin__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: adminGrid 18s linear infinite;
  pointer-events: none;
}
.admin__shell > * { position: relative; z-index: 1; }
.admin__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: 18px;
}
.admin__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FDE047;
}
.admin__topbar h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-top: 3px;
}
.admin__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #B5FFF8;
}
.admin__status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #17E0D2;
  box-shadow: 0 0 0 6px rgba(23,224,210,.14);
  animation: dotPulse 1.5s infinite;
}
.admin__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.admin-stat {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.admin-stat span,
.admin-stat small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.68);
}
.admin-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  margin: 7px 0 5px;
}
.admin-stat--violet strong { color: #C4B5FD; }
.admin-stat--teal strong { color: #5EEAD4; }
.admin-stat--gold strong { color: #FDE047; }
.admin__grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 14px;
}
.admin-panel {
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 46px rgba(0,0,0,.14);
}
.admin-panel--bookings { grid-row: span 2; }
.admin-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 13px;
}
.admin-panel__head h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}
.admin-panel__head span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-40);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.booking-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.booking-row.is-new {
  border-color: rgba(109,40,217,.38);
  box-shadow: 0 0 0 4px rgba(109,40,217,.08);
  animation: bookingPulse 2.2s ease-in-out infinite;
}
.booking-row__time {
  font-family: var(--font-mono);
  color: var(--violet);
  font-weight: 800;
  font-size: 13px;
}
.booking-row b {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
}
.booking-row small {
  color: var(--ink-60);
  font-size: 12.5px;
}
.booking-row em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 8px;
  border-radius: 999px;
}
.admin-calendar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-calendar div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
}
.admin-calendar span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-40);
}
.admin-cal {
  font-size: 12.5px;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 800;
}
.admin-cal--teal { background: var(--teal-soft); color: var(--teal-deep); }
.admin-cal--violet { background: var(--violet-soft); color: var(--violet-deep); }
.admin-cal--gold { background: var(--gold-soft); color: var(--gold-deep); }
.admin-cal--muted { background: var(--bg-alt); color: var(--ink-40); }
.admin-log {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-log li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-60);
}
.admin-log span {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(234,179,8,.14);
  flex-shrink: 0;
}
@keyframes adminGrid {
  to { background-position: 48px 48px, -48px 48px; }
}
@keyframes bookingPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.brcase__result { display: flex; flex-direction: column; gap: 12px; }
.brcase__action {
  display: flex; flex-direction: column; gap: 2px;
  border-left: 3px solid var(--teal);
  padding-left: 14px;
}
.brcase__label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-40);
}
.brcase__action b { font-family: var(--font-display); font-size: 16px; }
.brcase__cal {
  display: flex; align-items: center; gap: 10px;
  background: var(--violet-soft); color: var(--violet-deep);
  border-left: 3px solid var(--violet);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px; font-weight: 600;
}
.brcase__cal svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.brcase__benefit { font-size: 14px; color: var(--ink-60); }
.brcase__extras { margin-top: 4px; }
.brcase__extras .brcase__label { display: block; margin-bottom: 8px; }
.brcase__extras ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.brcase__extras li {
  position: relative; padding-left: 24px;
  font-size: 13.5px; color: var(--ink-60);
}
.brcase__extras li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 15px; height: 15px; border-radius: 4px;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300756E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* ═══════════ CONVERSION-BAND ═══════════ */
.startband { padding: var(--space-6) 24px 0; max-width: 1240px; margin: 0 auto; }
.startband__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background:
    radial-gradient(ellipse 50% 120% at 92% 50%, rgba(234,179,8,.3), transparent 60%),
    linear-gradient(115deg, var(--violet-deep), var(--violet) 55%, var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-deep);
}
.startband__text h2 { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; margin-bottom: 4px; }
.startband__text p { font-size: 15.5px; opacity: .85; }
.startband__btn { flex-shrink: 0; }

/* ═══════════ INDIVIDUELLE EINRICHTUNG ═══════════ */
.setup { border-top: 1px solid var(--line); }
.setup__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-5) var(--space-6); align-items: start; }
.setup__copy { grid-column: 1 / -1; max-width: 720px; }
.setup__copy h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; margin-bottom: var(--space-2); }
.setup__text { color: var(--ink-60); font-size: 16.5px; margin-bottom: 0; max-width: 560px; }
.setup__steps {
  list-style: none;
  counter-reset: setupstep;
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 6px;
}
.setup__steps li {
  counter-increment: setupstep;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
}
.setup__steps li::before {
  content: counter(setupstep);
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  background: var(--violet-soft); color: var(--violet);
}
.setup__steps li:nth-child(3n+2)::before { background: var(--teal-soft); color: var(--teal-deep); }
.setup__steps li:nth-child(3n)::before { background: var(--gold-soft); color: var(--gold-deep); }
.setup__steps b { font-family: var(--font-display); font-weight: 600; }

.board {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.board__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: var(--bg-alt);
}
.board__bar img { width: 22px; height: 22px; object-fit: contain; }
.board__state {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .08em;
  background: var(--gold-soft); color: var(--gold-deep);
  padding: 4px 9px; border-radius: 4px;
}
.board__rows { padding: 4px 0; }
.board__row {
  display: flex; justify-content: space-between; gap: var(--space-2);
  padding: 11px 16px;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}
.board__row:last-child { border-bottom: none; }
.board__row span { color: var(--ink-40); flex-shrink: 0; }
.board__row b { font-weight: 600; text-align: right; }
.board__row--ok b { color: var(--teal-deep); }

/* ═══════════ INTEGRATIONEN ═══════════ */
.integr { border-top: 1px solid var(--line); }
.integr__flowline {
  display: flex; align-items: center; justify-content: center; gap: 0;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.iflow-node {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 18px;
  white-space: nowrap;
}
.iflow-node--main {
  background: linear-gradient(115deg, var(--violet), var(--teal));
  color: #fff; border: none;
  box-shadow: 0 8px 20px rgba(109,40,217,.25);
}
.iflow-node--main img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.iflow-line {
  width: 44px; height: 2px; flex-shrink: 0;
  background: repeating-linear-gradient(90deg, var(--teal) 0 6px, transparent 6px 12px);
  animation: dashSlide 1.2s linear infinite;
}
@keyframes dashSlide { to { background-position: 12px 0; } }
.integr__groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.igroup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.igroup h3 { font-size: 16px; font-weight: 700; margin-bottom: var(--space-2); }
.igroup__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ichip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  transition: border-color .2s ease;
}
.ichip:hover { border-color: var(--teal); }
.ichip svg { width: 17px; height: 17px; fill: var(--violet); flex-shrink: 0; }
.igroup:nth-child(2) .ichip svg { fill: var(--teal); }
.igroup:nth-child(3) .ichip svg { fill: var(--gold); }
.igroup__note { font-size: 12.5px; color: var(--ink-40); margin-top: 10px; }

/* ═══════════ VERTRAUEN ═══════════ */
.trust { border-top: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.titem {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.titem:nth-child(3n+2) { border-left-color: var(--violet); }
.titem:nth-child(3n) { border-left-color: var(--gold); }
.titem b { font-family: var(--font-display); font-size: 16px; display: block; margin-bottom: 6px; }
.titem p { font-size: 14px; color: var(--ink-60); }
.trust__note {
  text-align: center; max-width: 640px; margin: var(--space-5) auto 0;
  font-size: 13.5px; color: var(--ink-40);
}
.trust__pilot {
  text-align: center; max-width: 640px; margin: var(--space-2) auto 0;
  font-size: 14px; font-weight: 500; color: var(--ink-60);
  background: var(--bg-alt);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
}

/* ═══════════ ÜBER UNS ═══════════ */
.ueber { border-top: 1px solid var(--line); }
.ueber__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }
.ueber__copy h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; letter-spacing: -.015em; margin-bottom: var(--space-2); }
.ueber__text { color: var(--ink-60); font-size: 16.5px; margin-bottom: var(--space-3); max-width: 560px; }
.ueber__facts { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.ueber__facts li { border-left: 3px solid var(--teal); padding-left: var(--space-2); }
.ueber__facts li:nth-child(2) { border-left-color: var(--violet); }
.ueber__facts li:nth-child(3) { border-left-color: var(--gold); }
.ueber__facts b { font-family: var(--font-display); font-size: 16.5px; display: block; }
.ueber__facts span { font-size: 14.5px; color: var(--ink-60); }
.ueber__visual { display: flex; justify-content: center; position: relative; }
.ueber__visual::before {
  content: "";
  position: absolute;
  inset: 8% 3% 4%;
  background: radial-gradient(ellipse at center, rgba(112,46,255,.16), rgba(0,184,173,.08) 42%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}
.ueber__panther {
  position: relative;
  width: min(100%, 520px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: flex; justify-content: center;
  box-shadow: none;
}
.ueber__panther img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 32px rgba(74,18,168,.2)) saturate(1.05);
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 48%, #000 72%, rgba(0,0,0,.55) 86%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 88% at 50% 48%, #000 72%, rgba(0,0,0,.55) 86%, transparent 100%);
}

/* ═══════════ PREISE ═══════════ */
.preise { border-top: 1px solid var(--line); }
.preise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); align-items: stretch; }
.pricing-offer {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: var(--space-3);
  align-items: stretch;
}
.pricing-offer__main,
.pricing-save {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-crisp);
}
.pricing-offer__main {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
}
.pricing-offer__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(109,40,217,.12), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(23,224,210,.12), transparent 28%);
  pointer-events: none;
}
.pricing-offer__main > * { position: relative; z-index: 1; }
.pricing-offer__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-offer__main h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
}
.pricing-offer__main p {
  color: var(--ink-60);
  max-width: 680px;
}
.pricing-offer__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: var(--space-4) 0;
}
.pricing-offer__list li {
  position: relative;
  padding-left: 27px;
  font-size: 14.5px;
  color: var(--ink-60);
  font-weight: 600;
}
.pricing-offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300756E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-offer__btn { min-width: 220px; }
.pricing-save {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(145deg, #1B1237, #0F2F35),
    var(--ink);
  color: #fff;
}
.pricing-save::after {
  content: "";
  position: absolute;
  inset: auto -20% -25%;
  height: 160px;
  background: radial-gradient(circle, rgba(250,204,21,.36), transparent 66%);
  filter: blur(18px);
}
.pricing-save span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FDE047;
}
.pricing-save strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 86px);
  line-height: .95;
  margin: 10px 0 12px;
  background: linear-gradient(100deg, #FDE047, #17E0D2 60%, #C4B5FD);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-save p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.78);
}
.pcard {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-crisp); }
.pcard--featured {
  border: 2px solid var(--violet);
  box-shadow: var(--shadow-deep);
}
.pcard__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--teal));
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 6px;
}
.pcard h3 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.pcard__desc { color: var(--ink-60); font-size: 14px; min-height: 42px; margin-bottom: var(--space-2); }
.pcard__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: var(--space-3); padding-bottom: var(--space-3); border-bottom: 1px solid var(--line); }
.pcard__price strong { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--violet); }
.pcard--featured .pcard__price strong {
  background: linear-gradient(95deg, var(--violet), var(--teal));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pcard__price span { color: var(--ink-40); font-size: 14px; }
.pcard__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-4); flex: 1; }
.pcard__list li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-60); }
.pcard__list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300756E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.pcard__btn { width: 100%; }

/* ═══════════ FAQ — CHAT-OPTIK ═══════════ */
.faqchat {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faqchat__day {
  align-self: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 6px;
}
.faqrow { display: flex; align-items: flex-end; gap: 10px; }
.faqrow--q { justify-content: flex-end; }
.faqrow--a { justify-content: flex-start; }
.faqbubble {
  max-width: 78%;
  padding: 13px 18px;
  font-size: 15px; line-height: 1.55;
  border-radius: 16px;
}
.faqbubble--q {
  background: linear-gradient(120deg, var(--violet), var(--teal));
  color: #fff;
  font-family: var(--font-display); font-weight: 600;
  border-bottom-right-radius: 5px;
}
.faqbubble--a {
  background: var(--surface); color: var(--ink-60);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  box-shadow: 0 1px 3px rgba(14,18,32,.05);
}
.faqbubble__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--violet-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.faqbubble__avatar img { width: 24px; height: 24px; object-fit: contain; }
.faqbubble__link {
  display: inline;
  color: var(--violet); font-weight: 700;
  padding: 0;
}
.faqbubble__link:hover { color: var(--teal-deep); }

.faqaccordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faqitem {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(14,18,32,.05);
  overflow: hidden;
}
.faqitem summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.faqitem summary::-webkit-details-marker { display: none; }
.faqitem summary span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--violet-soft);
  color: var(--violet);
}
.faqitem summary span::before {
  content: "+";
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}
.faqitem[open] {
  border-color: rgba(112,46,255,.28);
  box-shadow: 0 18px 44px rgba(112,46,255,.1);
}
.faqitem[open] summary span::before { content: "−"; }
.faqitem__answer {
  padding: 0 20px 18px;
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.65;
}

/* ═══════════ BUCHUNG / ABSCHLUSS-CTA ═══════════ */
.buchen {
  background: var(--ink);
  background-image:
    linear-gradient(rgba(109,40,217,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,.16) 1px, transparent 1px),
    radial-gradient(ellipse 70% 90% at 15% 110%, rgba(0,184,173,.22), transparent 60%),
    radial-gradient(ellipse 50% 70% at 95% -10%, rgba(234,179,8,.14), transparent 55%);
  background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%;
  color: #fff;
}
.buchen__inner {
  max-width: 880px; margin: 0 auto;
  padding: var(--space-7) 24px;
  text-align: center;
}
.buchen__panther {
  display: grid; place-items: center;
  width: 92px; height: 92px;
  background: #fff; border-radius: var(--radius);
  margin: 0 auto var(--space-3);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.buchen__panther img { width: 62px; height: auto; }
.buchen__inner h2 { font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; margin-bottom: var(--space-2); }
.buchen__sub { font-size: 17px; opacity: .85; margin: 0 auto var(--space-5); max-width: 560px; }
.buchen__points {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
  margin-bottom: var(--space-5);
  text-align: left;
}
.buchen__points li { border-left: 3px solid var(--teal); padding-left: var(--space-2); }
.buchen__points li:nth-child(2) { border-left-color: var(--gold); }
.buchen__points li:nth-child(3) { border-left-color: var(--violet); }
.buchen__points b { font-family: var(--font-display); font-size: 16.5px; display: block; }
.buchen__points span { font-size: 14.5px; opacity: .75; }
.buchen__btn { min-width: 280px; }
.buchen__hint { font-size: 13px; opacity: .6; margin-top: var(--space-3); }

/* ═══════════ MODAL: KOSTENLOS ANFRAGEN ═══════════ */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 18, 32, .62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  position: relative;
  width: 100%; max-width: 580px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  padding: var(--space-4);
  animation: modalIn .3s cubic-bezier(.25,.9,.3,1.2);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--line);
  transition: border-color .15s ease, color .15s ease;
}
.modal__close svg { width: 16px; height: 16px; fill: var(--ink-60); }
.modal__close:hover { border-color: var(--violet); }
.modal__close:hover svg { fill: var(--violet); }
.modal__head { display: flex; align-items: center; gap: 14px; margin-bottom: var(--space-3); padding-right: 44px; }
.modal__head img { width: 42px; height: 42px; object-fit: contain; }
.modal__head h3 { font-size: 22px; font-weight: 800; }
.modal__head p { font-size: 13px; color: var(--ink-60); }

.wfield textarea {
  font: inherit; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  resize: vertical; min-height: 74px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wfield textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }

/* Wizard-Bausteine */
.wizard__progress {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-4);
}
.wstep {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--ink-40);
}
.wstep__dot {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg-alt); border: 1px solid var(--line);
  font-size: 13.5px;
}
.wstep.is-current { color: var(--ink); }
.wstep.is-current .wstep__dot { background: linear-gradient(135deg, var(--violet), var(--teal)); border-color: var(--violet); color: #fff; }
.wstep.is-done { color: var(--teal-deep); }
.wstep.is-done .wstep__dot { background: var(--teal-soft); border-color: var(--teal); color: var(--teal-deep); }
.wstep__line { flex: 1; height: 1px; background: var(--line); }

.wpane { display: none; }
.wpane.is-active { display: block; animation: paneIn .3s ease; }
@keyframes paneIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }

.wfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-2); flex: 1; }
.wfield-row { display: flex; gap: var(--space-2); }
.wfield label { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.wfield label em { color: var(--violet); font-style: normal; }
.wopt { color: var(--ink-40); font-weight: 400; font-size: 12.5px; }
.help-tip {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 6px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  cursor: help;
}
.help-tip::after {
  content: "Der Unternehmensname hilft uns, vorab kostenfrei einen ersten Agenten mit passender Begrüßung, natürlichem Wortlaut und Beispielantworten für Ihr Unternehmen vorzubereiten. So können wir Ihnen im Gespräch direkt zeigen, wie Ihr Agent klingen könnte.";
  position: absolute;
  right: -8px;
  bottom: calc(100% + 8px);
  width: min(420px, calc(100vw - 40px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  white-space: normal;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 20;
}
.help-tip:hover::after,
.help-tip:focus::after {
  opacity: 1;
  transform: translateY(0);
}
.whelp { color: var(--ink-40); font-size: 12px; line-height: 1.35; }
.wfield input, .wfield select {
  font: inherit; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.wfield input:focus, .wfield select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.wfield input.is-invalid, .wfield select.is-invalid { border-color: #DC2626; }
.werror { display: none; color: #DC2626; font-size: 12.5px; }
.werror.is-visible { display: block; }
.wizard__next { width: 100%; margin-top: var(--space-1); }
.wizard__privacy { font-size: 12px; color: var(--ink-40); text-align: center; margin-top: 12px; }

.wizard__actions { display: flex; gap: var(--space-2); justify-content: center; }

.wpane--success { text-align: center; }
.wcheck {
  display: grid; place-items: center;
  width: 72px; height: 72px; margin: 0 auto var(--space-2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
.wcheck svg { width: 36px; height: 36px; fill: #fff; }
.wpane--success h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.wpane__sub { color: var(--ink-60); font-size: 15px; margin-bottom: var(--space-3); }
.wmail {
  text-align: left;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.wmail__bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--teal-soft); color: var(--teal-deep);
  font-weight: 600; font-size: 13.5px;
  padding: 11px 16px;
  flex-wrap: wrap;
}
.wmail__bar svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.wmail__body { padding: 14px 16px; font-size: 13.5px; color: var(--ink-60); display: flex; flex-direction: column; gap: 8px; }
.wmail__body b { color: var(--ink); }

/* Checkbox (Formular-Zustimmung) */
.wcheckbox {
  display: flex; align-items: flex-start; gap: 11px;
  cursor: pointer;
  margin: var(--space-1) 0 6px;
}
.wcheckbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.wcheckbox__box {
  flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 1px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: grid; place-items: center;
  transition: background .15s ease, border-color .15s ease;
}
.wcheckbox__box svg { width: 14px; height: 14px; fill: #fff; opacity: 0; transform: scale(.5); transition: opacity .15s ease, transform .15s ease; }
.wcheckbox input:checked + .wcheckbox__box {
  background: linear-gradient(135deg, var(--violet), var(--teal));
  border-color: var(--violet);
}
.wcheckbox input:checked + .wcheckbox__box svg { opacity: 1; transform: scale(1); }
.wcheckbox input:focus-visible + .wcheckbox__box { outline: 3px solid var(--teal); outline-offset: 2px; }
.wcheckbox input.is-invalid + .wcheckbox__box { border-color: #DC2626; }
.wcheckbox__text { font-size: 12.5px; color: var(--ink-60); line-height: 1.5; }
.wcheckbox__text a { color: var(--violet); font-weight: 600; }
.wcheckbox__text em { color: var(--violet); font-style: normal; }

/* ═══════════ STICKY CTA (Mobile) ═══════════ */
.stickycta {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: flex; align-items: center; gap: 8px;
}
.stickycta[hidden] { display: none; }
.stickycta__btn { flex: 1; box-shadow: 0 12px 32px rgba(14,18,32,.3); }
.stickycta__close {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(14,18,32,.2);
}
.stickycta__close svg { width: 15px; height: 15px; fill: var(--ink-60); }

/* ═══════════ FOOTER ═══════════ */
.footer { position: relative; border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--teal) 50%, var(--gold));
}
.footer__inner {
  max-width: 1240px; margin: 0 auto; padding: var(--space-5) 24px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap;
}
.footer__links { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer__links a { color: var(--ink-60); font-size: 14px; }
.footer__links a:hover { color: var(--violet); }
.footer__copy { font-family: var(--font-mono); color: var(--ink-40); font-size: 12px; }

/* ═══════════ SUB-BRAND (Sprachbot-Unterseite, Blau-Akzent) ═══════════ */
.subbrand {
  display: inline-flex; align-items: center;
  margin-left: 10px; padding: 4px 11px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .02em;
  color: #1D4ED8; background: #E4ECFF;
  border: 1px solid #C7D7FE; border-radius: 999px;
  white-space: nowrap;
}
.subsite .console__status { background: #2563EB; box-shadow: 0 0 0 3px #E4ECFF; }
@media (max-width: 560px) { .subbrand { display: none; } }

/* ═══════════ DARK WOW THEME (nur KI-Sprachbot-Unterseite) ═══════════ */
.subsite {
  --bg: #070816;
  --bg-alt: #0C1022;
  --surface: rgba(14, 18, 38, .86);
  --surface-2: rgba(18, 24, 52, .88);
  --ink: #F8FBFF;
  --ink-60: #B8C3D8;
  --ink-40: #7F8BA6;
  --line: rgba(165, 180, 252, .16);
  --line-strong: rgba(125, 211, 252, .26);
  --shadow-crisp: 0 18px 60px rgba(0,0,0,.34);
  --shadow-deep: 0 28px 90px rgba(0,0,0,.46);
  background:
    radial-gradient(circle at 16% 8%, rgba(109, 40, 217, .38), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(0, 184, 173, .28), transparent 30%),
    radial-gradient(circle at 60% 78%, rgba(37, 99, 235, .26), transparent 34%),
    #070816;
  color: var(--ink);
}
.subsite .site-bg {
  background:
    linear-gradient(rgba(125, 211, 252, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(109, 40, 217, .26), transparent 46%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
}
.subsite .site-bg__aurora {
  opacity: .55;
  filter: blur(72px);
  mix-blend-mode: screen;
}
.subsite .nav {
  background: rgba(5, 7, 20, .78);
  border-bottom-color: rgba(125, 211, 252, .14);
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
}
.subsite .nav--scrolled { box-shadow: 0 18px 60px rgba(0,0,0,.34); }
.subsite .brand-name,
.subsite .nav-menu__group a b,
.subsite .footer__copy { color: var(--ink); }
.subsite .subbrand {
  color: #BFDBFE;
  background: linear-gradient(135deg, rgba(37,99,235,.26), rgba(0,184,173,.16));
  border-color: rgba(125,211,252,.32);
  box-shadow: inset 0 0 18px rgba(37,99,235,.15);
}
.subsite .nav-menu__toggle,
.subsite .nav-menu__panel,
.subsite .btn--ghost,
.subsite .demo-tab,
.subsite .vprofile,
.subsite .pcompare,
.subsite .board,
.subsite .integr__group,
.subsite .faqitem,
.subsite .modal__card {
  background: rgba(12, 16, 34, .82);
  border-color: rgba(165, 180, 252, .18);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.subsite .nav-menu__panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.subsite .nav-menu__group a:hover,
.subsite .nav-menu__group a.is-active {
  background: linear-gradient(135deg, rgba(109,40,217,.22), rgba(0,184,173,.16));
  border-color: rgba(125,211,252,.25);
}
.subsite .hero {
  min-height: calc(100vh - 72px);
  border-bottom-color: rgba(125,211,252,.14);
  background:
    radial-gradient(circle at 82% 22%, rgba(0,184,173,.20), transparent 28%),
    radial-gradient(circle at 18% 24%, rgba(109,40,217,.28), transparent 34%),
    linear-gradient(180deg, rgba(7,8,22,.35), rgba(7,8,22,.92));
}
.subsite .hero__inner {
  padding-top: clamp(78px, 9vw, 128px);
  padding-bottom: clamp(58px, 7vw, 94px);
}
.subsite .hero__grid {
  opacity: .65;
  background-image:
    radial-gradient(circle 2px at center, rgba(125,211,252,.34) 1px, transparent 1.4px),
    linear-gradient(rgba(125,211,252,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,.075) 1px, transparent 1px);
}
.subsite .hero__beam {
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.12) 45%, rgba(34,211,238,.20) 55%, transparent);
}
.subsite .eyebrow {
  text-shadow: 0 0 28px rgba(0,184,173,.34);
}
.subsite .hero h1 {
  text-shadow: 0 18px 56px rgba(0,0,0,.38);
}
.subsite .hero__sub,
.subsite .section__sub,
.subsite .problem__text,
.subsite .setup__text,
.subsite .voice__props li,
.subsite .agent-voice__text,
.subsite .teaser-card p,
.subsite .nav-menu__group a span {
  color: var(--ink-60);
}
.subsite .console {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(circle at 82% 18%, rgba(0,184,173,.32), transparent 42%),
    rgba(10,14,32,.86);
  border-color: rgba(125,211,252,.24);
  box-shadow:
    0 38px 110px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 80px rgba(0,184,173,.18);
}
.subsite .console::before,
.subsite .console::after,
.subsite .flow__stage::before,
.subsite .flow__stage::after {
  filter: drop-shadow(0 0 10px rgba(34,211,238,.55));
}
.subsite .console__bar {
  border-bottom-color: rgba(125,211,252,.16);
}
.subsite .c-row {
  background: rgba(255,255,255,.045);
  border-color: rgba(165,180,252,.12);
}
.subsite .hero-panther {
  filter: drop-shadow(0 28px 42px rgba(124,58,237,.42)) drop-shadow(0 0 30px rgba(34,211,238,.22));
}
.subsite .missed__inner {
  background:
    linear-gradient(135deg, rgba(234,179,8,.18), rgba(0,184,173,.10)),
    rgba(12,16,34,.86);
  border-color: rgba(250,204,21,.42);
  box-shadow: 0 28px 90px rgba(0,0,0,.38), 0 0 70px rgba(234,179,8,.10);
}
.subsite .missed__stats span {
  background: rgba(255,255,255,.07);
  border-color: rgba(250,204,21,.20);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.subsite .missed__stats b { color: #A78BFA; }
.subsite .missed__stats small { color: rgba(248,251,255,.72); }
.subsite .demo,
.subsite .voice,
.subsite .setup,
.subsite .footer {
  border-color: rgba(125,211,252,.14);
}
.subsite .demo__bgwaves {
  opacity: 1;
  background:
    radial-gradient(ellipse 55% 80% at 45% 45%, rgba(109,40,217,.20), transparent 68%),
    radial-gradient(ellipse 50% 70% at 70% 60%, rgba(0,184,173,.16), transparent 70%);
}
.subsite .demo .section__head {
  max-width: 940px;
  overflow: hidden;
}
.subsite .demo .section__head h2 {
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.08;
}
.subsite .demo .section__sub {
  max-width: 760px;
  margin-inline: auto;
}
.subsite .demo__stage {
  grid-template-columns: minmax(420px, 1.05fr) auto minmax(170px, .95fr);
  gap: clamp(26px, 3.2vw, 48px);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
}
.subsite .demo .iphone {
  grid-column: 2;
  justify-self: center;
}
.subsite .demo__copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  max-width: 520px;
  transform: none;
}
.subsite .demo-note {
  max-width: 100%;
}
.subsite .demo-tab.is-active,
.subsite .vprofile.is-active {
  color: #DBEAFE;
  background: linear-gradient(135deg, rgba(109,40,217,.32), rgba(37,99,235,.22));
  border-color: rgba(125,211,252,.42);
  box-shadow: 0 18px 60px rgba(37,99,235,.18);
}
.subsite .iphone__frame,
.subsite .flow-phone {
  box-shadow:
    0 34px 90px rgba(0,0,0,.58),
    0 0 0 1px rgba(125,211,252,.15),
    0 0 70px rgba(0,184,173,.20);
}
.subsite .demo-note {
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(250,204,21,.12));
  color: #DFFFEA;
  border-color: rgba(74,222,128,.28);
}
.subsite .demo-note b { color: #BBF7D0; }
.subsite .flow__stage {
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 22% 18%, rgba(109,40,217,.24), transparent 36%),
    radial-gradient(circle at 80% 68%, rgba(0,184,173,.18), transparent 34%),
    rgba(8,12,28,.88);
  border-color: rgba(125,211,252,.22);
  box-shadow: 0 38px 110px rgba(0,0,0,.44), inset 0 0 0 1px rgba(255,255,255,.035);
}
.subsite .laptop__screen,
.subsite .flow__caption p,
.subsite .cal-toast {
  background: rgba(14,18,38,.88);
  border-color: rgba(165,180,252,.18);
  color: var(--ink);
}
.subsite .cal-event { background: rgba(255,255,255,.07); color: var(--ink-60); }
.subsite .cal-event--new {
  background: linear-gradient(135deg, rgba(109,40,217,.26), rgba(0,184,173,.20));
  color: #EFFFFD;
  border-color: rgba(125,211,252,.34);
}
.subsite .problem__visual .pcompare--after {
  border-color: rgba(0,184,173,.44);
  box-shadow: 0 24px 74px rgba(0,184,173,.12);
}
.subsite .problem--showcase {
  max-width: none;
  margin: 0;
  padding: clamp(46px, 5.5vw, 78px) 22px;
  background:
    radial-gradient(circle at 4% 88%, rgba(124,58,237,.52), transparent 24%),
    radial-gradient(circle at 80% 16%, rgba(37,99,235,.28), transparent 34%),
    linear-gradient(135deg, #0B0B2A 0%, #07142C 52%, #04101F 100%);
  border-top: 1px solid rgba(125,211,252,.12);
  border-bottom: 1px solid rgba(125,211,252,.12);
  overflow: hidden;
}
.subsite .problem--showcase .problem__inner {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(260px, .56fr) minmax(580px, 1.1fr);
  gap: clamp(24px, 2.8vw, 42px);
}
.subsite .problem--showcase .problem__copy { min-width: 0; }
.subsite .problem--showcase .problem__copy h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.015em;
  text-shadow: 0 20px 70px rgba(0,0,0,.42);
}
.subsite .problem--showcase .problem__text {
  max-width: 460px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.48;
  color: rgba(248,251,255,.86);
}
.problem-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 8px 15px 8px 10px;
  border: 1px solid rgba(165,180,252,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(248,251,255,.90);
  font-size: 15px;
}
.problem-pill span,
.pcompare__title--brand span {
  display: inline-grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7C7BFF, var(--teal));
  box-shadow: 0 0 28px rgba(124,58,237,.5);
}
.problem-pill span {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}
.subsite .problem__cta {
  min-width: 240px;
  justify-content: center;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 14px;
}
.subsite .problem__cta span {
  font-size: 22px;
  line-height: 1;
}
.subsite .problem--showcase .problem__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
  min-width: 0;
}
.subsite .pcompare--image {
  position: relative;
  min-height: 420px;
  padding: 24px 18px 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 34%, rgba(124,58,237,.18), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(7,10,30,.82);
  border: 1px solid rgba(124,58,237,.30);
  box-shadow: 0 30px 100px rgba(0,0,0,.46), inset 0 0 0 1px rgba(255,255,255,.035);
  overflow: hidden;
}
.subsite .pcompare--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(125,211,252,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(#000, transparent 82%);
  pointer-events: none;
}
.subsite .pcompare--after.pcompare--image {
  border-color: rgba(139,92,246,.82);
  box-shadow: 0 34px 120px rgba(124,58,237,.30), 0 0 0 1px rgba(124,58,237,.40) inset;
}
.subsite .pcompare--image.pcompare--before { opacity: 1; }
.pcompare__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.pcompare__title--brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.pcompare__title--brand span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 22px;
}
.pcompare__person {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 290px);
  height: 168px;
  object-fit: contain;
  margin: 0 auto 14px;
  filter: drop-shadow(0 26px 28px rgba(0,0,0,.38));
}
.pcompare--after .pcompare__person {
  height: 182px;
  margin-top: -2px;
  filter: drop-shadow(0 24px 36px rgba(124,58,237,.40));
}
.subsite .pcompare--image ul {
  position: relative;
  z-index: 2;
  gap: 8px;
}
.subsite .pcompare--image li {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(165,180,252,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: rgba(248,251,255,.94);
  font-size: clamp(13.5px, 1vw, 16px);
}
.subsite .pcompare--image .pmark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
}
.subsite .pcompare--image .pmark--x {
  color: #FB7185;
  background: rgba(251,113,133,.12);
  border: 2px solid rgba(251,113,133,.80);
  font-size: 0;
}
.subsite .pcompare--image .pmark--ok {
  background: rgba(45,212,191,.14);
  border: 2px solid rgba(45,212,191,.82);
}
.subsite .pcompare__boost {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(168,85,247,.82);
  background: linear-gradient(135deg, rgba(124,58,237,.46), rgba(37,99,235,.20));
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 900;
  box-shadow: 0 0 38px rgba(124,58,237,.30);
}
.subsite .pcompare__boost span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #7C7BFF);
  box-shadow: 0 0 24px rgba(168,85,247,.56);
  flex: 0 0 auto;
}
.subsite .pcompare__boost span svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (max-width: 1180px) {
  .subsite .problem--showcase .problem__inner {
    grid-template-columns: 1fr;
  }
  .subsite .problem--showcase .problem__copy {
    max-width: 780px;
  }
}

@media (max-width: 720px) {
  .subsite .problem--showcase {
    padding: 48px 16px;
  }
  .subsite .problem--showcase .problem__copy h2 {
    font-size: clamp(31px, 10vw, 42px);
  }
  .subsite .problem--showcase .problem__text {
    display: block;
    font-size: 15px;
    line-height: 1.48;
  }
  .problem-pill {
    margin-bottom: 20px;
    font-size: 14px;
    padding: 8px 13px 8px 9px;
  }
  .problem-pill span {
    width: 26px;
    height: 26px;
  }
  .subsite .problem__cta {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }
  .subsite .problem--showcase .problem__visual {
    grid-template-columns: 1fr;
  }
  .subsite .pcompare--image {
    min-height: 0;
    padding: 24px 16px 20px;
    border-radius: 18px;
  }
  .pcompare__person,
  .pcompare--after .pcompare__person {
    height: 210px;
  }
  .subsite .pcompare--image li {
    min-height: 46px;
    font-size: 14.5px;
  }
  .subsite .pcompare__boost {
    font-size: 16px;
    padding: 13px 14px;
  }
  .subsite .pcompare__boost span {
    width: 38px;
    height: 38px;
  }
}
.subsite input,
.subsite select,
.subsite textarea {
  background: rgba(255,255,255,.07);
  color: var(--ink);
  border-color: rgba(165,180,252,.22);
}
.subsite input::placeholder,
.subsite textarea::placeholder { color: rgba(184,195,216,.62); }

.subsite .mobile-flow-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045)),
    radial-gradient(circle at 20% 20%, rgba(109,40,217,.24), transparent 44%),
    rgba(10,14,32,.82);
  border-color: rgba(125,211,252,.22);
  box-shadow: 0 22px 70px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.035);
}
.subsite .mflow-node span {
  background: rgba(255,255,255,.08);
  border-color: rgba(165,180,252,.22);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.subsite .mflow-node b {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(34,211,238,.28);
}
.subsite .mobile-flow-card i {
  box-shadow: 0 0 16px rgba(34,211,238,.34);
}

@media (max-width: 720px) {
  .subsite .hero {
    min-height: auto;
  }
  .subsite .hero__inner {
    padding-bottom: 38px;
  }
}

@media (max-width: 1024px) {
  .subsite .demo__stage {
    grid-template-columns: 1fr;
  }
  .subsite .demo .iphone,
  .subsite .demo__copy,
  .subsite .demo-benefits {
    grid-column: 1;
    justify-self: center;
  }
  .subsite .demo__copy {
    grid-row: 1;
    max-width: 620px;
  }
  .subsite .demo .iphone {
    grid-row: 2;
  }
  .subsite .demo-benefits {
    grid-row: 3;
    width: min(100%, 620px);
  }
}

/* ═══════════ HUB-NAV (Dachseite) ═══════════ */
.hub-nav { display: inline-flex; align-items: center; gap: var(--space-3); margin-right: 4px; }
.hub-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--ink-60); padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.hub-nav a:hover { color: var(--violet); border-bottom-color: var(--teal); }
.hub-drop { position: relative; }
.hub-drop__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(14,18,32,.06);
}
.hub-drop__toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform .18s ease;
}
.hub-drop.is-open .hub-drop__toggle,
.hub-drop__toggle:hover {
  border-color: rgba(111,45,255,.28);
  color: var(--violet);
}
.hub-drop.is-open .hub-drop__toggle svg { transform: rotate(180deg); }
.hub-drop__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 360px;
  max-width: calc(100vw - 32px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(14,18,32,.16);
  display: grid;
  gap: 8px;
  z-index: 120;
}
.hub-drop__panel[hidden] { display: none; }
.hub-drop__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
}
.hub-drop__item[href]:hover {
  border-color: rgba(111,45,255,.18);
  background: linear-gradient(135deg, rgba(111,45,255,.08), rgba(0,184,173,.08));
}
.hub-drop__item--soon { opacity: .72; cursor: default; }
.hub-drop__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--teal));
}
.hub-drop__icon svg { width: 20px; height: 20px; fill: currentColor; }
.hub-drop__icon--muted { background: var(--line-strong); }
.hub-drop__text b {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 14.5px;
  color: var(--ink);
}
.hub-drop__text small {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--ink-60);
}
.hub-drop__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--ink-40);
}
.hub-drop__tag--live {
  background: var(--teal-soft);
  color: var(--teal-deep);
}
@media (max-width: 720px) {
  .hub-nav {
    display: inline-flex;
    gap: 8px;
    margin-right: 0;
  }
  .hub-nav > a {
    display: none;
  }
  .hub-drop__toggle {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0;
  }
  .hub-drop__toggle::before {
    content: "Agenten";
    font-size: 13px;
  }
  .hub-drop__panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 62px;
    width: auto;
    max-width: none;
  }
  .agents {
    padding-top: 30px;
  }
  .agents .section__head {
    width: min(354px, calc(100vw - 36px));
    text-align: left;
    margin-bottom: 18px;
    margin-left: 18px;
    margin-right: 18px;
  }
  .agents .section__head h2 {
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(25px, 7.4vw, 31px);
    line-height: 1.08;
  }
  .agents .section__sub {
    max-width: 100%;
    margin-inline: 0;
    font-size: 14.5px;
    line-height: 1.48;
  }
}

/* ═══════════ AGENTEN-AUSWAHL ═══════════ */
.agents__grid { display: grid; grid-template-columns: minmax(0, 620px); justify-content: center; gap: var(--space-3); align-items: stretch; }
.agentcard {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-crisp);
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.agentcard--live { border-color: #DCCBF9; }
.agentcard--live:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: var(--shadow-deep); }
.agentcard--soon { background: var(--bg-alt); border-style: dashed; opacity: .92; }
.agentcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-3); }
.agentcard__icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--violet), var(--teal)); color: #fff;
}
.agentcard__icon svg { width: 28px; height: 28px; fill: currentColor; }
.agentcard__icon--muted { background: var(--line-strong); color: #fff; }
.agentcard__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .05em;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-alt); color: var(--ink-40); border: 1px solid var(--line);
}
.agentcard__badge--live { background: var(--teal-soft); color: var(--teal-deep); border-color: #B5EEE9; }
.agentcard__badge--live i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: dotPulse 1.7s infinite; }
.agentcard h3 { font-size: 23px; font-weight: 800; margin-bottom: 8px; }
.agentcard > p { color: var(--ink-60); font-size: 15px; margin-bottom: var(--space-3); }
.agentcard__mini {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--space-3);
  padding: 12px;
  border: 1px solid rgba(0,184,173,.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(224,249,247,.72)),
    repeating-linear-gradient(90deg, rgba(14,18,32,.04) 0 1px, transparent 1px 34px);
}
.agentcard__mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0,184,173,.12);
  animation: dotPulse 1.7s infinite;
}
.agentcard__mini b {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--ink);
}
.agentcard__mini small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--ink-60);
}
.agentcard__mini-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}
.agentcard__mini-bars i {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--violet), var(--teal));
  animation: miniBars 1s ease-in-out infinite;
}
.agentcard__mini-bars i:nth-child(2n) { animation-delay: .13s; }
.agentcard__mini-bars i:nth-child(3n) { animation-delay: .26s; }
@keyframes miniBars {
  0%, 100% { height: 7px; opacity: .65; }
  50% { height: 22px; opacity: 1; }
}
.agentcard__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: var(--space-4); flex: 1; }
.agentcard__list li { position: relative; padding-left: 27px; font-size: 14.5px; color: var(--ink-60); }
.agentcard__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px; border-radius: 5px;
  background: var(--violet-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236D28D9'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.agentcard__list--muted li::before { background-color: var(--line); background-image: none; }
.agentcard__cta {
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  color: var(--violet);
  display: inline-flex; align-items: center; gap: 6px;
}
.agentcard--live:hover .agentcard__cta { color: var(--violet-deep); }
.agentcard__cta--muted { color: var(--ink-40); }
@media (max-width: 900px) { .agents__grid { grid-template-columns: 1fr; } }

/* ═══════════ TEASER (Dachseite) ═══════════ */
.teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.teaser-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-crisp);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.teaser-card:hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: var(--shadow-deep); }
.teaser-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: grid; place-items: center; margin-bottom: var(--space-2);
  border: 1px solid var(--line);
}
.teaser-card__icon svg { width: 26px; height: 26px; fill: currentColor; }
.teaser-card__icon--violet { background: var(--violet-soft); color: var(--violet); border-color: #DCCBF9; }
.teaser-card__icon--teal { background: var(--teal-soft); color: var(--teal-deep); border-color: #B5EEE9; }
.teaser-card__icon--gold { background: var(--gold-soft); color: var(--gold-deep); border-color: #FDE68A; }
.teaser-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.teaser-card p { color: var(--ink-60); font-size: 14.5px; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ═══════════ SCROLL-REVEAL ═══════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.25,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: var(--space-6); }
  .hero__visual { min-height: 0; margin-top: var(--space-2); padding-bottom: var(--space-4); }
  .hero-panther { right: 0; bottom: -8px; width: 120px; }
  .missed__inner { grid-template-columns: auto 1fr; }
  .missed__stats, .missed__btn { grid-column: 1 / -1; }
  .missed__btn { width: 100%; }
  .problem__inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .demo__stage { grid-template-columns: 1fr; gap: var(--space-5); justify-items: center; }
  .demo__copy { max-width: 560px; width: 100%; }
  .voice__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .tasks__grid { grid-template-columns: 1fr; }
  .admin__stats, .admin__grid, .pricing-offer, .pricing-offer__list { grid-template-columns: 1fr; }
  .brcase { grid-template-columns: 1fr; }
  .setup__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .integr__groups { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu__panel {
    grid-template-columns: 1fr 1fr;
    width: 620px;
    max-width: calc(100vw - 32px);
  }
  .preise__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .pcard--featured { order: -1; }
  .ueber__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .startband__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  :root {
    --space-7: 58px;
    --space-6: 42px;
    --space-5: 30px;
  }
  .section { padding: 38px 16px; }
  .section + .section { padding-top: 26px; }
  .section__head {
    max-width: 100%;
    margin-bottom: 18px;
  }
  .section__head h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }
  .section__sub {
    font-size: 15px;
    line-height: 1.55;
  }
  .hero__inner {
    padding: 22px 18px 22px;
    gap: 12px;
    overflow: hidden;
    max-width: 100vw;
  }
  .hero__copy {
    width: calc(100vw - 36px);
    max-width: 354px;
    min-width: 0;
  }
  .hero h1 {
    font-size: clamp(28px, 8.4vw, 35px);
    line-height: 1.03;
    margin-bottom: 12px;
    max-width: calc(100% - 76px);
  }
  .hero .eyebrow {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .hero__sub {
    display: block;
    max-width: 330px;
    margin: -2px 0 12px;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--ink-60);
  }
  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 8px;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
  }
  .hero__cta .btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }
  .hero__cta .btn--ghost {
    display: none;
  }
  .hero__minor {
    display: none;
  }
  .hero__trust {
    display: none;
  }
  .mobile-flow-card {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0;
    padding: 9px;
    border: 1px solid rgba(111,45,255,.14);
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.92), rgba(224,249,247,.78)),
      repeating-linear-gradient(90deg, rgba(14,18,32,.04) 0 1px, transparent 1px 38px);
    box-shadow: 0 14px 36px rgba(74,18,168,.09);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .mobile-flow-card i {
    display: block;
    flex: 0 0 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--violet), var(--teal), var(--gold));
    background-size: 180% 100%;
    transform-origin: left;
    animation: mobileFlowLine .9s cubic-bezier(.25,.7,.3,1) both;
  }
  .mobile-flow-card i:nth-of-type(2) {
    animation-delay: .18s;
  }
  @keyframes mobileFlowLine {
    from {
      transform: scaleX(0);
      opacity: .3;
      background-position: 0 0;
    }
    to {
      transform: scaleX(1);
      opacity: 1;
      background-position: 100% 0;
    }
  }
  .mflow-node {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    flex: 1 1 0;
  }
  .mflow-node span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(14,18,32,.07);
  }
  .mflow-node svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
  }
  .mflow-node img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }
  .mflow-node b {
    font-family: var(--font-display);
    font-size: 10.5px;
    line-height: 1;
  }
  .mflow-node--call { color: var(--violet); }
  .mflow-node--agent { color: var(--teal-deep); }
  .mflow-node--cal { color: var(--gold-deep); }
  .hero__trust li {
    font-size: 12.5px;
    width: 100%;
  }
  .hero__visual {
    position: absolute;
    top: 54px;
    right: 34px;
    min-height: 0;
    width: 70px;
    height: 74px;
    padding-bottom: 0;
    pointer-events: none;
    overflow: visible;
  }
  .console {
    max-width: 100%;
    display: none;
  }
  .console__bar {
    padding: 9px 11px;
    font-size: 9px;
    letter-spacing: .08em;
  }
  .console__row,
  .c-row {
    padding: 8px 10px;
    gap: 7px;
  }
  .c-row:nth-child(3),
  .c-row:nth-child(4) {
    display: none;
  }
  .c-time {
    display: none;
  }
  .c-tag {
    font-size: 8.5px;
    letter-spacing: .06em;
    padding: 3px 6px;
  }
  .c-row__main b,
  .c-row b,
  .c-body b {
    font-size: 12.5px;
    line-height: 1.2;
  }
  .c-row__main small,
  .c-row small,
  .c-body small {
    font-size: 10.5px;
    line-height: 1.35;
  }
  .console__wave {
    padding: 8px 10px;
    gap: 8px;
  }
  .hero-waves {
    height: 22px;
    gap: 3px;
    max-width: 130px;
    overflow: hidden;
  }
  .hero-waves span {
    width: 3px;
  }
  .console__wave-label {
    font-size: 8.5px;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .hero-panther {
    width: 68px;
    right: 0;
    bottom: auto;
    top: 0;
  }
  .aurora {
    filter: blur(52px);
    opacity: .38;
  }
  .hero__beam,
  .hero__particles {
    display: none;
  }
  .tasks .section__head {
    margin-bottom: 18px;
  }
  .tasks .section__head h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
    max-width: 270px;
    margin-inline: auto;
  }
  .tasks .section__sub {
    font-size: 13.5px;
    line-height: 1.45;
    max-width: 320px;
    margin-inline: auto;
  }
  .tasks__grid {
    gap: 12px;
  }
  .task {
    padding: 18px;
    border-radius: 12px;
  }
  .task h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .task__list {
    gap: 6px;
    margin-bottom: 12px;
  }
  .task__list li {
    font-size: 13px;
    padding-left: 22px;
  }
  .task__list li::before {
    width: 14px;
    height: 14px;
    background-size: 10px;
  }
  .demo__tabs {
    gap: 7px;
    margin-bottom: 24px;
  }
  .demo .section__head h2 {
    font-size: 26px;
    line-height: 1.05;
  }
  .demo .section__sub {
    display: none;
  }
  .demo .desktop-copy {
    display: none;
  }
  .demo .mobile-copy {
    display: inline;
  }
  .demo-tab {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
  }
  .demo-tab__soon { display: none; }
  .demo__stage {
    gap: 18px;
  }
  .demo__copy {
    max-width: 360px;
  }
  .demo__copy h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }
  .livestatus {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .lstep {
    padding: 9px 10px;
    border-radius: 10px;
    align-items: flex-start;
    gap: 8px;
  }
  .lstep::before { display: none; }
  .lstep__dot {
    width: 12px;
    height: 12px;
    border-width: 1.5px;
    margin: 1px 0 0;
  }
  .lstep.is-active .lstep__dot {
    box-shadow: 0 0 0 3px rgba(0,184,173,.14);
  }
  .lstep b { font-size: 12.5px; line-height: 1.15; }
  .lstep small { display: none; }
  .demo-note {
    display: block;
    margin-top: 10px;
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.3;
  }
  .flow__stage { flex-direction: column; min-height: 0; padding: 28px 14px var(--space-4); gap: 24px; }
  .flow__caption { position: static; margin-top: var(--space-3); }
  .flow__meta { position: static; margin-top: var(--space-3); }
  .flow-laptop { margin-left: 0; width: 100%; max-width: 440px; transform: translateY(40px); }
  .flow__stage.step-laptop .flow-laptop { transform: translateY(0); }
  .flow__stage.step-phone-left .flow-phone { transform: scale(.9); }
  .flow__link { display: none; }
  .demo {
    padding-bottom: 12px;
  }
  .missed {
    margin-top: 14px;
    padding: 0 26px 22px 18px;
    width: 100%;
    max-width: 100vw;
  }
  .missed__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 13px;
    border-left-width: 4px;
    max-width: calc(100vw - 44px);
    width: calc(100vw - 44px);
  }
  .missed__mark {
    display: none;
  }
  .missed__mark svg {
    width: 18px;
    height: 18px;
  }
  .missed__copy {
    min-width: 0;
  }
  .missed__kicker {
    display: none;
  }
  .missed__copy h2 {
    font-size: 17px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .missed__desktop-title {
    display: none;
  }
  .missed__copy p:last-child {
    display: none;
  }
  .missed__stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .missed__stats span {
    min-width: 0;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .missed__stats b {
    font-size: 20px;
  }
  .missed__stats small {
    font-size: 8px;
    margin-top: 2px;
  }
  .missed__btn {
    grid-column: 1 / -1;
    width: calc(100% - 2px);
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .problem__visual { flex-direction: column; }
  .problem {
    padding: 24px 16px 40px;
  }
  .problem__copy h2 {
    font-size: 25px;
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .problem__text {
    display: none;
  }
  .pcompare__arrow { transform: rotate(90deg); margin: 0 auto; }
  .trust__grid { grid-template-columns: 1fr; }
  .voice__profiles { grid-template-columns: 1fr; }
  .admin__topbar, .admin-panel__head { align-items: flex-start; flex-direction: column; }
  .admin__shell { padding: 16px; border-radius: 14px; }
  .booking-row { grid-template-columns: 48px 1fr; }
  .booking-row em { grid-column: 2; justify-self: start; }
  .brswitch__tabs { flex-direction: column; }
  .brtab { border-bottom: 1px solid var(--line); border-left: 3px solid transparent; text-align: left; }
  .brtab.is-active { border-bottom-color: var(--line); border-left-color: var(--violet); }
  .iphone::after { border-radius: 36px; }
  .iphone__frame {
    width: min(232px, calc(100vw - 34px));
    height: 476px;
    border-radius: 42px;
    padding: 8px;
  }
  .iphone__frame::before,
  .iphone__frame::after { display: none; }
  .iphone__screen { border-radius: 34px; }
  .iphone__island {
    top: 10px;
    width: 82px;
    height: 23px;
    border-radius: 14px;
  }
  .iphone__statusbar {
    top: 12px;
    padding: 0 20px;
    font-size: 11px;
  }
  .sb-icons svg { height: 10px; }
  .callscreen {
    padding: 58px 16px 20px;
  }
  .callscreen--active.is-active {
    grid-template-rows: 34px 106px 144px 50px;
    row-gap: 8px;
    padding: 54px 14px 18px;
  }
  .caller__label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .caller__avatar {
    width: 76px;
    height: 76px;
    margin-bottom: 12px;
    font-size: 27px;
  }
  .caller__name { font-size: 22px; }
  .caller__num { font-size: 12px; }
  .caller--small .caller__name { font-size: 17px; }
  .caller__timer { font-size: 12px; }
  .incoming-actions {
    padding: 0 14px 8px;
  }
  .in-action {
    gap: 7px;
    font-size: 11.5px;
  }
  .ring-btn {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
  }
  .ring-btn svg {
    width: 25px;
    height: 25px;
  }
  .ring-btn--end {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }
  .agent-voice {
    min-height: 106px;
    padding: 9px 10px 9px;
    border-radius: 12px;
  }
  .voice-bars {
    height: 24px;
    gap: 3px;
    margin-bottom: 6px;
  }
  .voice-bars span {
    width: 3px;
  }
  .agent-voice__label {
    font-size: 8.5px;
    letter-spacing: .09em;
    gap: 5px;
  }
  .live-dot {
    width: 6px;
    height: 6px;
  }
  .agent-voice__text {
    font-size: 10.6px;
    line-height: 1.25;
    min-height: 40px;
    max-height: 40px;
    margin-top: 6px;
  }
  .callpad {
    gap: 9px 6px;
    padding: 0 2px;
  }
  .pad-btn {
    gap: 5px;
    font-size: 10px;
  }
  .pad-btn svg {
    width: 43px;
    height: 43px;
    min-width: 43px;
    min-height: 43px;
    padding: 12px;
  }
  .ended-box { gap: 10px; }
  .ended-check {
    width: 58px;
    height: 58px;
  }
  .ended-check svg {
    width: 29px;
    height: 29px;
  }
  .ended-box h3 { font-size: 18px; }
  .ended-box p {
    font-size: 12.5px;
    line-height: 1.45;
  }
  .faqbubble { max-width: 88%; }
  .wfield-row { flex-direction: column; gap: 0; }
  .modal {
    align-items: center;
    padding: 18px 10px;
  }
  .modal__card {
    max-height: calc(100dvh - 56px);
    padding: 14px;
    border-radius: 12px;
  }
  .modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .modal__head {
    gap: 10px;
    margin-bottom: 14px;
    padding-right: 36px;
  }
  .modal__head img {
    width: 34px;
    height: 34px;
  }
  .modal__head h3 {
    font-size: 19px;
  }
  .modal__head p {
    display: none;
  }
  .wizard__progress {
    gap: 7px;
    margin-bottom: 14px;
  }
  .wstep {
    font-size: 11.5px;
    gap: 6px;
  }
  .wstep__dot {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: 11px;
  }
  .wfield {
    gap: 4px;
    margin-bottom: 11px;
  }
  .wfield label {
    font-size: 13px;
  }
  .wfield input,
  .wfield select {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 14px;
  }
  .wfield textarea {
    min-height: 62px;
    padding: 9px 11px;
    font-size: 14px;
  }
  .whelp,
  .werror,
  .wizard__privacy {
    font-size: 11px;
    line-height: 1.3;
  }
  .whelp,
  .wizard__privacy {
    display: none;
  }
  .help-tip::after {
    right: auto;
    left: -138px;
    width: min(310px, calc(100vw - 32px));
    font-size: 11px;
  }
  .wizard__next {
    min-height: 44px;
    padding: 11px 16px;
    font-size: 14px;
  }
  .wizard__actions { flex-direction: column-reverse; }
  .buchen {
    padding: 44px 16px;
  }
  .buchen__inner {
    padding: 28px 18px;
  }
  .buchen__panther {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }
  .buchen__inner h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.05;
  }
  .buchen__sub {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 22px;
  }
  .buchen__points {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
    margin-bottom: 22px;
  }
  .buchen__points li {
    padding-left: 12px;
  }
  .buchen__btn {
    min-width: 0;
    width: 100%;
  }
  .nav__inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding: 10px 14px;
    gap: 8px;
    overflow: visible;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-name {
    font-size: 19px;
  }
  .nav__actions {
    position: absolute;
    top: 10px;
    right: max(14px, calc(100vw - 376px));
    gap: 7px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav__actions .btn--sm {
    display: none;
  }
  .nav-menu__toggle {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .nav-menu {
    position: relative;
    top: auto;
    right: auto;
    z-index: 110;
  }
  .nav-menu__toggle > span:first-child {
    display: none;
  }
  .nav-menu__toggle svg {
    width: 15px;
    height: 15px;
  }
  .nav-menu__panel {
    position: fixed;
    left: 12px;
    right: auto;
    top: 66px;
    width: min(352px, calc(100vw - 24px));
    max-width: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
  }
  .nav-menu__group {
    gap: 5px;
  }
  .nav-menu__group p {
    padding: 0 6px;
    font-size: 9.5px;
  }
  .nav-menu__group a {
    min-height: 0;
    padding: 9px 10px;
    border-radius: 9px;
  }
  .nav-menu__group a b {
    font-size: 13.5px;
  }
  .nav-menu__group a span {
    display: none;
  }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .15s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .lstep { opacity: 1; }
  .fchip { opacity: 1; }
  .aurora, .hero__grid, .hero__beam, .hero__particles i, .console, .console__aura { animation: none !important; }
  .site-bg__grid, .site-bg__aurora, .site-bg__particles i { animation: none !important; }
  .site-bg__particles { display: none; }
  .hero__beam { display: none; }
  .hero__particles i { opacity: .4; }
}

@media (max-width: 380px) {
  .hero__cta {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 30px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SPRACHBOT-UNTERSEITE — DUNKLES PREMIUM-THEME (.subsite)
   Nur agenten.html. Startseite/Hub bleibt hell.
   ═══════════════════════════════════════════════════════════ */
.subsite {
  --ink: #ECEEF7;
  --ink-60: #AAB1C6;
  --ink-40: #6E7690;
  --bg: #090B13;
  --bg-alt: #10131E;
  --surface: #151A28;
  --line: #262C3E;
  --line-strong: #39415A;
  --violet: #8B5CF6;
  --violet-deep: #7C3AED;
  --violet-soft: #211A3D;
  --teal: #17E0D2;
  --teal-bright: #4DF3E7;
  --teal-deep: #6FF0E4;
  --teal-soft: #0E2E2C;
  --gold: #EAB308;
  --gold-deep: #F3D98A;
  --gold-soft: #2A2410;
  --shadow-crisp: 0 1px 2px rgba(0,0,0,.4), 0 12px 32px rgba(0,0,0,.45);
  --shadow-deep: 0 2px 8px rgba(0,0,0,.5), 0 30px 70px rgba(0,0,0,.6);
}
.subsite html { background: #090B13; }

/* Basis / Grid / Aurora auf dunkel */
.subsite .site-bg { background: #090B13; }
.subsite .site-bg__grid,
.subsite .hero__grid {
  background-image:
    radial-gradient(circle 2px at center, rgba(255,255,255,.09) 1.2px, transparent 1.4px),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  opacity: .8;
}
.subsite .aurora,
.subsite .site-bg__aurora { mix-blend-mode: screen; opacity: .7; filter: blur(80px); }
.subsite .site-bg__aurora--1 { background: radial-gradient(circle at 45% 45%, rgba(139,92,246,.6), transparent 62%); }
.subsite .site-bg__aurora--2 { background: radial-gradient(circle at 50% 50%, rgba(23,224,210,.5), transparent 62%); }
.subsite .site-bg__aurora--3 { background: radial-gradient(circle at 50% 50%, rgba(234,179,8,.32), transparent 60%); }
.subsite .site-bg__aurora--4 { background: radial-gradient(circle at 50% 50%, rgba(139,92,246,.4), transparent 62%); }
.subsite .hero__beam { background: linear-gradient(100deg, transparent, rgba(255,255,255,.14) 45%, rgba(23,224,210,.14) 55%, transparent); }
.subsite .hero__particles i { box-shadow: 0 0 12px 2px currentColor; }

/* Nav — dunkles Glas */
.subsite .nav {
  background: rgba(9,11,19,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.subsite .nav--scrolled { box-shadow: 0 6px 30px rgba(0,0,0,.5); }
.subsite .brand-name { color: #fff; }
.subsite .nav-menu__toggle { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.subsite .nav-menu__toggle:hover { background: rgba(255,255,255,.12); }
.subsite .nav-menu__panel {
  background: rgba(19,23,34,.98);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
}
.subsite .nav-menu__panel a { color: var(--ink); }
.subsite .nav-menu__panel a:hover { background: rgba(255,255,255,.05); }
.subsite .nav-menu__panel a b { color: #fff; }
.subsite .nav-menu__group p { color: var(--ink-40); }

/* Konsole — dunkles Glas mit Glow */
.subsite .console {
  background: rgba(21,26,40,.72);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(139,92,246,.12);
}
.subsite .console__bar { border-bottom-color: rgba(255,255,255,.08); }
.subsite .c-row { border-bottom-color: rgba(255,255,255,.06); }
.subsite .c-body b { color: #fff; }

/* Ghost-Button dunkel */
.subsite .btn--ghost { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.16); color: #fff; }
.subsite .btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); background: rgba(23,224,210,.06); }

/* Karten / Panels: Glow-Hover */
.subsite .fcard:hover { background: #1A2132; }
.subsite .task:hover,
.subsite .pcard:hover,
.subsite .bcard:hover,
.subsite .acard:hover,
.subsite .teaser-card:hover { box-shadow: 0 0 0 1px rgba(139,92,246,.3), var(--shadow-deep); }
.subsite .features__grid { background: var(--line); }

/* Formular / Modal dunkel */
.subsite .modal__card { background: #12151F; box-shadow: 0 40px 90px rgba(0,0,0,.7); }
.subsite .modal__close { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.subsite .modal__close svg { fill: var(--ink-60); }
.subsite .wfield input,
.subsite .wfield select,
.subsite .wfield textarea { background: #0E1119; border-color: var(--line-strong); color: var(--ink); }
.subsite .wfield input::placeholder,
.subsite .wfield textarea::placeholder { color: var(--ink-40); }
.subsite .wstep__dot { background: #0E1119; border-color: var(--line-strong); }
.subsite .wcheckbox__box { background: #0E1119; border-color: var(--line-strong); }
.subsite .help-tip__bubble,
.subsite .whelp { color: var(--ink-40); }

/* Flow-Laptop — dunkles Kalender-UI */
.subsite .laptop__screen { border-color: var(--line-strong); }
.subsite .laptop__base { background: linear-gradient(180deg, #2A3145, #1A1F2D); }
.subsite .laptop__base::after { background: #39415A; }
.subsite .laptop__topbar { background: #10131E; border-bottom-color: var(--line); }

/* Sub-Brand-Pill auf dunkel */
.subsite .subbrand { background: rgba(96,165,250,.16); border-color: rgba(96,165,250,.4); color: #93B4FF; }

/* Footer dunkel */
.subsite .footer { background: #0C0F18; }
.subsite .footer__copy { color: var(--ink-40); }

/* Missed / Problem Sektionen (falls hell) auf dunkel ziehen */
.subsite .missed { background: transparent; }
.subsite .pcompare { background: var(--surface); }
.subsite .pcompare--before { opacity: .7; }

/* Problem-Showcase: finale Overrides gegen alte helle Vergleichsregeln */
.subsite .problem--showcase .pcompare--image {
  background:
    radial-gradient(circle at 50% 34%, rgba(124,58,237,.18), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(7,10,30,.82);
}
.subsite .problem--showcase .pcompare--image.pcompare--before {
  opacity: 1;
}

/* Reduced-Motion: Blend zurücksetzen nicht nötig */

/* ═══════════════════════════════════════════════════════════
   RINGLIO — Hero-Logo (Panther mit Headset) + Hero-Anpassungen
   ═══════════════════════════════════════════════════════════ */
.hero__cta--three { flex-wrap: wrap; }
.hero__cta--three .btn { flex: 0 0 auto; }
.hero__free {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-60);
  margin-top: 4px;
}
.hero__free .trust-check { width: 20px; height: 20px; }

.hero__visual--logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.ringlio-logo {
  position: relative;
  width: min(100%, 460px);
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 0 4px;
}
.ringlio-logo__glow {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%);
  width: 118%; height: 118%; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.5), rgba(23,224,210,.22) 45%, transparent 68%);
  filter: blur(30px);
  animation: ringlioGlow 6s ease-in-out infinite;
  z-index: 0; pointer-events: none;
}
@keyframes ringlioGlow { 0%,100% { opacity: .7; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); } }
.ringlio-logo__ring {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%);
  width: 84%; aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(139,92,246,.35);
  z-index: 0; pointer-events: none;
  animation: ringlioSpin 26s linear infinite;
}
@keyframes ringlioSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.ringlio-logo__img {
  position: relative; z-index: 1;
  width: 90%; max-width: 400px; height: auto;
  filter: drop-shadow(0 24px 44px rgba(124,58,237,.5));
  animation: ringlioFloat 7s ease-in-out infinite;
}
@keyframes ringlioFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.ringlio-logo__name {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: .01em;
  background: linear-gradient(95deg, var(--violet), var(--teal) 70%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--violet);
  margin-top: -6px;
}
.ringlio-logo__status {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .05em;
  color: var(--teal-deep);
  background: var(--teal-soft); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px;
  margin-top: 8px;
}
.ringlio-logo__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,173,.25); animation: dotPulse 1.7s infinite; }

.hero__sidechecks {
  list-style: none; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
}
.hero__sidechecks li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--ink-60);
}
.hero__sidechecks .trust-check { width: 22px; height: 22px; }

/* Klingelnde Telefone auf dem gestressten Mann (ohne Ringlio) */
.pcompare__personwrap { position: relative; display: inline-block; width: 100%; }
.ringphone {
  position: absolute; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: #EF4444; color: #fff;
  box-shadow: 0 6px 16px rgba(239,68,68,.5);
  animation: ringShake 1.4s ease-in-out infinite;
}
.ringphone svg { width: 16px; height: 16px; fill: #fff; }
.ringphone--1 { top: 6%; left: 4%; animation-delay: 0s; }
.ringphone--2 { top: 22%; right: 2%; animation-delay: .35s; }
.ringphone--3 { top: 46%; left: 0; animation-delay: .7s; }
@keyframes ringShake {
  0%,100% { transform: rotate(0) scale(1); }
  20% { transform: rotate(-14deg) scale(1.08); }
  40% { transform: rotate(12deg) scale(1.08); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(6deg); }
}

@media (max-width: 1024px) {
  .ringlio-logo { max-width: 360px; }
  .ringlio-logo__name { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .ringlio-logo__glow, .ringlio-logo__ring, .ringlio-logo__img, .ringphone { animation: none !important; }
}

/* Ringlio Hero wie dunkle Premium-Bühne */
.subsite .hero {
  min-height: calc(100vh - 72px);
  background:
    radial-gradient(circle at 86% 70%, rgba(124,58,237,.42), transparent 24%),
    radial-gradient(circle at 70% 24%, rgba(37,99,235,.34), transparent 36%),
    radial-gradient(circle at 18% 88%, rgba(109,40,217,.28), transparent 30%),
    linear-gradient(135deg, #04071A 0%, #081340 52%, #020611 100%);
}
.subsite .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(rgba(125,211,252,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,.08) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(124,58,237,.20));
  background-size: 72px 72px, 72px 72px, auto;
  transform: perspective(720px) rotateX(64deg);
  transform-origin: bottom;
  opacity: .58;
  pointer-events: none;
}
.subsite .hero__inner {
  max-width: 1400px;
  min-height: calc(100vh - 72px);
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(58px, 7vw, 96px);
  grid-template-columns: minmax(680px, 1fr) minmax(420px, .92fr);
  gap: clamp(18px, 2.4vw, 38px);
  padding-left: clamp(54px, 6vw, 92px);
  padding-right: clamp(34px, 5vw, 76px);
}
.subsite .hero__copy {
  position: relative;
  z-index: 3;
}
.ringlio-hero-title {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: 26px;
  font-size: clamp(38px, 3.95vw, 64px);
  line-height: .98;
  letter-spacing: -.035em;
}
.ringlio-hero-title__brand {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: clamp(64px, 6.7vw, 108px);
  line-height: .98;
  padding-bottom: .08em;
  background: linear-gradient(92deg, #B026FF 0%, #6D5CFF 48%, #11E5F2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 34px rgba(124,58,237,.34));
}
.ringlio-hero-title__line {
  display: block;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.subsite .hero__sub {
  max-width: 590px;
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.48;
  color: rgba(248,251,255,.82);
}
.subsite .hero__cta--three {
  gap: 14px;
  margin-top: 28px;
}
.subsite .hero__cta--three .btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: clamp(16px, 1vw, 19px);
  box-shadow: 0 18px 42px rgba(124,58,237,.26);
}
.subsite .hero__cta--three .btn--primary {
  background: linear-gradient(135deg, #A855F7 0%, #6D5CFF 46%, #11DCEB 100%);
  border: 0;
}
.subsite .hero__cta--three .btn--ghost {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.045);
  border-color: rgba(165,180,252,.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.subsite .btn__icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
}
.subsite .btn__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Ringlio Demo: Ablauf links, iPhone Mitte, Vorteile rechts */
.subsite .demo {
  max-width: none;
  margin: 0;
  padding: clamp(54px, 6vw, 82px) 24px;
  background:
    radial-gradient(circle at 49% 52%, rgba(23,224,210,.12), transparent 22%),
    radial-gradient(circle at 78% 42%, rgba(124,58,237,.20), transparent 28%),
    linear-gradient(135deg, #030716 0%, #07112D 55%, #020611 100%);
}
.subsite .demo .section__head {
  margin-bottom: 30px;
}
.subsite .demo .section__head h2 {
  font-size: clamp(30px, 3.3vw, 46px);
}
.subsite .demo .section__sub {
  max-width: 650px;
}
.subsite .demo__stage {
  max-width: 1420px;
  grid-template-columns: minmax(360px, .9fr) auto minmax(340px, .78fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.subsite .demo .iphone {
  grid-column: 2;
  justify-self: center;
}
.subsite .demo__copy {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  max-width: 455px;
}
.subsite .demo__copy h3 {
  font-size: clamp(25px, 2.4vw, 34px);
  margin-bottom: 30px;
  color: #fff;
}
.subsite .demo__copy h3 .grad-text,
.subsite .demo__copy h3 span {
  white-space: nowrap;
}
.subsite .livestatus {
  gap: 23px;
}
.subsite .lstep {
  grid-template-columns: 64px 1fr;
  gap: 14px;
  color: rgba(255,255,255,.74);
}
.subsite .lstep::before {
  left: 31px;
  background: linear-gradient(180deg, rgba(124,58,237,.42), rgba(23,224,210,.28));
}
.subsite .lstep__dot {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(124,58,237,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 12px 28px rgba(124,58,237,.14);
}
.subsite .lstep__dot::after {
  content: "";
  width: 28px;
  height: 28px;
  background: currentColor;
  mask: radial-gradient(circle at 50% 50%, #000 0 34%, transparent 35%);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 0 34%, transparent 35%);
}
.subsite .lstep b {
  color: rgba(255,255,255,.95);
  font-size: 17px;
}
.subsite .lstep small {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.subsite .demo-note {
  max-width: 430px;
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 12px;
  color: rgba(236,253,245,.94);
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(6,95,70,.10));
  border: 1px solid rgba(16,185,129,.48);
  box-shadow: 0 18px 46px rgba(16,185,129,.10);
}
.subsite .demo-note::before {
  background: #22C55E;
  box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}
.subsite .demo-note b {
  color: #DCFCE7;
}
.accept-arrow {
  position: absolute;
  left: calc(50% + 92px);
  top: 420px;
  width: 130px;
  height: 104px;
  pointer-events: none;
  color: #22C55E;
  filter: drop-shadow(0 0 16px rgba(34,197,94,.65));
  animation: acceptArrowFloat 2.8s ease-in-out infinite;
  z-index: 80;
}
.accept-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.iphone.demo-accepted + .accept-arrow,
.iphone.is-call-active + .accept-arrow,
.iphone.is-call-ended + .accept-arrow {
  opacity: 0;
  visibility: hidden;
}
@keyframes acceptArrowFloat {
  0%,100% { transform: translate(0, 0) rotate(-2deg); opacity: .92; }
  50% { transform: translate(-3px, 3px) rotate(-2deg); opacity: 1; }
}
.demo-benefits {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  width: min(100%, 390px);
  padding: 30px 28px 36px;
  border-radius: 18px;
  border: 1px solid rgba(168,85,247,.48);
  background:
    radial-gradient(circle at 28% 108%, rgba(23,224,210,.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 34px 94px rgba(0,0,0,.34), 0 0 60px rgba(124,58,237,.18);
  overflow: hidden;
}
.demo-benefits::after {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: 2px;
  height: 190px;
  background: url("assets/benefits-wave.png") center bottom / cover no-repeat;
  opacity: .98;
  mix-blend-mode: screen;
  filter: saturate(1.45) brightness(1.25) drop-shadow(0 0 18px rgba(34,211,238,.26));
  transform: none;
  pointer-events: none;
}
.demo-benefits h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 30px;
  color: #fff;
}
.demo-benefits__line {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 4px;
  margin: 14px 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #A855F7, #22D3EE);
}
.demo-benefits ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 16px;
}
.demo-benefits li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid rgba(165,180,252,.16);
  background: rgba(255,255,255,.045);
}
.demo-benefits__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #A855F7;
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(168,85,247,.34);
  box-shadow: 0 0 22px rgba(124,58,237,.18);
}
.demo-benefits__icon--teal {
  color: #22D3EE;
  background: rgba(23,224,210,.14);
  border-color: rgba(23,224,210,.32);
}
.demo-benefits__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.demo-benefits__icon strong {
  font-size: 28px;
  font-family: var(--font-display);
}
.demo-benefits b {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}
.demo-benefits small {
  display: block;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.35;
}

/* Kompakte Demo-Variante */
.subsite .demo {
  padding: clamp(36px, 4vw, 54px) 20px;
}
.subsite .demo .section__head {
  margin-bottom: 20px;
}
.subsite .demo .section__head h2 {
  font-size: clamp(26px, 2.7vw, 38px);
}
.subsite .demo .section__sub {
  max-width: 560px;
  font-size: 14.5px;
}
.subsite .demo__tabs {
  margin-bottom: 18px;
}
.subsite .demo__stage {
  max-width: 1280px;
  grid-template-columns: minmax(310px, .9fr) auto minmax(300px, .84fr);
  gap: clamp(34px, 5vw, 74px);
}
.subsite .demo .iphone__frame {
  width: 254px;
  height: 520px;
  border-radius: 42px;
  padding: 8px;
}
.subsite .demo .iphone::after {
  border-radius: 36px;
}
.subsite .demo .iphone__screen {
  border-radius: 34px;
}
.subsite .demo .iphone__island {
  width: 86px;
  height: 24px;
  top: 10px;
}
.subsite .demo .iphone__statusbar {
  top: 12px;
  padding: 0 21px;
  font-size: 12px;
}
.subsite .demo .callscreen {
  padding: 60px 18px 22px;
}
.subsite .demo .caller__label {
  font-size: 12px;
  margin-bottom: 13px;
}
.subsite .demo .caller__avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  font-size: 26px;
}
.subsite .demo .caller__name {
  font-size: 22px;
}
.subsite .demo .caller__num {
  font-size: 12px;
}
.subsite .demo .incoming-actions {
  padding: 0 12px 8px;
}
.subsite .demo .ring-btn {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
}
.subsite .demo .ring-btn svg {
  width: 25px;
  height: 25px;
}
.subsite .demo .in-action {
  gap: 7px;
  font-size: 12px;
}
.subsite .demo .callscreen--active.is-active {
  grid-template-rows: 40px 112px 150px 54px;
  row-gap: 8px;
  padding-bottom: 20px;
}
.subsite .demo .callpad {
  gap: 10px 18px;
}
.subsite .demo__copy {
  max-width: 345px;
  justify-self: start;
}
.subsite .demo__copy h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 18px;
}
.demo-title-accent {
  background: linear-gradient(90deg, #A855F7, #22D3EE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #A855F7;
}
.subsite .livestatus {
  gap: 13px;
}
.subsite .lstep {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  padding: 3px 0;
  align-items: center;
}
.subsite .lstep::before {
  left: 21px;
  top: 39px;
  bottom: -17px;
  z-index: 0;
}
.subsite .lstep__dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #A855F7;
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(124,58,237,.36);
  box-shadow: 0 10px 24px rgba(124,58,237,.12), inset 0 0 0 1px rgba(255,255,255,.04);
}
.subsite .lstep__dot::after {
  display: none;
}
.subsite .lstep__dot svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.subsite .lstep:nth-child(3) .lstep__dot,
.subsite .lstep:nth-child(4) .lstep__dot {
  color: #22D3EE;
  background: rgba(23,224,210,.12);
  border-color: rgba(23,224,210,.32);
}
.subsite .lstep b {
  font-size: 14px;
  white-space: normal;
}
.subsite .lstep small {
  display: block;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.subsite .demo-note {
  max-width: 330px;
  margin-top: 18px;
  padding: 13px 15px;
  font-size: 13px;
}
.accept-arrow {
  left: calc(50% + 72px);
  top: 358px;
  width: 72px;
  height: 94px;
  color: #30FF9A;
  filter: drop-shadow(0 0 18px rgba(48,255,154,.95)) drop-shadow(0 0 34px rgba(34,197,94,.48));
}
.accept-arrow svg {
  stroke-width: 5.5;
}
.demo-benefits {
  width: min(100%, 300px);
  justify-self: end;
  padding: 20px 18px 24px;
  border-radius: 16px;
}
.demo-benefits h3 {
  font-size: 23px;
}
.demo-benefits__line {
  margin: 10px 0 17px;
  width: 46px;
  height: 3px;
}
.demo-benefits ul {
  gap: 10px;
}
.demo-benefits li {
  grid-template-columns: 50px 1fr;
  gap: 11px;
  padding: 11px;
  border-radius: 12px;
}
.demo-benefits__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}
.demo-benefits__icon svg {
  width: 24px;
  height: 24px;
}
.demo-benefits__icon strong {
  font-size: 22px;
}
.demo-benefits b {
  font-size: 13.5px;
  margin-bottom: 3px;
}
.demo-benefits small {
  font-size: 12px;
}
.hero__visual--ringlio-scene {
  min-height: 610px;
  align-items: end;
  justify-content: center;
  z-index: 2;
}
.ringlio-hero-scene {
  position: relative;
  width: min(100%, 620px);
  min-height: 540px;
}
.ringlio-hero-scene__glow {
  position: absolute;
  left: 52%;
  bottom: 8%;
  width: 92%;
  height: 60%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(168,85,247,.50), rgba(37,99,235,.30) 42%, transparent 72%);
  filter: blur(34px);
  transform: translateX(-50%);
  animation: ringlioGlow 6.5s ease-in-out infinite;
}
.ringlio-hero-scene__floor {
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 0;
  height: 170px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,.42), rgba(37,99,235,.20) 44%, transparent 72%);
  filter: blur(12px);
  transform: perspective(560px) rotateX(62deg);
}
.ringlio-hero-scene__panther {
  position: absolute;
  right: 1%;
  bottom: 30px;
  width: min(94%, 590px);
  height: auto;
  filter:
    drop-shadow(0 32px 36px rgba(0,0,0,.55))
    drop-shadow(0 0 42px rgba(139,92,246,.55))
    drop-shadow(0 0 24px rgba(34,211,238,.20));
  animation: ringlioFloat 7s ease-in-out infinite;
}

@media (max-width: 1180px) {
  .subsite .hero__inner {
    grid-template-columns: minmax(420px, .9fr) minmax(420px, 1fr);
  }
  .ringlio-hero-title {
    font-size: clamp(42px, 5.4vw, 66px);
  }
  .ringlio-hero-title__brand {
    font-size: clamp(62px, 8.4vw, 104px);
  }
  .ringlio-hero-scene {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .subsite .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 52px;
    gap: 24px;
  }
  .ringlio-hero-title {
    font-size: clamp(34px, 9vw, 48px);
  }
  .ringlio-hero-title__brand {
    font-size: clamp(58px, 17vw, 86px);
  }
  .hero__visual--ringlio-scene {
    min-height: 330px;
  }
  .ringlio-hero-scene {
    min-height: 330px;
    width: min(100%, 520px);
  }
  .ringlio-hero-scene__panther {
    right: -6%;
    bottom: 14px;
    width: min(108%, 520px);
  }
  .subsite .hero__cta--three {
    gap: 10px;
    margin-top: 22px;
  }
  .subsite .hero__cta--three .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  .subsite .demo {
    padding: 32px 14px;
  }
  .subsite .demo__copy h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .subsite .lstep {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
  }
  .subsite .lstep__dot {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .subsite .lstep__dot svg {
    width: 18px;
    height: 18px;
  }
  .accept-arrow {
    left: calc(50% + 42px);
    top: 404px;
    width: 50px;
    height: 66px;
    filter: drop-shadow(0 0 12px rgba(48,255,154,.85));
  }
  .demo-benefits {
    padding: 16px 13px 18px;
  }
  .demo-benefits li {
    grid-template-columns: 42px 1fr;
    gap: 9px;
    padding: 10px;
  }
  .demo-benefits__icon {
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FONIO-STYLE PREISE (Ringlio)
   ═══════════════════════════════════════════════════════════ */
.fprice-toggle {
  display: inline-flex; margin: 0 auto var(--space-5); gap: 4px;
  padding: 4px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line);
  position: relative; left: 50%; transform: translateX(-50%);
}
.fprice-toggle__btn {
  border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--ink-60);
  padding: 10px 20px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .18s ease, color .18s ease;
}
.fprice-toggle__btn.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-crisp); }
.fprice-toggle__save { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--teal-deep); background: var(--teal-soft); padding: 2px 7px; border-radius: 999px; }

.fprice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); align-items: stretch; max-width: 1100px; margin: 0 auto; }
.fcard-price {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-4);
  box-shadow: var(--shadow-crisp);
  transition: transform .22s ease, box-shadow .22s ease;
}
.fcard-price:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.fcard-price--featured { border: 2px solid var(--violet); box-shadow: var(--shadow-deep); }
.fcard-price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--teal)); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 15px; border-radius: 6px;
}
.fcard-price h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.fcard-price__for { font-size: 13.5px; color: var(--ink-60); min-height: 36px; }
.fcard-price__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin: var(--space-2) 0 var(--space-3); }
.fcard-price__ab { font-size: 14px; color: var(--ink-40); font-weight: 600; align-self: center; }
.fcard-price__price strong { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; }
.fcard-price--featured .fcard-price__price strong {
  background: linear-gradient(95deg, var(--violet), var(--teal)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.fcard-price__price span { font-size: 14px; color: var(--ink-40); }
.fcard-price__btn { width: 100%; margin-bottom: var(--space-3); }
.fcard-price__label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-40); margin: var(--space-2) 0 10px;
  padding-top: var(--space-2); border-top: 1px solid var(--line);
}
.fcard-price__list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fcard-price__list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink); }
.fcard-price__list li em { font-style: normal; color: var(--ink-40); font-size: 12.5px; display: block; }
.fcard-price__list li b { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 5px; padding: 1px 7px; font-size: 13px; }
.fcard-price__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300756E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.subsite .fcard-price__list li::before { background-color: var(--teal-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236FF0E4'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2Z'/%3E%3C/svg%3E"); }
.fprice-note { text-align: center; font-size: 13px; color: var(--ink-40); margin-top: var(--space-4); }
@media (max-width: 900px) {
  .fprice-grid { grid-template-columns: 1fr; max-width: 440px; }
  .fcard-price--featured { order: -1; }
}

/* Preise/Kontakt-Seite dunkel */
.page-prices { background: #050918; }
.page-prices .preise,
.page-prices .buchen {
  max-width: none;
  margin: 0;
  color: #F7FAFF;
  background:
    radial-gradient(circle at 18% 18%, rgba(124,58,237,.22), transparent 32%),
    radial-gradient(circle at 78% 72%, rgba(23,224,210,.14), transparent 30%),
    linear-gradient(135deg, #040716 0%, #08132E 58%, #020611 100%);
  border-color: rgba(125,211,252,.16);
}
.page-prices .preise { padding: clamp(64px, 8vw, 110px) 24px; }
.page-prices .buchen { padding: clamp(54px, 7vw, 92px) 24px; }
.page-prices .section__head h2,
.page-prices .buchen__inner h2 {
  color: #fff;
  text-shadow: 0 18px 60px rgba(0,0,0,.42);
}
.page-prices .section__sub,
.page-prices .buchen__sub,
.page-prices .buchen__hint {
  color: rgba(236,239,255,.74);
  opacity: 1;
}
.page-prices .fprice-toggle {
  background: rgba(255,255,255,.055);
  border-color: rgba(165,180,252,.18);
}
.page-prices .fprice-toggle__btn { color: rgba(236,239,255,.68); }
.page-prices .fprice-toggle__btn.is-active {
  background: linear-gradient(135deg, rgba(124,58,237,.34), rgba(23,224,210,.18));
  color: #fff;
  box-shadow: 0 18px 48px rgba(124,58,237,.18);
}
.page-prices .fcard-price {
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
    rgba(8,12,28,.88);
  border-color: rgba(165,180,252,.16);
  box-shadow: 0 26px 80px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.035);
}
.page-prices .fcard-price--featured {
  border-color: rgba(168,85,247,.72);
  box-shadow: 0 32px 100px rgba(124,58,237,.20), inset 0 0 0 1px rgba(255,255,255,.04);
}
.page-prices .fcard-price h3,
.page-prices .fcard-price__price strong,
.page-prices .fcard-price__list li { color: #fff; }
.page-prices .fcard-price__for,
.page-prices .fcard-price__price span,
.page-prices .fcard-price__ab,
.page-prices .fcard-price__list li em,
.page-prices .fprice-note { color: rgba(236,239,255,.62); }
.page-prices .fcard-price__label { color: #22D3EE; }
.page-prices .fcard-price__list li b {
  color: #fff;
  background: rgba(255,255,255,.07);
  border-color: rgba(165,180,252,.18);
}
.page-prices .buchen__inner {
  max-width: 1040px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124,58,237,.22), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(165,180,252,.16);
  box-shadow: 0 34px 110px rgba(0,0,0,.34);
}
.page-prices .buchen__panther {
  background: rgba(255,255,255,.08);
  border-color: rgba(165,180,252,.18);
}
.page-prices .buchen__points li { color: rgba(236,239,255,.82); }
.page-prices .buchen__points b { color: #fff; }
.page-prices .buchen__points span {
  color: rgba(236,239,255,.62);
  opacity: 1;
}
.page-prices .buchen__btn {
  background: linear-gradient(135deg, #A855F7, #6D5CFF 52%, #22D3EE);
  color: #fff;
  box-shadow: 0 20px 50px rgba(124,58,237,.28);
}

/* Über-uns Panther: gleiches Hero-Bild, weich integriert */
.subsite .ueber__visual {
  min-height: 460px;
  align-items: center;
}
.subsite .ueber__visual::before {
  inset: 10% 0 0 12%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(124,58,237,.38), rgba(23,224,210,.16) 42%, transparent 72%);
  filter: blur(34px);
  transform: none;
}
.subsite .ueber__panther {
  width: min(100%, 560px);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}
.subsite .ueber__panther::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 8%;
  bottom: 2%;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,.35), rgba(23,224,210,.16) 46%, transparent 72%);
  filter: blur(12px);
  transform: perspective(420px) rotateX(62deg);
  z-index: 0;
}
.subsite .ueber__panther img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 34px rgba(0,0,0,.48))
    drop-shadow(0 0 34px rgba(139,92,246,.48));
}

/* Globaler Loading-Skeleton */
body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 22%, rgba(124,58,237,.22), transparent 30%),
    radial-gradient(circle at 82% 66%, rgba(34,211,238,.14), transparent 34%),
    linear-gradient(135deg, rgba(5,7,18,.96), rgba(7,10,30,.98) 48%, rgba(3,18,24,.96));
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .42s ease, visibility .42s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__shell {
  width: min(880px, 100%);
  min-height: 340px;
  border: 0;
  border-radius: 0;
  padding: clamp(18px, 4vw, 34px);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.page-loader__top,
.page-loader__grid,
.page-loader__stats {
  display: grid;
  gap: 16px;
}

.page-loader__top {
  grid-template-columns: 150px 1fr 120px;
  align-items: center;
  margin-bottom: 64px;
  opacity: .72;
}

.page-loader__brand,
.page-loader__pill,
.page-loader__line,
.page-loader__phone,
.page-loader__stat {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,.07), rgba(168,85,247,.18), rgba(34,211,238,.10), rgba(255,255,255,.07));
  background-size: 220% 100%;
  animation: skeletonShimmer 1.45s ease-in-out infinite;
}

.page-loader__brand {
  height: 22px;
  border-radius: 999px;
  opacity: .78;
}

.page-loader__nav {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.page-loader__pill {
  width: 74px;
  height: 11px;
  border-radius: 999px;
  opacity: .66;
}

.page-loader__grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.page-loader__copy {
  display: grid;
  gap: 14px;
}

.page-loader__line {
  height: 14px;
  border-radius: 999px;
  opacity: .72;
}

.page-loader__line--xl {
  width: min(540px, 100%);
  height: 42px;
}

.page-loader__line--lg { width: 86%; }
.page-loader__line--md { width: 66%; }

.page-loader__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 520px;
}

.page-loader__stat {
  height: 46px;
  border: 0;
  border-radius: 10px;
  opacity: .58;
}

.page-loader__phone {
  display: none;
}

@keyframes skeletonShimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

@media (max-width: 720px) {
  .page-loader {
    padding: 14px;
  }
  .page-loader__shell {
    min-height: 0;
    padding: 16px;
  }
  .page-loader__top {
    grid-template-columns: 1fr 80px;
    margin-bottom: 42px;
  }
  .page-loader__nav {
    display: none;
  }
  .page-loader__grid {
    grid-template-columns: 1fr;
  }
  .page-loader__phone {
    display: none;
  }
  .page-loader__line--xl {
    height: 42px;
  }
  .page-loader__stats {
    grid-template-columns: 1fr;
  }
  .page-loader__stat {
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__brand,
  .page-loader__pill,
  .page-loader__line,
  .page-loader__phone,
  .page-loader__stat {
    animation: none;
  }
}

/* Demo-Handy: aktiver Anruf kompakter */
.subsite .demo .callscreen--active.is-active {
  grid-template-rows: 34px 118px 128px 1fr;
  row-gap: 7px;
  padding: 58px 20px 22px;
}

.subsite .demo .caller--small .caller__name {
  font-size: 18px;
  line-height: 1.05;
}

.subsite .demo .caller__timer {
  font-size: 11px;
  margin-top: 3px;
}

.subsite .demo .agent-voice {
  width: 100%;
  min-height: 116px;
  padding: 12px 12px 10px;
  border-radius: 13px;
}

.subsite .demo .voice-bars {
  height: 25px;
  gap: 3px;
  margin-bottom: 6px;
}

.subsite .demo .voice-bars span {
  width: 3px;
}

.subsite .demo .agent-voice__label {
  font-size: 9px;
  letter-spacing: .16em;
  gap: 6px;
}

.subsite .demo .live-dot {
  width: 6px;
  height: 6px;
}

.subsite .demo .agent-voice__text {
  font-size: 11.2px;
  line-height: 1.27;
  min-height: 44px;
  max-height: 44px;
  margin-top: 7px;
}

.subsite .demo .callpad {
  gap: 8px 12px;
  padding: 0 4px;
}

.subsite .demo .pad-btn {
  gap: 5px;
  font-size: 10.8px;
  line-height: 1.1;
}

.subsite .demo .pad-btn svg {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 13px;
}

.subsite .demo .ring-btn--end {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  margin: auto auto 0;
  align-self: end;
}

.subsite .demo .ring-btn--end svg {
  width: 22px;
  height: 22px;
}

.subsite .flow__meta .fchip {
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(9,14,32,.72);
  border-color: rgba(139,92,246,.42);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.subsite .nav__brand .subbrand {
  min-height: 28px;
  margin-left: 14px;
  padding: 5px 12px 6px;
  border-radius: 8px;
  color: #DCEBFF;
  background:
    linear-gradient(135deg, rgba(124,58,237,.32), rgba(37,99,235,.22)),
    rgba(255,255,255,.055);
  border: 1px solid rgba(147,197,253,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 8px 22px rgba(37,99,235,.16);
}

/* Weiche Übergänge zwischen dunklen Sektionen */
.subsite .hero {
  border-bottom: 0;
  isolation: isolate;
}

.subsite .hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 190px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 72%, rgba(23,224,210,.18), transparent 52%),
    linear-gradient(180deg, transparent 0%, rgba(4,7,26,.42) 48%, #031017 100%);
}

.subsite .hero::after {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 62%, transparent 100%);
}

.subsite .missed {
  position: relative;
}

.subsite .missed::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  width: 100vw;
  height: 260px;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 68% 42%, rgba(23,224,210,.20), transparent 52%),
    radial-gradient(ellipse at 24% 62%, rgba(124,58,237,.20), transparent 56%),
    linear-gradient(180deg, transparent 0%, rgba(3,16,23,.92) 52%, transparent 100%);
}

.subsite .demo {
  border-top: 0;
}

.subsite .demo::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -92px;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(3,7,22,.72) 58%, rgba(3,7,22,0) 100%);
}
