/* Roboto lokal – eine variable Font-Datei deckt alle Gewichte (100–900) ab */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-latin.woff2") format("woff2");
  /* latin: Basis-Zeichensatz inkl. Umlaute */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-latin-ext.woff2") format("woff2");
  /* latin-ext: erweiterte lateinische Zeichen (z. B. ł, ş, ž) */
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg-1: #0f1117;
  --bg-2: #13151d;
  --bg-3: #171921;
  --s: #1e2130;
  --s2: #242738;
  --tx: #e8e8ec;
  --tm: #9ca3af;
  --td: #6b7280;
  --ac: #2ecc71;
  --acd: #27ae60;
  --ag: rgba(46, 204, 113, 0.12);
  --ags: rgba(46, 204, 113, 0.22);
  --bd: rgba(255, 255, 255, 0.07);
  --ba: rgba(46, 204, 113, 0.3);
  --r: 16px;
  --rs: 8px;
  --mw: 1140px;
  --sh: 0 12px 32px rgba(0, 0, 0, 0.4);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg-1);
  color: var(--tx);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

/* TYPOGRAFIE: Wort-Witwen vermeiden (06-design-mobile.md) */
/* Ueberschriften: Woerter gleichmaessig verteilen, keine Silbentrennung */
h1, h2, h3, h4,
.hero h1, .team-h2, .article-head h1 {
  text-wrap: balance;
  hyphens: none;
}
/* Fliesstext: keine einsamen Schlusswoerter, keine schlechten Trennungen */
p, li, .article-lead, blockquote {
  text-wrap: pretty;
}

/* GLOW CURSOR */
.glow-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--cx, 50%) var(--cy, 50%), rgba(46, 204, 113, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 99;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  /* Eigener GPU-Compositing-Layer -> entkoppelt den backdrop-filter von den
     animierten Hintergründen (Hero-Partikel, Chat-Mockups) -> kein Zittern. */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
/* beim Scrollen: transparenter, dünnere Trennlinie, dezenter Schatten -> "premium" */
nav.scrolled {
  background: rgba(15, 17, 23, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.ni {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s;
}
/* Bar schrumpft beim Scrollen leicht */
nav.scrolled .ni {
  height: 56px;
}
.logo img,
nav.scrolled .logo img {
  transition: height 0.3s;
}
nav.scrolled .logo img {
  height: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  height: 32px;
  width: auto;
}
.nl {
  display: flex;
  gap: 4px;
  align-items: center;
}
/* Desktop: Links mittig, CTA rechts, Logo links.
   Zwei Auto-Abstände (vor dem ersten Link + vor dem CTA) zentrieren die
   Linkgruppe und schieben den CTA an den rechten Rand – ohne Überlappung. */
@media (min-width: 901px) {
  .nl { flex: 1; }
  .nl > :first-child { margin-left: auto; }
  .nl > .ncta { margin-left: auto; }
}
.nl > a,
.nd > .ndt {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--tm);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* grüner Unterstrich, der von der Mitte aus aufzieht */
.nl > a::after,
.nd > .ndt::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--ac);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nl > a:hover::after,
.nd:hover > .ndt::after {
  transform: scaleX(1);
}
/* CTA-Button bekommt keinen Unterstrich */
.ncta::after { display: none; }
.nl > a:hover,
.nd:hover > .ndt {
  color: var(--tx);
  background: rgba(255, 255, 255, 0.05);
}
/* aktiver Link (per JS gesetzt) bleibt grün unterstrichen */
.nl > a.is-active {
  color: var(--tx);
}
.nl > a.is-active::after {
  transform: scaleX(1);
}
.nd {
  position: relative;
}
.ndt svg {
  width: 11px;
  height: 11px;
  transition: transform 0.2s;
}
.nd:hover .ndt svg {
  transform: rotate(180deg);
}
/* Links-öffnendes Dropdown (z. B. "Leistungen" am linken Nav-Rand) */
.nd-left > .ndm { left: 0; right: auto; }
.ndm {
  position: absolute;
  top: calc(100% + 6px);
  right: 0; /* rechtsbündig – "Über uns" sitzt jetzt am rechten Nav-Rand */
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 5px;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.nd:hover .ndm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ndm a {
  display: block;
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--tm);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}
.ndm a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--tx);
}
/* "Angebot"-Dropdown: kleines Favicon-artiges Markenlogo vor jedem Plattformnamen */
.ndm-brands a { display: flex; align-items: center; gap: 10px; }
.ndm-ico { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
/* Breites Mega-Dropdown ("Mehr"): 3 Spalten mit Kategorie-Überschriften.
   Spalten durch eine feine Trennlinie separiert statt nur durch Lücke -> wirkt
   strukturierter/weniger gequetscht als reiner grid-gap. */
.ndm-mega {
  display: grid;
  grid-template-columns: repeat(3, max-content); /* jede Spalte so breit wie ihr längster Eintrag -> keine Umbrüche */
  gap: 10px 0;
  padding: 30px 36px;
  border-radius: 18px; /* größer als das normale .ndm (10px) -> passt zur Größe des Panels */
}
.ndm-mega a { white-space: nowrap; }
.ndm-col { display: flex; flex-direction: column; padding: 0 36px; }
.ndm-col:first-child { padding-left: 0; }
.ndm-col:last-child { padding-right: 0; }
.ndm-col:not(:first-child) { border-left: 1px solid var(--bd); }
.ndm-h {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--ac); padding: 0 13px 14px;
}
.ncta {
  /* Gradient statt flachem Grün + dezenter Glow -> klar die Hauptaktion */
  background: linear-gradient(135deg, var(--ac), var(--acd)) !important;
  color: var(--bg-1) !important;
  padding: 9px 20px !important;
  border-radius: var(--rs) !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  margin-left: 6px;
  box-shadow: 0 4px 14px rgba(46, 204, 113, 0.25);
}
.nav-faq {
  /* kein Sonderabstand mehr – Reihenfolge geändert (Kontakt folgt jetzt) */
}
/* Kontakt-Aktionen im Menü: auf Desktop unsichtbar, nur im Mobile-Overlay */
.nl-contact { display: none; }
.ncta:hover {
  background: linear-gradient(135deg, #36df84, var(--ac)) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(46, 204, 113, 0.4);
}
.mt {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mt span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tx);
  margin: 4px 0;
}

/* SHARED */
section {
  padding: 88px 32px;
}
.si {
  max-width: var(--mw);
  margin: 0 auto;
}
.sl {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ac);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.st {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.9px;
  margin-bottom: 14px;
}
.sd {
  font-size: 1rem;
  color: var(--tm);
  max-width: 650px;
  margin-bottom: 44px;
  line-height: 1.65;
}
.bg2 {
  background: var(--bg-2);
}
.st .tac { color: var(--ac); } /* grün hervorgehobene Teil-Zeile in einer Section-Überschrift */
.bg3 {
  background: var(--bg-3);
}
.bp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ac);
  color: var(--bg-1);
  font-size: 0.93rem;
  font-weight: 700;
  padding: 15px 184px;
  border-radius: var(--rs);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
  font-family: inherit;
}
.bp:hover {
  background: var(--acd);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.35);
}
.bp svg {
  transition: transform 0.2s;
}
.bp:hover svg {
  transform: translateX(4px);
}
.bo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bd);
  color: var(--tx);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--rs);
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  cursor: pointer;
  font-family: inherit;
}
.bo:hover {
  border-color: var(--ac);
  color: var(--ac);
  background: var(--ag);
  transform: translateY(-2px);
}
.arw {
  width: 16px;
  height: 16px;
}

/* HERO */
.hero {
  /* Hero wächst mit seinem Inhalt – nur normales Padding oben/unten,
     keine Streckung auf Viewport-Höhe */
  padding: 56px 32px;
  max-width: var(--mw);
  margin: 0 auto; /* in der Hero-Zone vertikal zentriert */
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--bd);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.16) 0%,
    transparent 68%
  );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hc {
  max-width: 560px;
}
.hb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 17, 23, 0.65);
  color: var(--ac);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.1);
}
.hb::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ac);
  border-radius: 50%;
  animation: pd 2s ease-in-out infinite;
}
.hb + .hb { margin-left: 8px; }
@keyframes pd {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; box-shadow: 0 0 10px var(--ac); }
}
.hero h1 {
  font-family: "Roboto", sans-serif;
  /* Zeile 1 füllt die Textspalte; die grüne Zeile 2 (em-big) ist so skaliert, dass sie
     GLEICH BREIT ist -> beide bilden einen Block (wie in der alten Hero-Version). */
  /* Zeile 1 "Ihre eigene Open-Source" füllt die Textspalte; Zeile 2 (grünes
     "KI-Plattform") ist per em-big so skaliert, dass sie GLEICH BREIT ist. */
  font-size: clamp(1.75rem, 3.7vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-wrap: pretty;
}
/* "Open-Source" nie am Bindestrich trennen -> Zeile 1 bleibt eine Zeile. */
.hero h1 .hnw { white-space: nowrap; }
/* Kleiner Untertitel unter der H1 (ehem. zweite Headline-Zeile). */
.hero .hsub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  color: var(--tm);
  letter-spacing: 0.1px;
  margin: 0 0 20px;
}
/* Grüner Text, normal (nicht kursiv) */
.hero h1 em {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--ac);
}
/* "dein": bleibt auf normaler Textgröße (Zeile 1, neben dem weißen Teil) */
.hero h1 em.em-small {
  font-weight: 700;
}
/* Zweite Zeile "Wir begleiten Sie…": grüner Blickfang, etwas größer als der weiße Teil */
.hero h1 em.em-big {
  font-weight: 800;
  font-size: 2.02em; /* etwas breiter als Zeile 1 -> "KI-Plattform" wirkt länger, Zeile 1 kürzer */
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin-top: 0.06em;
}
/* Handgemalter Pinselstrich-Unterstrich nur unter "Unternehmen" */
.hero h1 em.em-big::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.12em;
  height: 0.42em;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 30' preserveAspectRatio='none'%3E%3Cpath d='M4 18 C 60 7, 130 8, 180 13 C 220 17, 270 12, 296 9' stroke='%232ecc71' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M10 24 C 80 17, 160 20, 240 18 C 265 17, 282 19, 292 20' stroke='%232ecc71' stroke-width='3.5' fill='none' stroke-linecap='round' opacity='0.55'/%3E%3C/svg%3E");
  /* startet unsichtbar (von rechts abgeschnitten) und zeichnet sich erst,
     wenn der Cookie-Banner bestätigt wurde -> Klasse .draw-underline am <body> */
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
}
body.draw-underline .hero h1 em.em-big::after {
  animation: draw-underline 1s ease-out 0.2s forwards;
}
@keyframes draw-underline {
  to { clip-path: inset(0 0 0 0); }
}
.hsub {
  font-size: 1.05rem;
  font-weight: 600;
  color: #d8dde8;
  margin-bottom: 12px;
  line-height: 1.55;
}
.hdesc {
  font-size: 0.95rem;
  color: var(--tm);
  margin-top: 30px; /* Luft zur H1 inkl. Unterstreichung (schluckt margin-collapsing mit der H1) */
  margin-bottom: 32px;
  max-width: 470px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--bd);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: #cbd5e1;
  backdrop-filter: blur(10px);
}
.hero-meta span::before {
  content: "✦";
  color: var(--ac);
  font-size: 0.72rem;
}
/* Gemeinsamer Wrapper: fit-content = so breit wie das breitere Kind (die Chip-Zeile).
   Dadurch übernimmt die Button-Zeile exakt die belegte Breite der 3 Badges. */
.hero-cta { width: fit-content; max-width: 100%; }
.hero-btns { display: flex; width: 100%; gap: 16px; flex-wrap: wrap; align-items: stretch; }
.hero-btns .bp, .hero-btns .bo { flex: 1 1 0; justify-content: center; padding-top: 14px; padding-bottom: 14px; padding-left: 20px; padding-right: 20px; }
.hv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
/* Eigener Positionierungs-Rahmen für die Chat-Karte + ihre schwebenden Badges,
   damit .hfl (top/bottom/left/right) sich weiter auf die Chat-Karte bezieht
   und nicht auf .hv, das durch die Logo-Reihe darunter höher geworden ist. */
.hero-chat-wrap { position: relative; width: 100%; max-width: 460px; }
.hmk {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(
    180deg,
    rgba(36, 39, 56, 0.96),
    rgba(24, 27, 38, 0.95)
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(46, 204, 113, 0.05);
  overflow: hidden;
  backdrop-filter: blur(12px);
  position: relative;
}
.hmk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    transparent 24%,
    transparent 80%,
    rgba(46, 204, 113, 0.05)
  );
  pointer-events: none;
}
.hmb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--s2);
  border-bottom: 1px solid var(--bd);
}
.hmd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.hmb-label {
  margin-left: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--tm);
}
.hmby {
  /* mehr Abstand oben, damit Nachrichten unter dem "Gehostet in DE"-Badge starten */
  padding: 44px 20px 12px;
  /* Nachrichten-Verlauf von oben nach unten stapeln (wie echter Chat) */
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  overflow: hidden;
}

