/* ==========================================================================
   visotask × Kilevel – Stylesheet
   1 Schrift · 2 Tokens · 3 Reset · 4 Primitive · 5 Schwebende Navigation ·
   6 Mega-Menü · 7 Mobile-Drawer · 8 Footer
   Helles Theme, bewusst ohne Dark Mode. Funktioniert ohne Server (file://).
   ========================================================================== */

/* ---------- 1) Schrift: Manrope (variabel, selbst gehostet, DSGVO-sauber) ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/archivo-latin-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-latin-var.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2) Design-Tokens ---------- */
:root {
  /* Farben – Kilevel-Violett #7642F0 + Fast-Schwarz, Grün nur als Mini-Akzent */
  --ink:        #0b0b12;
  --text:       #2b2b40;
  --muted:      #61617a;
  --brand:      #7642f0;
  --brand-dark: #5f2fd8;
  --brand-soft: #f1ecfe;
  --accent:     #1d9e75;
  --bg:         #ffffff;
  --bg-soft:    #f7f6fb;
  --line:       #e9e7f2;
  --focus:      #6d3ae8;
  --footer-text:  #cfccdf;
  --footer-muted: #928fa8;
  --footer-line:  rgba(255, 255, 255, 0.14);

  /* Typografie */
  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Archivo', 'Manrope', system-ui, sans-serif;
  --text-xs:  0.75rem;
  --text-sm:  0.875rem;
  --text-md:  0.9375rem;
  --text-base: 1rem;
  --text-lg:  1.125rem;

  /* Abstände (4-px-Raster) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;

  /* Form & Tiefe */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 11, 18, 0.06);
  --shadow-md: 0 6px 24px -8px rgba(11, 11, 18, 0.16);
  --shadow-lg: 0 18px 56px -16px rgba(11, 11, 18, 0.28);

  /* Bewegung */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 160ms;
  --dur-med: 240ms;

  /* Schwebende Navigation */
  --island-top: 0.75rem;
  --island-h: 3.75rem;
  --header-offset: calc(var(--island-top) + var(--island-h) + 1.75rem);
}

/* ---------- 3) Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--island-top) + var(--island-h) + 1rem);
  /* Overscroll unten zeigt Footer-Farbe statt Weiß */
  background: var(--ink);
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-top: var(--header-offset);
}

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

input, button, textarea, select { font: inherit; }

button { cursor: pointer; }

p, h1, h2, h3, h4 { overflow-wrap: break-word; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; }

a { color: inherit; }

::selection { background: var(--brand-soft); color: var(--ink); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html.u-scroll-lock,
html.u-scroll-lock body { overflow: hidden; }

/* ---------- 4) Layout-Primitive ---------- */
.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 48em) {
  .container { padding-inline: 2rem; }
}

.section { padding-block: 4rem; }

@media (min-width: 48em) {
  .section { padding-block: 7rem; }
}

main { flex: 1; }

.section--placeholder .build-note {
  color: var(--muted);
  font-size: var(--text-md);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.btn--primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active { transform: translateY(0); }

/* ==========================================================================
   5) Schwebende Navigation („Island“) – fixiert, mittig zur Seite
   ========================================================================== */
.nav-island {
  position: fixed;
  top: var(--island-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: min(83rem, calc(100% - 1.25rem));
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  backdrop-filter: saturate(1.5) blur(14px);
  border: 1px solid rgba(233, 231, 242, 0.9);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}

.nav-island.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.nav-island__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: var(--island-h);
  padding-inline: var(--sp-4) var(--sp-3);
}

@media (min-width: 64em) {
  .nav-island__inner { padding-inline: var(--sp-5) var(--sp-4); }
}

/* Wortmarke (Platzhalter, bis ein Logo vorliegt) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.brand__name {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand__dot { color: var(--brand); }

.brand__tag {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(120deg, #9a75f5, var(--brand));
  border-radius: var(--radius-full);
  padding: 0.22rem 0.7rem;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(118, 66, 240, 0.45);
}

@media (max-width: 30em) {
  .brand__tag { display: none; }
}

/* Desktop-Navigation (mittig im Island) */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-inline: auto;
}

.site-nav__link,
.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.8rem;
  border: 0;
  background: none;
  border-radius: 12px;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.site-nav__link:hover,
.site-nav__trigger:hover,
.site-nav__trigger[aria-expanded="true"] {
  background: var(--bg-soft);
  color: var(--ink);
}

.site-nav__caret {
  width: 0.85em;
  height: 0.85em;
  transition: transform var(--dur-fast) var(--ease);
}

.site-nav__trigger[aria-expanded="true"] .site-nav__caret {
  transform: rotate(180deg);
}

/* Rechts: Sprache + CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-inline-start: auto;
}

.header-actions .btn--primary { display: none; }

@media (min-width: 64em) {
  .site-nav { display: flex; }
  .header-actions .btn--primary { display: inline-flex; }
  .site-nav + .header-actions { margin-inline-start: 0; }
}

/* Sprachumschaltung (Desktop) */
.lang {
  position: relative;
  display: none;
}

@media (min-width: 64em) {
  .lang { display: block; }
}

.lang__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}

.lang__summary::-webkit-details-marker { display: none; }

.lang__summary:hover { background: var(--bg-soft); }

.lang[open] .lang__summary {
  border-color: var(--brand);
  background: var(--bg-soft);
}

.lang__icon { width: 1.05em; height: 1.05em; color: var(--muted); }

.lang__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 11.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  margin: 0;
  list-style: none;
  z-index: 95;
}

.lang__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}

.lang__item a:hover { background: var(--bg-soft); color: var(--ink); }

.lang__item a[aria-current="true"] {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.lang__code {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* Burger (mobil) */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: none;
  border-radius: 12px;
}

.burger:hover { background: var(--bg-soft); }

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--dur-med) var(--ease);
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (min-width: 64em) {
  .burger { display: none; }
}

/* ==========================================================================
   6) Mega-Menü – schwebendes Panel unter dem Island, mit Icons
   ========================================================================== */
.mega {
  position: absolute;
  top: calc(100% + 0.6rem);
  inset-inline: 0;
  display: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: calc(100dvh - var(--island-top) - var(--island-h) - 2.5rem);
  overflow-y: auto;
}

.mega.is-open { display: block; }

@media (prefers-reduced-motion: no-preference) {
  .mega.is-open { animation: mega-in var(--dur-fast) var(--ease); }
}

@keyframes mega-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mega__grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 17rem;
  gap: var(--sp-6);
  padding: var(--sp-6);
}

.mega__group-title {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}

.mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}

.mega__link {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease);
}

.mega__link:hover { background: var(--bg-soft); }

.mega__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.mega__icon svg { width: 21px; height: 21px; }

.mega__link-title {
  display: block;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--ink);
}

.mega__link-desc {
  display: block;
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: 0.1rem;
  line-height: 1.5;
}

/* Seitenkarte im Mega-Menü */
.mega__aside {
  background: linear-gradient(160deg, var(--bg-soft), #efeafd);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}

.mega__aside-title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
}

.mega__aside-text {
  font-size: var(--text-sm);
  color: var(--muted);
}

.mega__aside .btn { margin-top: auto; }

/* ==========================================================================
   7) Mobile-Drawer
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 96;
  background: rgba(11, 11, 18, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 97;
  height: 100dvh;
  width: min(21rem, 92vw);
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  transform: translateX(105%);
  transition: transform var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--sp-5);
  overflow-y: auto;
}

.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.drawer__close {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  border-radius: 12px;
  color: var(--ink);
}

.drawer__close:hover { background: var(--bg-soft); }

.drawer__close svg { width: 22px; height: 22px; }

.drawer__nav { display: grid; gap: 0.15rem; }

.drawer__group-title {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-block: var(--sp-4) var(--sp-2);
}

.drawer__link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.drawer__link:hover { background: var(--bg-soft); }

.drawer__link svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex: none;
}

.drawer__langs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer__lang {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.drawer__lang:hover { background: var(--bg-soft); }

.drawer__lang[aria-current="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.drawer__cta { margin-top: var(--sp-5); }

.drawer__cta .btn { width: 100%; }

/* ==========================================================================
   8) Footer – dunkle Fläche
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--footer-text);
  padding-block: var(--sp-7) var(--sp-5);
  margin-top: 0;
}

@media (min-width: 64em) {
  .site-footer { padding-block: 6rem 3rem; }
}

.site-footer :focus-visible { outline-color: #c4b1f7; }

.site-footer__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--footer-line);
}

@media (min-width: 48em) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6) var(--sp-5); }
}

@media (min-width: 64em) {
  .site-footer__grid {
    grid-template-columns: 1.5fr 1.1fr 1fr 0.8fr 1fr;
    gap: var(--sp-7) var(--sp-6);
    padding-bottom: var(--sp-7);
  }
}

.site-footer .brand__name { color: #ffffff; }

.site-footer__claim {
  margin-top: var(--sp-3);
  max-width: 34ch;
  font-size: var(--text-md);
  color: var(--footer-muted);
  line-height: 1.6;
}

.site-footer__title {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-muted);
  margin-bottom: var(--sp-3);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer__list a {
  font-size: var(--text-md);
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer__list a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--footer-muted);
}

.site-footer__partner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__partner-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--accent);
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus { left: 0; }

/* ---------- Logos ---------- */
.brand__logo {
  height: 20px;
  width: auto;
}

.brand__logo--light { height: 19px; }

.mega__aside-logo {
  height: 21px;
  width: auto;
}

/* Kilevel-Logo im Footer: heller Chip, damit das violette Logo auf Dunkel sauber steht */
.site-footer__kilevel {
  margin-top: var(--sp-4);
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
}

.site-footer__kilevel img {
  height: 19px;
  width: auto;
}

/* ==========================================================================
   9) Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-block: var(--sp-6) var(--sp-7);
  overflow: hidden;
}

@media (min-width: 64em) {
  .hero { padding-block: 6rem 7rem; }
}

.hero__grid {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 64em) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-5);
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow-dot { animation: pulse 2.4s var(--ease) infinite; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(29, 158, 117, 0); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.4vw + 0.5rem, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
  max-width: 16ch;
}

.hero__sub {
  margin-top: var(--sp-4);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.btn--lg {
  padding: 0.8rem 1.4rem;
  font-size: var(--text-base);
  border-radius: 14px;
}

.btn--ghost {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: #d8d4ea;
  transform: translateY(-1px);
}

.btn--ghost svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform var(--dur-fast) var(--ease);
}

.btn--ghost:hover svg { transform: translateX(3px); }

.hero__stats {
  list-style: none;
  margin: var(--sp-6) 0 0;
  padding: var(--sp-4) 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.hero__stat svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex: none;
}

/* ---------- Illustratives Gesprächsbeispiel ---------- */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Weicher Violett-Schein hinter der Karte */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: -12% -8%;
  background:
    radial-gradient(42% 46% at 68% 30%, rgba(118, 66, 240, 0.16), transparent 70%),
    radial-gradient(34% 38% at 28% 78%, rgba(118, 66, 240, 0.10), transparent 70%);
  z-index: -1;
}

.call-card {
  width: min(27rem, 100%);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5);
}

.call-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}

.call-card__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.call-card__live-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent);
}