/* CHAT ANIMATION CLASSES */
.hmm {
  padding: 12px 16px;
  border-radius: 11px;
  font-size: 0.84rem;
  line-height: 1.5;
  max-width: 88%;
  /* Bubble fliegt beim Einfügen sanft rein */
  animation: bubbleIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hmm.u {
  background: var(--ac);
  color: var(--bg-1);
  font-weight: 600;
  margin-left: auto;
  border-bottom-right-radius: 3px;
}
.hmm.a {
  background: var(--s2);
  color: var(--tx);
  border-bottom-left-radius: 3px;
  border: 1px solid var(--bd);
}

.typing-cursor::after {
  content: '|';
  animation: blinkCursor 1s step-end infinite;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-left: 1px;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
  padding: 0 4px;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  background-color: var(--tx);
  border-radius: 50%;
  opacity: 0.4;
  animation: bounceDots 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounceDots {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.hmi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0 20px 20px;
  background: var(--s2);
  border-radius: 11px;
  border: 1px solid var(--bd);
  transition: border-color 0.25s, box-shadow 0.25s;
}
/* "fokussierter" Look, während getippt wird */
.hmi.is-typing {
  border-color: rgba(46, 204, 113, 0.45);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.12);
}
.hmi svg { flex-shrink: 0; }
/* getippter Text + Platzhalter teilen sich denselben Platz */
.hmi-text {
  font-size: 0.8rem;
  color: var(--tx);
  white-space: nowrap;
  overflow: hidden;
}
.hmi-placeholder {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  flex: 1;
}
/* Cursor beim Tippen ins Feld */
.hmi-text.typing-cursor::after {
  content: '|';
  color: var(--ac);
  font-weight: 400;
  animation: blinkCursor 1s step-end infinite;
}
/* Senden-Button rechts, wird beim Tippen aktiv */
.hmi-send {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}
.hmi-send svg { width: 15px; height: 15px; }
.hmi.is-typing .hmi-send {
  background: var(--ac);
  color: var(--bg-1);
}
/* kurzer "Klick" beim Absenden */
.hmi-send.sent { transform: scale(0.82); }
.hfl {
  position: absolute;
  background: rgba(36, 39, 56, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: fl 4s ease-in-out infinite;
  backdrop-filter: blur(14px);
}
.hfl.f1 {
  top: 12px;
  right: -14px;
}
.hfl.f2 {
  /* höher gesetzt, damit das Chat-Eingabefeld komplett sichtbar bleibt */
  bottom: 86px;
  left: -14px;
  animation-delay: 2s;
}
.fi {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.fi.g { background: var(--ag); }
.fi.b { background: rgba(59, 130, 246, 0.15); }

/* Logo-Reihe unter dem Chat-Mockup: die 3 Open-Source-Plattformen, die DSGPT einrichtet */
.hero-logos { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-logos-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--td); text-align: center;
}
.hero-logos-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-logo-item {
  display: flex; align-items: center; gap: 9px; padding: 9px 16px;
  border-radius: 12px; background: rgba(36, 39, 56, 0.6); border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none; color: var(--tm); font-size: 0.83rem; font-weight: 600;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, color 0.25s;
  backdrop-filter: blur(10px);
}
.hero-logo-item:hover { background: rgba(36, 39, 56, 0.92); border-color: rgba(46, 204, 113, 0.4); color: var(--tx); transform: translateY(-2px); }
.hero-logo-item img { height: 18px; width: auto; display: block; }
@keyframes fl {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes fsu {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-orbit,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  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: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  opacity: 0.3;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.hero-orbit::before {
  width: 320px;
  height: 320px;
  right: 80px;
  top: 30px;
  animation: spin 30s linear infinite;
}
.hero-orbit::after {
  width: 520px;
  height: 520px;
  right: -20px;
  top: -90px;
  border-color: rgba(46, 204, 113, 0.15);
  animation: spin 40s linear infinite reverse;
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* HERO ZONE */
.hero-zone {
  position: relative;
  /* füllt den ganzen Viewport: nächste Sektion erst beim Scrollen sichtbar.
     Der Hero selbst bleibt kompakt und wird hier vertikal zentriert. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;   /* Platz für die fixe Nav */
  padding-bottom: 34px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 20% 0, rgba(46, 204, 113, 0.08), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.1), transparent 30%),
    linear-gradient(180deg, #0c1018 0%, #0b1018 54%, #0a0f17 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.hero-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}
.trust-section::after {
  content: ""; position: absolute; left: 50%; bottom: -36px;
  transform: translateX(-50%); width: min(1140px, calc(100% - 64px));
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  pointer-events: none;
}
/* TRUST */
.trust-section {
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1; /* hebt die ::after-Trennlinie über die nachfolgende bg2-Sektion, sonst überdeckt deren Hintergrund sie */
  padding: 26px 32px 30px;
}
.trust-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}
.tbg {
  max-width: var(--mw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
  position: relative; z-index: 2; padding-top: 50px;
}
.tbc {
  background: linear-gradient(180deg, rgba(26, 30, 44, 0.98), rgba(20, 24, 36, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 22px; padding: 28px 26px;
  display: flex; align-items: center; gap: 16px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 126px; overflow: hidden; position: relative;
}
.tbc::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(46, 204, 113, 0.06), transparent 42%), linear-gradient(90deg, rgba(59, 130, 246, 0.07), transparent 56%);
  pointer-events: none;
}
.tbc:hover {
  border-color: var(--ba); transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(46, 204, 113, 0.05);
}
.tbi {
  width: 50px; height: 50px; min-width: 50px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.18), rgba(46, 204, 113, 0.08));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); border: 1px solid rgba(46, 204, 113, 0.2);
}
.tbc h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.tbc p { font-size: 0.84rem; color: var(--tm); line-height: 1.45; }

/* BEKANNT */
.bek {
  /* Hintergrund wie die Nachbar-Sektionen (bg2), volle Breite -> .beki begrenzt
     den Inhalt selbst auf die normale Seitenbreite. */
  background: var(--bg-2);
  padding: 78px 32px; margin: 0; position: relative; z-index: 2;
}
/* Feine Trennlinie oben/unten (wie .trust-section::before, mittig ausfadend) ->
   schmaler als der volle Viewport, etwas schmaler als die Card selbst */
.bek::before, .bek::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: min(900px, calc(100% - 120px)); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}
.bek::before { top: 0; }
.bek::after { bottom: 0; }
.beki { max-width: var(--mw); margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.bek-panel {
  padding: 46px 40px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 26px;
  background: linear-gradient(180deg, rgba(27, 31, 45, 0.96), rgba(18, 21, 33, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative; overflow: hidden; backdrop-filter: blur(12px);
}
.bek-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(59, 130, 246, 0.1), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
  pointer-events: none;
}
.bek-title {
  /* edler: zentriert mit feinen Linien links/rechts */
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 30px;
}
/* der eigentliche Text – als eigenes span, damit uppercase + Verlauf sicher greifen */
.bek-title span {
  font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 5px;
  white-space: nowrap;
  background: linear-gradient(90deg, #c4ccdc, #eef1f7, #c4ccdc);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* feine Trennlinien neben dem Titel */
.bek-title::before,
.bek-title::after {
  content: ""; height: 1px; width: 46px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28));
}
.bek-title::after { transform: rotate(180deg); } /* zweite Linie spiegeln, damit sie nach außen ausläuft */
.bekl {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: nowrap; position: relative; padding: 10px 0 0;
}
.bekl img {
  height: 86px; max-width: 15.5%; object-fit: contain; opacity: 1; /* Logos in voller Farbe */
  transform-origin: center center;
  transition: transform 0.35s;
}
.bekl img:hover { transform: scale(1.12); } /* nur das gehoverte Logo leicht größer */

/* Logos einheitlich weiss eingefaerbt */
.bekl--white img {
  filter: brightness(0) invert(1); opacity: 0.85;
  transition: transform 0.35s, opacity 0.35s;
}
.bekl--white img:hover { opacity: 1; transform: scale(1.12); }

/* Spotlight Hover Class für Cards */
.scard {
  position: relative; overflow: hidden; background: var(--s); border: 1px solid var(--bd); border-radius: var(--r);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.scard::before {
  content: ""; position: absolute; top: var(--sy, 0); left: var(--sx, 0); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 40%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 0;
}
.scard:hover::before { opacity: 1; }
.scard > * { position: relative; z-index: 1; }
.scard:hover { border-color: var(--ba); box-shadow: var(--sh); transform: translateY(-4px); }

/* CARDS LÖSUNGEN */
.pgr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pc { padding: 36px 28px; }
/* Grüne Akzentleiste oben, die beim Hover von links einläuft und
   an den runden Ecken leicht mitgreift (wie ki-tools-fuer-unternehmen.de) */
.pc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 3px 0 0 0; /* nur oben -> nur die Oberkante wird zur Linie */
  background: linear-gradient(90deg, var(--ac), var(--acd));
  /* Maske: nur der obere Padding-Streifen bleibt sichtbar */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  /* Start: von links zugeschnitten; läuft beim Hover nach rechts auf */
  clip-path: inset(0 100% 0 0 round var(--r));
  transition: clip-path 0.5s ease-out;
}
.pc:hover::after { clip-path: inset(0 0 0 0 round var(--r)); }
.pi {
  width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--ag), rgba(46,204,113,0.05));
  border: 1px solid rgba(46,204,113,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 24px; box-shadow: inset 0 2px 10px rgba(255,255,255,0.05);
}
.pc h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.pc p { font-size: 0.9rem; color: var(--tm); line-height: 1.6; margin-bottom: 20px; }
.cl { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--ac); text-decoration: none; transition: gap 0.2s; }
.cl:hover { gap: 12px; }

/* LEISTUNGEN */
.lgr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.li { padding: 28px 24px; }
.ln {
  font-size: 0.75rem; font-weight: 800; color: var(--bg-1); background: var(--ac); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(46,204,113,0.25);
}
.li h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.li p { font-size: 0.86rem; color: var(--tm); line-height: 1.55; }

/* BEISPIELE */
.bgrd { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bc { padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start; }
.bic {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--ag), rgba(46,204,113,0.05));
  border: 1px solid rgba(46,204,113,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.bc h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; }
.bc p { font-size: 0.88rem; color: var(--tm); line-height: 1.55; }

/* ABLAUF */
.agr { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.as { text-align: center; }
.asc { padding: 36px 22px 32px; height: 100%; }
.an {
  width: 52px; height: 52px; background: var(--ac); color: var(--bg-1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800;
  margin: 0 auto 20px; box-shadow: 0 6px 16px rgba(46, 204, 113, 0.35);
}
.asc h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.asc p { font-size: 0.86rem; color: var(--tm); line-height: 1.5; }
.asc .det { font-size: 0.8rem; color: var(--td); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--bd); line-height: 1.45; }
.acon { display: flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.acon .aln { flex: 1; height: 2px; background: linear-gradient(90deg, var(--ac), rgba(46, 204, 113, 0.08)); border-radius: 1px; }
.acon .adt { width: 10px; height: 10px; border-radius: 50%; background: var(--ac); box-shadow: 0 0 10px rgba(46, 204, 113, 0.5); }

/* ÜBERLEITUNG (Hero -> Lösungs-Sektionen) */
.sol-anchors { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.sol-anchors a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.85rem; font-weight: 700; color: var(--tx); background: var(--s2); border: 1px solid var(--bd);
  border-radius: 999px; padding: 9px 20px; text-decoration: none; transition: all 0.25s;
}
.sol-anchors a:hover { border-color: var(--ac); color: var(--ac); background: var(--ag); }
.sol-ico { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }

/* LÖSUNGS-SEKTIONEN (4 Plattform-Vorstellungen) */
.psol-in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.psol-txt { max-width: 100%; } /* füllt die volle Grid-Spalte, damit Text und Mockup gleich breit enden */
.psol-badge {
  display: inline-flex; align-items: center; font-size: 0.76rem; font-weight: 700;
  color: var(--ac); background: var(--ag); border: 1px solid var(--ba);
  border-radius: 999px; padding: 6px 15px; margin-bottom: 14px;
}
.psol-txt .sd { margin-bottom: 26px; } /* gleicher Abstand über der Feature-Liste wie darunter zu den Buttons */
.psol-feat { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.psol-feat li { position: relative; padding-left: 26px; font-size: 0.92rem; color: var(--tx); line-height: 1.5; }
.psol-feat li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--ac); font-weight: 700; }
.psol-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.psol-cta .bp { padding: 15px 32px; } /* .bp hat sonst 184px seitliches Padding -> hier ggf. 2 CTAs nebeneinander */

/* .rev: nur die Reihenfolge tauschen (Grafik links). Quellcode bleibt immer
   text-first -> auf Mobile automatisch korrekt, kein order-Reset nötig. */
@media (min-width: 901px) {
  .psol.rev .psol-txt { order: 2; }
  .psol.rev .psol-vis { order: 1; justify-content: flex-start; } /* Mockup links: bündig an die linke Seitenkante */
  .psol:not(.rev) .psol-vis { justify-content: flex-end; }       /* Mockup rechts: bündig an die rechte Seitenkante */
}
@media (max-width: 900px) {
  .psol-in { grid-template-columns: 1fr; gap: 32px; }
}

/* Featured/Flaggschiff-Variante (DSGPT) */
.psol.feat {
  background: radial-gradient(120% 70% at 50% 0%, rgba(46, 204, 113, 0.1), transparent 65%), var(--bg-2);
  border-top: 1px solid var(--ba); border-bottom: 1px solid var(--ba);
}

/* Mockup-Grafik: nutzt .hmk/.hmb/.hmd/.hmb-label aus dem Hero-Chatmockup unverändert
   (rein statisch, kein JS-Tilt/Shine -> keine Kollision mit den hero-spezifischen IDs) */
.psol-vis { display: flex; justify-content: center; }
.psol-vis .hmk { transition: transform 0.3s; max-width: 100%; width: 100%; } /* volle Spaltenbreite statt der Hero-eigenen 460px-Grenze */
.psol-vis:hover .hmk { transform: translateY(-4px); }
/* Chat-Verlauf in den Sektionen: Höhe so, dass das Mockup ~gleich hoch wie die Textspalte ist */
.psv-log { height: 360px; padding-top: 16px; }
/* Panel-/Dokument-Mockups (OpenWebUI, AnythingLLM): gleiche Zielhöhe wie die Chat-Mockups */
.psv { padding: 18px 20px; min-height: 410px; display: flex; flex-direction: column; justify-content: flex-start; gap: 12px; }
.psv-panel { justify-content: center; } /* wenig Inhalt -> mittig statt oben mit viel Leerraum */

.psv-doc { gap: 10px; justify-content: center; } /* Dokument-Karten mittig statt oben mit Leerraum unten */
.pdoc-item { display: flex; gap: 12px; padding: 12px 14px; border: 1px solid var(--bd); border-radius: 10px; background: var(--s2); }
.pdoc-ico { width: 30px; height: 30px; min-width: 30px; border-radius: 8px; background: var(--ag); color: var(--ac); display: flex; align-items: center; justify-content: center; }
.pdoc-item h5 { font-size: 0.86rem; font-weight: 700; margin-bottom: 3px; }
.pdoc-item p { font-size: 0.78rem; color: var(--tm); line-height: 1.4; }
.pdoc-tag { display: inline-block; margin-top: 6px; font-size: 0.68rem; font-weight: 700; color: var(--ac); background: var(--ag); padding: 3px 8px; border-radius: 6px; }

.psv-panel { align-items: center; text-align: center; }
.psv-panel .pnl-models { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.psv-panel .pnl-badge { font-size: 0.78rem; color: var(--tm); border: 1px solid var(--bd); border-radius: 999px; padding: 6px 14px; }
.psv-panel .pnl-offline { font-size: 0.82rem; font-weight: 700; color: var(--pa); display: flex; align-items: center; gap: 8px; }

/* === Produkt-Mockups individuell: je Sektion ein eigener Marken-Akzent ===
   --pa / --pa2 werden pro Sektion gesetzt und von den Kindern geerbt. Default ist
   das DSGPT-Gruen, damit das Hero-Mockup unveraendert bleibt. */
.psol-vis { --pa: var(--ac); --pa2: var(--acd); }
#openwebui   .psol-vis { --pa: #2ecc71; --pa2: #6ee7a8; } /* Gruen: lokal, offline, Datenhoheit */
#librechat   .psol-vis { --pa: #21facf; --pa2: #0970ef; } /* Cyan bis Blau, aus dem LibreChat-Logo */
#anythingllm .psol-vis { --pa: #8dd8ff; --pa2: #ff87ff; } /* Hellblau bis Magenta, AnythingLLM-Branding */

/* Animierter Glow-Rand (global .hmk::after) auf den Produkt-Akzent umstellen */
.psol-vis .hmk::after {
  background: linear-gradient(130deg, var(--pa), transparent 40%, transparent 60%, var(--pa2));
  background-size: 200% 200%;
}
/* Fensterleiste: Produktlogo + getoente Trennlinie darunter */
.psol-vis .hmb { position: relative; }
.psol-vis .hmb::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, var(--pa), var(--pa2), transparent 85%);
  opacity: 0.6;
}
.psol-vis .hmb-logo { width: 15px; height: 15px; object-fit: contain; margin-left: 10px; flex-shrink: 0; }
.psol-vis .hmb-label { margin-left: 7px; color: var(--tx); }
.psol-vis .hmb-tag {
  margin-left: auto; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--pa); border: 1px solid currentColor;
  border-radius: 999px; padding: 3px 9px; opacity: 0.75;
}

/* Open WebUI: Puls-Punkt am Offline-Status + Hardware-Zeile */
.pnl-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pa); flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--pa); animation: pnl-pulse 2.4s ease-out infinite;
}
@keyframes pnl-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.psv-panel .pnl-meta { font-size: 0.72rem; color: var(--td); margin-top: 12px; }

/* LibreChat: Modellwechsel-Leiste, das Alleinstellungsmerkmal sichtbar gemacht */
.pnl-switch {
  display: flex; gap: 6px; padding: 10px 16px; border-bottom: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.015);
}
.pnl-model {
  font-size: 0.68rem; font-weight: 600; color: var(--td);
  border: 1px solid var(--bd); border-radius: 999px; padding: 4px 11px;
}
.pnl-model.is-on {
  color: var(--pa); border-color: var(--pa);
  background: rgba(33, 250, 207, 0.1);
}
#librechat .psv-log { height: 306px; } /* Modellleiste braucht Platz, Gesamthoehe bleibt gleich */
/* Chat-Elemente von Gruen auf den LibreChat-Akzent umstellen */
#librechat .hmm.u { background: var(--pa); color: #06202b; }
#librechat .hmi.is-typing { border-color: rgba(33, 250, 207, 0.45); box-shadow: 0 0 0 3px rgba(33, 250, 207, 0.12); }
#librechat .hmi.is-typing .hmi-send { background: var(--pa); color: #06202b; }
#librechat .hmi-text.typing-cursor::after { color: var(--pa); }

/* AnythingLLM: Wissensbasis-Zeile + Dokument-Karten im Marken-Akzent */
.pnl-kb {
  font-size: 0.74rem; color: var(--tm); margin-bottom: 4px; padding-bottom: 10px;
  border-bottom: 1px dashed var(--bd);
}
.pnl-kb-num { font-weight: 800; color: var(--pa); }
#anythingllm .pdoc-ico { background: rgba(141, 216, 255, 0.14); color: var(--pa); }
#anythingllm .pdoc-tag { color: var(--pa); background: rgba(141, 216, 255, 0.12); }

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

/* BEGLEITUNG VON A BIS Z (ersetzt #ablauf: 2-spaltig, Text + vertikale Schritte) */
.az-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.az-txt .sd { margin-bottom: 28px; }
.az-txt .bp { padding: 15px 32px; } /* .bp hat sonst 184px seitliches Padding -> hier zu breit für die Textspalte */

.az-steps { list-style: none; margin: 0; padding: 0; }
.az-step { position: relative; padding-left: 74px; padding-bottom: 36px; }
.az-step:last-child { padding-bottom: 0; }
.az-step .an { position: absolute; left: 0; top: 0; margin: 0; }
/* Verbindungslinie je Schritt: reicht von der Badge-Unterkante bis zum Fuß
   des Listenpunkts -> stößt nahtlos an die nächste Badge, unabhängig von der
   Textlänge der Beschreibung (robuster als eine fixe Gesamthöhe). */
.az-step:not(:last-child)::before {
  content: ""; position: absolute; left: 25px; top: 52px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--ac), rgba(46, 204, 113, 0.12));
}
.az-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.az-body p { font-size: 0.9rem; color: var(--tm); line-height: 1.55; }

@media (max-width: 900px) {
  .az-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* NDR */
/* TV-Beitrag: Video links, überlappende Karte rechts, grüne Eckwinkel */
.ndri { position: relative; }
/* Video nimmt die linke Breite ein und bestimmt die Höhe der Sektion */
.ndrv {
  width: 58%; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; position: relative;
  border: 1px solid var(--bd); box-shadow: var(--sh);
}
.ndrv img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ndrv:hover img { transform: scale(1.05); }
.ndrp {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px;
  background: var(--ac); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; z-index: 4;
}
.ndrp:hover { transform: translate(-50%, -50%) scale(1.15); background: var(--acd); }
.ndrp svg { margin-left: 4px; }
/* Textkarte rechts – überlappt das Video, volle Video-Höhe */
.ndrt {
  position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 48%; z-index: 3;
  display: flex; flex-direction: column;
  padding: 40px 44px; border-radius: var(--r); border: 1px solid var(--bd);
  background: linear-gradient(180deg, rgba(30, 33, 48, 0.94), rgba(15, 17, 23, 0.98));
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}
.ndrt .sl { margin-bottom: 14px; }
.ndrt h3 { font-family: "Roboto", sans-serif; font-size: 2rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.8px; }
.ndrt p { font-size: 0.98rem; color: var(--tm); line-height: 1.65; margin-bottom: 28px; }
/* Button im Stil des Bildes: Versalien, gesperrt */
.ndrt .bo { align-self: flex-start; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; font-weight: 700; padding: 14px 26px; }
/* grüne Eckwinkel: oben-rechts AN DER KARTE + unten-links am Video */
.ndrt::before, .ndri::after { content: ""; position: absolute; width: 58px; height: 58px; pointer-events: none; z-index: 4; }
.ndrt::before { top: -10px; right: -10px; border-top: 2px solid var(--ac); border-right: 2px solid var(--ac); border-top-right-radius: 8px; }
.ndri::after { bottom: -10px; left: -10px; border-bottom: 2px solid var(--ac); border-left: 2px solid var(--ac); border-bottom-left-radius: 8px; }
/* Mobile: Video und Karte untereinander, Eckwinkel aus */
@media (max-width: 900px) {
  .ndrv { width: 100%; }
  .ndrt { position: static; width: 100%; transform: none; padding: 30px 26px; margin-top: 14px; }
  .ndrt::before, .ndri::after { display: none; }
}

/* TESTIMONIALS */
.tgr { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tc { padding: 32px 28px; display: flex; flex-direction: column; }
.ts { color: var(--ac); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.tc blockquote { font-size: 0.92rem; color: var(--tx); line-height: 1.65; margin-bottom: 22px; flex: 1; font-style: italic; }
.ta { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--bd); padding-top: 16px; }
.tav { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
.ta .nm { font-size: 0.9rem; font-weight: 600; }
.ta .rl { font-size: 0.78rem; color: var(--tm); }

/* ==================================================== */
/* NEU: SIMPLE SPLIT-LAYOUT RECHNER (3 SLIDER)          */
/* ==================================================== */
.cbox {
  background: linear-gradient(145deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--bd); border-radius: 24px; padding: 42px 38px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cf label {
  display: block; font-size: 0.95rem; font-weight: 600; color: var(--tm); margin-bottom: 12px;
}
.cf .val-display { float: right; color: var(--tx); font-weight: 800; font-size: 1.05rem; }

/* Input Range Styling */
input[type=range] {
  -webkit-appearance: none; width: 100%; background: transparent; padding: 10px 0;
}
input[type=range]:focus { outline: none; }

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%;
  background: var(--ac); cursor: pointer; margin-top: -10px;
  box-shadow: 0 0 14px rgba(46, 204, 113, 0.6); transition: transform 0.15s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }

input[type=range]::-webkit-slider-runnable-track {
  width: 100%; height: 5px; cursor: pointer; background: rgba(255, 255, 255, 0.1); border-radius: 3px;
}

/* Große Ergebnis-Box */
.result-box {
  background: linear-gradient(180deg, rgba(46,204,113,0.08), rgba(46,204,113,0.02));
  border: 1px solid var(--ac);
  border-radius: 24px;
  padding: 46px 40px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(46,204,113,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Dezenter Glanz im Hintergrund der Box */
.result-box::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 100px; background: radial-gradient(ellipse, rgba(46,204,113,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.result-box-title {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--tm); font-weight: 700;
  position: relative; z-index: 1;
}
.result-box-value {
  font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 800; color: var(--ac);
  margin: 16px 0; font-family: "Roboto", sans-serif;
  position: relative; z-index: 1;
  text-shadow: 0 0 30px rgba(46,204,113,0.4);
}
.result-box-sub {
  font-size: 0.95rem; color: var(--tx); line-height: 1.6;
  position: relative; z-index: 1;
}
/* Link vom Mehrwertrechner zum erweiterten Rechner (Unterseite) */
.calc-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 0.92rem; font-weight: 600; color: var(--ac); text-decoration: none;
  transition: gap 0.25s, opacity 0.25s;
}
.calc-more svg { width: 17px; height: 17px; transition: transform 0.25s; }
.calc-more:hover { opacity: 0.85; }
.calc-more:hover svg { transform: translateX(4px); }

/* FAQ */
.fql { max-width: 800px; margin: 0 auto; }
.fqi { border: 1px solid var(--bd); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: var(--s); transition: all 0.3s; }
.fqi:hover, .fqi.open { border-color: var(--ba); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.fqq {
  width: 100%; background: none; border: none; padding: 22px 28px; font-size: 0.98rem; font-weight: 600; color: var(--tx);
  text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; line-height: 1.4;
}
.fqq::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--td); min-width: 24px; text-align: center; transition: transform 0.3s; }
.fqi.open .fqq::after { content: "−"; color: var(--ac); transform: rotate(90deg); }
.fqa { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.fqi.open .fqa { max-height: 250px; }
/* Startseiten-FAQ: längere Antworten (u. a. BSI/AIC4) brauchen mehr Höhe */
#faq .fqi.open .fqa { max-height: 460px; }
.fqa p { font-size: 0.92rem; color: var(--tm); line-height: 1.65; padding: 0 28px 24px; }

/* CTA */
/* === Konfigurator-Teaser (Startseite, zwischen den Produkten und dem Ablauf) ===
   Bewusst NICHT im Look der grossen gruenen .cta-card am Seitenende, damit die
   beiden Handlungsaufforderungen sich nicht gegenseitig entwerten. */
.kfx {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
  padding: 44px 48px; border-radius: 24px; border: 1px solid var(--bd);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(46, 204, 113, 0.1), transparent 55%),
    linear-gradient(160deg, rgba(36, 39, 56, 0.7), rgba(19, 21, 29, 0.7));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.kfx-ico {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--ac); background: var(--ag); border: 1px solid var(--ba); margin-bottom: 20px;
}
.kfx-ico svg { width: 26px; height: 26px; }
.kfx-txt .st { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 12px; }
.kfx-txt .sd { margin-bottom: 26px; max-width: 100%; }
.kfx-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.kfx-btns .bp { padding: 14px 30px; width: auto; } /* globales 184px-Padding entschaerfen */
.kfx-note { font-size: 0.78rem; color: var(--td); margin-top: 18px; }

/* Die drei Schritte als nummerierte Liste mit durchgehender Verbindungslinie */
.kfx-steps { list-style: none; margin: 0; padding: 0; position: relative; }
.kfx-steps li { display: flex; gap: 16px; padding-bottom: 26px; position: relative; }
.kfx-steps li:last-child { padding-bottom: 0; }
/* Linie vom aktuellen zum naechsten Schritt */
.kfx-steps li:not(:last-child)::before {
  content: ""; position: absolute; left: 17px; top: 40px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, var(--ba), transparent);
}
.kfx-num {
  width: 35px; height: 35px; min-width: 35px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--ac);
  background: var(--ag); border: 1px solid var(--ba);
}
.kfx-steps strong { display: block; font-size: 0.96rem; font-weight: 700; color: var(--tx); margin-bottom: 4px; }
.kfx-steps small { display: block; font-size: 0.84rem; color: var(--tm); line-height: 1.55; }

@media (max-width: 900px) {
  .kfx { grid-template-columns: 1fr; gap: 34px; padding: 34px 28px; }
}
@media (max-width: 640px) {
  .kfx { padding: 28px 20px; }
  .kfx-btns { flex-direction: column; align-items: stretch; }
  .kfx-btns .bo { justify-content: center; }
}

.ctas { padding: 0 32px; border-top: 1px solid var(--bd); }
.cta-wrap { max-width: var(--mw); margin: 0 auto; padding: 100px 0; }
.cta-card {
  background: linear-gradient(135deg, #152b1b, #1a3325, #152b1b); border: 1px solid rgba(46, 204, 113, 0.4); border-radius: 24px; padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.cta-card::before {
  content: ""; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%); pointer-events: none;
}
.cta-card::after {
  content: ""; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%); pointer-events: none;
}
.ctai { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(46, 204, 113, 0.15); border: 1px solid var(--ba);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; font-size: 32px; box-shadow: 0 0 20px rgba(46,204,113,0.2);
}
.ctai h2 { font-family: "Roboto", sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 16px; }
.ctai p { font-size: 1.05rem; color: #cbd5e1; margin-bottom: 16px; }
.cta-trust { display: flex; justify-content: center; gap: 28px; margin-bottom: 36px; flex-wrap: wrap; }
.cta-trust span { font-size: 0.88rem; color: #94a3b8; display: flex; align-items: center; gap: 8px; }
.cta-trust span::before { content: "✓"; color: var(--ac); font-weight: 700; font-size: 0.85rem; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-or { font-size: 0.88rem; color: var(--tm); margin-top: 24px; }
.cta-or a { color: var(--ac); text-decoration: none; font-weight: 600; }
.cta-or a:hover { text-decoration: underline; }

/* FOOTER */
footer { background: #090b10; border-top: 1px solid var(--bd); padding: 56px 32px; }
.fi-inner { max-width: var(--mw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.fl-left p { font-size: 0.85rem; color: var(--td); margin-top: 8px; }
.fl-links { display: flex; gap: 28px; }
.fl-links a { font-size: 0.85rem; color: var(--tm); text-decoration: none; transition: color 0.3s; }
.fl-links a:hover { color: var(--ac); }

/* === Footer: Marke links + 4 Link-Spalten === */
.ft { max-width: var(--mw); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 3fr; gap: 48px; }
.ft-brand .logo img { height: 28px; width: auto; }
.ft-brand p { font-size: 0.85rem; color: var(--td); margin: 14px 0 0; line-height: 1.6; }
.ft-brand .footer-credit { display: inline; margin-left: 0; }
.ft-phone { display: inline-block; margin-top: 14px; font-size: 0.92rem; font-weight: 600; color: var(--tm); text-decoration: none; transition: color 0.2s; }
.ft-phone:hover { color: var(--ac); }
.ft-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.ft-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--ac); margin: 0 0 14px; }
.ft-col a {
  display: block; font-size: 0.86rem; color: var(--tm); text-decoration: none;
  padding: 5px 0; transition: color 0.2s, padding-left 0.2s; background: none; border: 0;
  cursor: pointer; font-family: inherit; text-align: left;
}
.ft-col a:hover { color: var(--ac); padding-left: 4px; }
.ft-bottom {
  max-width: var(--mw); margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--bd);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px;
  font-size: 0.8rem; color: var(--td);
}
@media (max-width: 1000px) {
  .ft-cols { grid-template-columns: repeat(3, 1fr); gap: 24px 20px; }
}
@media (max-width: 860px) {
  .ft { grid-template-columns: 1fr; gap: 36px; }
  .ft-cols { grid-template-columns: repeat(3, 1fr); gap: 24px 20px; }
}
@media (max-width: 620px) { .ft-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ft-cols { grid-template-columns: 1fr; } }

/* PAGE VIEWS (MODALS) */
.pv {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(15, 17, 23, 0.98); backdrop-filter: blur(20px); overflow-y: auto;
}
.pv.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes menuFade { from { opacity: 0; } to { opacity: 1; } }
.pvh { max-width: var(--mw); margin: 0 auto; padding: 100px 32px 40px; display: flex; justify-content: space-between; align-items: flex-start; }
.pvbk {
  background: rgba(255,255,255,0.05); border: 1px solid var(--bd); color: var(--tx); padding: 10px 20px; border-radius: var(--rs);
  cursor: pointer; font-family: inherit; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; display: flex; align-items: center; gap: 8px;
}
.pvbk:hover { border-color: var(--ac); color: var(--ac); background: var(--ag); }
.pvbk { text-decoration: none; white-space: nowrap; } /* als echter <a>-Link auf den Unterseiten */
.pvb { max-width: var(--mw); margin: 0 auto; padding: 0 32px 80px; }

/* Echte Unterseiten (team.php, presse.php, preise.php) – kein Overlay, normaler Seitenfluss */
.subpage { min-height: 60vh; }

/* ===================================================================
   PREISE-SEITE – Premium-Redesign
   =================================================================== */

/* --- Value-Band: Kernversprechen auf einen Blick (wie team-statband) --- */
.price-promos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 0 0 56px; padding: 34px 12px; position: relative; overflow: hidden;
  border: 1px solid var(--bd); border-radius: 24px;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(46, 204, 113, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(30, 33, 48, 0.9), rgba(18, 21, 33, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.price-promos .promo { text-align: center; padding: 4px 18px; position: relative; }
/* feine vertikale Trennlinie zwischen den Versprechen */
.price-promos .promo + .promo::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}
.promo-num {
  font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -1px; margin-bottom: 10px;
  background: linear-gradient(135deg, #6ee7a8, var(--ac)); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.promo-lbl { font-size: 0.8rem; color: var(--tm); letter-spacing: 0.3px; line-height: 1.4; }

/* --- Pakete-Grid --- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-grid.cols3 { grid-template-columns: repeat(3, 1fr); }
.price-grid.cols2 { grid-template-columns: repeat(2, 1fr); }
.prc2 { padding: 30px 24px; display: flex; flex-direction: column; }

/* Karten-Kopf: Paketname + Nutzer-Pille nebeneinander */
.prc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.prc-head h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.tier-pill {
  font-size: 0.68rem; font-weight: 600; color: var(--tm); white-space: nowrap;
  padding: 4px 10px; border: 1px solid var(--bd); border-radius: 999px;
  background: rgba(255, 255, 255, 0.03); letter-spacing: 0.3px;
}

/* Preis als Gradient-Zahl (kräftiger Blickfang) */
.prc2 .pr {
  font-family: "Roboto", sans-serif; font-size: 2.05rem; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.5px; margin-bottom: 4px;
  background: linear-gradient(135deg, #6ee7a8, var(--ac)); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
/* der "/ einmalig"-Zusatz bleibt normal gefärbt */
.prc2 .pr small { font-size: 0.82rem; font-weight: 500; color: var(--tm); font-family: "Roboto", sans-serif; -webkit-text-fill-color: var(--tm); }
.prc2 .pds { font-size: 0.85rem; color: var(--tm); line-height: 1.5; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--bd); }
.pft { list-style: none; margin-bottom: 24px; flex: 1; }
.pft li { font-size: 0.85rem; color: var(--tx); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.pft li::before { content: "✓"; color: var(--ac); font-weight: 700; font-size: 0.85rem; min-width: 14px; }
.prc2 .bp { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.9rem; margin-top: auto; }
/* Button immer am Kartenboden ausrichten -> alle 3 Pakete auf gleicher Höhe.
   24px Mindestabstand zur letzten Kategorie, auch bei der höchsten Karte. */
.price-grid .prc2 > .pcat:last-of-type { margin-bottom: 24px; }

/* Beliebt-Karte: stärkerer Glow, Skalierung, Akzent-Badge */
.prc2.pop {
  border-color: var(--ac);
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(46, 204, 113, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(46, 204, 113, 0.05) 0%, var(--bg-2) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(46, 204, 113, 0.12);
  transform: scale(1.03); padding-top: 46px; /* Extra Platz oben für das Badge */
}
.prc2.pop:hover { transform: scale(1.03) translateY(-4px); }
.ppb {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ac), var(--acd)); color: var(--bg-1);
  font-size: 0.72rem; font-weight: 800; padding: 6px 22px; border-radius: 0 0 14px 14px;
  letter-spacing: 1px; white-space: nowrap; box-shadow: 0 6px 18px rgba(46,204,113,0.35); z-index: 3;
}

/* Technische-Details-Aufklapper */
.ttg {
  width: 100%; background: rgba(255,255,255,0.02); border: 1px solid var(--bd); border-radius: var(--rs); padding: 11px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--tm); cursor: pointer; margin-top: 12px; font-family: inherit; transition: all 0.3s;
  display: flex; justify-content: space-between; align-items: center;
}
.ttg:hover { border-color: var(--ba); color: var(--tx); background: rgba(255,255,255,0.05); }
.ttg::after { content: "+"; font-size: 1.1rem; font-weight: 400; }
.ttg.open::after { content: "−"; }
.tdet { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.tdet.open { max-height: 500px; }
.tdeti { padding: 14px 0 0; font-size: 0.8rem; color: var(--tm); line-height: 1.55; }
.tdeti div { padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.tdeti div::before { content: "·"; color: var(--ac); font-weight: 700; }

/* Abschnitts-Abstand (globales <section>-Padding hier neutralisieren) */
.price-page .price-section { padding: 0; margin-top: 64px; }

/* --- Support / Schulung --- */
.sup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.sup-card { padding: 30px 26px; }
/* hervorgehobenes Empfohlen-Paket */
.sup-card.featured {
  border-color: var(--ba);
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(46, 204, 113, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(46, 204, 113, 0.04), var(--bg-2));
}
.sup-badge {
  display: inline-block; margin-bottom: 12px; padding: 4px 12px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--ac); background: var(--ag); border: 1px solid var(--ba);
}
.sup-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sup-card .spr { font-size: 1.5rem; font-weight: 800; color: var(--ac); font-family: "Roboto", sans-serif; margin-bottom: 12px; }
.sup-card .spr small { font-size: 0.8rem; color: var(--tm); font-family: "Roboto", sans-serif; }
.sup-card ul { list-style: none; margin-top: 14px; }
.sup-card ul li { font-size: 0.85rem; color: var(--tx); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.sup-card ul li::before { content: "✓"; color: var(--ac); font-weight: 700; font-size: 0.8rem; min-width: 14px; }
.ws-box { margin-top: 28px; padding: 32px 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.ws-box div h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.ws-box div p { font-size: 0.88rem; color: var(--tm); max-width: 540px; }
.ws-box .pr { font-family: "Roboto", sans-serif; font-size: 1.6rem; color: var(--ac); font-weight: 800; white-space: nowrap; }

/* --- Feature-Kategorien in den Preiskarten (Bild-Struktur) --- */
.pcat { margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--bd); }
.pcat:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.pcat-h { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ac); margin-bottom: 9px; }
.pcat ul { list-style: none; }
.pcat li { font-size: 0.82rem; color: var(--tx); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.pcat li::before { content: "✓"; color: var(--ac); font-weight: 700; font-size: 0.8rem; min-width: 14px; }
/* nicht enthaltene Punkte: ausgegraut mit Strich */
.pcat li.off { color: var(--tm); opacity: 0.5; }
.pcat li.off::before { content: "–"; color: var(--tm); }
.pcat .more { font-size: 0.76rem; color: var(--tm); font-style: italic; padding: 4px 0 0 22px; }

/* --- Support-Pakete: 4 Spalten + beschriftete Zeilen --- */
.sup-grid.cols4 { grid-template-columns: repeat(4, 1fr); }
.sup-card .spr.soft { color: var(--tx); }
.sup-rows { margin-top: 14px; }
.sup-row { padding: 9px 0; border-top: 1px solid var(--bd); }
.sup-row:first-child { border-top: none; }
.sup-row .k { color: var(--tm); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
.sup-row .v { color: var(--tx); font-size: 0.85rem; line-height: 1.4; }
.sup-note { margin-top: 16px; font-size: 0.8rem; color: var(--tm); line-height: 1.55; max-width: 760px; }

/* --- Schulungs- & Workshop-Angebote (Karten-Grid) --- */
.tr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.tr-card { padding: 24px 24px 18px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.tr-card:hover { transform: translateY(-4px); border-color: var(--ba); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35); }
.tr-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tr-name { font-weight: 700; color: var(--tx); font-size: 1rem; line-height: 1.3; margin: 0; }
.tr-card p { font-size: 0.86rem; color: var(--tm); line-height: 1.55; margin: 0; flex: 1; }
.tr-pill { display: inline-block; flex-shrink: 0; font-size: 0.64rem; font-weight: 700; color: var(--ac); background: var(--ag); border: 1px solid var(--ba); border-radius: 999px; padding: 4px 11px; letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; }
/* "DSGPT"-Pill nutzt bewusst dasselbe Grün wie alle anderen Pills (kein Sonderstil). */
.tr-card-foot { display: flex; align-items: center; gap: 8px; padding-top: 14px; border-top: 1px solid var(--bd); }
.tr-dur { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ac); font-family: "Roboto", sans-serif; font-size: 0.92rem; }
.tr-dur svg { width: 15px; height: 15px; stroke: var(--ac); flex-shrink: 0; }
@media (max-width: 760px) { .tr-grid { grid-template-columns: 1fr; } }

/* --- Abschluss-CTA (wie team-cta) --- */
.price-cta {
  margin-top: 72px; text-align: center; padding: 52px 32px; border-radius: 24px;
  border: 1px solid var(--bd);
  background: radial-gradient(100% 140% at 50% 0%, rgba(46, 204, 113, 0.1), transparent 55%), var(--bg-2);
}
.price-cta h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.price-cta p { color: var(--tm); margin: 0 auto 24px; font-size: 0.95rem; max-width: 520px; }

/* TEAM */
.tmgr { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
/* Card im Stil von kiwebsite: Box mit rundem Avatar + Name */
.tmc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 26px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tmc:hover {
  border-color: var(--ba);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
/* Runder Avatar-Wrapper: feste Größe + Rand → alle Kreise exakt gleich groß.
   Das Bild darin wird nur skaliert/verschoben, der Kreis bleibt unverändert. */
.tmav {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden; /* clippt das hochskalierte Bild auf den Kreis */
  border: 2px solid var(--ba);
  box-shadow: 0 0 16px rgba(46, 204, 113, 0.12);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
/* beim Hover über die Card: Avatar leicht heben + stärker leuchten */
.tmc:hover .tmav {
  border-color: var(--ac);
  box-shadow: 0 0 22px rgba(46, 204, 113, 0.32);
}
.tmav img {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Pro Bild zoomen/verschieben, damit das Gesicht den Kreis füllt
   (Original-Crops sind unterschiedlich – wie bei kiwebsite) */
.tmav img[src$="marcel-dsgpt-team.webp"]  { transform: scale(1.35) translateY(8%); }
.tmav img[src$="van-dsgpt-team.webp"]     { transform: scale(1.08) translateY(3%); }
.tmav img[src$="petr-dsgpt-team.webp"]    { transform: scale(1.08) translateY(3%); }
.tmav img[src$="niklas-dsgpt-team.webp"]  { transform: scale(1.05) translateY(4%); }
.tmav img[src$="domenik-dsgpt-team.webp"] { transform: scale(1.0) translateY(0%); }
.tmav img[src$="natalia-dsgpt-team.webp"] { transform: scale(1.15) translateY(8%); }
.tmav img[src$="virgil-dsgpt-team.webp"]  { transform: scale(1.4) translateY(10%); }
.tmi { padding: 0; }
.tmi h4 { font-size: 0.95rem; font-weight: 700; }
/* Position ausblenden – nur der Name wird gezeigt */
.tmi p { display: none; }

/* ===================================================================
   TEAM-SEITE – Premium-Redesign
   =================================================================== */

/* --- 1. Kennzahlen-Band: eine Reihe, große Verlaufszahlen, Trennstriche --- */
.team-statband {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 0 0 72px; padding: 38px 12px; position: relative; overflow: hidden;
  border: 1px solid var(--bd); border-radius: 24px;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(46, 204, 113, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(30, 33, 48, 0.9), rgba(18, 21, 33, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.team-statband .tsb-item {
  text-align: center; padding: 4px 18px; position: relative;
}
/* feine vertikale Trennlinie zwischen den Zahlen */
.team-statband .tsb-item + .tsb-item::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 52px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}
.team-statband .tsb-num {
  font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -1px; margin-bottom: 10px;
  background: linear-gradient(135deg, #6ee7a8, var(--ac)); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.team-statband .tsb-lbl {
  font-size: 0.8rem; color: var(--tm); text-transform: uppercase; letter-spacing: 1.5px;
}

/* --- 2. Gründer-Spotlight: groß, asymmetrisch, mit Glow-Ring --- */
.founder-spotlight {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center;
  margin: 0 0 80px; padding: 48px; position: relative; overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.22); border-radius: 28px;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(46, 204, 113, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(30, 33, 48, 0.85), rgba(18, 21, 33, 0.92));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.fs-photo { position: relative; justify-self: center; }
.fs-photo img {
  width: 240px; height: 280px; object-fit: cover; object-position: center top;
  border-radius: 22px; border: 1px solid rgba(46, 204, 113, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(46, 204, 113, 0.15);
}
/* leuchtender Akzent-Rahmen hinter dem Foto */
.fs-photo::before {
  content: ""; position: absolute; inset: -14px -14px -14px -14px; z-index: -1;
  border-radius: 30px; background: linear-gradient(135deg, var(--ac), transparent 60%);
  opacity: 0.4; filter: blur(22px);
}
.fs-content .sl { margin-bottom: 12px; }
.fs-name { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.fs-role { color: var(--ac); font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
.fs-bio { font-size: 0.98rem; color: var(--tx); line-height: 1.7; margin-bottom: 24px; max-width: 600px; }
.fs-contact { display: flex; gap: 14px; flex-wrap: wrap; }
.fs-contact a {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  border: 1px solid var(--bd); border-radius: 10px; color: var(--tx);
  font-size: 0.86rem; font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.fs-contact a:hover { border-color: var(--ac); color: var(--ac); background: var(--ag); }
.fs-contact svg { width: 16px; height: 16px; }

/* --- 3. Team-Grid: Portrait-Karten, Foto füllt, Overlay mit Name+Rolle --- */
.team-members .sl { text-align: center; margin-bottom: 8px; }
.team-members .team-h2 { text-align: center; font-size: 1.7rem; font-weight: 800; margin-bottom: 36px; letter-spacing: -0.5px; }
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.tcard {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1;
  border: 1px solid var(--bd); background: var(--s); cursor: default;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
}
.tcard img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(0.35) brightness(0.92);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}
/* dunkler Verlauf unten für Lesbarkeit der Schrift */
.tcard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(13, 15, 22, 0.55) 68%, rgba(13, 15, 22, 0.96) 100%);
  transition: opacity 0.4s;
}
.tcard-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px 18px 16px;
}
.tcard-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
/* Rolle: standardmäßig eingeklappt, erscheint beim Hover */
.tcard-info p {
  font-size: 0.78rem; color: var(--ac); font-weight: 600;
  max-height: 0; opacity: 0; overflow: hidden;
  transform: translateY(4px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
/* Hover: Karte hebt sich, Foto zoomt + wird farbig, Rolle fährt aus, grüner Glow */
.tcard:hover {
  transform: translateY(-8px);
  border-color: var(--ac);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(46, 204, 113, 0.2), 0 0 36px rgba(46, 204, 113, 0.18);
}
.tcard:hover img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
/* Freigestellte Cutout-Porträts (Virgil, Natalia: Figur mittig mit transparenten
   Rändern) hineinzoomen, damit die Figur die Kachel füllt statt zu "schweben". */
.tcard.tc-virgil img, .tcard.tc-natalia img { transform: scale(1.3) translateY(5%); transform-origin: center 30%; }
.tcard.tc-virgil:hover img, .tcard.tc-natalia:hover img { transform: scale(1.37) translateY(5%); transform-origin: center 30%; }
/* Domenik: Porträt ist höher als quadratisch -> 'cover' würde unten abschneiden.
   'contain' zeigt die ganze Figur (kleiner, nichts gekappt), oben anliegend. */
.tcard.tc-domenik img { object-fit: contain; object-position: center top; transform: none; }
.tcard.tc-domenik:hover img { transform: scale(1.04); }
.tcard:hover .tcard-info p { max-height: 40px; opacity: 1; transform: translateY(0); }

/* --- Abschluss-Banner: gemeinsam arbeiten --- */
.team-cta {
  margin-top: 72px; text-align: center; padding: 48px 32px; border-radius: 24px;
  border: 1px solid var(--bd);
  background: radial-gradient(100% 140% at 50% 0%, rgba(46, 204, 113, 0.1), transparent 55%), var(--bg-2);
}
.team-cta h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.team-cta p { color: var(--tm); margin-bottom: 24px; font-size: 0.95rem; }

/* ===================================================================
   PRESSE-SEITE – Premium-Redesign
   =================================================================== */

/* Abschnitts-Überschrift (Eyebrow) mit etwas Luft */
.press-eyebrow { margin: 0 0 14px; }
/* .press-section ist ein <section> – globales section-Padding (88px) hier neutralisieren,
   damit der Abstand allein über margin-bottom kommt (symmetrisch, keine Lücken) */
.press-section { padding: 0; margin: 0 0 56px; }
.press-section:last-child { margin-bottom: 0; }

/* Untertitel im Kopf einzeilig (nur Presse-Seite, Desktop) */
.press-page .pvh .sd { max-width: none; white-space: nowrap; }
@media (max-width: 900px) {
  .press-page .pvh .sd { white-space: normal; } /* Mobile darf umbrechen */
}

/* --- 1. Kernbotschaft: großes Zitat-Statement --- */
.press-statement {
  position: relative; overflow: hidden; margin-bottom: 56px;
  padding: 44px 52px; border-radius: 28px;
  border: 1px solid rgba(46, 204, 113, 0.25);
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(46, 204, 113, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(30, 33, 48, 0.9), rgba(18, 21, 33, 0.94));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* großes Anführungszeichen als Deko */
.press-statement::before {
  content: "\201C"; position: absolute; top: -10px; right: 28px;
  font-size: 12rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(46, 204, 113, 0.16); pointer-events: none;
}
.press-statement .sl { margin-bottom: 14px; }
.press-statement blockquote {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.8px; line-height: 1.2;
  margin: 0 0 16px; max-width: 720px;
  background: linear-gradient(135deg, #ffffff, #c9f5db);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.press-statement p { font-size: 0.98rem; color: var(--tm); line-height: 1.7; max-width: 680px; }

/* --- 2. Medienbeiträge: Karten mit großem Thumbnail oben --- */
.press-media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pmcard {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--bd); background: var(--s); text-decoration: none; color: inherit;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, box-shadow 0.4s;
}
.pmcard-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.pmcard-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
/* Play-/Link-Badge auf dem Thumbnail */
.pmcard-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #0f1117; background: var(--ac); border-radius: 8px;
}
.pmcard-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.pmcard-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pmcard-body p { font-size: 0.9rem; color: var(--tm); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.pmcard-link { font-size: 0.88rem; font-weight: 700; color: var(--ac); display: inline-flex; align-items: center; gap: 6px; }
.pmcard:hover { transform: translateY(-6px); border-color: var(--ac); box-shadow: 0 26px 56px rgba(0,0,0,0.45), 0 0 30px rgba(46,204,113,0.16); }
.pmcard:hover .pmcard-thumb img { transform: scale(1.06); }

/* --- 3. Pressekit: Download-Karten --- */
.press-kit-intro { font-size: 0.95rem; color: var(--tm); line-height: 1.6; margin: 0 0 22px; max-width: 640px; }
.press-kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pkcard {
  display: flex; flex-direction: column; gap: 14px; padding: 26px;
  border: 1px solid var(--bd); border-radius: 16px; background: var(--s);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pkcard:hover { border-color: var(--ac); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,0.35); }
.pkcard-logo {
  width: 60px; min-width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; padding: 12px;
  background: linear-gradient(180deg, rgba(46,204,113,0.16), rgba(46,204,113,0.06));
  border: 1px solid rgba(46,204,113,0.22);
}
.pkcard-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pkcard-logo svg { width: 26px; height: 26px; color: var(--ac); }
/* Foto (z.B. Marvin) füllt die Kachel randlos statt als kleines Icon */
.pkcard-logo:has(.pk-photo) { padding: 0; overflow: hidden; }
.pkcard-logo img.pk-photo { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; object-position: center top; }
.pkcard h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.pkcard p { font-size: 0.84rem; color: var(--tm); line-height: 1.5; flex: 1; }
.pkcard-dl { font-size: 0.86rem; font-weight: 700; color: var(--ac); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s; }
.pkcard-dl:hover { gap: 10px; }

/* --- 4. Pressekontakt: Premium-Spotlight (nutzt .founder-spotlight) --- */
.press-contact .fs-quote {
  font-style: italic; color: var(--td); font-size: 0.9rem; line-height: 1.6;
  border-left: 2px solid var(--ba); padding-left: 16px; margin-top: 20px; max-width: 560px;
}

/* PRESSE responsive */
@media (max-width: 900px) {
  .press-kit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .press-statement { padding: 40px 28px; }
  .press-statement blockquote { font-size: 1.5rem; }
  .press-media-grid, .press-kit-grid { grid-template-columns: 1fr; }
}

/* PRESSE (alt – Overlay, bleibt für Abwärtskompatibilität) */
.prgr { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.prc { display: flex; gap: 24px; padding: 28px; align-items: center; }
.prth { width: 140px; min-width: 140px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.prth img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.prc h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.prc > div > p { font-size: 0.88rem; color: var(--tm); line-height: 1.55; margin-bottom: 16px; }
.prc a { font-size: 0.88rem; font-weight: 600; color: var(--ac); text-decoration: none; }
.prc a:hover { text-decoration: underline; }
.prct {
  margin-top: 40px; background: var(--s); border: 1px solid var(--bd); border-radius: var(--r); padding: 36px;
  display: flex; gap: 28px; align-items: center; max-width: 600px;
}
.prct img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(46,204,113,0.2); }
.prct h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.prct p { font-size: 0.9rem; color: var(--tm); line-height: 1.5; }
.prct a { color: var(--ac); text-decoration: none; font-weight: 600; }

/* ===================================================================
   KONTAKT-SEITE – Immersives Redesign
   =================================================================== */

/* Bühne: Stacking-Context für den Ambient-Hintergrund */
.contact-page { position: relative; }
.contact-page .pvh, .contact-page .pvb { position: relative; z-index: 1; }

/* --- 1. Animierter Aurora-Hintergrund --- */
.contact-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.cbg-orb { position: absolute; border-radius: 50%; filter: blur(80px); will-change: transform; }
.cbg-orb-1 { width: 480px; height: 480px; top: -140px; left: -90px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.45), transparent 70%); animation: cbg-float-a 18s ease-in-out infinite; }
.cbg-orb-2 { width: 400px; height: 400px; top: 180px; right: -120px;
  background: radial-gradient(circle, rgba(54, 223, 132, 0.30), transparent 70%); animation: cbg-float-b 22s ease-in-out infinite; }
.cbg-orb-3 { width: 320px; height: 320px; bottom: -120px; left: 38%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.22), transparent 70%); animation: cbg-float-a 26s ease-in-out infinite reverse; }
/* feines Punkt-Raster, weich ausmaskiert */
.cbg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask: radial-gradient(ellipse 78% 55% at 50% 28%, #000 28%, transparent 76%);
  mask: radial-gradient(ellipse 78% 55% at 50% 28%, #000 28%, transparent 76%);
}
@keyframes cbg-float-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(46px, 34px); } }
@keyframes cbg-float-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-38px, 44px); } }

/* --- 2. Hero: Live-Punkt + Gradient-Headline --- */
.contact-eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ac); flex: 0 0 8px;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.contact-h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); line-height: 1.08; }
.contact-h1 .grad {
  background: linear-gradient(120deg, #6ee7a8, var(--ac) 55%, #36df84);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* zweispaltig: Formular (breit) + Sidebar */
.contact-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; align-items: start; }

/* --- 3. Glas-Formularkarte mit animiertem Gradient-Rand --- */
.contact-form-card {
  position: relative; padding: 44px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(30, 33, 48, 0.72), rgba(18, 21, 33, 0.82));
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--bd);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* schimmernder Rand (gleiche Maskentechnik wie das Hero-Mockup) */
.contact-form-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1px;
  background: linear-gradient(130deg, var(--ac), transparent 38%, transparent 62%, rgba(46, 204, 113, 0.75));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0.7; animation: hero-border 7s ease-in-out infinite;
}
.cf-head { margin-bottom: 26px; }
.cf-head h2 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.cf-head p { font-size: 0.9rem; color: var(--tm); line-height: 1.5; }
.req { color: var(--ac); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }

/* Eingabefelder */
.cf-input {
  width: 100%; padding: 12px 15px; font-size: 0.92rem; font-family: inherit;
  color: var(--tx); background: rgba(15, 17, 23, 0.6); border: 1px solid var(--bd); border-radius: 11px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.cf-input:hover { border-color: rgba(255, 255, 255, 0.16); }
.cf-input:focus {
  outline: none; border-color: rgba(46, 204, 113, 0.6);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.14); background: rgba(15, 17, 23, 0.85);
}
textarea.cf-input { resize: vertical; min-height: 130px; line-height: 1.55; }

/* --- Floating Labels --- */
.ff { position: relative; }
.ff .cf-input { padding: 22px 15px 8px; }
.ff label {
  position: absolute; left: 15px; top: 15px; pointer-events: none;
  font-size: 0.94rem; color: var(--td);
  transition: top 0.16s ease, font-size 0.16s ease, color 0.16s ease, letter-spacing 0.16s ease;
}
.ff .cf-input:focus + label,
.ff .cf-input:not(:placeholder-shown) + label {
  top: 8px; font-size: 0.67rem; font-weight: 700; color: var(--ac);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.ff-area .cf-input { padding-top: 24px; }
.ff-area label { top: 16px; }
.ff-area .cf-input:focus + label,
.ff-area .cf-input:not(:placeholder-shown) + label { top: 9px; }
.ff label .req { -webkit-text-fill-color: var(--ac); }

/* Fehler- & Hinweistexte */
.cf-input.is-invalid { border-color: rgba(255, 107, 107, 0.6); }
.cf-input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14); }
.cf-error { font-size: 0.78rem; color: #ff8585; }
.cf-hint { font-size: 0.76rem; color: var(--td); }

/* Honeypot komplett aus dem Layout nehmen */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Submit mit Glanz-Sweep */
.cf-submit {
  position: relative; overflow: hidden; align-self: flex-start;
  margin-top: 8px; padding: 15px 34px; font-size: 0.96rem;
}
.cf-submit::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.cf-submit:hover::after { left: 150%; }
.cf-privacy { font-size: 0.78rem; color: var(--tm); line-height: 1.55; margin-top: 4px; }
.cf-privacy a { color: var(--ac); text-decoration: none; }
.cf-privacy a:hover { text-decoration: underline; }

/* --- Erfolgs-Ansicht --- */
.contact-success { text-align: center; padding: 34px 10px; }
.cs-icon {
  width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ac); background: var(--ag); border: 1px solid var(--ba);
  box-shadow: 0 0 50px rgba(46, 204, 113, 0.22); animation: live-pulse 2.4s ease-out infinite;
}
.cs-icon svg { width: 34px; height: 34px; }
.contact-success h2 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.contact-success p { color: var(--tm); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; max-width: 380px; margin-left: auto; margin-right: auto; }

/* --- 4. Sidebar --- */
.contact-aside { display: flex; flex-direction: column; gap: 16px; }

/* Demo-Buchung (Eyecatcher oben) */
.contact-booking {
  position: relative; overflow: hidden; padding: 30px 28px; border-radius: 20px;
  border: 1px solid var(--ba);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(46, 204, 113, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(46, 204, 113, 0.06), var(--bg-2));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(46, 204, 113, 0.1);
}
.cb-eyebrow { font-size: 0.78rem; font-weight: 700; color: var(--ac); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.contact-booking h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; line-height: 1.25; }
.contact-booking p { font-size: 0.88rem; color: var(--tm); line-height: 1.55; margin-bottom: 20px; }
.contact-booking .bp { width: 100%; justify-content: center; white-space: nowrap; }
.contact-booking .bp svg { flex: 0 0 auto; }

/* Direkter-Draht-Karte */
.contact-info { padding: 10px 24px; }
.ci-row {
  display: flex; align-items: center; gap: 14px; padding: 15px 0; text-decoration: none;
  border-top: 1px solid var(--bd); transition: transform 0.2s;
}
.ci-row:first-of-type { border-top: none; }
.ci-row:hover { transform: translateX(2px); }
.ci-ico {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ac); background: var(--ag); border: 1px solid rgba(46, 204, 113, 0.18);
  transition: background 0.25s, border-color 0.25s;
}
.ci-ico svg { width: 19px; height: 19px; }
.ci-row:hover .ci-ico { background: var(--ags); border-color: var(--ba); }
.ci-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ci-lbl { font-size: 0.72rem; color: var(--tm); text-transform: uppercase; letter-spacing: 0.6px; }
.ci-val { font-size: 0.95rem; font-weight: 600; color: var(--tx); line-height: 1.35; }
.ci-arw { margin-left: auto; color: var(--ac); font-weight: 700; opacity: 0; transform: translateX(-6px); transition: opacity 0.25s, transform 0.25s; }
.ci-row:hover .ci-arw { opacity: 1; transform: translateX(0); }

/* --- 5. Trust-Badges: gleichmäßiges 2er-Raster --- */
.contact-trust { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; }
.contact-trust li {
  font-size: 0.8rem; color: var(--tx); display: flex; align-items: center; gap: 9px;
  padding: 12px 14px; border: 1px solid var(--bd); border-radius: 12px; background: rgba(255, 255, 255, 0.02);
}
.contact-trust li::before {
  content: "✓"; color: var(--ac); font-weight: 700; font-size: 0.7rem; flex: 0 0 18px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--ag);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===================================================================
   "Bereit zu sprechen?" – 24/7 KI-Telefonassistent
   =================================================================== */
/* Volle-Breite-Glas-Card – so breit wie das Grid darunter, Flow läuft innen */
.ai-call {
  position: relative; overflow: hidden; margin: 0 0 26px;
  display: flex; align-items: center; gap: 22px;
  padding: 28px 38px; border-radius: 22px; border: 1px solid var(--ba);
  background:
    radial-gradient(70% 130% at 50% -10%, rgba(46, 204, 113, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(30, 33, 48, 0.78), rgba(18, 21, 33, 0.9));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 56px rgba(46, 204, 113, 0.1);
}
/* animierter Gradient-Rand (gleiche Masken-Technik wie die Formularkarte) */
.ai-call::before {
  content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1px;
  background: linear-gradient(130deg, var(--ac), transparent 38%, transparent 62%, var(--ac));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0.6; animation: hero-border 7s ease-in-out infinite;
}

/* Flow-Knoten (Anruf-Annahme / KI-Bearbeitung) */
.aic-node {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; flex: 0 0 auto;
  padding: 12px 18px; border: 1px solid var(--bd); border-radius: 13px;
  background: rgba(15, 17, 23, 0.5); color: var(--tm); font-size: 0.86rem; font-weight: 600;
}
.aic-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ac); box-shadow: 0 0 10px var(--ac); flex: 0 0 8px; }

/* Verbindungslinie mit fließendem Datenpunkt – wächst und schiebt die Knoten an die Ränder */
.aic-line {
  position: relative; z-index: 1; flex: 1 1 auto; height: 2px; min-width: 24px;
  background: linear-gradient(90deg, rgba(46, 204, 113, 0.45), rgba(46, 204, 113, 0.12));
}
.aic-line::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ac); box-shadow: 0 0 10px var(--ac); transform: translateY(-50%);
  animation: aic-flow 2.2s linear infinite;
}
@keyframes aic-flow {
  0%   { left: -8px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Zentrum: pulsierendes Telefon-Icon + Text nebeneinander */
.aic-center { position: relative; z-index: 1; display: flex; align-items: center; gap: 20px; flex: 0 0 auto; max-width: 540px; }
.aic-icon {
  flex: 0 0 70px; width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, #36df84, var(--acd));
  animation: aic-ring 2.4s ease-out infinite;
}
.aic-icon svg { width: 29px; height: 29px; }
@keyframes aic-ring {
  0%   { box-shadow: 0 12px 30px rgba(46, 204, 113, 0.4), 0 0 0 0 rgba(46, 204, 113, 0.4); }
  70%  { box-shadow: 0 12px 30px rgba(46, 204, 113, 0.4), 0 0 0 18px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 12px 30px rgba(46, 204, 113, 0.4), 0 0 0 0 rgba(46, 204, 113, 0); }
}
.aic-copy h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.aic-copy p { font-size: 0.88rem; color: var(--tm); line-height: 1.55; margin-bottom: 12px; }
.aic-phone {
  display: inline-block; font-family: "Roboto", sans-serif; font-size: 1.45rem; font-weight: 800;
  letter-spacing: -0.5px; text-decoration: none; transition: opacity 0.2s;
  background: linear-gradient(135deg, #6ee7a8, var(--ac)); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.aic-phone:hover { opacity: 0.82; }

/* Bewegung reduzieren, wenn gewünscht */
@media (prefers-reduced-motion: reduce) {
  .cbg-orb, .live-dot, .contact-form-card::before, .cs-icon,
  .aic-icon, .aic-line::after, .ai-call::before { animation: none; }
  .cf-submit::after { transition: none; }
}

/* ===================================================================
   BLOG – Übersicht, Karten & Artikel
   =================================================================== */

/* Karten-Raster (Blog-Übersicht + Startseiten-Sektion) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
  display: flex; flex-direction: column; text-decoration: none; overflow: hidden;
  background: var(--s); border: 1px solid var(--bd); border-radius: var(--r);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--ba); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45); }
.bc-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.bc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.blog-card:hover .bc-media img { transform: scale(1.05); }
.bc-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--ac);
  padding: 5px 11px; border-radius: 999px; background: rgba(15, 17, 23, 0.72); border: 1px solid var(--ba);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.bc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bc-title { font-size: 1.12rem; font-weight: 700; line-height: 1.32; letter-spacing: -0.3px; margin-bottom: 10px; color: var(--tx); transition: color 0.25s; }
.blog-card:hover .bc-title { color: var(--ac); }
.bc-exc { font-size: 0.9rem; color: var(--tm); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.bc-meta { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--td); }
.bc-meta span + span::before { content: "·"; margin-right: 10px; }

/* Startseiten-Blogsektion: Kopf + "Alle Artikel"-Link */
.blog-home-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.blog-home-head .sd { margin-bottom: 0; }
.blog-all { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; color: var(--ac); font-weight: 600; font-size: 0.92rem; text-decoration: none; padding: 10px 0; transition: gap 0.25s; }
.blog-all:hover { gap: 12px; }
.blog-all svg { width: 16px; height: 16px; }

/* --- Artikelseite --- */
.article { max-width: 820px; margin: 0 auto; }
.article-head { text-align: center; margin-bottom: 30px; }
.article-cat { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ac); margin-bottom: 18px; }
.article-cat span + span::before { content: "·"; margin-right: 10px; color: var(--td); }
.article-cat .ac-muted { color: var(--td); font-weight: 600; }
.article-head h1 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.14; letter-spacing: -0.9px; margin-bottom: 18px; }
.article-lead { font-size: 1.14rem; color: var(--tm); line-height: 1.6; max-width: 680px; margin: 0 auto; }
.article-hero-img { width: 100%; border-radius: var(--r); border: 1px solid var(--bd); box-shadow: var(--sh); margin-bottom: 40px; display: block; }

.article-body h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1.25; margin: 42px 0 14px; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.article-body p { font-size: 1.02rem; color: #c9ccd3; line-height: 1.78; margin-bottom: 18px; }
.article-body strong { color: var(--tx); font-weight: 700; }
/* Link-Stil nur für Fließtext-Links – NICHT für Buttons in der CTA-Box */
.article-body p a, .article-body li a { color: var(--ac); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding: 0; list-style: none; }
.article-body li { font-size: 1.02rem; color: #c9ccd3; line-height: 1.7; padding-left: 30px; position: relative; margin-bottom: 11px; }
.article-body ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ac); font-weight: 700; }
.article-body ol { counter-reset: li; }
.article-body ol li::before {
  counter-increment: li; content: counter(li); position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px; border-radius: 50%; background: var(--ag); color: var(--ac);
  font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.article-body blockquote {
  margin: 26px 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--ac);
  color: var(--tx); font-size: 1.12rem; line-height: 1.6; font-style: italic;
}
.article-figure { margin: 34px 0; }
.article-figure img { width: 100%; border-radius: var(--r); border: 1px solid var(--bd); display: block; }
.article-figure figcaption { font-size: 0.82rem; color: var(--td); text-align: center; margin-top: 12px; }

.article-table-wrap { margin: 0 0 22px; overflow-x: auto; border-radius: var(--r); border: 1px solid var(--bd); }
.article-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.article-table th, .article-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--bd); white-space: nowrap; }
.article-table th { color: var(--tx); font-weight: 700; background: rgba(255, 255, 255, 0.03); }
.article-table td { color: #c9ccd3; }
.article-table tbody tr:last-child td { border-bottom: none; }

/* DSGPT-Werbebox im Artikel – zentriert */
.article-cta {
  margin: 38px 0; padding: 34px 30px; border-radius: var(--r); border: 1px solid var(--ba); text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(46, 204, 113, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(46, 204, 113, 0.05), var(--bg-2));
}
.article-cta .sl { margin-bottom: 12px; }
.article-cta h3 { font-size: 1.32rem; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 10px; }
.article-cta p { font-size: 0.97rem; color: var(--tm); line-height: 1.65; margin-bottom: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }
.article-cta .ac-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Verwandte Artikel */
.article-related { max-width: var(--mw); margin: 60px auto 0; border-top: 1px solid var(--bd); padding-top: 44px; }
.article-related h2 { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.5px; text-align: center; margin-bottom: 28px; }

/* Blog responsive */
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-home-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .article-cta { padding: 26px 22px; }
}

/* ===================================================================
   PREMIUM-HERO für neue Unterseiten (LibreChat, Open WebUI, Modelle, Rechner)
   Stil der Startseite: Radial-Glow, grüner Akzenttitel, Eyebrow-Label
   =================================================================== */
.np-hero {
  position: relative; text-align: center; max-width: 860px; margin: 0 auto;
  padding: 4px 32px 8px; /* globales section-Padding (88px) bewusst neutralisiert */
}
.np-hero::before {
  content: ""; position: absolute; left: 50%; top: -90px; transform: translateX(-50%);
  width: 780px; max-width: 120%; height: 380px; z-index: -1; pointer-events: none;
  background: radial-gradient(58% 60% at 50% 0%, rgba(46, 204, 113, 0.16), transparent 72%);
}
.np-hero .sl { display: block; margin-bottom: 16px; }
.np-hero h1 {
  font-family: "Roboto", sans-serif; font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1.1; letter-spacing: -1.2px;
  margin: 0 auto 18px; max-width: 18ch;
}
.np-hero h1 .tac { color: var(--ac); }
.np-hero .np-lead {
  font-size: 1.06rem; color: var(--tm); line-height: 1.7; max-width: 680px; margin: 0 auto;
}
/* Trust-/Stat-Chips unter dem Hero (wie .hero-meta auf der Startseite) */
.np-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 28px; }
.np-meta span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--tm); font-weight: 500; }
.np-meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ac);
  box-shadow: 0 0 10px var(--ac);
}
/* Gradient-Zahl (Blickfang) – wie Preise/Promo-Zahlen */
.grad-num {
  background: linear-gradient(135deg, #6ee7a8, var(--ac));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .np-hero { padding: 4px 20px 4px; }
  .np-hero::before { top: -60px; height: 280px; }
}
/* Intro-Absatz direkt unter dem Hero (Funktionen/Integrationen): zentriert,
   mit mehr Abstand zum Hero – passend zum zentrierten Hero darüber. */
.funktionen-page .article-body > p:first-child,
.integrationen-page .article-body > p:first-child {
  text-align: center;
  max-width: 760px;
  margin: 40px auto 8px;
}

/* --- Premium-Content-Sektionen (Produktseiten LibreChat / Open WebUI) --- */
.np-section { padding: 0; margin-top: 60px; } /* globales section-Padding (88px) neutralisieren */
.np-section-head { text-align: center; max-width: 660px; margin: 0 auto 32px; }
.np-section-head .sl { display: block; margin-bottom: 10px; }
.np-section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); font-weight: 800; letter-spacing: -0.6px; margin: 0 0 10px; }
.np-section-head h2 .tac { color: var(--ac); }
.np-section-head p { color: var(--tm); line-height: 1.65; margin: 0; font-size: 1rem; }