@media (prefers-reduced-motion: no-preference) {
  .call-card__live-dot { animation: pulse 2s var(--ease) infinite; }
}

.call-card__wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 22px;
  margin-inline-start: auto;
}

.call-card__wave span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
}

@media (prefers-reduced-motion: no-preference) {
  .call-card__wave span { animation: wave 1.1s ease-in-out infinite; }
  .call-card__wave span:nth-child(2) { animation-delay: 0.12s; }
  .call-card__wave span:nth-child(3) { animation-delay: 0.24s; }
  .call-card__wave span:nth-child(4) { animation-delay: 0.36s; }
  .call-card__wave span:nth-child(5) { animation-delay: 0.48s; }
  .call-card__wave span:nth-child(6) { animation-delay: 0.6s; }
  .call-card__wave span:nth-child(7) { animation-delay: 0.72s; }
}

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(2.4); }
}

.call-card__body {
  display: grid;
  gap: var(--sp-3);
  padding-block: var(--sp-5);
}


/* ---------- Interaktive Demo-Einladung (KI-Chat + Rückruf-Formular) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .call-bubble--anim-1 { animation: msg-in 0.4s var(--ease) 1.35s both; }
  .call-bubble--anim-2 { animation: msg-in 0.4s var(--ease) 3.0s both; }
  .call-form           { animation: msg-in 0.45s var(--ease) 3.45s both; }
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Rückruf-Formular */
.call-form {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

.call-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.call-form__input {
  flex: 1;
  min-width: 10rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: var(--text-md);
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--dur-fast) var(--ease);
}

.call-form__input::placeholder { color: var(--muted); }

.call-form__input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 0;
  border-color: var(--brand);
}

.call-form__status {
  margin-top: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #b42318;
}

.call-form__status--info {
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
}

.call-form__hint {
  margin-top: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--muted);
}

.call-form__alt {
  margin-top: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text);
}

.call-form__alt a { text-decoration: none; color: var(--ink); }

.call-form__alt a:hover strong { text-decoration: underline; text-underline-offset: 3px; }

.call-form__alt em {
  font-style: normal;
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ==========================================================================
   10) Sektions-Bausteine (wiederverwendbar) + Problem & Lösung
   ========================================================================== */
.section--soft { background: var(--bg-soft); }

.section-head {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--sp-7);
}

.section-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: clamp(1.9rem, 3.1vw + 0.6rem, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-lead {
  margin-top: var(--sp-3);
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--muted);
}

/* Abschluss-Link einer Sektion */
.section-next {
  margin-top: var(--sp-6);
  text-align: center;
  font-size: var(--text-md);
  color: var(--muted);
}

.section-next a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-inline-start: 0.35rem;
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.section-next a:hover { text-decoration: underline; text-underline-offset: 3px; }

.section-next a svg {
  width: 1em;
  height: 1em;
  transition: transform var(--dur-fast) var(--ease);
}

.section-next a:hover svg { transform: translateX(3px); }

/* ==========================================================================
   11) Lösungs-Showcase (Full-Width-Bänder)
   ========================================================================== */
.container--wide { max-width: 85rem; }

.section-head--solutions { padding-block: var(--sp-7) var(--sp-6); margin-bottom: 0; }

@media (min-width: 48em) {
  .section-head--solutions { padding-block: 7rem 5rem; }
}

.solution-band { padding-block: var(--sp-7); }

.solution-band--soft { background: var(--bg-soft); }

@media (min-width: 64em) {
  .solution-band { padding-block: var(--sp-8); }
}

.solution {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 64em) {
  .solution { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .solution--flip .solution__visual { order: 2; }
  .solution--flip .solution__copy { order: 1; }
}

/* Visual-Kachel mit Szene */
.solution__visual {
  background: linear-gradient(160deg, var(--brand-soft), #f3f0fc 55%, #eee9fd);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.25rem, 4vw, 3rem);
  display: grid;
  place-items: center;
}

.solution-band--soft .solution__visual {
  background: linear-gradient(160deg, #ece4fd, var(--brand-soft));
}

/* Text-Seite */
.solution__kicker {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: var(--sp-3);
}

.solution__kicker span { color: var(--muted); }

.solution__title {
  font-size: clamp(1.7rem, 2.4vw + 0.5rem, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.solution__text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.usecase {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  max-width: 56ch;
}

.solution-band--soft .usecase { background: var(--bg); }

.usecase__label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: var(--sp-1);
}

.usecase__text {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--text);
}

.solution__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

/* Pfeil-Textlink (generisch) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-dark);
  font-size: var(--text-md);
  font-weight: 700;
  text-decoration: none;
}

.link-arrow:hover { text-decoration: underline; text-underline-offset: 3px; }

.link-arrow svg {
  width: 1em;
  height: 1em;
  transition: transform var(--dur-fast) var(--ease);
}

.link-arrow:hover svg { transform: translateX(3px); }

/* ==========================================================================
   12) Plattform-Module: plakative Architektur-Elemente
   ========================================================================== */

/* Zweispaltige Modul-Liste im Mega-Menü */
@media (min-width: 64em) {
  .mega__list--cols {
    grid-template-columns: 1fr 1fr;
    column-gap: var(--sp-4);
  }
}

/* Hairlines zwischen den Bändern (Architektur-Rhythmus) */
.solution-band { border-top: 1px solid var(--line); }

/* Riesige Ghost-Modulnummer */
.solution__num {
  display: block;
  font-size: clamp(3.6rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #efeafd;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #d9d0f2;
  margin-bottom: var(--sp-3);
  user-select: none;
}

.solution-band--soft .solution__num {
  color: #e6ddfb;
  -webkit-text-stroke-color: #cfc2f0;
}

/* Feines Blueprint-Raster in den Visual-Kacheln */
.solution__visual {
  background-image:
    linear-gradient(rgba(118, 66, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 66, 240, 0.045) 1px, transparent 1px),
    linear-gradient(160deg, var(--brand-soft), #f3f0fc 55%, #eee9fd);
  background-size: 28px 28px, 28px 28px, cover;
}

.solution-band--soft .solution__visual {
  background-image:
    linear-gradient(rgba(118, 66, 240, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 66, 240, 0.05) 1px, transparent 1px),
    linear-gradient(160deg, #ece4fd, var(--brand-soft));
  background-size: 28px 28px, 28px 28px, cover;
}

/* Feature-Chips in der Textspalte */
.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text);
}

.solution-band--soft .feature-chip { background: var(--bg); }

.feature-chip svg {
  width: 13px;
  height: 13px;
  color: var(--brand);
  flex: none;
}

/* ---------- Enterprise-Fundament ---------- */
.solution-band--foundation { background: var(--bg-soft); }

.foundation-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.foundation-title {
  font-size: clamp(1.35rem, 1.8vw + 0.5rem, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.foundation-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .foundation-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 64em) {
  .foundation-grid { grid-template-columns: repeat(4, 1fr); }
}

.foundation-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}

.foundation-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: var(--sp-3);
}

.foundation-card__icon svg { width: 22px; height: 22px; }

.foundation-card__title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.foundation-card__text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--muted);
}

.section-next--pad { padding-top: var(--sp-4); }

/* ==========================================================================
   13) Voice-Optik, State-Graph-Puls, Display-Headlines
   ========================================================================== */

/* Plakative Display-Headlines (Archivo Black) */
.hero__title,
.section-title,
.solution__title,
.foundation-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.solution__num { font-family: var(--font-display); font-weight: 900; }

/* Hero-Karte: sprechender Agent */
.call-card__body--voice {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding-block: var(--sp-5) var(--sp-4);
}

.voice-orb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand), #9a75f5);
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.voice-orb svg { width: 26px; height: 26px; }

.voice-orb__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(118, 66, 240, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .voice-orb__ring { animation: orb-ring 2.2s ease-out infinite; }
  .voice-orb__ring--2 { animation-delay: 1.1s; }
}

@keyframes orb-ring {
  from { transform: scale(1); opacity: 0.9; }
  to   { transform: scale(1.9); opacity: 0; }
}

/* Transkript-Zeilen (Voice statt Chat) */
.transcript__line {
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text);
}

.transcript__line--center { max-width: 34ch; }

@media (prefers-reduced-motion: no-preference) {
  .call-card__body--voice .transcript__line { animation: msg-in 0.5s var(--ease) 0.5s both; }
}

.transcript__speaker {
  display: block;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.2rem;
}

/* ==========================================================================
   14) Ablauf-Sektion: ein Agent, viele Gespräche, alle Systeme (dunkle Bühne)
   ========================================================================== */
.flow-section {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  padding-block: 5rem;
  border-top: 1px solid var(--footer-line);
}

@media (min-width: 64em) {
  .flow-section { padding-block: 7.5rem; }
}

.section-head--dark { margin-bottom: var(--sp-7); }

.section-head--dark .section-eyebrow {
  background: rgba(118, 66, 240, 0.22);
  color: #c9b8f8;
}

.section-head--dark .section-title { color: #ffffff; }

.section-head--dark .section-lead { color: #a9a5c2; }

.flow-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
  justify-items: center;
}

@media (min-width: 64em) {
  .flow-stage {
    grid-template-columns: 15rem 1fr 13rem 1fr 16rem;
    gap: var(--sp-4);
    justify-items: stretch;
  }
}

.flow-col {
  display: grid;
  gap: var(--sp-3);
  width: 100%;
  max-width: 22rem;
}

/* Anrufer-Karten (sprechen parallel) */
.flow-caller {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.75rem 0.9rem;
  min-height: 4.4rem;
  background: #15151f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.flow-caller__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(118, 66, 240, 0.22);
  color: #b9a3f7;
}

.flow-caller__icon svg { width: 17px; height: 17px; }

.flow-caller__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #e6e3f2;
}

.flow-caller__sub {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #8f8ca6;
}

.fwave {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
  height: 16px;
  margin-inline-start: auto;
}

.fwave span {
  width: 2.5px;
  height: 6px;
  border-radius: 2px;
  background: #35c493;
}

@media (prefers-reduced-motion: no-preference) {
  .fwave span { animation: wave 1s ease-in-out infinite; }
  .fwave span:nth-child(2) { animation-delay: 0.15s; }
  .fwave span:nth-child(3) { animation-delay: 0.3s; }
  .flow-caller:nth-child(2) .fwave span { animation-delay: 0.5s; }
  .flow-caller:nth-child(2) .fwave span:nth-child(2) { animation-delay: 0.65s; }
  .flow-caller:nth-child(2) .fwave span:nth-child(3) { animation-delay: 0.8s; }
  .flow-caller:nth-child(3) .fwave span { animation-delay: 0.25s; }
  .flow-caller:nth-child(3) .fwave span:nth-child(2) { animation-delay: 0.4s; }
  .flow-caller:nth-child(3) .fwave span:nth-child(3) { animation-delay: 0.55s; }
}

/* Verbindungslinien mit wandernden Datenpunkten */
.flow-link {
  display: none;
  width: 100%;
  height: 240px;
}

@media (min-width: 64em) {
  .flow-link { display: block; }
}