.np-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.np-grid.cols2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.np-grid.cols3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 760px) {
  .np-grid.cols2, .np-grid.cols3 { grid-template-columns: 1fr; }
}

.np-card {
  position: relative; overflow: hidden; border: 1px solid var(--bd); border-radius: 18px;
  background: linear-gradient(180deg, rgba(34,38,55,0.5), rgba(18,20,31,0.5));
  padding: 26px 24px; transition: transform 0.32s cubic-bezier(0.2,0.7,0.2,1), border-color 0.32s, box-shadow 0.32s;
}
.np-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 130px; pointer-events: none;
  background: radial-gradient(70% 100% at 50% 0%, rgba(46,204,113,0.14), transparent 72%);
  opacity: 0; transition: opacity 0.32s;
}
.np-card:hover { transform: translateY(-5px); border-color: var(--ba); box-shadow: 0 22px 46px rgba(0,0,0,0.42), 0 0 34px rgba(46,204,113,0.08); }
.np-card:hover::before { opacity: 1; }
.np-card > * { position: relative; }

.np-ico {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--ag); border: 1px solid var(--ba); color: var(--ac); margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.np-ico svg { width: 25px; height: 25px; }
.np-card h3 { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.3px; margin: 0 0 14px; color: var(--tx); }
.np-card ul { list-style: none; margin: 0; padding: 0; }
.np-card li { position: relative; padding-left: 25px; font-size: 0.9rem; color: var(--tm); line-height: 1.5; margin-bottom: 10px; }
.np-card li:last-child { margin-bottom: 0; }
.np-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ac); font-weight: 700; }