.flow-link path {
  fill: none;
  stroke: rgba(148, 110, 245, 0.5);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.flow-dot { fill: #b9a3f7; }

.flow-link--out .flow-dot { fill: #35c493; }

@media (prefers-reduced-motion: reduce) {
  .flow-dot { display: none; }
}

/* Mobiler Trenner statt Linien */
.flow-vsep {
  display: block;
  width: 2px;
  height: 30px;
  border-radius: 2px;
  background: repeating-linear-gradient(180deg, rgba(148, 110, 245, 0.6) 0 4px, transparent 4px 9px);
}

@media (min-width: 64em) {
  .flow-vsep { display: none; }
}

/* Zentrum: der Agent */
.flow-core {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: 2.9rem 2rem 2.2rem;
  background: #15151f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  width: 100%;
  max-width: 19.5rem;
  justify-self: center;
}

.voice-orb--lg {
  width: 104px;
  height: 104px;
  box-shadow: 0 0 54px rgba(118, 66, 240, 0.55);
}

.voice-orb--lg svg { width: 42px; height: 42px; }

.flow-core__title {
  font-size: var(--text-base);
  font-weight: 800;
  color: #ffffff;
}

.flow-core__sub {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #8f8ca6;
}

.flow-core__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(29, 158, 117, 0.16);
  border: 1px solid rgba(53, 196, 147, 0.35);
  color: #35c493;
  font-size: var(--text-xs);
  font-weight: 800;
}

.flow-core__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: #35c493;
}

/* System-Karten rechts */
.flow-system {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.75rem 0.9rem;
  min-height: 4.4rem;
  background: #15151f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.flow-system__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #cfccdf;
}

.flow-system__icon svg { width: 17px; height: 17px; }

.flow-system__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #e6e3f2;
}

.flow-system__status {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #8f8ca6;
}

.flow-system__check {
  margin-inline-start: auto;
  color: #35c493;
}

.flow-system__check svg { width: 16px; height: 16px; }

.flow-note {
  margin-top: var(--sp-6);
  text-align: center;
  font-size: var(--text-sm);
  color: #8f8ca6;
}

/* ==========================================================================
   15) Dunkle Graph-Panels (Design der Ablauf-Sektion, gut lesbare Nodes)
   ========================================================================== */
.dark-panel__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #35c493;
}

@media (prefers-reduced-motion: no-preference) {
  .dark-panel__dot { animation: pulse 2.2s var(--ease) infinite; }
}

.dark-panel__label {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #ffffff;
}

.dark-panel__meta {
  margin-inline-start: auto;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #8f8ca6;
}

.state-node {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.6rem 0.75rem;
  min-height: 4.6rem;
  background: #15151f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

@media (prefers-reduced-motion: no-preference) {
  .state-node {
    animation: state-pulse 7s var(--ease) infinite;
    animation-delay: calc(var(--i, 0) * 1s);
  }
}

@keyframes state-pulse {
  0%, 9%   { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(118, 66, 240, 0.28); }
  14%, 100% { border-color: rgba(255, 255, 255, 0.1); box-shadow: none; }
}

.state-node__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(118, 66, 240, 0.22);
  color: #b9a3f7;
}

.state-node__icon svg { width: 16px; height: 16px; }

.state-node__title {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #e6e3f2;
  line-height: 1.35;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.canvas .state-node__title {
  font-size: clamp(0.66rem, 5.85cqw, 1.12rem);
}

.canvas .state-node--lg .state-node__title {
  font-size: clamp(0.72rem, 6.5cqw, 1.3rem);
}

.canvas .state-node__sub {
  font-size: clamp(0.68rem, 5cqw, 0.9rem);
}

.state-node__sub {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #8f8ca6;
  line-height: 1.5;
}

.state-node__check {
  margin-inline-start: auto;
  color: #35c493;
}

.state-node__check svg { width: 15px; height: 15px; }

/* Verbinder mit wanderndem Datenpunkt */
.state-sep {
  position: relative;
  justify-self: start;
  margin-inline-start: 1.45rem;
  width: 2px;
  height: 24px;
  border-radius: 2px;
  background: repeating-linear-gradient(180deg, rgba(148, 110, 245, 0.55) 0 4px, transparent 4px 9px);
}

@media (prefers-reduced-motion: no-preference) {
  .state-sep::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: #b9a3f7;
    animation: sep-dot 1.5s linear infinite;
  }
  .state-sep:nth-of-type(2)::after { animation-delay: 0.3s; }
  .state-sep:nth-of-type(3)::after { animation-delay: 0.6s; }
  .state-sep:nth-of-type(4)::after { animation-delay: 0.9s; }
  .state-sep:nth-of-type(5)::after { animation-delay: 1.2s; }
}

@keyframes sep-dot {
  0%   { transform: translateY(-2px); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Abzweig (z. B. Übergabe an Mensch) */
.state-branch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0.1rem 2.6rem;
  padding: 0.45rem 0.7rem;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #8f8ca6;
}

.state-branch__icon {
  display: inline-grid;
  place-items: center;
  color: #8f8ca6;
}

.state-branch__icon svg { width: 14px; height: 14px; }

/* Verzweigung in zwei Ziele */
.state-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.state-node--half { padding: 0.55rem 0.65rem; }

.dark-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #cfccdf;
}

.dark-chip svg {
  width: 13px;
  height: 13px;
  color: #35c493;
}

/* ==========================================================================
   16) Dunkle Canvas-Fläche (ganze Visual-Hälfte) mit Links-nach-rechts-Graph
   ========================================================================== */
/* Canvas: horizontal, auf kleinen Screens seitlich scrollbar */
.canvas-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin-inline: calc(var(--sp-2) * -1);
  padding-inline: var(--sp-2);
}

.canvas {
  min-width: 28rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(2rem, 2.6vw, 3.75rem) minmax(0, 1fr) clamp(2rem, 2.6vw, 3.75rem) minmax(0, 1fr);
  align-items: stretch;
  padding-block: var(--sp-2);
}

.canvas-col {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 1rem;
  container-type: inline-size;
}

.canvas-col--center { align-content: center; }

.canvas-gap { height: 3.2rem; }

.canvas .state-node { padding: 0.55rem 0.65rem; }

.canvas .state-node__icon { width: 30px; height: 30px; }

.state-sep--center {
  justify-self: center;
  margin-inline-start: 0;
}

/* Kanten zwischen den Spalten */
.canvas-edge {
  width: 100%;
  height: 100%;
  min-height: 5rem;
  align-self: stretch;
}

.edge-path {
  fill: none;
  stroke: rgba(148, 110, 245, 0.55);
  stroke-width: 1.6;
  stroke-dasharray: 4 6;
  vector-effect: non-scaling-stroke;
}

/* Punkt als Screen-Space-Stroke: bleibt kreisrund, obwohl das SVG
   mit preserveAspectRatio="none" auf die Zellhöhe gestreckt wird */
.edge-dot {
  fill: none;
  stroke: #b9a3f7;
  stroke-width: 6.4;
  vector-effect: non-scaling-stroke;
}

@media (prefers-reduced-motion: reduce) {
  .edge-dot { display: none; }
}

/* ==========================================================================
   17) Split-Bänder: Animations-Hälfte dunkel bis zum Rand, Text-Hälfte hell
   ========================================================================== */
.solution-band--split,
.solution-band--split-r {
  background-color: var(--bg);
}

/* Desktop: vertikale Zweiteilung; das weiße Raster ist nur auf Dunkel sichtbar */
@media (min-width: 64em) {
  .solution-band--split {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, var(--ink) 50%, var(--bg) 50%);
    background-size: 28px 28px, 28px 28px, auto;
  }

  .solution-band--split-r {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, var(--bg) 50%, var(--ink) 50%);
    background-size: 28px 28px, 28px 28px, auto;
  }
}

/* Visual liegt direkt auf der dunklen Fläche – ohne eigene Box, mit mehr Raum */
.solution-band--split .solution__visual,
.solution-band--split-r .solution__visual {
  background: none;
  border: 0;
  border-radius: 0;
  padding: var(--sp-4) 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: var(--sp-4);
}

.solution-band--split .solution__visual > *,
.solution-band--split-r .solution__visual > * {
  width: min(33rem, 100%);
}

/* Mobil/Tablet: kein Split – stattdessen randloser dunkler Streifen um die Animation */
@media (max-width: 63.99em) {
  .solution-band--split .solution__visual,
  .solution-band--split-r .solution__visual {
    background-color: var(--ink);
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    margin-inline: -1.25rem;
    padding: var(--sp-5) 1.25rem;
  }
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .solution-band--split .solution__visual,
  .solution-band--split-r .solution__visual {
    margin-inline: -2rem;
    padding-inline: 2rem;
  }
}

/* Split-Bänder: Visual exakt mittig in der dunklen Hälfte, größer */
@media (min-width: 64em) {
  .solution-band--split .container--wide,
  .solution-band--split-r .container--wide {
    max-width: none;
    padding-inline: 0;
  }

  .solution-band--split .solution,
  .solution-band--split-r .solution {
    column-gap: 0;
  }

  .solution-band--split .solution__visual,
  .solution-band--split-r .solution__visual {
    padding-block: var(--sp-2);
    gap: var(--sp-3);
  }

  .solution-band--split .solution__visual > *,
  .solution-band--split-r .solution__visual > * {
    width: min(37rem, 88%);
  }

  .solution-band--split .canvas,
  .solution-band--split-r .canvas {
    min-width: 30rem;
  }

  .solution-band--split .canvas .state-node,
  .solution-band--split-r .canvas .state-node {
    padding: 0.8rem 0.95rem;
    min-height: 5.4rem;
  }

  .solution-band--split .canvas .state-node--lg,
  .solution-band--split-r .canvas .state-node--lg {
    min-height: 6.2rem;
  }

  .solution-band--split .canvas .state-node__icon,
  .solution-band--split-r .canvas .state-node__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .solution-band--split .canvas .state-node__icon svg,
  .solution-band--split-r .canvas .state-node__icon svg {
    width: 18px;
    height: 18px;
  }

  .solution-band--split .canvas .state-node--lg .state-node__icon,
  .solution-band--split-r .canvas .state-node--lg .state-node__icon {
    width: 48px;
    height: 48px;
  }

  .solution-band--split .canvas-edge,
  .solution-band--split-r .canvas-edge {
    min-height: 6.5rem;
  }

  .solution-band--split .node-num,
  .solution-band--split-r .node-num {
    font-size: 2.1rem;
  }

  /* Text-Hälfte: Einzug über Padding, Zeilenlänge über die Inhalte selbst */
  .solution-band--split .solution__copy,
  .solution-band--split-r .solution__copy {
    width: 100%;
    max-width: none;
  }

  .solution-band--split .solution__copy {
    padding-inline: clamp(2.5rem, 4.5vw, 5.5rem) max(2rem, calc((100vw - 85rem) / 2 + 2rem));
  }

  .solution-band--split-r .solution__copy {
    padding-inline: max(2rem, calc((100vw - 85rem) / 2 + 2rem)) clamp(2.5rem, 4.5vw, 5.5rem);
  }

  /* Inhalte der Textspalte behalten Lesebreite, unabhängig vom Einzug */
  .solution-band--split .solution__copy > *,
  .solution-band--split-r .solution__copy > * {
    max-width: 34rem;
  }

  /* Bänder kompakter, Visual-Inhalte passen sich schmaleren Hälften an */
  .solution-band--split,
  .solution-band--split-r {
    padding-block: var(--sp-8);
  }

  .solution-band--split .solution__visual > *,
  .solution-band--split-r .solution__visual > * {
    width: min(42rem, 96%);
  }

  .solution-band--split .canvas,
  .solution-band--split-r .canvas {
    min-width: 28rem;
  }
}

/* Ergänzungen für die neuen Canvas-Nodes (Module 03–05) */
.state-node__body { min-width: 0; }

/* Animierter Kampagnen-Fortschritt im Node */
.node-bar {
  display: block;
  margin-top: 0.35rem;
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.node-bar__fill {
  display: block;
  height: 100%;
  width: 70%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #9a75f5);
}

@media (prefers-reduced-motion: no-preference) {
  .node-bar__fill { animation: bar-run 2.6s ease-in-out infinite alternate; }
}

@keyframes bar-run {
  from { width: 22%; }
  to   { width: 86%; }
}

/* „Übernehmen“-Pill am Attention-Node */
.node-pill {
  display: inline-block;
  margin-top: 0.4rem;
  justify-self: start;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--brand);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 800;
  white-space: nowrap;
}

/* ==========================================================================
   18) Canvas-Varianten: Staffelung + unterschiedliche Node-Typen
   ========================================================================== */

/* Versetzte Spalten (Zickzack über die Fläche) */
.canvas-col--down { margin-top: clamp(2rem, 5vw, 4.2rem); }
.canvas-col--up   { margin-bottom: clamp(2rem, 5vw, 4.2rem); }

.state-sep--center { height: 38px; }

/* Hero-Node (betontes Zentrum) */
.state-node--lg { padding: 0.85rem 0.95rem; min-height: 5.6rem; }

.state-node--lg .state-node__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.state-node--lg .state-node__icon svg { width: 20px; height: 20px; }

.state-node--lg .state-node__title { font-size: var(--text-base); }

/* Zahlen-Node (Statistik-Optik) */
.node-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Mensch-Node: grüner Akzent (Human-in-the-Loop) */
.state-node--human .state-node__icon {
  background: rgba(29, 158, 117, 0.22);
  color: #35c493;
}

/* Sprech-Wellenform im Node */
.state-node .fwave { flex: none; }

/* ==========================================================================
   19) Headline-Storytelling je Modul
   ========================================================================== */

/* M01: „Ihre Regeln“ – sichtbare Steuerung */
.rule-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-4);
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.rule-strip__label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8f8ca6;
}

.rule-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #cfccdf;
}

.rule-toggle__switch {
  position: relative;
  width: 26px;
  height: 15px;
  border-radius: var(--radius-full);
  background: var(--brand);
  box-shadow: 0 0 10px rgba(118, 66, 240, 0.5);
}

.rule-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  border-radius: var(--radius-full);
  background: #ffffff;
}

/* M02: Prompt-Zeile mit tippendem Cursor + selbstbauender Flow */
.prompt-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: var(--text-sm);
  color: #cfccdf;
}

.prompt-bar__icon {
  flex: none;
  display: grid;
  place-items: center;
  color: #b9a3f7;
}

.prompt-bar__icon svg { width: 15px; height: 15px; }

.prompt-bar__text::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-inline-start: 3px;
  vertical-align: text-bottom;
  background: #b9a3f7;
}

@media (prefers-reduced-motion: no-preference) {
  .prompt-bar__text::after { animation: caret-blink 1s steps(1) infinite; }

  .canvas--build .state-node {
    animation: node-build 8s linear infinite;
    animation-delay: calc(var(--i, 0) * 0.8s);
  }

  .canvas--build .canvas-edge {
    animation: node-build 8s linear infinite;
    animation-delay: calc(var(--i, 0) * 0.8s);
  }
}

@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes node-build {
  0%   { opacity: 0; transform: translateY(8px); }
  5%   { opacity: 1; transform: translateY(0); }
  86%  { opacity: 1; }
  93%, 100% { opacity: 0; }
}

/* M03: LIVE-Badge + pulsierender Übernehmen-Knopf */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #35c493;
}

.live-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: #35c493;
}

@media (prefers-reduced-motion: no-preference) {
  .live-badge__dot { animation: pulse 1.6s var(--ease) infinite; }
  .node-pill--pulse { animation: pill-pulse 2s var(--ease) infinite; }
}

@keyframes pill-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(118, 66, 240, 0.45); }
  50%      { transform: scale(1.05); box-shadow: 0 0 0 7px rgba(118, 66, 240, 0); }
}

/* M04: Mond im Kopf */
.dark-panel__meta svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-inline-end: 4px;
}

/* ==========================================================================
   20) Use-Cases, Ergebnis-Band, Branchen
   ========================================================================== */
.uc-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 48em) {
  .uc-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}

.uc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  box-shadow: var(--shadow-sm);
}

.uc-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: var(--sp-4);
}

.uc-card__icon svg { width: 23px; height: 23px; }

.uc-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-2);
}

.uc-card__text {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
}

.uc-extra {
  margin-top: var(--sp-5);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Ergebnis-Band (dunkel, große Zahlen) */
.results-band {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  padding-block: 4.5rem;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 64em) {
  .results-band { padding-block: 7rem; }
}

.results-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-6);
}

.results-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.35rem, 2vw + 0.5rem, 1.9rem);
  letter-spacing: -0.015em;
  color: #ffffff;
}

.results-sub {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #8f8ca6;
}

.stat-grid {
  display: grid;
  gap: var(--sp-5) var(--sp-6);
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 64em) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  border-top: 2px solid rgba(148, 110, 245, 0.5);
  padding-top: var(--sp-4);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 3vw + 1.2rem, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #b9a3f7;
  margin-bottom: var(--sp-3);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .stat__num .digit {
    background: linear-gradient(180deg, #cdbcfa 10%, #7642f0 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.stat__label {
  display: block;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: #a9a5c2;
  max-width: 26ch;
}

/* Kacheln gleich hoch, Zahlen auf einer Linie */
.stat {
  display: flex;
  flex-direction: column;
}

.stat__num { min-height: 1.15em; }

.results-note {
  margin-top: var(--sp-6);
  font-size: var(--text-xs);
  color: #8f8ca6;
}

/* Branchen-Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

.chip-row .feature-chip { background: var(--bg); }

/* ==========================================================================
   21) Vergleichstabelle + Differenzierung
   ========================================================================== */
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: var(--bg);
}

.compare-scroll:focus-visible { outline-offset: 4px; }

.compare {
  width: 100%;
  min-width: 58rem;
  border-collapse: collapse;
  font-size: var(--text-md);
}

.compare col.col-kilevel { background: var(--brand-soft); }

.compare th,
.compare td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--line);
}

.compare thead th {
  border-top: 0;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 1rem;
  vertical-align: middle;
}

.compare tbody th {
  font-weight: 700;
  color: var(--ink);
  min-width: 15rem;
}

.compare__kilevel-head img {
  height: 20px;
  width: auto;
}

.compare td:last-child {
  font-weight: 600;
  color: var(--ink);
}

.cmp {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.cmp__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  margin-top: 1px;
}

.cmp__icon svg { width: 12px; height: 12px; }

.cmp--yes .cmp__icon { background: rgba(29, 158, 117, 0.14); color: var(--accent); }

.cmp--mid .cmp__icon { background: var(--brand-soft); color: var(--brand-dark); }

.cmp--no .cmp__icon { background: var(--bg-soft); color: var(--muted); }

.cmp--no { color: var(--muted); }

/* Differenzierungs-Block */
.diff-block { margin-top: var(--sp-7); }

.diff-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.3rem, 1.8vw + 0.5rem, 1.75rem);
  letter-spacing: -0.015em;
  text-align: center;
}

.diff-lead {
  margin: var(--sp-3) auto 0;
  max-width: 46rem;
  text-align: center;
  font-size: var(--text-base);
  color: var(--muted);
}

.diff-grid {
  margin-top: var(--sp-6);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 64em) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.diff-grid .foundation-card { background: var(--bg-soft); }

/* ==========================================================================
   22) EU-Sternenkreis + Vertrauens-Sektion
   ========================================================================== */
.eu-stage {
  display: grid;
  place-items: center;
  padding-block: var(--sp-5);
}

.eu-ring {
  --r: clamp(7rem, 11vw, 9.5rem);
  position: relative;
  width: calc(var(--r) * 2 + 4rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.eu-star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(1.5rem, 2.2vw, 2rem);
  aspect-ratio: 1;
  color: #f7c400;
  /* auf Kreisbahn setzen, Stern selbst bleibt aufrecht (wie auf der EU-Flagge) */
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--s) * 30deg))
    translateY(calc(var(--r) * -1))
    rotate(calc(var(--s) * -30deg));
}

.eu-star svg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

@media (prefers-reduced-motion: no-preference) {
  .eu-star svg {
    animation: star-glow 3.6s ease-in-out infinite;
    animation-delay: calc(var(--s) * 0.3s);
  }
}

@keyframes star-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); filter: none; }
  8% {
    opacity: 1;
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(247, 196, 0, 0.85));
  }
  20% { opacity: 0.5; transform: scale(1); filter: none; }
}

.eu-ring__core {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.2rem;
}

.eu-ring__line1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
  letter-spacing: -0.02em;
  color: #ffffff;
}

.eu-ring__line2 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9a3f7;
}

.trust-grid-wrap { padding-block: var(--sp-7) var(--sp-6); }

@media (min-width: 64em) {
  .trust-grid-wrap { padding-block: 6rem 5rem; }
}

.trust-note {
  margin-top: var(--sp-6);
  font-size: var(--text-xs);
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

/* ==========================================================================
   23) Kontakt-Sektion + Floating-Widget
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 64em) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-7); }
}

.contact-aside { display: grid; gap: var(--sp-4); align-content: start; }

.contact-aside__claim {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  max-width: 40ch;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.contact-channel:hover {
  border-color: #d8d0f0;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.contact-channel__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.contact-channel__icon svg { width: 20px; height: 20px; }

.contact-channel__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-channel__value {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink);
}

.contact-points {
  list-style: none;
  margin: var(--sp-2) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-md);
  color: var(--text);
}

.contact-points svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none;
}

/* Formular */
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-5);
}

.contact-form__grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 40em) {
  .contact-form__grid { grid-template-columns: 1fr 1fr; }
}

.field { display: grid; gap: 0.35rem; }

.field__label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.field__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: var(--text-md);
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--dur-fast) var(--ease);
}

.field__input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 0;
  border-color: var(--brand);
}

select.field__input { appearance: auto; }

.contact-form__submit {
  margin-top: var(--sp-4);
  width: 100%;
}

.contact-form__privacy {
  margin-top: var(--sp-3);
  font-size: var(--text-xs);
  line-height: 1.6;
  color: var(--muted);
}

.contact-form__privacy a {
  color: var(--brand-dark);
  font-weight: 600;
}

/* ---------- Floating Action Button + Panel ---------- */
.fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 94;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: var(--radius-full);
  background: var(--brand);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -6px rgba(118, 66, 240, 0.55);
  transition: transform var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}

.fab:hover { background: var(--brand-dark); transform: translateY(-2px); }

.fab__icon { width: 24px; height: 24px; grid-area: 1 / 1; transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }

.fab__icon--close { opacity: 0; transform: rotate(-45deg); }

.fab[aria-expanded="true"] .fab__icon--open { opacity: 0; transform: rotate(45deg); }

.fab[aria-expanded="true"] .fab__icon--close { opacity: 1; transform: none; }

.fab-panel {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 94;
  width: min(22rem, calc(100vw - 2.2rem));
  max-height: min(34rem, calc(100dvh - 7rem));
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5);
  transform-origin: bottom right;
}

.fab-panel[hidden] { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .fab-panel:not([hidden]) { animation: fab-in var(--dur-fast) var(--ease); }
}

@keyframes fab-in {
  from { opacity: 0; transform: scale(0.94) translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.fab-panel__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.fab-panel__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.fab-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.fab-quick:hover { background: var(--bg-soft); }

.fab-quick svg { width: 16px; height: 16px; color: var(--brand); }

.contact-form--compact .contact-form__grid { grid-template-columns: 1fr; gap: var(--sp-3); }

.contact-form--compact .contact-form__submit { margin-top: var(--sp-3); }

/* ==========================================================================
   24) Modul-Unterseiten
   ========================================================================== */
.subnav-back {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
}

.subnav-back:hover { background: var(--bg-soft); color: var(--ink); }

.subnav-back svg { width: 1.05em; height: 1.05em; }

.subhero {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  padding-block: var(--sp-7);
  position: relative;
  overflow: hidden;
}

.subhero__kicker {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9a3f7;
  margin-bottom: var(--sp-3);
}

.subhero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw + 0.6rem, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #ffffff;
  max-width: 22ch;
}

.subhero__lead {
  margin-top: var(--sp-4);
  font-size: var(--text-lg);
  line-height: 1.65;
  color: #a9a5c2;
  max-width: 52ch;
}

.subhero__num {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 16vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(148, 110, 245, 0.35);
  user-select: none;
  pointer-events: none;
}

.sub-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.detail-grid {
  display: grid;
  gap: var(--sp-4) var(--sp-6);
  grid-template-columns: 1fr;
}

@media (min-width: 48em) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
}

.detail {
  padding-left: var(--sp-4);
  border-left: 3px solid var(--brand-soft);
}

.detail__title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.detail__text {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--muted);
}

.subcta {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding-block: var(--sp-7);
  text-align: center;
}

.subcta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw + 0.5rem, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.subcta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
}

.subfooter {
  background: var(--ink);
  color: var(--footer-muted);
  padding-block: var(--sp-5);
  font-size: var(--text-sm);
}

.subfooter .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
}

.subfooter a { color: var(--footer-text); text-decoration: none; }

.subfooter a:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }

.subfooter__links { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* ==========================================================================
   25) Mega-Menü: dunkler Panel-Look
   ========================================================================== */
.mega {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  border-color: rgba(255, 255, 255, 0.1);
}

.mega__group-title { color: #8f8ca6; }

.mega__link:hover { background: rgba(255, 255, 255, 0.06); }

.mega__icon {
  background: rgba(118, 66, 240, 0.22);
  color: #b9a3f7;
}

.mega__link-title { color: #ffffff; }

.mega__link-desc { color: #8f8ca6; }

.mega__aside {
  background: #15151f;
  border-color: rgba(255, 255, 255, 0.1);
}

.mega__aside-title { color: #ffffff; }

.mega__aside-text { color: #a9a5c2; }

.mega :focus-visible { outline-color: #9dc1f0; }

/* Alle fünf Modul-Bänder gleich hoch (Inhalte zentriert) */
@media (min-width: 64em) {
  .solution-band--split .solution,
  .solution-band--split-r .solution {
    min-height: 47rem;
  }
}

/* Enterprise-Fundament: mehr Höhe und Innenraum */
@media (min-width: 64em) {
  .solution-band--foundation { padding-block: 6rem; }

  .solution-band--foundation .foundation-head { margin-bottom: var(--sp-6); }

  .solution-band--foundation .foundation-card {
    padding: var(--sp-6) var(--sp-5);
    min-height: 15.5rem;
  }
}

/* ==========================================================================
   29) Trust-Leiste + Kundengeschichten-Slider
   ========================================================================== */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--bg);
  padding-block: var(--sp-4);
}

.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4) var(--sp-6);
}

.trustbar__who {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.trustbar__avatars { display: flex; }

.trustbar__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--brand-soft);
  border: 2px solid var(--bg);
  color: var(--brand);
}

.trustbar__avatar + .trustbar__avatar { margin-left: -12px; }

.trustbar__avatar svg { width: 19px; height: 19px; }

.trustbar__title {
  display: block;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.trustbar__sub {
  display: block;
  font-size: var(--text-sm);
  color: var(--muted);
}

.trustbar__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3) var(--sp-6);
}

.trustbar__fact {
  font-size: var(--text-md);
  color: var(--muted);
}

.trustbar__fact strong {
  color: var(--ink);
  font-weight: 800;
}

.trustbar__fact--badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--bg-soft);
}

.trustbar__fact--badge svg { width: 17px; height: 17px; border-radius: 3px; }

/* ---------- Kundengeschichten ---------- */
.stories__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.stories__title { text-align: left; margin-top: var(--sp-3); }

.stories__nav { display: flex; gap: var(--sp-2); }

.stories__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--bg);
  color: var(--ink);
  transition: background-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.stories__btn:hover {
  background: var(--bg-soft);
  border-color: #d8d0f0;
  transform: translateY(-1px);
}

.stories__btn svg { width: 20px; height: 20px; }

.stories__track {
  --stories-gap: 1.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: var(--stories-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: var(--sp-2) var(--sp-4);
  /* läuft rechts bis an den Browserrand */
  margin-right: calc(50% - 50vw);
  scrollbar-width: none;
  cursor: grab;
}

.stories__track::-webkit-scrollbar { display: none; }

.stories__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

@media (min-width: 48em) {
  .stories__track {
    grid-auto-columns: calc((100% - var(--stories-gap)) / 2);
  }
}

@media (min-width: 64em) {
  .stories__track {
    grid-auto-columns: calc((100% - 2 * var(--stories-gap)) / 3);
  }
}

@media (min-width: 80em) {
  .stories__track {
    grid-auto-columns: calc((100% - 3 * var(--stories-gap)) / 4);
  }
}

.story-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  transition: transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 0;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.story-card--media {
  position: relative;
  min-height: 0;
  container-type: inline-size;
}

/* Bild als fester oberer Block, läuft unten per Verlauf ins Dunkel aus */
.story-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  flex: none;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.story-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 11, 18, 0) 68%,
    rgba(11, 11, 18, 0.35) 85%,
    rgba(11, 11, 18, 0.85) 96%,
    #0b0b12 100%);
}

.story-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
  padding: 0 clamp(0.9rem, 6cqw, 1.5rem) clamp(0.9rem, 5.5cqw, 1.4rem);
}

.story-card__statement,
.story-card__text {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.story-card--media .story-card__text { color: #d6d3e4; }

.story-card--media .story-card__chip {
  background: rgba(11, 11, 18, 0.55);
  border-color: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.story-card--media .story-card__who {
  border-top-color: rgba(255, 255, 255, 0.28);
  color: #cfccdf;
}

/* Violetter Glow beim Überfahren */
@media (hover: hover) {
  .story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -14px rgba(118, 66, 240, 0.35);
  }
}



.story-card__statement {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(0.95rem, 5.6cqw, 1.32rem);
  letter-spacing: -0.015em;
  line-height: 1.18;
  min-height: calc(2 * 1.18em);
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.story-card__text {
  font-size: clamp(0.76rem, 3.9cqw, 0.9rem);
  line-height: 1.55;
  min-height: calc(3 * 1.55em);
  color: #a9a5c2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.story-card__chips {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-2);
}

.story-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #cfccdf;
}

.story-card__chip svg { width: 13px; height: 13px; color: #35c493; }

.story-card__who {
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.72rem, 3.6cqw, 0.85rem);
  font-weight: 700;
  color: #8f8ca6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stories__note {
  margin-top: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ==========================================================================
   31) Flaggen im Sprachmenü + 4er-Slider auf breiten Screens
   ========================================================================== */
.flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(11, 11, 18, 0.08);
}

.lang__summary { padding: 0.45rem 0.55rem; }

.lang__item a { gap: 0.6rem; justify-content: flex-start; }

.drawer__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.drawer__lang .flag { width: 19px; height: 13px; }



/* ==========================================================================
   32) Animierte Themen-Icons auf den Story-Karten
   ========================================================================== */
.story-card__topic {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(11, 11, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #a78bfa;
}

.story-card__topic svg { width: 23px; height: 23px; }

/* Wellenform (Callcenter) */
.twave {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
  height: 22px;
}

.twave span {
  width: 3px;
  border-radius: 2px;
  background: currentColor;
  height: 8px;
}

.twave span:nth-child(2) { height: 14px; }
.twave span:nth-child(3) { height: 20px; }
.twave span:nth-child(4) { height: 12px; }
.twave span:nth-child(5) { height: 16px; }
.twave span:nth-child(6) { height: 7px; }

/* Datenpunkte (IT) */
.tdots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tdots span {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: currentColor;
}

@media (prefers-reduced-motion: no-preference) {
  /* Grundleben */
  .story-card__topic svg {
    animation: topic-float 2.8s ease-in-out infinite;
  }

  .twave span {
    animation: wave 1.4s ease-in-out infinite;
    transform-origin: center;
  }
  .twave span:nth-child(2) { animation-delay: 0.12s; }
  .twave span:nth-child(3) { animation-delay: 0.24s; }
  .twave span:nth-child(4) { animation-delay: 0.36s; }
  .twave span:nth-child(5) { animation-delay: 0.48s; }
  .twave span:nth-child(6) { animation-delay: 0.6s; }

  .tdots span { animation: tdot-run 1.6s ease-in-out infinite; }
  .tdots span:nth-child(2) { animation-delay: 0.22s; }
  .tdots span:nth-child(3) { animation-delay: 0.44s; }

  /* Hover-Reaktionen */
  .story-card:hover .twave span { animation-duration: 0.55s; }
  .story-card:hover .tdots span { animation-duration: 0.7s; }

  .story-card:hover [data-topic="phone"] svg {
    animation: topic-ring 0.7s ease-in-out infinite;
  }

  .story-card:hover [data-topic="cart"] svg {
    animation: topic-bounce 0.8s var(--ease) infinite;
  }

  .story-card:hover [data-topic="shield"] svg {
    animation: topic-pop 1.4s var(--ease) infinite;
  }

  [data-topic="calendar"] .draw,
  [data-topic="shield"] .draw {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
  }

  .story-card:hover [data-topic="calendar"] .draw,
  .story-card:hover [data-topic="shield"] .draw {
    animation: topic-draw 1.2s ease-in-out infinite;
  }
}

@keyframes topic-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2.5px); }
}

@keyframes topic-ring {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-13deg); }
  40% { transform: rotate(11deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(5deg); }
}

@keyframes topic-bounce {
  0%, 100% { transform: translateY(0); }
  35%      { transform: translateY(-4px) rotate(-4deg); }
  60%      { transform: translateY(0) rotate(2deg); }
}