.np-card > p { font-size: 0.9rem; color: var(--tm); line-height: 1.55; margin: 0; }

/* Hinweis-/Disclaimer-Box (Sicherheit & Compliance, BSI-orientiert) */
.np-note {
  max-width: 820px; margin: 30px auto 0; padding: 18px 22px;
  border: 1px solid var(--bd); border-left: 3px solid var(--ac); border-radius: 12px;
  background: var(--s); font-size: 0.9rem; color: var(--tm); line-height: 1.65;
}
.np-note strong { color: var(--tx); }

/* Vorteile-Karten (kompakter, mit Akzentzahl) */
.np-bene { padding: 24px 22px; }
.np-bene .np-bene-num {
  font-family: "Roboto", sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 12px;
  background: linear-gradient(135deg, #6ee7a8, var(--ac)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.np-bene h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.np-bene p { font-size: 0.88rem; color: var(--tm); line-height: 1.55; margin: 0; }

/* ===================================================================
   KI-WEBSITE-Seite + Footer-Credit
   =================================================================== */

/* Footer-Backlink "by KI-Website" – inline nach Hamburg, etwas Abstand */
.footer-credit { margin-left: 16px; color: var(--td); }
.footer-credit a { color: var(--tm); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.footer-credit a:hover { color: var(--ac); }

/* Vorteile-Cards */
.kiweb-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 36px 0; }
.kwf {
  padding: 24px 22px; border: 1px solid var(--bd); border-radius: var(--r); background: var(--s);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.kwf:hover { border-color: var(--ba); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35); }
.kwf-ico {
  width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  color: var(--ac); background: var(--ag); border: 1px solid rgba(46, 204, 113, 0.18); margin-bottom: 14px;
}
.kwf-ico svg { width: 22px; height: 22px; }
.kwf h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 6px; }
.kwf p { font-size: 0.9rem; color: var(--tm); line-height: 1.55; margin: 0; }

/* FAQ-Sektion */
.kiweb-faq { margin: 52px 0 0; }
.kiweb-faq > h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; text-align: center; margin-bottom: 24px; }