@keyframes topic-pop {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.14); }
  45%      { transform: scale(1); }
}

@keyframes tdot-run {
  0%, 100% { transform: translateX(-3px); opacity: 0.4; }
  50%      { transform: translateX(3px); opacity: 1; }
}

@keyframes topic-draw {
  0%   { stroke-dashoffset: 1; }
  55%, 100% { stroke-dashoffset: 0; }
}

/* ==========================================================================
   33) Ergebnis-Zahlen: Zählwerk-Einrollen beim Scroll-in-View
   ========================================================================== */
.stat__num { overflow: hidden; }

.stat__num .digit {
  display: inline-block;
  min-width: 0.18em; /* Leerzeichen behalten Breite */
}

@media (prefers-reduced-motion: no-preference) {
  .stat__num .digit {
    transform: translateY(118%);
    opacity: 0;
  }

  .stat.is-inview .digit {
    animation: digit-roll 0.65s cubic-bezier(0.2, 0.7, 0.2, 1.15) forwards;
    animation-delay: calc(var(--d, 0) * 90ms);
  }

  .stat.is-inview .digit--sym {
    animation-name: digit-fade;
    animation-timing-function: var(--ease);
  }

  .stat.is-inview .stat__num {
    animation: num-glow 1.3s ease-out 0.25s;
  }
}

@keyframes digit-roll {
  0%   { transform: translateY(118%); opacity: 0; }
  60%  { transform: translateY(-7%); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes digit-fade {
  from { transform: translateY(0.35em); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes num-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(118, 66, 240, 0); }
  45%      { text-shadow: 0 0 28px rgba(147, 104, 250, 0.55); }
}

/* Trust-Zeile im Ergebnis-Band (dunkle Variante) */
.results-trust {
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.trustbar__avatars--dark .trustbar__avatar {
  background: rgba(118, 66, 240, 0.22);
  border-color: var(--ink);
  color: #b9a3f7;
}

.results-trust__title {
  display: block;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

.results-trust__sub {
  display: block;
  font-size: var(--text-sm);
  color: #8f8ca6;
}

/* ==========================================================================
   34) Fullscreen-Hero mit zweizeiliger Display-Headline
   ========================================================================== */
.hero--full {
  position: relative;
  z-index: 0;
  margin-top: calc(-1 * var(--header-offset));
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: var(--sp-5) var(--sp-6);
}

.hero__inner {
  width: 100%;
  container-type: inline-size;
}

.hero__title--xl {
  max-width: none;
  font-size: clamp(2.2rem, 5.95cqw, 7.5rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero__line { display: block; }

.hero--full .hero__grid {
  margin-top: clamp(1.25rem, 4svh, 3rem);
}

@media (min-width: 64em) {
  .hero--full .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: var(--sp-7);
  }
}

.hero--full .hero__title--xl { margin-bottom: var(--sp-5); }

.hero--full .hero__sub { margin-top: 0; }

/* Hero: fluide Vollbreite + Trust-Leiste als unterer Abschluss */
.hero--full {
  flex-direction: column;
  align-items: stretch;
  padding-block: var(--header-offset) 0;
}

.hero--full .hero__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--sp-6) var(--sp-5);
}

.hero__title--xl { font-size: clamp(2.2rem, 5.98cqw, 8.75rem); }

.hero__trust {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding-block: var(--sp-4);
}

.hero__trust .trustbar__inner {
  max-width: none;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

/* Ultra-breite Fenster: Bildblock flacher, Karten bleiben kompakt */
@media (min-width: 110em) {
  .story-card__media { aspect-ratio: 16 / 8.5; }
}

/* ==========================================================================
   35) Sanftes Erscheinen beim Scrollen (Scroll-Reveal)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; }

  .reveal.is-inview {
    animation: reveal-in 0.65s var(--ease) both;
    animation-delay: calc(var(--rv, 0) * 90ms);
  }
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   36) Fullscreen-Hero: ausbalancierte Komposition
   ========================================================================== */
.hero--full .hero__inner {
  justify-content: center;
  gap: clamp(1.75rem, 5.5svh, 4rem);
}

.hero--full .hero__grid { margin-top: 0; }

@media (min-width: 64em) {
  .hero--full .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 3.5vw, 4.5rem);
  }

  .hero--full .hero__visual { justify-content: flex-start; }

  .hero--full .call-card { width: min(31rem, 100%); }
}

.hero--full .hero__eyebrow { margin-bottom: var(--sp-4); align-self: flex-start; }

.hero--full .hero__title--xl { margin-bottom: var(--sp-5); }

.hero--full .hero__sub {
  font-size: clamp(1.05rem, 0.75cqw + 0.65rem, 1.3rem);
  max-width: 56ch;
}

.hero--full .hero__ctas { margin-top: var(--sp-5); }

.hero--full .hero__stats { margin-top: var(--sp-5); }

/* ==========================================================================
   37) XL-Monitore: Canvas-Grafiken skalieren mit der Fläche
   ========================================================================== */
@media (min-width: 110em) {
  .solution-band--split .solution__visual > *,
  .solution-band--split-r .solution__visual > * {
    width: min(58rem, 95%);
  }

  .solution-band--split .canvas,
  .solution-band--split-r .canvas {
    min-width: 34rem;
    grid-template-columns: minmax(0, 1fr) clamp(2.2rem, 2vw, 3.5rem) minmax(0, 1fr) clamp(2.2rem, 2vw, 3.5rem) minmax(0, 1fr);
  }

  .solution-band--split .canvas .state-node,
  .solution-band--split-r .canvas .state-node {
    padding: 1rem;
    min-height: 6.6rem;
    border-radius: 15px;
    gap: 0.85rem;
  }

  .solution-band--split .canvas .state-node--lg,
  .solution-band--split-r .canvas .state-node--lg {
    min-height: 7.6rem;
  }

  .solution-band--split .canvas .state-node__icon,
  .solution-band--split-r .canvas .state-node__icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .solution-band--split .canvas .state-node__icon svg,
  .solution-band--split-r .canvas .state-node__icon svg {
    width: 23px;
    height: 23px;
  }

  .solution-band--split .canvas .state-node--lg .state-node__icon,
  .solution-band--split-r .canvas .state-node--lg .state-node__icon {
    width: 54px;
    height: 54px;
  }

  .solution-band--split .canvas-col,
  .solution-band--split-r .canvas-col {
    gap: 1.3rem;
  }

  .solution-band--split .canvas-edge,
  .solution-band--split-r .canvas-edge {
    min-height: 8.5rem;
  }

  .solution-band--split .state-sep--center,
  .solution-band--split-r .state-sep--center {
    height: 48px;
  }

  .solution-band--split .canvas-gap,
  .solution-band--split-r .canvas-gap {
    height: 4rem;
  }

  .solution-band--split .node-num,
  .solution-band--split-r .node-num {
    font-size: 2.6rem;
  }

  .solution-band--split .dark-panel__label,
  .solution-band--split-r .dark-panel__label {
    font-size: 1.05rem;
  }

  .solution-band--split .dark-chip,
  .solution-band--split-r .dark-chip {
    font-size: 0.85rem;
    padding: 0.42rem 0.85rem;
  }

  /* Ablauf-Sektion: Bühne wächst mit */
  .flow-stage { grid-template-columns: 17rem 1fr 15rem 1fr 18rem; }

  .voice-orb--lg { width: 124px; height: 124px; }

  .voice-orb--lg svg { width: 50px; height: 50px; }

  .flow-caller, .flow-system { min-height: 5rem; }

  .flow-core { max-width: 22rem; }
}

/* Einzeilige Beschriftungen auch in der Ablauf-Bühne */
.flow-caller__label,
.flow-caller__sub,
.flow-system__name,
.flow-system__status {
  white-space: nowrap;
}

/* ==========================================================================
   38) Hero-Hintergrund: radialer Violett-Schein (Light-Theme-Snippet-Look)
   ========================================================================== */
.hero--full::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 720px at 50% 90px,
      rgba(118, 66, 240, 0.28),
      rgba(118, 66, 240, 0.10) 46%,
      transparent 72%);
  pointer-events: none;
}

@media (max-width: 63.99em) {
  .hero--full::before {
    background:
      radial-gradient(circle 420px at 50% 60px,
        rgba(118, 66, 240, 0.26),
        rgba(118, 66, 240, 0.09) 48%,
        transparent 72%);
  }
}

/* ==========================================================================
   39) Unterseiten V2: heller Subhero mit Farb-Headline, Workflow-Fenster,
       Anruf-Auswertungs-Panel
   ========================================================================== */

/* Seiten-Akzent: pro Modulseite eine eigene Farbe (Klasse auf <body>) */
.page-accent--violet { --page-accent: #7642f0; --page-accent-ink: #5f2fd8; --page-accent-soft: #f1ecfe; --page-glow: rgba(118, 66, 240, 0.2); }
.page-accent--orange { --page-accent: #ea580c; --page-accent-ink: #c2410c; --page-accent-soft: #fdeee4; --page-glow: rgba(234, 88, 12, 0.16); }
.page-accent--green  { --page-accent: #1d9e75; --page-accent-ink: #15805e; --page-accent-soft: #e4f5ee; --page-glow: rgba(29, 158, 117, 0.16); }
.page-accent--blue   { --page-accent: #2563eb; --page-accent-ink: #1d4ed8; --page-accent-soft: #e7eefd; --page-glow: rgba(37, 99, 235, 0.16); }
.page-accent--pink   { --page-accent: #db2777; --page-accent-ink: #be185d; --page-accent-soft: #fce8f1; --page-glow: rgba(219, 39, 119, 0.14); }

.subhero--v2 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
  /* bis an den oberen Browserrand ziehen, damit der Glow dort startet */
  margin-top: calc(-1 * var(--header-offset));
  padding-block: calc(var(--header-offset) + clamp(2.5rem, 5vh, 4rem)) clamp(2.75rem, 6vh, 4.5rem);
}

.subhero--v2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle 660px at 50% 85px, var(--page-glow), transparent 70%);
  pointer-events: none;
}

.subhero--v2 .subhero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 var(--sp-4);
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 8px 20px -14px rgba(11, 11, 18, 0.35);
}

.subhero--v2 .subhero__kicker svg {
  width: 15px;
  height: 15px;
  color: var(--page-accent-ink);
}

.subhero--v2 .subhero__title {
  margin-inline: auto;
  max-width: 24ch;
  color: var(--ink);
  font-size: clamp(2.3rem, 4.6vw + 0.5rem, 4.3rem);
  line-height: 1.04;
}

.subhero--v2 .subhero__title .hl-accent { color: var(--page-accent-ink); }

.subhero--v2 .subhero__lead {
  margin: var(--sp-4) auto 0;
  max-width: 62ch;
  color: var(--muted);
}

.subhero--v2 .subhero__num {
  right: auto;
  left: 50%;
  top: calc(var(--header-offset) - 1.5rem);
  transform: translateX(-50%);
  z-index: -1;
  font-size: clamp(7rem, 19vw, 14rem);
  -webkit-text-stroke: 1.5px var(--page-accent-soft);
  opacity: 0.9;
}

/* --- App-Fenster (Browser-Chrome) mit Workflow-Schritten --- */
.appwin {
  max-width: 72rem;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px -30px rgba(11, 11, 18, 0.25);
  text-align: left;
  overflow: hidden;
}

.appwin__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.appwin__dot { width: 10px; height: 10px; border-radius: 50%; }
.appwin__dot--r { background: #f26d60; }
.appwin__dot--y { background: #f5bd4f; }
.appwin__dot--g { background: #58c26a; }

.appwin__label {
  margin-inline-start: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.appwin__body { padding: clamp(1.1rem, 3vw, 2rem); }

.wf-grid { display: grid; gap: 0.9rem; }

@media (min-width: 64em) {
  .wf-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
  }
}

.wf-step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1.3rem 1.2rem;
  text-align: center;
}

.wf-step__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--page-accent-soft);
  color: var(--page-accent-ink);
}

.wf-step__icon svg { width: 22px; height: 22px; }

.wf-step__title {
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.wf-step__text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--muted);
}

.wf-arrow { display: none; }

@media (min-width: 64em) {
  .wf-arrow { display: grid; place-items: center; color: #c9c4dd; }
  .wf-arrow svg { width: 20px; height: 20px; }
}

/* --- Detail-Karten: kleines Themen-Icon --- */
.detail__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--page-accent-soft);
  color: var(--page-accent-ink);
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
}

.detail__icon svg { width: 20px; height: 20px; }

/* --- Anruf-Auswertungs-Panel (Call Intelligence) --- */
.callpanel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px -34px rgba(11, 11, 18, 0.22);
  overflow: hidden;
}

.callpanel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem clamp(1.1rem, 3vw, 1.6rem);
  border-bottom: 1px solid var(--line);
}

.callpanel__badge {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: var(--page-accent);
  color: #fff;
  display: grid;
  place-items: center;
}

.callpanel__badge svg { width: 22px; height: 22px; }

.callpanel__title {
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.callpanel__meta {
  font-size: var(--text-sm);
  color: var(--muted);
}

.callpanel__right {
  margin-inline-start: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.1rem;
}

.callpanel__dur {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--ink);
}

.callpanel__dur svg { width: 15px; height: 15px; color: var(--page-accent-ink); }

.callpanel__ok {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--accent);
}

.callpanel__ok svg { width: 15px; height: 15px; }

.callpanel__person {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem clamp(1.1rem, 3vw, 1.6rem);
  border-bottom: 1px solid var(--line);
  background: #fcfbfe;
}

.callpanel__avatar {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--page-accent-soft);
  color: var(--page-accent-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.callpanel__who strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink);
}

.callpanel__who span {
  font-size: 0.75rem;
  color: var(--muted);
}

.callpanel__tag {
  margin-inline-start: auto;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #e4f5ee;
  color: #15805e;
}

.callpanel__grid { display: grid; }

@media (min-width: 64em) {
  .callpanel__grid { grid-template-columns: 1.5fr 1fr; }
}

.transcript {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.transcript__row {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.8rem;
}

.transcript__who {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 0.25rem;
  text-transform: uppercase;
}

.transcript__who--ai { color: var(--page-accent-ink); }
.transcript__who--caller { color: #8a87a0; }

.transcript__text {
  font-size: var(--text-md);
  color: #3c3a4e;
  line-height: 1.55;
}

.insights {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-top: 1px solid var(--line);
  background: #fcfbfe;
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

@media (min-width: 64em) {
  .insights { border-top: 0; border-left: 1px solid var(--line); }
}

.insight__label {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8a87a0;
  margin-bottom: 0.55rem;
}

.senti { display: flex; align-items: center; gap: 0.6rem; }
.senti__bars { display: flex; gap: 3px; }

.senti__bars span {
  width: 9px;
  height: 16px;
  border-radius: 3px;
  background: #e2e0ee;
}

.senti__bars span.is-on { background: var(--accent); }

.senti__val {
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--accent);
}

.topic-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.topic-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: var(--page-accent-soft);
  color: var(--page-accent-ink);
}

.kv { display: grid; gap: 0.5rem; }

.kv__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--text-sm);
}

.kv__k { color: var(--muted); }
.kv__v { font-weight: 700; color: var(--ink); text-align: right; }

.autoacts { display: grid; gap: 0.45rem; }

.autoact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #2f2d3f;
}

.autoact svg { width: 15px; height: 15px; flex: none; color: var(--accent); }

.callpanel__note {
  padding: 0.75rem clamp(1.1rem, 3vw, 1.6rem) 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: #9b98af;
}

/* ==========================================================================
   40) Branchen: dunkle Bild-Kacheln, zweispaltig
   ========================================================================== */
.industry-grid {
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 48em) {
  .industry-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}

.industry-card {
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -14px rgba(118, 66, 240, 0.35);
  }
}

.industry-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  flex: none;
}

.industry-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.industry-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 11, 18, 0) 55%,
    rgba(11, 11, 18, 0.35) 78%,
    rgba(11, 11, 18, 0.85) 94%,
    #0b0b12 100%);
  pointer-events: none;
}