@media (max-width: 620px) { .kiweb-features { grid-template-columns: 1fr; } }

/* RESPONSIVE */
@media (max-width: 1000px) { .price-grid, .price-grid.cols3, .sup-grid.cols4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 110px 24px 56px; margin-top: 86px; }
  .hv { order: -1; }
  .tbg, .pgr, .lgr, .tgr, .tmgr, .bgrd, .prgr, .ndri, .sup-grid, .sup-grid.cols4, .price-grid, .price-grid.cols3, .price-grid.cols2 { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .calc-inputs { gap: 24px; }
  .agr { grid-template-columns: repeat(2, 1fr); }
  .acon { display: none; }
  .nl { display: none; }
  .mt { display: block; }

  /* ===== Fullscreen-Mobile-Menü ===== */
  .nl.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: 0;                    /* füllt den kompletten Viewport */
    z-index: 1000;
    background: var(--bg-1);
    padding: 88px 28px 32px;     /* oben Platz für Logo + X-Button */
    gap: 4px;
    overflow-y: auto;            /* lange Listen scrollbar */
    -webkit-overflow-scrolling: touch;
    animation: menuFade 0.25s ease;
  }
  /* Haupt-Links: groß, gut tippbar */
  .nl.open > a,
  .nl.open .ndt {
    font-size: 1.25rem;
    padding: 14px 4px;
    border-bottom: 1px solid var(--bd);
  }
  .nl.open > a::after, .nl.open .ndt::after { display: none; } /* Unterstrich-Hover aus */
  /* "Über uns"-Dropdown im Overlay immer aufgeklappt anzeigen */
  .nl.open .nd { border-bottom: 1px solid var(--bd); }
  .nl.open .ndt { width: 100%; justify-content: space-between; border-bottom: none; }
  .nl.open .ndm {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: none; padding: 4px 0 10px 16px;
  }
  .nl.open .ndm a { font-size: 1.05rem; padding: 8px 0; }
  /* Mega-Dropdown im Mobile-Overlay: Spalten untereinander, Überschriften sichtbar.
     Die Desktop-Spaltentrenner (border-left/padding/radius) hier neutralisieren,
     sonst erscheinen sie als unerwünschte Einrückung/Linie bei jeder Spalte. */
  .nl.open .ndm-mega { display: block; min-width: 0; padding: 4px 0 10px 16px; border-radius: 0; }
  .nl.open .ndm-col { padding: 0; border-left: none; }
  .nl.open .ndm-h { padding: 12px 0 2px; }
  /* "Beratung anfragen"-Button im Overlay volle Breite */
  .nl.open .ncta {
    margin: 18px 0 0 !important;
    padding: 15px 20px !important;
    text-align: center;
    font-size: 1.05rem !important;
  }

  /* ===== Kontakt-Aktionen unten im Overlay (ersetzen die schwebende Leiste) ===== */
  .nl.open .nl-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;            /* nach unten schieben */
    padding-top: 22px;
  }
  .nlc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--bd);
    background: var(--s2);
    color: var(--tx);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
  }
  .nlc-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
  .nlc-cta {
    background: linear-gradient(135deg, var(--ac), var(--acd));
    color: var(--bg-1);
    border-color: transparent;
  }

  /* ===== Hamburger -> X Animation ===== */
  .mt { position: relative; z-index: 1001; width: 36px; height: 36px; }
  .mt span { transition: transform 0.28s ease, opacity 0.2s ease; }
  .mt.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mt.is-open span:nth-child(2) { opacity: 0; }
  .mt.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Body-Scroll sperren, solange das Menü offen ist */
  body.menu-open { overflow: hidden; }
  /* WICHTIG: nav hat backdrop-filter UND transform -> beide erzeugen einen
     Containing-Block für fixed-Kinder. Dadurch wäre das Overlay nur nav-hoch.
     Im offenen Zustand beide entfernen, damit .nl.open (inset:0) am Viewport hängt. */
  body.menu-open nav { backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; will-change: auto; }

  /* Schwebende Kontaktleiste auf Mobile ausblenden -> jetzt im Menü */
  .contact-bar { display: none !important; }
  .prc2.pop { transform: scale(1); }
  .prc2.pop:hover { transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .agr { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .hero { padding: 98px 18px 42px; border-radius: 22px; }
  .trust-section { padding: 22px 20px 42px; }
  .tbg { gap: 18px; }
  .tbc { min-height: auto; padding: 22px 18px; }
  .bek-panel { padding: 26px 16px; }
  .bekl { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .bekl img { height: 58px; max-width: 42%; }
}

/* === TEAM-SEITE responsive === */
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .team-statband { grid-template-columns: repeat(2, 1fr); gap: 28px 0; padding: 32px 12px; }
  /* Trennlinie nur noch zwischen den horizontalen Paaren, vertikale für 1.+3. Item aus */
  .team-statband .tsb-item:nth-child(odd)::before { display: none; }
  .founder-spotlight { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; text-align: center; }
  .fs-bio { margin-left: auto; margin-right: auto; }
  .fs-contact { justify-content: center; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-statband { padding: 28px 8px; }
  .team-statband .tsb-item { padding: 4px 8px; }
  .team-statband .tsb-num { font-size: 1.7rem; letter-spacing: -0.5px; }
  .team-statband .tsb-lbl { font-size: 0.72rem; letter-spacing: 1px; }
  .fs-name { font-size: 1.7rem; }
  /* Rolle auf Touch immer zeigen (kein Hover) */
  .tcard-info p { max-height: 40px; opacity: 1; transform: none; }
  .tcard img { filter: grayscale(0) brightness(0.95); }
}

/* === PREISE-SEITE responsive === */
@media (max-width: 860px) {
  .price-promos { grid-template-columns: repeat(2, 1fr); gap: 26px 0; padding: 30px 12px; }
  /* vertikale Trennlinie nur zwischen den horizontalen Paaren */
  .price-promos .promo:nth-child(odd)::before { display: none; }
}
@media (max-width: 560px) {
  .price-promos .promo-num { font-size: 1.7rem; letter-spacing: -0.5px; }
  .price-cta { padding: 40px 22px; }
  .price-cta h2 { font-size: 1.35rem; }
}

/* === KONTAKT-SEITE responsive === */
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
  /* Sidebar unter das Formular */
  .contact-aside { order: 2; }
}
@media (max-width: 560px) {
  .contact-form-card { padding: 28px 22px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit { align-self: stretch; justify-content: center; }
  .contact-info, .contact-booking { padding: 26px 22px; }
}
/* "Bereit zu sprechen?"-Card: ab Tablet vertikal stapeln */
@media (max-width: 780px) {
  .ai-call { flex-direction: column; gap: 6px; padding: 30px 24px; }
  /* Zentrum: Icon über Text, mittig */
  .aic-center { flex-direction: column; text-align: center; gap: 14px; max-width: none; }
  /* Linien vertikal drehen */
  .aic-line { flex: 0 0 30px; width: 2px; height: 30px; min-width: 0;
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.45), rgba(46, 204, 113, 0.12)); }
  .aic-line::after { left: 50%; top: 0; transform: translateX(-50%); animation: aic-flow-v 2.2s linear infinite; }
}
@keyframes aic-flow-v {
  0%   { top: -8px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Unterseiten-Kopf auf Mobile stapeln – Back-Link wird sonst abgeschnitten */
@media (max-width: 680px) {
  .pvh { flex-direction: column; gap: 16px; padding: 88px 20px 30px; }
  .pvbk { order: -1; align-self: flex-start; } /* Back-Link über die Überschrift */
}

/* === Zurück-nach-oben-Button === */
.to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ba);
  border-radius: 50%;
  background: var(--ac);
  color: #0f1117; /* dunkles Icon auf Grün */
  cursor: pointer;
  box-shadow: var(--sh);
  /* unsichtbar, bis gescrollt wird */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s,
    background 0.2s ease;
}

/* Klasse wird per JS gesetzt, sobald weit genug gescrollt ist */
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--acd);
}

.to-top svg {
  display: block;
}

@media (max-width: 640px) {
  .to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* === Rechtsseiten (Impressum / Datenschutz) === */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 130px 32px 90px;
}
.legal .sl { margin-bottom: 10px; }
.legal h1 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.15;
  margin-bottom: 32px;
}
/* Abschnitte als Cards */
.legal-card {
  position: relative;
  background: var(--s);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 28px 30px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.legal-card:hover {
  border-color: var(--ba);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
/* Grüne Akzentleiste oben, läuft beim Hover von links ein (wie die Lösungs-Cards) */
.legal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 3px 0 0 0;
  background: linear-gradient(90deg, var(--ac), var(--acd));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  clip-path: inset(0 100% 0 0 round var(--r));
  transition: clip-path 0.5s ease-out;
}
.legal-card:hover::after { clip-path: inset(0 0 0 0 round var(--r)); }
.legal-card > *:last-child { margin-bottom: 0; }
.legal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.legal h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ac);
  margin: 24px 0 8px;
}
.legal p,
.legal li {
  font-size: 0.95rem;
  color: var(--tm);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--ac); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--tx); font-weight: 600; }
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tm);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.legal .back:hover { color: var(--ac); }

/* === Fehlerseiten (404/403/500) === */
.errpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}
.errpage .code {
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--ac), var(--acd));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.errpage h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.errpage p {
  font-size: 1rem;
  color: var(--tm);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.errpage .err-logo { height: 30px; margin-bottom: 48px; }
.errpage .err-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Schwebende Kontaktleiste (rechts) === */
.contact-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* jeder Button behält seine eigene Breite (kein stretch) */
  gap: 10px;
  padding: 10px 10px 10px 0;
}
.contact-bar a {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Icon bleibt rechts, Label wächst nach links */
  width: 48px; /* Ruhezustand: nur Icon-Breite */
  height: 48px;
  border-radius: 12px 0 0 12px; /* links abgerundet, rechts bündig am Rand */
  background: var(--s2);
  border: 1px solid var(--bd);
  border-right: none;
  color: var(--tx);
  text-decoration: none;
  overflow: hidden; /* verbirgt das eingeklappte Label */
  transition: background 0.2s, color 0.2s, width 0.28s ease;
}
/* Nur der gehoverte Button fährt auf – die anderen bleiben Icon-breit */
.contact-bar a:hover { width: auto; }
/* Icon-Box: feste Größe, immer sichtbar */
.contact-bar a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin: 0 13px; /* zentriert das Icon im 48px-Button (13+22+13) */
}
.contact-bar a:hover { background: var(--ac); color: var(--bg-1); }
/* Termin-Button hervorheben */
.contact-bar a.cb-cta { background: var(--ac); color: var(--bg-1); }
.contact-bar a.cb-cta:hover { background: var(--acd); }
/* Label ist Teil des Buttons: standardmäßig eingeklappt (keine Breite),
   beim Hover fährt der ganze Button nach links auf – komplett klickbar */
.contact-bar a .cb-label {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
  padding-left: 0;
}
.contact-bar a:hover .cb-label {
  max-width: 220px;
  opacity: 1;
  padding-left: 16px; /* Abstand Text -> Icon, nur im aufgefahrenen Zustand */
}

@media (max-width: 640px) {
  .contact-bar { gap: 8px; }
  .contact-bar a { height: 44px; }
  .contact-bar a svg { margin: 0 11px; }
  /* auf Mobil bleibt das Label eingeklappt – nur Icons */
  .contact-bar a:hover .cb-label { max-width: 0; opacity: 0; padding-left: 0; }
}

/* === Scroll-Indikator (links, vertikal) – Stil wie kiwebsite.de === */
.scroll-cue {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--tm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.4s;
}
.scroll-cue:hover { color: var(--ac); }
/* Verschwindet, sobald gescrollt wird */
.scroll-cue.is-hidden { opacity: 0; pointer-events: none; }
/* Text vertikal von unten nach oben lesbar */
.scroll-cue-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
/* Dünne Linie, durch die ein grüner Balken nach unten läuft */
.scroll-cue-line {
  margin-top: 18px;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ac);
  transform: translateY(-100%);
  animation: scroll-line 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}
/* Auf schmalen Screens ausblenden */
@media (max-width: 900px) {
  .scroll-cue { display: none; }
}
/* Respektiert Nutzer-Einstellung "weniger Bewegung" */
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line::after { animation: none; }
}

/* ============================================================
   DESIGN-UPGRADES: Reveal, Glow, Icons, Marquee, Scrollbar
   ============================================================ */