.industry-card__icon {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(11, 11, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d9ccfb;
}

.industry-card__icon svg { width: 20px; height: 20px; }

.industry-card__body {
  padding: 0.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.industry-card__title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.industry-card__text {
  font-size: var(--text-md);
  line-height: 1.6;
  color: #a9a5c2;
  max-width: 52ch;
}

/* --- Branchen als gespiegelter Slider: Start rechts, läuft links raus --- */
.industries__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.industries__intro { text-align: right; }
.industries__intro .section-eyebrow { margin-inline: auto 0; }
.industries__title { text-align: right; margin-top: var(--sp-3); margin-bottom: 0; }

.industries__lead {
  margin-top: var(--sp-3);
  margin-inline-start: auto;
  max-width: 46ch;
  font-size: var(--text-md);
  color: var(--muted);
}

.industries__nav { display: flex; gap: var(--sp-2); }

.industries__track {
  --stories-gap: 1.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(33.25rem, 88vw);
  gap: var(--stories-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  direction: rtl;
  padding-block: var(--sp-2) var(--sp-4);
  /* läuft links bis an den Browserrand */
  margin-left: calc(50% - 50vw);
  scrollbar-width: none;
  cursor: grab;
}

.industries__track::-webkit-scrollbar { display: none; }

.industries__track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.industries__track .industry-card {
  direction: ltr;
  scroll-snap-align: start;
}

/* --- Würfel-Karten: Story- und Branchen-Kacheln exakt quadratisch.
       Mobil bekommt das Story-Bild eine Mindesthöhe statt des strikten
       Quadrats, sonst bliebe vom Foto nur ein schmaler Streifen. --- */
.story-card {
  aspect-ratio: auto;
  min-height: 0;
}

.story-card__media {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 11rem;
}

@media (min-width: 48em) {
  .story-card { aspect-ratio: 1 / 1; }
  .story-card__media { min-height: 0; }
}

.story-card__media img {
  position: absolute;
  inset: 0;
}

.story-card__body { flex: 0 0 auto; }

.industry-card { aspect-ratio: 1 / 1; }

.industry-card__media {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 0;
}

/* --- Story-Karten: exakt gleiche Kachelgröße wie die Branchen-Würfel.
       Feste Kachelbreite statt "vier pro Ansicht" – gewinnt gegen die
       älteren Spalten-Regeln weiter oben. --- */
.stories__track { grid-auto-columns: min(33.25rem, 88vw); }

/* ==========================================================================
   41) EXPERIMENT: Modul-Bänder hell statt dunkel.
       Reiner Override-Block – zum Zurückdrehen einfach diesen Abschnitt
       entfernen (Backup: scratchpad/styles-backup-dunkle-baender.css).
   ========================================================================== */
@media (min-width: 64em) {
  .solution-band--split,
  .solution-band--split-r {
    position: relative;
    z-index: 0;
    background-size: auto;
  }

  .solution-band--split,
  .solution-band--split-r { background-image: none; }

  /* Raster + dezenter Violett-Glow nur auf der Animations-Hälfte */
  .solution-band--split::before,
  .solution-band--split-r::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: -1;
    background-image:
      linear-gradient(rgba(11, 11, 18, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(11, 11, 18, 0.05) 1px, transparent 1px),
      radial-gradient(circle 560px at 50% 42%, rgba(118, 66, 240, 0.16), rgba(118, 66, 240, 0.05) 55%, transparent 75%);
    background-size: 28px 28px, 28px 28px, auto;
    pointer-events: none;
  }

  .solution-band--split::before { left: 0; }
  .solution-band--split-r::before { right: 0; }
}

@media (max-width: 63.99em) {
  .solution-band--split .solution__visual,
  .solution-band--split-r .solution__visual {
    background-color: var(--bg);
    background-image:
      linear-gradient(rgba(11, 11, 18, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(11, 11, 18, 0.05) 1px, transparent 1px),
      radial-gradient(circle 420px at 50% 40%, rgba(118, 66, 240, 0.14), transparent 72%);
    background-size: 28px 28px, 28px 28px, auto;
  }
}

.state-node {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 10px 24px -18px rgba(11, 11, 18, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  .state-node { animation-name: state-pulse-light; }
}

@keyframes state-pulse-light {
  0%, 9%    { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(118, 66, 240, 0.2); }
  14%, 100% { border-color: var(--line); box-shadow: 0 10px 24px -18px rgba(11, 11, 18, 0.35); }
}

.state-node__icon {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.state-node__title { color: var(--ink); }
.state-node__sub { color: var(--muted); }
.state-node__check { color: var(--accent); }

.state-node--human .state-node__icon {
  background: rgba(29, 158, 117, 0.14);
  color: #15805e;
}

.edge-path { stroke: rgba(118, 66, 240, 0.5); }
.edge-dot { stroke: var(--brand); }

.state-sep {
  background: repeating-linear-gradient(180deg, rgba(118, 66, 240, 0.5) 0 4px, transparent 4px 9px);
}

@media (prefers-reduced-motion: no-preference) {
  .state-sep::after { background: var(--brand); }
}

.state-branch {
  border-color: rgba(11, 11, 18, 0.18);
  color: var(--muted);
}

.state-branch__icon { color: var(--muted); }

.dark-panel__head { border-bottom-color: var(--line); }
.dark-panel__label { color: var(--ink); }
.dark-panel__meta { color: var(--muted); }
.dark-panel__dot { background: #15805e; }
.dark-panel__chips { border-top-color: var(--line); }

.dark-chip {
  background: #ffffff;
  border-color: var(--line);
  color: #4a4763;
}

.dark-chip svg { color: var(--accent); }

.prompt-bar {
  background: #ffffff;
  border-color: var(--line);
  color: #4a4763;
}

.prompt-bar__icon { color: var(--brand-dark); }
.prompt-bar__text::after { background: var(--brand); }

.live-badge { color: #15805e; }
.live-badge__dot { background: #15805e; }

.node-bar { background: rgba(11, 11, 18, 0.12); }
.node-num { color: var(--ink); }

.rule-strip {
  border-color: var(--line);
  background: #ffffff;
}

.rule-strip__label { color: var(--muted); }
.rule-toggle { color: #4a4763; }

/* ==========================================================================
   42) EU-Vertrauenselemente: schwebendes Hero-Panel, Trustbar-Fakt, Footer
   ========================================================================== */
.eu-float {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  align-self: flex-start;
  margin-top: var(--sp-5);
  padding: 0.75rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 44px -20px rgba(118, 66, 240, 0.4);
}

.eu-float__icon {
  width: 42px;
  height: 42px;
  flex: none;
}

.eu-float__text { display: grid; line-height: 1.35; }

.eu-float__text strong {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
}

.eu-float__text span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  .eu-float { animation: eu-bob 4.5s ease-in-out infinite alternate; }
}

@keyframes eu-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

@media (max-width: 63.99em) {
  .eu-float { display: none; }
}

.eu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: var(--sp-4);
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.eu-badge__icon { width: 34px; height: 34px; flex: none; }

.eu-badge__text { display: grid; line-height: 1.35; }

.eu-badge__text strong {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #e6e3f2;
}

.eu-badge__text span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #8f8ca6;
}

/* ==========================================================================
   43) Vertrauen-Sektion: komplett dunkle Bühne + Herkunfts-Badges
   ========================================================================== */
.trust-dark {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--footer-line);
  padding-top: var(--sp-7);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #a9a5c2;
}

.trust-badge svg { width: 19px; height: 19px; flex: none; }
.trust-badge strong { color: #ffffff; font-weight: 800; }

/* Das EU-Band innerhalb der dunklen Bühne: kein helles Band-Design */
.trust-dark .solution-band--split {
  background: none;
  border-top: 0;
}

.trust-dark .solution-band--split::before { display: none; }

.trust-dark .solution__kicker { color: #b9a3f7; }
.trust-dark .solution__title { color: #ffffff; }
.trust-dark .solution__text { color: #a9a5c2; }

.trust-dark .feature-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cfccdf;
}

.trust-dark .feature-chip svg { color: #35c493; }

.trust-dark .usecase {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-dark .usecase__label { color: #b9a3f7; }
.trust-dark .usecase__text { color: #cfccdf; }

.trust-dark .foundation-card {
  background: #15151f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.trust-dark .foundation-card__icon {
  background: rgba(118, 66, 240, 0.22);
  color: #b9a3f7;
}

.trust-dark .foundation-card__title { color: #ffffff; }
.trust-dark .foundation-card__text { color: #a9a5c2; }

.trust-dark .trust-note { color: #8f8ca6; }
.trust-dark .section-next { color: #a9a5c2; }
.trust-dark .section-next a { color: #c9b8f8; }

/* --- Vertrauen V2: Mini-Sternenkreis im Kopf, größere animierte Kacheln --- */
.eu-ring--mini {
  --r: 2.5rem;
  width: calc(var(--r) * 2 + 1.8rem);
  margin: 0 auto var(--sp-4);
}

.eu-ring--mini .eu-star { width: 0.9rem; }

.trust-badges { justify-content: center; }

.trust-dark .diff-grid { gap: var(--sp-5); }

.trust-dark .foundation-card {
  padding: var(--sp-6) var(--sp-5);
}

.trust-dark .foundation-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: var(--sp-4);
}

.trust-dark .foundation-card__icon svg { width: 27px; height: 27px; }

.trust-dark .foundation-card__title {
  font-size: 1.3rem;
  margin-bottom: var(--sp-2);
}

.trust-dark .foundation-card__text {
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 42ch;
}

@media (prefers-reduced-motion: no-preference) {
  .trust-dark .foundation-card__icon {
    animation: trust-icon-ring 5s var(--ease) infinite;
    animation-delay: calc(var(--ti, 0) * 0.7s);
  }

  .trust-dark .foundation-card__icon svg {
    animation: trust-icon-bob 5s var(--ease) infinite;
    animation-delay: calc(var(--ti, 0) * 0.7s);
  }

  .trust-dark .diff-grid .foundation-card:nth-child(1) { --ti: 0; }
  .trust-dark .diff-grid .foundation-card:nth-child(2) { --ti: 1; }
  .trust-dark .diff-grid .foundation-card:nth-child(3) { --ti: 2; }
  .trust-dark .diff-grid .foundation-card:nth-child(4) { --ti: 3; }
  .trust-dark .diff-grid .foundation-card:nth-child(5) { --ti: 4; }
  .trust-dark .diff-grid .foundation-card:nth-child(6) { --ti: 5; }
}

@keyframes trust-icon-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(118, 66, 240, 0); }
  10%      { box-shadow: 0 0 0 9px rgba(118, 66, 240, 0.2); }
  26%      { box-shadow: 0 0 0 0 rgba(118, 66, 240, 0); }
}

@keyframes trust-icon-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  10%      { transform: translateY(-3px) scale(1.09); }
  26%      { transform: translateY(0) scale(1); }
}

/* --- Sprachswitch: nur Flaggen, kein Text --- */
.lang__item a { justify-content: center; }
.lang__item .flag { width: 26px; height: auto; }
.drawer__langs { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.drawer__lang { padding: 0.45rem 0.55rem; }
.drawer__lang .flag { width: 28px; height: auto; }

.trust-dark .trust-grid-wrap { padding-top: 0; }
.trust-dark .diff-grid { margin-top: 0; }
.trust-dark .section-head { margin-bottom: var(--sp-6); }

/* ==========================================================================
   44) Kontakt V2, KI-Kennzeichnung, Datenschutz-Banner
   ========================================================================== */
#kontakt { padding-block: clamp(5rem, 9vh, 7.5rem); }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}

.field--check a { color: var(--brand-dark); font-weight: 600; }

.field__check {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--brand);
  cursor: pointer;
}

/* Kennzeichnung KI-generierter Bilder */
.ai-note {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  background: rgba(11, 11, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.ai-note svg { width: 11px; height: 11px; }

/* Story-Karten tragen das Themen-Icon rechts – KI-Hinweis dort links */
.story-card__media .ai-note { right: auto; left: 0.75rem; }

/* Datenschutz-Banner (nur Information – keine Tracking-Dienste im Einsatz) */
.consent {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 130;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  width: min(60rem, calc(100vw - 2rem));
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px -24px rgba(11, 11, 18, 0.45);
}

.consent__text {
  flex: 1 1 26rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--muted);
}

.consent__text strong { color: var(--ink); }
.consent__text a { color: var(--brand-dark); font-weight: 600; }

.consent__btn { flex: none; }

@media (max-width: 47.99em) {
  .consent { bottom: 0.75rem; padding: 0.9rem 1rem; }
  .consent__btn { width: 100%; }
}

.consent[hidden] { display: none; }

/* ==========================================================================
   45) Stack-Sektion: Beschreibung + graues Logo-Karussell in voller Breite
   ========================================================================== */
.stack-section { padding-bottom: var(--sp-7); }

.stack-section .section-lead {
  max-width: 62ch;
  text-align: left;
}

.logowall {
  margin-top: var(--sp-6);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logowall__track {
  display: flex;
  width: max-content;
}

.logowall__set {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: clamp(1.25rem, 2.5vw, 2.25rem);
}

.logowall__logo {
  height: 28px;
  width: auto;
  flex: none;
  opacity: 0.75;
}

.logowall__word {
  flex: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #9b98af;
  opacity: 0.85;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .logowall__track { animation: logowall-scroll 45s linear infinite; }
  .logowall:hover .logowall__track { animation-play-state: paused; }
}

@media (prefers-reduced-motion: reduce) {
  .logowall { overflow-x: auto; }
}

@keyframes logowall-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Stack-Sektion: großzügiger Abstand zu den Nachbarsektionen */
.stack-section { padding-block: clamp(6rem, 10vh, 8.5rem); }

/* --- Canvas-Feinkalibrierung: obenbündige Spalte + saubere Build-Kanten --- */
.canvas-col--top { align-self: start; }

/* Build-Kanten verschwinden VOR den Boxen – keine Linien ohne Kacheln */
@keyframes node-build-edge {
  0%       { opacity: 0; }
  6%       { opacity: 1; }
  76%      { opacity: 1; }
  84%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .canvas--build .canvas-edge { animation-name: node-build-edge; }
}

/* Senkrechte Verbinder: in die Grid-Lücken hineinverlängern,
   damit die Strichlinie beide Kacheln berührt */
.canvas-col > .state-sep {
  height: calc(38px + 2rem);
  margin-block: -1rem;
}

/* ==========================================================================
   46) Unterseiten als Mini-Landing-Pages
   ========================================================================== */
.subhero__actions {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

.lp-industry-grid {
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 48em) {
  .lp-industry-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}

.lp-trust {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  padding-block: var(--sp-5);
}

.lp-trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-4);
}

/* --- FAQ-Akkordeon (native details) --- */
.container--narrow { max-width: 52rem; }

.faq { display: grid; gap: var(--sp-3); }

.faq__item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq__q {
  display: block;
  position: relative;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--dur-med) var(--ease);
}

.faq__item[open] .faq__q::after { transform: translateY(-30%) rotate(225deg); }

.faq__item[open] .faq__q { border-bottom: 1px solid var(--line); }

.faq__a {
  padding: 1rem 1.25rem 1.2rem;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--muted);
}

.faq__stand {
  margin-top: var(--sp-4);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Sicherheitsnetz: Das Dokument selbst scrollt nie horizontal.
   Interne Scroller (Tabelle, Slider, Canvas) sind davon unberührt. */
html, body { overflow-x: clip; }

/* Chrome propagiert die Scrollweite der Vergleichstabelle sonst ins Dokument */
.compare-scroll { contain: paint; }

/* Flaggen-Dropdown: nur so breit wie die Flagge selbst */
.lang__menu { min-width: 0; width: max-content; }
.lang__item a { padding: 0.5rem 0.6rem; }

/* ==========================================================================
   47) Rechtsseiten (Impressum, Datenschutz)
   ========================================================================== */
.legal {
  max-width: 46rem;
  padding-block: clamp(3rem, 7vh, 5rem);
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}

.legal__stand {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
}

.legal h2 {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: var(--sp-6) 0 var(--sp-2);
}

.legal p, .legal li {
  font-size: var(--text-md);
  line-height: 1.75;
  color: #3c3a4e;
}

.legal p + p { margin-top: var(--sp-3); }

.legal ul {
  margin: var(--sp-3) 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.4rem;
}

.legal a { color: var(--brand-dark); font-weight: 600; }

/* Honeypot-Feld: für Menschen unsichtbar und unerreichbar */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   48) Canvas-Animationen mobil: vertikaler Ablauf statt Seitwärts-Scroll
   ========================================================================== */
@media (max-width: 63.99em) {
  .canvas-scroll { overflow: visible; }

  .canvas {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 0;
  }

  .canvas-col,
  .canvas-col--center,
  .canvas-col--top {
    width: 100%;
    margin: 0;
    align-self: auto;
  }

  .canvas-col--down { margin-top: 0; }
  .canvas-col--up { margin-bottom: 0; }

  /* Kanten-SVGs werden zu senkrechten Verbindungslinien */
  .canvas-edge {
    width: 100%;
    height: 2.4rem;
    min-height: 0;
    align-self: auto;
    background-image: repeating-linear-gradient(180deg, rgba(118, 66, 240, 0.5) 0 4px, transparent 4px 9px);
    background-size: 2px 100%;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .canvas-edge > * { display: none; }

  .canvas .state-node__title { font-size: var(--text-base); }
  .canvas .state-node__sub { font-size: var(--text-sm); }
}