/* --- 1. Scroll-Reveal: Elemente faden + sliden beim Scrollen ein --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
/* In einem Grid nacheinander einblenden (Stagger) */
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* --- 2. Tiefe & Glow: weicher Grün-Schein hinter Sektions-Überschriften --- */
section { position: relative; }
.sl { position: relative; z-index: 1; }
/* Glow-Element, das hinter Section-Headern liegt */
section > .si > .sl::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -60px;
  width: 320px;
  height: 220px;
  background: radial-gradient(circle, var(--ags) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}
/* Cards bekommen mehr Tiefe */
.scard { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25); }

/* --- 3a. Lösungs-/Beispiel-Icons aufwerten (Gradient + Glow) --- */
.pi, .bic, .lic {
  background: linear-gradient(135deg, var(--ags), rgba(46, 204, 113, 0.06)) !important;
  border: 1px solid rgba(46, 204, 113, 0.25) !important;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scard:hover .pi, .scard:hover .bic, .scard:hover .lic {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(46, 204, 113, 0.25);
}

/* --- 3b. "Bekannt aus": Logos statisch, gleichmäßig verteilt --- */
.bekl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
}
.bekl img {
  flex-shrink: 0;
  opacity: 1;                       /* Logos in voller Farbe */
  transition: transform 0.3s ease;
}
/* Nur das gehoverte Logo leicht vergrößern */
.bekl img:hover { transform: scale(1.12); }

/* --- 4a. Animierter Gradient-Text in der H1 --- */
.hc h1 em {
  background: linear-gradient(90deg, var(--ac), #6ee7a8, var(--ac));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  /* Platz rechts, damit das kursive "n" am Wortende nicht abgeschnitten wird */
  padding-right: 0.1em;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* --- 4b. Ablauf-Nummern hervorheben --- */
.ln {
  background: linear-gradient(135deg, var(--ac), var(--acd));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 5. Eingefärbte Scrollbar --- */
html { scrollbar-color: var(--ac) var(--bg-2); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--ac), var(--acd));
  border-radius: 8px;
  border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--ac); }

/* Respektiert "weniger Bewegung" */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .bekl { animation: none; }
  .hc h1 em { animation: none; }
  .hero h1 em.em-big::after { clip-path: none; animation: none; }
}

/* ============================================================
   HERO-UPGRADES: rotierender Lichtkegel, Glow-Rand, 3D-Tilt
   ============================================================ */

/* 3D-Bühne: Perspektive für den Tilt-Effekt */
.hv { perspective: 1100px; }

/* 1. Rotierender Lichtkegel hinter dem Chat-Mockup */
.hv::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(46, 204, 113, 0.18) 60deg,
    transparent 130deg,
    transparent 230deg,
    rgba(46, 204, 113, 0.12) 300deg,
    transparent 360deg
  );
  filter: blur(28px);
  border-radius: 50%;
  z-index: -1;
  animation: hero-cone 14s linear infinite;
  pointer-events: none;
}
@keyframes hero-cone {
  to { rotate: 360deg; }
}

/* 2. Animierter Glow-Rand ums Mockup */
.hmk {
  /* leichtes Aufsetzen über den Tilt-Wrapper */
  transition: box-shadow 0.3s ease;
}
.hmk::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(
    130deg,
    var(--ac),
    transparent 40%,
    transparent 60%,
    var(--ac)
  );
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  animation: hero-border 6s ease-in-out infinite;
}
@keyframes hero-border {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* 3. 3D-Tilt: der Wrapper bekommt die Transform per JS-Variablen */
.hero-tilt {
  width: 100%;
  max-width: 460px;
  transform-style: preserve-3d;
  transform: rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg));
  transition: transform 0.18s ease-out;
  will-change: transform;
}
/* Glanz-Reflex, der der Maus folgt (auf dem Mockup) */
.hmk .hmk-shine {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 0%),
    rgba(255, 255, 255, 0.09),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.hv:hover .hmk .hmk-shine { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hv::before, .hmk::after { animation: none; }
  .hero-tilt { transform: none !important; transition: none; }
}
/* Auf Touch/kleinen Screens kein Tilt */
@media (max-width: 900px) {
  .hero-tilt { transform: none !important; }
  .hv::before { display: none; }
}

/* ============================================================
   COOKIE-BANNER
   ============================================================ */
.cc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cc-overlay.show { opacity: 1; }

.cc-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  translate: -50% 0;
  z-index: 1001;
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cc-banner.show { opacity: 1; transform: translateY(0); }

.cc-head h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cc-head p { font-size: 0.85rem; color: var(--tm); line-height: 1.55; margin-bottom: 16px; }
.cc-head a { color: var(--ac); text-decoration: none; }
.cc-head a:hover { text-decoration: underline; }

/* Optionen sind standardmäßig eingeklappt, Button öffnet sie */
.cc-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cc-options[hidden] { display: none; }
.cc-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--s);
  border: 1px solid var(--bd);
  border-radius: var(--rs);
  cursor: pointer;
}
.cc-opt input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--ac);
  flex-shrink: 0;
  cursor: pointer;
}
.cc-opt input:disabled { cursor: not-allowed; opacity: 0.7; }
.cc-opt-text { display: flex; flex-direction: column; gap: 2px; }
.cc-opt-text strong { font-size: 0.9rem; font-weight: 700; }
.cc-opt-text small { font-size: 0.8rem; color: var(--tm); line-height: 1.45; }

.cc-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cc-actions button { flex: 1 1 auto; justify-content: center; padding: 11px 16px; font-size: 0.85rem; }
.cc-actions button[hidden] { display: none; } /* sicherstellen, dass hidden greift */
.cc-actions .bp { padding-left: 16px; padding-right: 16px; }

/* "Einstellungen anzeigen/ausblenden": schlanker Text-Button unter dem Text */
.cc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--ac);
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
}
.cc-toggle:hover { text-decoration: underline; }
.cc-toggle svg { width: 12px; height: 12px; transition: transform 0.25s; }
.cc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

@media (max-width: 480px) {
  .cc-actions { flex-direction: column; }
  .cc-actions button { width: 100%; }
}

/* === Inline-SVG-Icons (ersetzen die früheren Emojis) === */
/* Größe je Container, Farbe per currentColor an den jeweiligen Akzent gekoppelt */
.fi svg      { width: 16px; height: 16px; }
.tbi svg     { width: 24px; height: 24px; }
.pi svg      { width: 26px; height: 26px; }
.bic svg     { width: 24px; height: 24px; }
.cta-icon svg{ width: 30px; height: 30px; }

/* Akzentfarben für die Icons */
.fi.g, .tbi, .pi, .bic, .cta-icon { color: var(--ac); } /* grün */
.fi.b { color: #5b9cf6; }                                /* blau (Blitz) */

/* Telefon-Icon im Button */
.bo-ico { width: 16px; height: 16px; flex-shrink: 0; }

/* ====================================================================
   MOBILE-OPTIMIERUNG (konsolidiert)
   Greift nur auf schmalen Screens (<=640px). Desktop bleibt unverändert.
   Behebt horizontalen Overflow und macht Buttons/Grids touch-tauglich.
   ==================================================================== */
@media (max-width: 640px) {

  /* --- Globaler Overflow-Schutz: nichts darf breiter als der Screen sein --- */
  html, body { overflow-x: hidden; }
  *, *::before, *::after { max-width: 100%; }

  /* --- Primär-Button: 184px Seiten-Padding sprengt jeden Handy-Screen ---
     Auf Mobile als volle Breite mit normalem Padding. */
  .bp {
    padding: 15px 24px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  /* Buttons in Karten/Reihen sollen ihre eigene Breite behalten dürfen */
  .cc-actions .bp { width: auto; }

  /* --- Hero: Box-Optik raus, Text oben, Chat darunter --- */
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 78px 18px 32px;      /* seitlicher Abstand für Text + Chat */
    margin-top: 0;
    border: none;                 /* Hintergrund-Box weg */
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
  .hero::before, .hero::after { display: none; } /* Deko-Glows der Box weg */
  .hc { max-width: 100%; text-align: center; } /* Hero-Text mittig */
  .hb { margin-left: auto; margin-right: auto; } /* "DSGVO-konform"-Badge zentrieren */
  /* Chat steht UNTER dem Text (normale Reihenfolge) mit etwas seitlichem Abstand.
     .hv ist der Clipping-Container: alles, was innen breiter wird oder über den
     Rand ragt (Deko-Badges, Tipp-Animation), wird hier abgeschnitten -> kein
     horizontaler Scroll mehr. */
  .hv {
    order: 0;
    padding: 0 6px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* Tilt-Transform aus: vermeidet, dass die gedrehte Box breiter rendert */
  .hero-tilt { transform: none !important; max-width: 100%; }
  /* Chat-Mockup hart auf verfügbare Breite begrenzen (Basis-Regel hat fixe 460px) */
  .hmk { max-width: 100% !important; }
  .hmby, .hmi { overflow: hidden; }
  /* In Flex-Containern müssen die getippten Felder schrumpfen dürfen (min-width:0),
     sonst dehnt der nicht-umbrechende Tipp-Text den Chat nach außen */
  .hmi { min-width: 0; }
  .hmi-text, .hmi-placeholder { min-width: 0; flex: 1 1 0; }
  /* Schwebende Deko-Badges ragen per Design über den Rand (right/left: -14px).
     Auf Mobile reinholen, damit sie nicht überlaufen. */
  .hfl.f1 { right: 6px; }
  .hfl.f2 { left: 6px; }
  /* Logo-Reihe auf Mobile kompakter, damit alle 3 Chips nebeneinander passen */
  .hv { gap: 20px; }
  .hero-logos-row { gap: 8px; }
  .hero-logo-item { padding: 7px 12px; gap: 7px; font-size: 0.76rem; }
  .hero-logo-item img { height: 15px; }
  /* Hero-Meta-Badges umbrechen lassen + zentrieren */
  .hero-meta { flex-wrap: wrap; justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-cta { width: 100%; } /* auf Mobile volle Breite (Hero ist zentriert) statt fit-content */

  /* --- Sektions-Überschriften & Untertitel mittig --- */
  .sl, .st, .sd { text-align: center; }
  .sd { margin-left: auto; margin-right: auto; } /* max-width:650px sonst linksbündig */

  /* --- "Bekannt aus"-Box: seitlicher Abstand zum Rand + vertikaler Abstand oben/unten --- */
  .bek { padding: 48px 18px; }

  /* --- Footer: Links stapeln, nicht in eine zu breite Reihe pressen --- */
  .fi-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fl-links { flex-wrap: wrap; gap: 14px 20px; }

  /* --- Seiten-Header/-Body (Unterseiten): Padding & Layout entzerren --- */
  .pvh {
    flex-direction: column;
    gap: 18px;
    padding: 100px 18px 32px;
  }
  .pvb { padding: 0 18px 64px; }
  .ctas { padding: 0 18px; }

  /* --- Kontakt-Seite: Aurora-Orbs dürfen nicht über den Rand ragen --- */
  .contact-bg { left: 0; right: 0; }
  .cbg-orb { max-width: 90vw; }
  .contact-form-card { padding: 28px 20px; }

  /* --- Schwebende Kontaktleiste: kompakter, damit sie nicht stört --- */
  .contact-bar { gap: 8px; }
}

/* =========================================================================
   SEITENSPEZIFISCHE STYLES (aus Inline-<style> ausgelagert, CSP-konform)
   Alle Selektoren sind page-scoped (.faq-page / .calc-page / .glossar-page /
   .models-page / Kontaktformular) – keine Kollision mit den Basis-Regeln oben.
   ========================================================================= */

/* --- FAQ-Akkordeon (faq.php + Produktseiten dsgpt-*.php) --- */
.faq-page .faq-block { padding: 0; margin-top: 34px; }
.faq-page .faq-block > h2 { margin: 0 0 16px; }
.faq-page .fql { max-width: none; }
/* höhere Spezifität als .article-body p, damit die FAQ-Polsterung erhalten bleibt */
.faq-page .fqa p { font-size: 0.95rem; color: var(--tm); line-height: 1.65; padding: 0 28px; margin: 0 0 14px; }
.faq-page .fqa p:first-child { padding-top: 2px; }
.faq-page .fqa p:last-child { padding-bottom: 24px; margin-bottom: 0; }
.faq-page .fqi.open .fqa { max-height: 720px; }

/* --- Kontaktformular (kontakt.php): Themen-Checkboxen --- */
.cf-focus-label { display: block; font-size: 0.9rem; color: var(--tm); font-weight: 600; margin-bottom: 10px; }
.cf-focus-label .cf-opt { color: var(--td); font-weight: 400; }
.cf-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.cf-check {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; cursor: pointer;
  border: 1px solid var(--bd); border-radius: 10px; background: rgba(255,255,255,0.02);
  font-size: 0.88rem; color: var(--tx); transition: border-color 0.2s, background 0.2s;
}
.cf-check:hover { border-color: var(--ba); }
.cf-check input { accent-color: var(--ac); width: 16px; height: 16px; flex: 0 0 auto; margin: 0; }
.cf-check:has(input:checked) { border-color: var(--ac); background: var(--ag); }

/* --- Produktivitätsrechner (rechner.php) --- */
.calc-page .si { max-width: 1080px; }
.calc-page .lead { max-width: 680px; color: var(--tm); line-height: 1.7; margin: 0 auto 8px; }
.calc-page .calc-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
.calc-page .panel {
  border: 1px solid var(--bd); border-radius: 16px; background: var(--s); padding: 24px;
}
.calc-page .panel > h3 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--ac); margin: 0 0 18px;
}
.calc-page .cost-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.calc-page .costf label { display: block; font-size: 0.82rem; color: var(--tm); margin-bottom: 6px; }
.calc-page .costf input {
  width: 100%; box-sizing: border-box; background: var(--bg2, #0d0f14);
  border: 1px solid var(--bd); border-radius: 10px; color: var(--tx);
  padding: 10px 12px; font-size: 0.95rem; font-weight: 600;
}
.calc-page .costf input:focus { outline: none; border-color: var(--ba); }
.calc-page .costf small { display: block; font-size: 0.72rem; color: var(--td); margin-top: 4px; }
.calc-page .rsec { margin-top: 36px; }
.calc-page .rsec-h { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.calc-page .rsec-h .step {
  font-size: 0.72rem; font-weight: 800; color: var(--ac);
  border: 1px solid var(--ba); border-radius: 6px; padding: 2px 8px;
}
.calc-page .rsec-h h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.4px; margin: 0; }
.calc-page .rtiles { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.calc-page .rtile {
  border: 1px solid var(--bd); border-radius: 14px; background: var(--s);
  padding: 20px; transition: border-color 0.25s, transform 0.25s;
}
.calc-page .rtile:hover { border-color: var(--ba); transform: translateY(-2px); }
.calc-page .rtile .rt-label { font-size: 0.84rem; color: var(--tm); line-height: 1.4; margin-bottom: 10px; min-height: 2.4em; }
.calc-page .rtile .rt-val { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.5px; color: var(--tx); }
.calc-page .rtile .rt-sub { font-size: 0.78rem; color: var(--td); margin-top: 4px; }
.calc-page .rtile.hl {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(108,99,255,0.18), rgba(108,99,255,0.05));
  box-shadow: 0 0 0 1px var(--ba) inset;
}
.calc-page .rtile.hl .rt-val {
  font-size: 2rem;
  background: linear-gradient(135deg, #6ee7a8, var(--ac));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.calc-page .roi-note { font-size: 0.82rem; color: var(--td); margin-top: 16px; line-height: 1.6; }
.calc-page .calc-cta { margin-top: 44px; }

/* --- Konfigurator-Wizard (funktionen.php) ---
   Ohne JS sind alle Schritte sichtbar (Formular bleibt nutzbar), erst .is-js
   (von js/konfigurator.js gesetzt) schaltet auf die Schrittansicht um. */
/* Fixer Header wuerde den Konfigurator-Kopf beim Ankersprung verdecken */
.funktionen-page #konfigurator { scroll-margin-top: 90px; }
.funktionen-page .kf-step { scroll-margin-top: 90px; }
.funktionen-page .kf-hero-link { margin-top: 18px; font-size: 0.88rem; }
.funktionen-page .kf-hero-link a { color: var(--ac); text-decoration: none; font-weight: 600; }
.funktionen-page .kf-hero-link a:hover,
.funktionen-page .kf-hero-link a:focus-visible { text-decoration: underline; }

/* Standard-Einrichtung: immer enthalten, nicht abwählbar */
.funktionen-page .kf-core {
  border: 1px solid var(--bd); border-radius: var(--r); background: var(--s);
  padding: 26px 24px; margin-bottom: 22px;
}
.funktionen-page .kf-core-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.funktionen-page .kf-core-head h3 { font-size: 1.08rem; font-weight: 700; margin: 0; }
.funktionen-page .kf-core-sub { font-size: 0.86rem; color: var(--tm); margin: 8px 0 16px; }
.funktionen-page .kf-badge {
  font-size: 0.72rem; font-weight: 800; color: var(--ac); background: var(--ag);
  border: 1px solid var(--ba); border-radius: 999px; padding: 4px 12px; white-space: nowrap;
}
/* Kernfunktionen mit sichtbarer Kurzbeschreibung (nicht nur im title-Attribut,
   das waere per Tastatur und auf Touch nicht erreichbar) */
.funktionen-page .kf-core-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 20px; list-style: none; margin: 0; padding: 0;
}
.funktionen-page .kf-core-list li { position: relative; padding-left: 22px; }
.funktionen-page .kf-core-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; color: var(--ac); font-weight: 700;
}
.funktionen-page .kf-core-list strong {
  display: block; font-size: 0.84rem; font-weight: 600; color: var(--tx);
}
.funktionen-page .kf-core-list span {
  display: block; font-size: 0.78rem; color: var(--tm); line-height: 1.45;
}

/* Wizard-Karte + Fortschritt */
.funktionen-page .kf-card { padding: 34px; }
.funktionen-page .kf-progress { margin-bottom: 26px; }
.funktionen-page .kf-progress-top {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.funktionen-page .kf-progress-label { font-size: 0.82rem; color: var(--tm); }
.funktionen-page .kf-progress-label strong { color: var(--tx); }
.funktionen-page .kf-progress-count { font-size: 0.78rem; color: var(--td); }
.funktionen-page .kf-progress-count strong { color: var(--ac); }
.funktionen-page .kf-bar {
  height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden;
}
.funktionen-page .kf-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--ac), var(--acd)); transition: width 0.35s ease;
}
/* Ohne JS trägt das Formular kein .is-js, dann ist der Fortschrittsbalken sinnlos */
.funktionen-page .kf:not(.is-js) .kf-progress { display: none; }

/* Schritte: erst mit JS einzeln sichtbar */
.funktionen-page .kf-step { margin-bottom: 34px; }
.funktionen-page .kf.is-js .kf-step { display: none; margin-bottom: 0; }
.funktionen-page .kf.is-js .kf-step.is-active { display: block; animation: fadeIn 0.3s ease; }
.funktionen-page .kf-step-head { margin-bottom: 20px; }
.funktionen-page .kf-step-head h3 { font-size: 1.32rem; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 6px; }
.funktionen-page .kf-step-head p { font-size: 0.9rem; color: var(--tm); line-height: 1.55; }
/* Schritt-Container ist per tabindex fokussierbar (Fokusziel beim Blaettern),
   soll dabei aber keinen Fokusring bekommen, der Ring gehoert an die Bedienelemente */
.funktionen-page .kf-step:focus { outline: none; }
/* Radiogruppen liegen in fieldset/legend (Screenreader-Kontext), Browser-Rahmen weg */
.funktionen-page .kf-fragen-block { border: 0; padding: 0; margin: 0 0 24px; min-width: 0; }
.funktionen-page .kf-fragen-block:last-child { margin-bottom: 0; }
.funktionen-page .kf-fragen-block > legend { padding: 0; }
/* Hinweistexte im Wizard heller als der globale --td, sonst zu wenig Kontrast auf der Karte */
.funktionen-page .kf .cf-hint { color: var(--tm); }

/* Modul-Karten: Basis kommt aus .cf-check, hier nur die größere Kartenoptik */
.funktionen-page .kf-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px; margin-bottom: 12px;
}
/* color-scheme: dark laesst Browser die Kaestchen/Radios dunkel statt weiss rendern */
.funktionen-page .kf .cf-check input { color-scheme: dark; }
.funktionen-page .cf-check.kf-mod { align-items: flex-start; padding: 16px 16px; border-radius: 14px; }
.funktionen-page .cf-check.kf-mod input { margin-top: 2px; }
.funktionen-page .kf-mod-body { display: flex; flex-direction: column; gap: 4px; }
.funktionen-page .kf-mod-titel { font-size: 0.9rem; font-weight: 700; color: var(--tx); }
.funktionen-page .kf-mod-kurz { font-size: 0.8rem; color: var(--tm); line-height: 1.5; }
.funktionen-page .kf-mod-nutzen {
  align-self: flex-start; margin-top: 4px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--ac);
}

/* Fehler-Sammelbox nach einem abgelehnten Absenden (role="alert", wird fokussiert) */
.funktionen-page .kf-errorbox {
  border: 1px solid rgba(255, 107, 107, 0.5); border-radius: 12px;
  background: rgba(255, 107, 107, 0.08); padding: 16px 18px; margin-bottom: 22px;
  font-size: 0.88rem; color: var(--tx);
}
.funktionen-page .kf-errorbox:focus { outline: 2px solid #ff8585; outline-offset: 2px; }
.funktionen-page .kf-errorbox ul { list-style: none; margin: 8px 0 0; padding: 0; }
.funktionen-page .kf-errorbox li {
  position: relative; padding-left: 18px; font-size: 0.84rem; color: #ff8585; line-height: 1.7;
}
.funktionen-page .kf-errorbox li::before { content: "!"; position: absolute; left: 4px; font-weight: 800; }

/* Zusammenfassung im letzten Schritt: wird per JS gefuellt, ohne JS waere sie leer */
.funktionen-page .kf:not(.is-js) .kf-summary { display: none; }
.funktionen-page .kf-summary {
  border: 1px solid var(--bd); border-radius: 14px; background: rgba(255, 255, 255, 0.02);
  padding: 22px; margin-bottom: 26px;
}
.funktionen-page .kf-sum-block + .kf-sum-block { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--bd); }
.funktionen-page .kf-sum-block h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ac); margin-bottom: 12px;
}
.funktionen-page .kf-sum-row {
  display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: 0.86rem;
}
.funktionen-page .kf-sum-row .k { color: var(--tm); }
.funktionen-page .kf-sum-row .v { color: var(--tx); font-weight: 600; text-align: right; }
.funktionen-page .kf-sum-group + .kf-sum-group { margin-top: 14px; }
.funktionen-page .kf-sum-group h5 { font-size: 0.84rem; font-weight: 700; color: var(--tx); margin-bottom: 6px; }
.funktionen-page .kf-sum-group ul { list-style: none; margin: 0; padding: 0; }
.funktionen-page .kf-sum-group li {
  position: relative; padding-left: 20px; font-size: 0.84rem; color: var(--tm); line-height: 1.7;
}
.funktionen-page .kf-sum-group li::before { content: "✓"; position: absolute; left: 0; color: var(--ac); font-weight: 700; }

/* Kontaktfelder im letzten Schritt */
.funktionen-page .kf-contact { display: flex; flex-direction: column; gap: 16px; }
.funktionen-page textarea.kf-textarea { min-height: 90px; }
.funktionen-page .cf-check.kf-dsgvo { align-items: flex-start; }
.funktionen-page .cf-check.kf-dsgvo.is-invalid { border-color: rgba(255, 107, 107, 0.6); }
.funktionen-page .kf-dsgvo a { color: var(--ac); text-decoration: none; }
.funktionen-page .kf-dsgvo a:hover,
.funktionen-page .kf-dsgvo a:focus-visible { text-decoration: underline; }

/* Navigation: Zurück links, Weiter/Absenden rechts */
.funktionen-page .kf-nav {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--bd);
}
/* width: auto haelt den Button in der Reihe. Global gilt ab 640px .bp { width: 100% },
   das wuerde die Zeile zwischen 561px und 640px sprengen. */
.funktionen-page .kf-nav .bp { padding: 14px 30px; margin-top: 0; align-self: auto; width: auto; }
.funktionen-page .kf-nav .bo svg { width: 15px; height: 15px; }
.funktionen-page .kf-nav .bp:disabled,
.funktionen-page .kf-nav .bo:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
/* Ohne JS: nur der echte Absenden-Button, kein Blättern */
.funktionen-page .kf:not(.is-js) .kf-back,
.funktionen-page .kf:not(.is-js) .kf-next { display: none; }
.funktionen-page .kf:not(.is-js) .kf-nav { justify-content: flex-end; }
/* Mit JS: Absenden erst im letzten Schritt */
.funktionen-page .kf.is-js .kf-submit { display: none; }
.funktionen-page .kf.is-js.is-last .kf-submit { display: inline-flex; }
.funktionen-page .kf.is-js.is-last .kf-next { display: none; }

.funktionen-page .kf-outro { margin-top: 26px; font-size: 0.88rem; }
.funktionen-page .kf-outro a { color: var(--ac); text-decoration: none; font-weight: 600; }
.funktionen-page .kf-outro a:hover,
.funktionen-page .kf-outro a:focus-visible { text-decoration: underline; }
.funktionen-page .kf-done-btn { padding: 15px 32px; }

@media (max-width: 560px) {
  .funktionen-page .kf-card { padding: 24px 18px; }
  .funktionen-page .kf-core { padding: 22px 18px; }
  .funktionen-page .kf-grid { grid-template-columns: 1fr; }
  .funktionen-page .kf-nav { flex-direction: column-reverse; align-items: stretch; }
  .funktionen-page .kf-nav .bp,
  .funktionen-page .kf-nav .bo { width: 100%; justify-content: center; }
  .funktionen-page .kf-sum-row { flex-direction: column; gap: 2px; }
  .funktionen-page .kf-sum-row .v { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .funktionen-page .kf-bar span { transition: none; }
  .funktionen-page .kf.is-js .kf-step.is-active { animation: none; }
}

/* --- Glossar (glossar.php): A–Z-Navigation + Begriff-Karten --- */
/* Kategorie-Filterleiste über der Buchstaben-Navigation */
.glossar-page .gloss-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 760px; margin: 34px auto 0;
}
.glossar-page .gloss-filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--bd); background: var(--s);
  color: var(--tm); font-size: 0.9rem; font-weight: 600;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.glossar-page .gloss-filter-btn:hover {
  color: var(--tx); border-color: var(--ba); transform: translateY(-2px);
}
.glossar-page .gloss-filter-btn.is-active {
  color: #0b0e14; background: var(--ac); border-color: var(--ac);
}
.glossar-page .gloss-filter-btn .gfb-count {
  font-size: 0.78rem; font-weight: 700; opacity: 0.65;
}
.glossar-page .gloss-filter-btn.is-active .gfb-count { opacity: 0.85; }

.glossar-page .gloss-nav {
  /* position: static erzwingen – die globale nav{position:fixed}-Regel greift
     sonst auch auf diese <nav>-Buchstabenleiste und klebt sie an den Header. */
  position: static;
  /* Header-nav-Erbe neutralisieren (background/blur), Trennlinie bleibt als
     border-bottom; padding-bottom schafft Abstand zwischen Buchstaben und Linie. */
  background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  max-width: 760px; margin: 18px auto 32px; padding-bottom: 22px;
}
.glossar-page .gloss-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; padding: 8px 12px; border-radius: 10px;
  border: 1px solid var(--bd); background: var(--s);
  color: var(--tm); font-size: 0.9rem; font-weight: 700; text-decoration: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}
.glossar-page .gloss-nav a:hover {
  color: var(--ac); border-color: var(--ba); background: var(--ag);
  transform: translateY(-2px);
}
.glossar-page .gloss-group { margin-top: 48px; scroll-margin-top: 100px; }
.glossar-page .gloss-group > h2 {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; color: var(--ac);
  margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--bd);
}
.glossar-page .gloss-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.glossar-page .gloss-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--bd); border-radius: 16px; padding: 20px 22px;
  background: linear-gradient(180deg, rgba(34,38,55,0.45), rgba(18,20,31,0.45));
  transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1), border-color 0.3s, box-shadow 0.3s;
}
.glossar-page .gloss-card:hover {
  transform: translateY(-4px); border-color: var(--ba);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38), 0 0 28px rgba(46,204,113,0.07);
}
.glossar-page .gloss-card h3 {
  font-size: 1.06rem; font-weight: 800; letter-spacing: -0.3px;
  color: var(--tx); margin: 0 0 10px;
}
.glossar-page .gloss-card p {
  font-size: 0.92rem; color: var(--tm); line-height: 1.6; margin: 0;
}
@media (max-width: 640px) {
  .glossar-page .gloss-group > h2 { font-size: 1.4rem; }
}

/* --- FAQ-Akkordeon auf der KI-Detailseite: Antworten vollständig ausklappen
   (die faq-page-Regeln sind auf .faq-page gescopt, greifen hier nicht) --- */
.glossar-page .faq-block { margin-top: 40px; }
.glossar-page .fqi.open .fqa { max-height: 460px; }

/* --- KI-Modellkatalog (verfuegbare-ki-modelle.php) --- */
.models-page .mc-intro { max-width: 720px; }
.models-page .mc-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 8px; }
.models-page .mc-nav a {
  font-size: 0.82rem; font-weight: 600; color: var(--tm);
  border: 1px solid var(--bd); border-radius: 999px; padding: 7px 14px;
  background: var(--s); transition: all 0.25s; text-decoration: none;
}
.models-page .mc-nav a:hover { border-color: var(--ba); color: var(--tx); transform: translateY(-1px); }
.models-page .mcat { padding: 0; margin-top: 44px; scroll-margin-top: 90px; }
.models-page .mcat-head h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 6px; }
.models-page .mcat-head p { font-size: 0.97rem; color: var(--tm); line-height: 1.6; margin: 0 0 22px; max-width: 640px; }
.models-page .mgrid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
}
/* Aufklapp-Mechanik: eingeklappt nur die erste Reihe (3 Karten) zeigen,
   damit keine halben Karten-Reihen mit Lücke entstehen. */
.models-page .mgrid.is-collapsible:not(.is-expanded) .mcard:nth-child(n+4) { display: none; }
.models-page .mc-more-wrap { display: flex; justify-content: center; margin-top: 18px; }
.models-page .mc-more {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font: inherit;
  font-size: 0.85rem; font-weight: 600; color: var(--tx);
  background: var(--s); border: 1px solid var(--bd); border-radius: 999px;
  padding: 9px 18px; transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.models-page .mc-more:hover { border-color: var(--ba); color: var(--ac); background: var(--ag); }
.models-page .mc-more-ic { width: 16px; height: 16px; transition: transform 0.3s; }
.models-page .mc-more.is-open .mc-more-ic { transform: rotate(180deg); }
.models-page .mcard {
  --brand: #2ecc71;
  position: relative; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--bd);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--brand) 8%, rgba(34,38,55,0.6)), rgba(18,20,31,0.55));
  padding: 20px 20px 18px;
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s, border-color 0.35s;
}
.models-page .mcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 130px;
  background: radial-gradient(75% 100% at 50% 0%, color-mix(in srgb, var(--brand) 26%, transparent), transparent 72%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.models-page .mcard::after {
  content: ""; position: absolute; inset: 0; border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, var(--brand), transparent 42%, transparent 60%, color-mix(in srgb, var(--brand) 45%, transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.models-page .mcard:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(0,0,0,0.45), 0 0 38px color-mix(in srgb, var(--brand) 20%, transparent);
}
.models-page .mcard:hover::before,
.models-page .mcard:hover::after { opacity: 1; }
.models-page .mcard-top { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; position: relative; z-index: 1; }
.models-page .mlogo {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 16%, #14161f);
  border: 1px solid color-mix(in srgb, var(--brand) 34%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 12px rgba(0,0,0,0.28);
  transition: transform 0.35s, box-shadow 0.35s;
}
.models-page .mcard:hover .mlogo {
  transform: scale(1.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 6px 20px color-mix(in srgb, var(--brand) 30%, transparent);
}
.models-page .mlogo svg { width: 24px; height: 24px; fill: currentColor; }
.models-page .mlogo-mono { font-weight: 800; font-size: 1.2rem; color: var(--brand); }
.models-page .mcard .prov {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase;
  color: var(--brand); margin: 0;
}
.models-page .mcard h3 { font-size: 1.12rem; font-weight: 800; letter-spacing: -0.3px; margin: 0 0 8px; color: var(--tx); position: relative; z-index: 1; }
.models-page .mcard .mdesc { font-size: 0.88rem; color: var(--tm); line-height: 1.55; margin: 0 0 14px; position: relative; z-index: 1; }
.models-page .mtags { display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 1; }
.models-page .mtag {
  font-size: 0.68rem; font-weight: 600; color: #cdd2dc;
  border: 1px solid var(--bd); border-radius: 999px; padding: 4px 10px;
  background: rgba(255,255,255,0.03);
}
.models-page .mc-note {
  margin-top: 40px; padding: 18px 20px; border: 1px solid var(--bd);
  border-left: 3px solid var(--ac); border-radius: 12px; background: var(--s);
  font-size: 0.9rem; color: var(--tm); line-height: 1.6;
}

/* --- Zentrierter Intro-Absatz auf Produktseiten --- */
.np-intro {
  text-align: center; max-width: 820px; margin: 6px auto 0;
  color: var(--tm); line-height: 1.7;
}

/* --- Preis-Highlight (Einmalzahlung) --- */
.price-highlight {
  text-align: center; max-width: 640px; margin: 0 auto;
  border: 1px solid var(--ba); border-radius: 20px; padding: 36px 32px;
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.08), rgba(18, 20, 31, 0.4));
}
.price-highlight .sl { display: block; margin-bottom: 10px; }
.price-highlight .ph-amount {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1;
}
.price-highlight .ph-amount small {
  display: block; margin-top: 6px;
  font-size: 1rem; font-weight: 600; color: var(--td); letter-spacing: 0;
}
.price-highlight .ph-note {
  font-size: 0.95rem; color: var(--tm); line-height: 1.6;
  max-width: 520px; margin: 14px auto 22px;
}
.price-highlight .ac-btns {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

