/* GermanAI Defense — Site Styles
 * Apple-Pro-Style, dunkles Theme
 * Mobile-first, responsive
 */

:root {
  --bg: #000000;
  --bg-soft: #0a0a0c;
  --bg-card: #111114;
  --bg-card-hover: #161619;
  --fg: #f5f5f7;
  --fg-muted: #86868b;
  --fg-dim: #6e6e73;
  --line: #1d1d1f;
  --line-bright: #2c2c2e;
  --primary: #0066ff;
  --primary-bright: #2b8aff;
  --accent-redmind: #ff3b30;     /* Apple-Red — RedMind */
  --accent-cyber: #0a84ff;       /* Apple-Blue — Cybersecurity */
  --accent-grc: #5ac8fa;         /* Apple-Cyan/Türkis — GRC & Compliance */
  --accent-ai: #34c759;          /* Apple-Green — AI Services */
  --accent-test: #a8b0bd;        /* Cool Gray — AI Test Automation */
  --accent-datacenter: #0a84ff;  /* Apple-Blue (kompatibel mit cyber) */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* scroll-behavior: smooth removed — caused stuttering on some browsers */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* overflow-x: clip statt hidden — bricht sticky-positioning auf iOS Safari nicht */
  overflow-x: hidden;     /* Fallback für alte Browser (iOS<16, Chrome<90) */
  overflow-x: clip;        /* Moderne Browser — kompatibel mit position:sticky */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.85); /* more opaque, less reliant on blur */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 18px;
  height: 44px; padding: 0 22px; max-width: 1280px; margin: 0 auto;
}
.brand-link {
  display: flex; align-items: center; gap: 8px; margin-right: auto;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
}
.brand-link:focus { outline: none; }
.brand-link:focus-visible {
  outline: 2px solid var(--primary-bright); outline-offset: 4px;
}
/* Desktop: Apple-Style — alle Items mittig zentriert,
   Logo links, Nav, CTA und Account-Icons mit gleichen Abständen */
@media (min-width: 1024px) {
  .header-inner { justify-content: center; gap: 22px; }
  .brand-link { margin-right: 36px; }
  .nav-account { margin-left: 0; }
}
.brand-shield {
  height: 18px; width: auto; display: block;
  margin-right: 2px;
  filter: drop-shadow(0 1px 3px rgba(0, 102, 255, 0.25));
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.brand-link:hover .brand-shield { transform: translateY(-1px) scale(1.05); }
/* ===== Referenzen — Branchen als Typo-Statement (kein Tile-Grid) ===== */
.branchen-statement {
  margin-top: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.branchen-statement-headline {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.1; margin: 0;
  color: var(--fg);
}
.branchen-statement-list {
  display: flex; flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 24px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600; line-height: 1.3;
  letter-spacing: -0.01em;
}
.branchen-statement-list span {
  color: var(--fg);
  position: relative;
  padding-right: 24px;
}
.branchen-statement-list span:not(:last-child)::after {
  content: "·";
  position: absolute; right: 4px; top: 0;
  color: var(--fg-muted); opacity: 0.5;
}
.branchen-statement-sub {
  margin-top: 28px;
  color: var(--fg-muted); font-size: 16px; line-height: 1.6;
  max-width: 640px;
}

/* ===== Referenzen — Logo-Marquee (horizontaler Scroller) =====
   Auto-Scroll via CSS-Animation + manuelles Wischen via overflow-x:auto.
   Bei Hover/Touch pausiert die Animation, der User kann frei swipen. */
.logo-marquee {
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  /* Soft fade-out edges */
  mask-image: linear-gradient(to right, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 64px, black calc(100% - 64px), transparent 100%);
}
.logo-marquee::-webkit-scrollbar { display: none; }  /* Chrome/Safari */
.logo-marquee-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: logo-marquee-scroll 28s linear infinite;
}
.logo-marquee:hover .logo-marquee-track,
.logo-marquee:focus-within .logo-marquee-track,
.logo-marquee.is-touched .logo-marquee-track { animation-play-state: paused; }
@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-pill {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 18px 36px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  white-space: nowrap;
  transition: border-color 0.2s, transform 0.2s;
}
.logo-pill:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.logo-pill .pill-accent {
  color: var(--primary-bright); font-weight: 700;
  margin-right: 8px;
}
/* Bei reduzierter Motion: Animation läuft langsamer, aber sie läuft —
   Marquee-Bewegung ist hier zentrales UX-Element (Trust-Anker). */
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation-duration: 90s; }
}

/* Reverse-Animation für die zweite Marquee (gegenläufige Bewegung) */
@keyframes logo-marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.logo-marquee--reverse .logo-marquee-track {
  animation-name: logo-marquee-scroll-reverse;
}

/* Trust-Marquee — schmale Leiste direkt unter Hero (XM-Cyber-Stil) */
.trust-marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-marquee-section .trust-marquee-eyebrow {
  text-align: center;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.logo-marquee--thin {
  margin-top: 0;
}
.logo-marquee--thin .logo-marquee-track {
  gap: 12px;
  animation-duration: 38s;
}
.logo-marquee--thin .logo-pill {
  padding: 12px 22px;
  font-size: 15px; font-weight: 500;
  background: var(--bg-card);
  border-radius: 12px;
  letter-spacing: 0;
}
.logo-marquee--thin .logo-pill .pill-accent {
  font-weight: 700;
  margin-right: 6px;
}

/* Branchen-Marquee — schlanker Outline-Stil */
.logo-marquee--branchen .logo-pill {
  background: transparent;
  border: 1px solid var(--line-bright);
  color: var(--fg);
  font-weight: 500;
  padding: 10px 20px;
  font-size: 14px;
}
.logo-marquee--branchen .logo-pill::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-bright);
  margin-right: 10px;
  vertical-align: middle;
}

/* Mini-Variante — kleiner und dezenter (zweite Stufe unter Hauptbanner) */
.logo-marquee--mini .logo-pill {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 10px;
}
.logo-marquee--mini .logo-marquee-track {
  gap: 8px;
  animation-duration: 32s;
}
.trust-marquee-section--stacked {
  padding: 28px 0 24px;
}
.trust-marquee-section--stacked .trust-marquee-eyebrow {
  margin-bottom: 14px;
}
.trust-marquee-section--stacked .marquee-divider {
  height: 1px; background: var(--line);
  margin: 22px 16%;
  opacity: 0.6;
}
.trust-marquee-section--stacked .trust-marquee-eyebrow--small {
  font-size: 10px; letter-spacing: 0.18em;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* Theme-spezifischer Schild-Swap (analog zum Logo) */
.brand-shield-dark { display: block; }
.brand-shield-light { display: none; }
body.theme-light .brand-shield-dark { display: none; }
body.theme-light .brand-shield-light { display: block; }
.brand-logo {
  height: 14px; width: auto; display: block;
}
/* Theme-spezifischer Logo-Swap:
 * Default (dunkle Seiten): Dark-Variante mit kräftigeren Blautönen für Schwarz-BG
 * theme-light: Standard-Variante für Weiß-BG
 */
.brand-logo-dark { display: block; }
.brand-logo-light { display: none; }
body.theme-light .brand-logo-dark { display: none; }
body.theme-light .brand-logo-light { display: block; }
.brand-sub {
  font-size: 11px; color: var(--fg-muted);
  display: none;
  white-space: nowrap;
}
/* Mobile (<600px): aus — zu wenig Platz im Header */
/* Tablet (600-1023px): an */
@media (min-width: 600px) and (max-width: 1023px) { .brand-sub { display: inline; } }
/* Großer Desktop (≥1200px): an */
@media (min-width: 1200px) { .brand-sub { display: inline; } }
.nav-desktop {
  display: none; gap: 18px; align-items: center; white-space: nowrap;
  line-height: 1;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-desktop { gap: 13px; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
/* Alle Nav-Items als inline-flex mit zentrierter Baseline — verhindert Vertical-Drift
   zwischen Dropdown-Trigger (mit Caret) und einfachen Links. */
.nav-desktop > a,
.nav-desktop .nav-trigger {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  color: var(--fg);
  opacity: 0.85;
  letter-spacing: 0;
  line-height: 1;
  transition: opacity 0.2s;
  cursor: pointer;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-desktop > a, .nav-desktop .nav-trigger { font-size: 11px; }
}
.nav-desktop .nav-dropdown {
  display: inline-flex;
  align-items: center;
}
.nav-desktop > a:hover, .nav-desktop > a.active,
.nav-desktop .nav-trigger:hover, .nav-desktop .nav-trigger.active { opacity: 1; }
.nav-desktop > a.active, .nav-desktop .nav-trigger.active { color: var(--primary-bright); }
.nav-caret {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  margin-left: 5px;
  opacity: 1;
  transition: transform 0.2s;
  line-height: 1;
}

/* Dropdown menus (Desktop) */
.nav-dropdown {
  position: relative;
}
/* Hover-Extension: erweitert die Hover-Trefferzone des Dropdowns nach unten,
   sodass der Cursor zwischen Trigger-Wort und Mega-Menu-Panel den Hover-State
   nicht verliert. Sitzt direkt am .nav-dropdown selbst (nicht am Menu, das initial
   visibility:hidden ist und seine Kinder daher nicht event-fähig macht). */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 18px;
  pointer-events: auto;
}
/* Apple-Style Mega-Menu — full-width Panel fährt vom Header herunter, gleiche Optik wie Search-Overlay.
   position:fixed sorgt für viewport-weite Ausdehnung; DOM bleibt Kind von .nav-dropdown,
   damit :hover und :focus-within das Panel weiterhin steuern. */
.nav-dropdown .nav-menu {
  position: fixed;
  top: 44px;            /* exakt unter dem Header (header-inner height: 44px) */
  left: 0;
  right: 0;
  width: 100vw;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  padding: 36px 24px 48px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.40);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0.25s;
  z-index: 200;
}
/* Inner-Content auf max 692px zentrieren — gleiche Breite wie .search-overlay-inner */
.nav-dropdown .nav-menu > * {
  width: 100%;
  max-width: 692px;
  margin-left: auto;
  margin-right: auto;
}
/* (Bridge ist jetzt am .nav-dropdown::before — siehe oben) */
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-menu a {
  display: flex;
  align-items: center;
  padding: 16px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.005em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s ease, padding-left 0.15s ease;
  white-space: nowrap;
}
.nav-menu a:last-of-type { border-bottom: 0; }
.nav-menu a:hover {
  background: transparent;
  color: var(--primary-bright);
  padding-left: 8px;
}
.nav-menu a.active { color: var(--primary-bright); }
/* Im neuen Mega-Menu hat jeder Link schon eine eigene Border-Bottom-Trennlinie —
   der separate Divider würde nur als zweite Linie nebenan auftauchen. Daher hier ausblenden,
   stattdessen der Link nach dem Divider (Konfigurator →) bekommt etwas mehr Abstand. */
.nav-dropdown .nav-menu .nav-menu-divider { display: none; }
.nav-dropdown .nav-menu .nav-menu-divider + a { margin-top: 8px; }
.nav-menu-divider {
  height: 1px;
  background: var(--line, rgba(255,255,255,0.10));
  margin: 6px 0;
}

/* Language switcher */
.nav-lang { position: relative; display: none; }
@media (min-width: 1024px) { .nav-lang { display: block; } }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--fg); opacity: 0.85;
  padding: 6px 10px; background: transparent;
  border: 1px solid var(--line); border-radius: 980px;
  transition: opacity 0.2s, background 0.2s;
}
.lang-toggle:hover { opacity: 1; background: rgba(255,255,255,0.04); }
.lang-toggle .lang-icon { font-size: 14px; }
.lang-toggle .lang-caret { font-size: 9px; opacity: 0.7; transition: transform 0.2s; }
.nav-lang .lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(20,20,24,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  padding: 6px;
  min-width: 90px;
  display: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 110;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav-lang:hover .lang-menu,
.nav-lang:focus-within .lang-menu {
  display: block; opacity: 1; transform: translateY(0);
}
.nav-lang:hover .lang-caret,
.nav-lang:focus-within .lang-caret { transform: rotate(180deg); }
.lang-menu a {
  display: block; padding: 8px 14px; font-size: 13px;
  border-radius: 6px; opacity: 0.85;
}
.lang-menu a:hover { background: rgba(255,255,255,0.06); opacity: 1; }
.lang-menu a.active { color: var(--primary-bright); opacity: 1; }

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--line-bright);
  border-radius: 980px; cursor: pointer;
  order: 99; /* always last in header flex order — sits right of everything */
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 16px; height: 2px;
  background: var(--fg); position: relative;
  transition: transform 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 16px; height: 2px; background: var(--fg);
  transition: transform 0.2s, top 0.2s;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }
.nav-mobile a {
  display: block; font-size: 22px; font-weight: 600;
  color: var(--fg); padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.nav-mobile > a.active { color: var(--primary-bright); }

/* Mobile dropdown groups using <details> */
.nav-mobile-group {
  border-bottom: 1px solid var(--line);
}
.nav-mobile-group summary {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 22px; font-weight: 600;
  color: var(--fg); padding: 14px 0;
  letter-spacing: -0.02em;
  cursor: pointer; list-style: none;
}
.nav-mobile-group summary::-webkit-details-marker { display: none; }
.nav-mobile-group summary::after {
  content: "+"; font-size: 24px; font-weight: 400;
  color: var(--fg-muted);
  transition: transform 0.2s;
}
.nav-mobile-group[open] summary::after {
  content: "−";
}
.nav-mobile-group a {
  font-size: 16px; padding: 10px 0 10px 16px;
  border-bottom: 0; opacity: 0.85;
}
.nav-mobile-group a:last-child { padding-bottom: 16px; }

/* Mobile language row */
.nav-mobile-lang {
  display: flex; gap: 12px; padding: 20px 0 4px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-lang a {
  display: inline-block; font-size: 14px;
  padding: 8px 14px; border: 1px solid var(--line-bright);
  border-radius: 980px; opacity: 0.85;
}
.nav-mobile-lang a.active { background: rgba(43,138,255,0.12); color: var(--primary-bright); border-color: var(--primary); opacity: 1; }

.nav-mobile .nav-mobile-cta {
  margin-top: 24px; display: block; text-align: center;
  padding: 14px; background: var(--primary); color: white;
  border-radius: 980px; font-size: 16px; font-weight: 500;
  border: 0;
}

/* Konfigurator-CTA — primärer Header-Button (rechts neben Kontakt) */
.nav-desktop > a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding: 7px 14px;
  background: var(--primary, #0066ff);
  color: #fff !important;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-desktop > a.nav-cta:hover {
  background: #0052cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,102,255,0.30);
  color: #fff !important;
}
.nav-desktop > a.nav-cta span { transition: transform 0.2s; }
.nav-desktop > a.nav-cta:hover span { transform: translateX(2px); }

/* Mobile-Variante: voll breiter primärer CTA, klar auffällig */
.nav-mobile .nav-mobile-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  background: var(--primary, #0066ff);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 980px;
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.2s;
}
.nav-mobile .nav-mobile-cta:hover {
  background: #0052cc;
}

/* Newsletter / Neuigkeiten — sekundärer Banner (Schwarz-Stil) */
.nav-mobile .nav-mobile-newsletter {
  margin-top: 12px; display: block; text-align: center;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--line-bright);
  color: var(--fg);
  border-radius: 980px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav-mobile .nav-mobile-newsletter:hover {
  background: rgba(43,138,255,0.06);
  border-color: var(--primary);
}

/* Legal-Footer-Reihe im Mobile-Menü */
.nav-mobile .nav-mobile-legal {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.nav-mobile .nav-mobile-legal a {
  font-size: 12px; color: var(--fg-muted);
  text-decoration: none; opacity: 0.85;
}
.nav-mobile .nav-mobile-legal a:hover { color: var(--primary-bright); opacity: 1; }

body.nav-open { overflow: hidden; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 980px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-bright); }
.btn-ghost { background: transparent; border: 1px solid var(--line-bright); color: var(--fg); }
.btn-ghost:hover { background: var(--bg-card); }
.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-link { color: var(--primary-bright); font-size: 16px; font-weight: 500; }
.btn-link:hover { text-decoration: underline; }

/* Header demo button: full text on desktop, short ("Demo") on small phones */
.btn-short { display: none; }
@media (max-width: 480px) {
  .btn-full { display: none; }
  .btn-short { display: inline; }
  .site-header .btn-primary { padding: 7px 14px; font-size: 13px; }
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--fg-muted); text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow .dot { color: var(--primary-bright); margin-right: 6px; }
.eyebrow.eyebrow-redmind .dot { color: var(--accent-redmind); }
.eyebrow.eyebrow-datacenter .dot { color: var(--accent-datacenter); }
.eyebrow.eyebrow-cyber .dot { color: var(--accent-cyber); }
.eyebrow.eyebrow-grc .dot { color: var(--accent-grc); }
.eyebrow.eyebrow-ai .dot { color: var(--accent-ai); }
.eyebrow.eyebrow-test .dot { color: var(--accent-test); }

h1, h2, h3 { letter-spacing: -0.025em; line-height: 1.05; font-weight: 700; }
h1 { font-size: clamp(40px, 8vw, 80px); }
h2 { font-size: clamp(32px, 6vw, 64px); margin-bottom: 16px; }
h3 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
.lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--fg-muted); max-width: 640px;
  margin-top: 16px;
}

.accent-blue { color: var(--primary-bright); }
.accent-redmind { color: var(--accent-redmind); }
.accent-datacenter { color: var(--accent-datacenter); }
.accent-cyber { color: var(--accent-cyber); }
.accent-grc { color: var(--accent-grc); }
.accent-ai { color: var(--accent-ai); }
.accent-test { color: var(--accent-test); }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
@media (min-width: 768px) { section { padding: 128px 0; } }
section.section-tight { padding: 64px 0; }
@media (min-width: 768px) { section.section-tight { padding: 96px 0; } }

/* Karriere-Page: kompaktere Sections (viele Sektionen, weniger Whitespace) */
body.karriere-page section { padding: 56px 0; }
@media (min-width: 768px) { body.karriere-page section { padding: 72px 0; } }
body.karriere-page section.page-hero { padding: 96px 0 72px; }
@media (min-width: 768px) { body.karriere-page section.page-hero { padding: 128px 0 96px; } }

/* ===== HERO (Home) ===== */
.hero {
  min-height: 92vh; display: flex; align-items: center; padding-top: 64px;
  background: radial-gradient(ellipse at 50% 30%, #0d1428 0%, #000 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }
.hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 1024px) { .hero-cta { justify-content: flex-start; } }
.hero-visual {
  aspect-ratio: 16/10;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1f 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
  padding: 96px 0 64px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(43,138,255,0.08) 0%, transparent 50%);
}
.page-hero.tinted-redmind {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,59,48,0.12) 0%, transparent 55%);
}
.page-hero.tinted-datacenter {
  background: radial-gradient(ellipse at 50% 0%, rgba(10,132,255,0.12) 0%, transparent 55%);
}
.page-hero.tinted-cyber {
  background: radial-gradient(ellipse at 50% 0%, rgba(90,200,250,0.10) 0%, transparent 55%);
}
.page-hero.tinted-ai {
  background: radial-gradient(ellipse at 50% 0%, rgba(52,199,89,0.10) 0%, transparent 55%);
}
.page-hero.tinted-test {
  background: radial-gradient(ellipse at 50% 0%, rgba(168,176,189,0.08) 0%, transparent 55%);
}
.page-hero.tinted-grc {
  background: radial-gradient(ellipse at 50% 0%, rgba(90,200,250,0.10) 0%, transparent 55%);
}
.page-hero h1 { margin-bottom: 24px; overflow-wrap: break-word; hyphens: manual; }

/* ===== SUB HERO — Visueller Hero für Lösungen-Subpages (cyber, grc, ai, test, redmind)
   Pattern: 1:1 wie .usecases-hero-image (Anwendungsfälle). Image rechts, Text links,
   weißer Fade-Overlay gewährleistet Text-Lesbarkeit ohne das Bild zu erschlagen.
   background-size: auto 100% behält native Bildschärfe (kein Upscale).
   Pro Subpage je ein .sub-hero--{key} Modifier mit der passenden background-image-URL. */
.sub-hero {
  position: relative;
  padding: 0;
  background: #eef3f8;
  overflow: hidden;
  isolation: isolate;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}
.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ffffff 0%,
    rgba(255,255,255,0.96) 28%,
    rgba(255,255,255,0.78) 45%,
    rgba(255,255,255,0.30) 60%,
    rgba(255,255,255,0)    75%);
  z-index: 1;
}
.sub-hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  min-height: clamp(360px, 42vw, 460px);
  display: flex;
  align-items: center;
}
.sub-hero-text {
  max-width: 560px;
}
/* Brand-Shield ersetzt den · vor dem Eyebrow — kleiner inline-Marker je Subpage.
   Sitzt mitten in der Zeile wie zuvor der Dot. Größe: ~20px Höhe, behält Aspect-Ratio. */
.sub-hero .eyebrow .sub-hero-brand-shield {
  display: inline-flex;
  vertical-align: -4px;
  height: 20px;
  width: auto;
  margin-right: 8px;
  filter: drop-shadow(0 2px 4px rgba(20, 40, 80, 0.18));
}
.sub-hero .eyebrow .sub-hero-brand-shield img {
  height: 100%;
  width: auto;
  display: block;
}
/* GRC-Color-Match: das Shield-Image ist deutlich teal-dunkler als der globale --accent-grc.
   Auf der gesamten GRC-Subpage (body.sub-grc) die Variable auf den Shield-Ton überschreiben,
   damit alle accent-grc-Texte (Hero-H1 sowie alle h2/h3-Akzente in den unteren Sektionen)
   im selben Türkis-Ton wie das Shield wirken. Andere Pages bleiben unberührt. */
body.sub-grc { --accent-grc: #2da0a8; }
.sub-hero-text h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 12px 0 16px;
  color: #0a0e1a;
  text-align: left;
  hyphens: manual;
  word-break: normal;
  max-width: 100%;
}
.sub-hero-body {
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.6;
  color: rgba(20,40,80,0.72);
  margin: 0 0 24px;
  max-width: 520px;
}
.sub-hero .hero-cta {
  margin-top: 0;
  justify-content: flex-start;
}

/* Per-Subpage Image-Variants */
/* AI Test Automation — Quality-Pillar-Reihe (5 nummerierte Pillars statt unscharfes 5er-Grid) */
.ata-quality-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.ata-quality-pillar {
  position: relative;
  padding: 28px 22px 24px;
  background: rgba(168, 176, 189, 0.05);
  border: 1px solid rgba(168, 176, 189, 0.22);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.ata-quality-pillar:hover {
  border-color: rgba(168, 176, 189, 0.55);
  transform: translateY(-2px);
}
.ata-quality-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-test, #5d6678);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.ata-quality-pillar h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.ata-quality-pillar p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
@media (max-width: 1100px) {
  .ata-quality-row { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 760px; }
}
@media (max-width: 700px) {
  .ata-quality-row { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 520px; gap: 12px; }
  .ata-quality-pillar { padding: 22px 18px 20px; }
}
@media (max-width: 480px) {
  .ata-quality-row { grid-template-columns: 1fr; max-width: 360px; }
}

/* AI Test Automation — Leistungsbausteine 3×2 Grid (klares Layout, keine Auto-Fit-Sprünge) */
.ata-leistungs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.ata-leistungs-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.ata-leistungs-card:hover {
  border-color: rgba(168, 176, 189, 0.55);
  transform: translateY(-2px);
}
.ata-leistungs-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 176, 189, 0.12);
  border: 1px solid rgba(168, 176, 189, 0.28);
  color: var(--accent-test, #5d6678);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ata-leistungs-icon svg {
  width: 24px;
  height: 24px;
}
.ata-leistungs-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 4px 0 0;
  letter-spacing: -0.005em;
}
.ata-leistungs-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
@media (max-width: 1023px) {
  .ata-leistungs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
}
@media (max-width: 600px) {
  .ata-leistungs-grid { grid-template-columns: 1fr; max-width: 440px; gap: 16px; }
  .ata-leistungs-card { padding: 22px 20px; }
}

/* AI Test Automation — Combined-Sektion (ML/LLM/Daten zusammen) */
.ata-pillars-viz {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 36px auto 48px;
}
.ata-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.ata-detail-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ata-detail-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.ata-detail-card > p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
.ata-detail-card .chip-list { margin-top: 4px; gap: 6px; }
.ata-detail-card .chip { font-size: 11.5px; padding: 4px 10px; }
@media (max-width: 900px) {
  .ata-pillars-viz { margin: 24px auto 32px; }
  .ata-detail-grid { grid-template-columns: 1fr; max-width: 540px; gap: 16px; }
  .ata-detail-card { padding: 20px 18px; }
}

/* Cybersecurity / GRC / AI Services / AI Test Automation / RedMind — bewusst ohne Hero-Image.
   Kein ::before-Bild, kein Weiß-Fade-Overlay, weißer Hintergrund. Layout
   (Padding, Min-Height, Text-Box) bleibt unverändert, Hero wirkt clean. */
.sub-hero--cyber,
.sub-hero--grc,
.sub-hero--ai,
.sub-hero--test,
.sub-hero--redmind { background: #ffffff; }
.sub-hero--cyber::before,
.sub-hero--cyber::after,
.sub-hero--grc::before,
.sub-hero--grc::after,
.sub-hero--ai::before,
.sub-hero--ai::after,
.sub-hero--test::before,
.sub-hero--test::after,
.sub-hero--redmind::before,
.sub-hero--redmind::after { display: none; }

/* RedMind — Angriffspfad-Knotengraph, kompakt in „Wie es funktioniert" platziert (statt im Hero) */
.rm-pathgraph {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 28px auto 36px;
}
.rm-pathgraph .rm-graph-edges line { stroke: rgba(255,59,48,0.18); stroke-width: 1; }
.rm-pathgraph .rm-graph-path line  { stroke: rgba(255,59,48,0.85); stroke-width: 2.5; stroke-linecap: round; }
.rm-pathgraph .rm-graph-nodes circle { fill: rgba(255,59,48,0.20); stroke: rgba(255,59,48,0.65); stroke-width: 1.5; }
.rm-pathgraph .rm-graph-nodes .rm-node-target { fill: rgba(255,59,48,0.85); stroke: rgba(255,59,48,1); }
.rm-pathgraph .rm-graph-labels text {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: rgba(20,20,30,0.5);
}

/* Mobile: identisches Pattern wie .ueber-hero-image — Bild oben/rechts sichtbar,
   Text unten auf weißem Hintergrund mit klarer Trennung. Vermeidet das vorherige
   Problem, bei dem das Hintergrundbild durch die Text-Sätze schimmerte. */
@media (max-width: 900px) {
  .sub-hero::before {
    background-size: 140% auto;
    background-position: 70% top;
  }
  .sub-hero::after {
    background: linear-gradient(180deg,
      rgba(255,255,255,0)    0%,
      rgba(255,255,255,0.40) 30%,
      rgba(255,255,255,0.92) 65%,
      #ffffff                100%);
  }
  .sub-hero .container {
    align-items: flex-end;
    min-height: clamp(420px, 70vw, 540px);
  }
  .sub-hero-text { max-width: 100%; }
}
@media (max-width: 540px) {
  .sub-hero::before {
    background-size: 200% auto;
    background-position: 65% top;
  }
  .sub-hero .container { min-height: 480px; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: clamp(28px, 7vw, 36px); }
}
.page-hero .lead { margin-left: auto; margin-right: auto; }
.page-hero-visual {
  margin: 64px auto 0;
  max-width: 1000px;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1f 100%);
  display: flex; align-items: center; justify-content: center;
}
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PLACEHOLDER ===== */
.placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--fg-muted); padding: 32px; text-align: center;
}
.placeholder .ph-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.placeholder .ph-label { font-size: 14px; font-weight: 600; color: var(--fg); }
.placeholder .ph-meta { font-size: 12px; color: var(--fg-dim); }

/* ===== CAROUSEL ===== */
.carousel-wrap { position: relative; }
.carousel {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px 16px;
  scrollbar-width: none;
  scroll-padding: 16px;
}
.carousel::-webkit-scrollbar { display: none; }

/* ===== Apple-Style Pagination Bar (Pille + Dots + Next-Button) ===== */
.carousel-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.carousel-dots {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 980px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
body.theme-light .carousel-dots {
  background: rgba(0,0,0,0.06);
}
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 0; padding: 0; cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
body.theme-light .carousel-dots button {
  background: rgba(0,0,0,0.25);
}
.carousel-dots button:hover {
  background: rgba(255,255,255,0.55);
}
body.theme-light .carousel-dots button:hover {
  background: rgba(0,0,0,0.45);
}
.carousel-dots button.active {
  background: var(--fg);
  width: 28px;
  border-radius: 4px;
}

/* Next-Button: runder Pfeil rechts neben Pagination (Apple-Style) */
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 0;
  color: var(--fg);
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px; font-weight: 600;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
body.theme-light .carousel-arrow {
  background: rgba(0,0,0,0.06);
}
.carousel-arrow:hover:not(:disabled) {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}
body.theme-light .carousel-arrow:hover:not(:disabled) {
  background: rgba(0,0,0,0.12);
}
.carousel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-arrow.prev { display: none; } /* Apple zeigt nur Next, prev erfolgt über Dots */

/* ===== Apple-Style Card: Text oben, Bild unten ===== */
.carousel-card {
  flex: 0 0 88%; max-width: 520px;
  scroll-snap-align: center;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .carousel-card { flex-basis: 56%; padding: 40px 36px; }
}
@media (min-width: 1024px) { .carousel-card { flex-basis: 38%; } }
.carousel-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.carousel-card .eyebrow {
  font-size: 11px; margin-bottom: 14px;
  justify-content: center;
}
.carousel-card h3 {
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.carousel-card p {
  color: var(--fg-muted); font-size: 15px;
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.5;
}
.carousel-card .btn-link {
  align-self: center;
  margin-bottom: 28px;
}
.carousel-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d0d10 0%, #1a1a1f 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: auto; /* Drückt Bild zur Karten-Unterkante */
}
.carousel-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TILE GRID ===== */
.tiles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 768px) { .tiles { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.tile {
  background: var(--bg-card); border-radius: 22px;
  padding: 28px 20px; border: 1px solid var(--line);
  aspect-ratio: 1 / 1.15;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .tile { padding: 36px 24px; aspect-ratio: 1 / 1; }
}
/* Hover entfernt — Tiles bleiben statisch */
.tile:hover { transform: none; }
.tile .tile-eyebrow {
  font-size: 13px; color: var(--fg-muted); margin-bottom: 8px;
  font-weight: 400;
}
.tile .number {
  font-size: clamp(36px, 9vw, 64px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.tile .counter { display: inline-block; font-variant-numeric: tabular-nums; }
.tile .label { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.tile .sub { font-size: 12px; color: var(--fg-muted); line-height: 1.4; max-width: 200px; }
.tile .tile-icon { font-size: 36px; margin-bottom: 12px; }

/* === Apple-Stil-Tile-Grid (für In-Zahlen-Sektion) ===
 * Sektion = klar sichtbarer Charcoal-Grau-BG, Tiles = pure Schwarz, keine Border
 * → Tiles erscheinen als „schwarze Inseln" auf grauem Untergrund (genauer Apple-Look).
 * Spezifität-Hack mit body.theme-light um die globalen .theme-dark-Regeln zu schlagen. */
body.theme-light .tile-grid-section.theme-dark,
.tile-grid-section.theme-dark {
  background: #000000;            /* Apple-Style: pure schwarz außen */
}
/* Innerer Charcoal-Panel-Wrapper (wie Apple iPhone-Compare) */
.tile-grid-wrap {
  background: #1d1d1f;
  border-radius: 28px;
  padding: 48px 28px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tile-grid-wrap { padding: 56px 40px; }
}
@media (min-width: 1100px) {
  .tile-grid-wrap { padding: 64px 48px; }
}
body.theme-light .tile-grid-section.theme-dark .tile,
.tile-grid-section.theme-dark .tile {
  background: #000000;            /* pure schwarz */
  border: none;                   /* keine Border */
  border-radius: 24px;
  box-shadow: none;
}
/* Kein Hover-Wechsel mehr in der Tile-Grid-Sektion — Tiles bleiben pure schwarz. */
body.theme-light .tile-grid-section.theme-dark .tile:hover,
.tile-grid-section.theme-dark .tile:hover {
  background: #000000;
  border: none;
  transform: none;
}
/* Apple-Pattern: bei 3 Spalten alternierend img-stat-img-stat-img-stat */
@media (min-width: 768px) {
  .tile-grid-section .tiles { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* Apple-Style: quadratische Tiles (1:1), kompakter Auftritt.
   Layout: 3 Reihen — Visualization oben, Eyebrow+Sub Mitte, Zahl unten.
   Auf sehr schmalen Viewports (<480px) wird aspect-ratio gelockert,
   sonst werden Inhalte (z.B. „<5 Min" oder „98%") unten abgeschnitten. */
.tile-grid-section .tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.tile-grid-section .tile {
  aspect-ratio: 1 / 1;
  min-height: 200px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* space-evenly verteilt Viz/Text/Number gleichmäßig — wirkt mittiger als space-between */
  justify-content: space-evenly;
  text-align: center;
  gap: 4px;
}
/* Schmale Mobile-Viewports: Tiles sollen nahezu quadratisch wirken (statt länglich).
   aspect-ratio 1/1.08 → minimal höher als breit, aber visuell quadratisch.
   Padding und gap reduziert, damit Inhalt (Viz, Sub, Number) ohne Overflow passt.
   Image-Tiles bekommen weniger Padding und der Bild-Container bekommt mehr Flex-Grow,
   damit das Bild ~70 % der Tile-Höhe einnimmt (statt ~50 % bei space-evenly).  */
@media (max-width: 480px) {
  .tile-grid-section .tile {
    aspect-ratio: 1 / 1.08;
    min-height: 0;
    padding: 14px 8px;
    gap: 2px;
  }
  /* Image-Tiles: gleiche aspect-ratio wie Stat-Tiles (1/1.08), damit alle Kacheln
     gleich hoch sind. Bild bleibt dank object-fit: contain unverzerrt. */
  .tile-grid-section .tile.tile-image {
    aspect-ratio: 1 / 1.08;
    padding: 8px 6px 10px;
    justify-content: flex-start;
    gap: 4px;
  }
  .tile-grid-section .tile.tile-image .tile-img {
    flex: 1 1 0;
    min-height: 0;
    height: 100%;
  }
  /* Defense Engine: mobile auch bissel größer (Box-Bild deutlich präsenter) */
  .tile-image--shrunk .tile-img.tile-img-compact img {
    max-width: 100% !important;
    height: auto !important;
  }
  /* Server-Rack ist Hochformat — mit object-fit:contain allein zu klein gegenüber
     der querformatigen Defense-Engine-Box. Lösung: contain (Rack bleibt komplett
     sichtbar) + transform: scale() für moderate Vergrößerung. Overflow:hidden clippt
     nur den Hintergrund-Rand, nicht das Rack selbst. */
  .tile-grid-section .tile.tile-image:not(.tile-image--shrunk) .tile-img {
    overflow: hidden;
    border-radius: 14px;
  }
  .tile-grid-section .tile.tile-image:not(.tile-image--shrunk) .tile-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.35);
    transform-origin: center;
  }
}
/* Visualization oben — auf Mobile etwas kleiner damit Number-Zeile Platz hat */
.tile-grid-section .stat-viz {
  width: 56px;
  height: 56px;
  margin: 0;
  flex-shrink: 0;
}
.tile-grid-section .stat-viz--eu    { width: 56px; height: 56px; }
.tile-grid-section .stat-viz--radar { width: 60px; height: 60px; }
.tile-grid-section .stat-viz--bolt  { width: 44px; height: 44px; }
@media (min-width: 768px) {
  .tile-grid-section .stat-viz       { width: 78px; height: 78px; }
  .tile-grid-section .stat-viz--eu   { width: 76px; height: 76px; }
  .tile-grid-section .stat-viz--radar{ width: 82px; height: 82px; }
  .tile-grid-section .stat-viz--bolt { width: 62px; height: 62px; }
}
/* Mitte: Eyebrow + Sub direkt untereinander */
.tile-grid-section .tile-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.tile-grid-section .tile .tile-eyebrow {
  font-size: 11.5px;
  margin: 0;
  line-height: 1.3;
  color: rgba(255,255,255,0.62);
}
.tile-grid-section .tile .sub {
  font-size: 11.5px;
  margin: 0;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
  max-width: none;
}
/* Zahl unten — auf Mobile kompakter, sonst overflow.
   Mobile: kleinere Numbers für sauberere Optik in den nahezu quadratischen Tiles. */
.tile-grid-section .tile .number {
  font-size: 22px;
  margin: 0;
  line-height: 1;
}
@media (max-width: 380px) {
  .tile-grid-section .tile .number { font-size: 20px; }
}
@media (min-width: 768px) {
  .tile-grid-section .tile .number { font-size: 38px; }
  .tile-grid-section .tile .tile-eyebrow,
  .tile-grid-section .tile .sub { font-size: 12.5px; }
}

/* Image-Tiles (Tile 1 + 3): Bild oben, Text unten — selbe Vertikal-Verteilung.
   Padding-top mehr als padding-bottom → Bild rutscht in der Vertikalen weiter unten,
   sodass die OBERE Kante (z.B. Server-Rack-Top) im Tile sichtbar bleibt. */
.tile-grid-section .tile.tile-image {
  padding: 28px 14px 16px;
  justify-content: space-evenly;
}
.tile-grid-section .tile.tile-image .tile-img {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tile-grid-section .tile.tile-image .tile-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
/* tile-image--shrunk: legacy hook, no override — beide Bild-Tiles teilen jetzt die compact-Regel */
.tile-grid-section .tile.tile-image .tile-headline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}
.tile-grid-section .tile.tile-image .tile-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .tile-grid-section .tile.tile-image .tile-headline { font-size: 16px; }
  .tile-grid-section .tile.tile-image .tile-sub { font-size: 13px; }
}

/* ==== Tile-Flip-Animation: Hover dreht Tile um, Backside zeigt Trust-Text ==== */
/* Flip-Logik entfernt — Tiles sind jetzt statisch, kein Hover-Wechsel mehr. */
@media (min-width: 768px) {
  .tile-grid-section .tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .tile-grid-section .tile {
    padding: 20px 16px;
  }
  .tile-grid-section .tile .number {
    font-size: 44px;
  }
  .tile-grid-section .tile .tile-eyebrow {
    font-size: 12.5px;
  }
}

/* Stat-Visualisierung — kleines SVG unter Sub-Text */
.stat-viz {
  width: 70px;
  height: 28px;
  display: block;
  margin: 14px auto 0;
}
@media (min-width: 768px) {
  .stat-viz { margin-top: 18px; }
}

/* Image-Tiles: Bild nimmt mehr Platz ein, Text bleibt kompakt */
.tile-grid-section .tile-image {
  padding: 20px 16px 16px;
}
.tile-grid-section .tile-image .tile-headline {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.tile-grid-section .tile-image .tile-sub {
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.tile-grid-section .tile-image .tile-img {
  align-items: center;
  padding: 4px;
}
.tile-grid-section .tile-image .tile-img img {
  object-fit: contain;
  max-height: 100%;
}
@media (max-width: 767px) {
  .tile-grid-section .tile-image {
    padding: 18px 14px 14px;
  }
  .tile-grid-section .tile-image .tile-headline {
    font-size: 15px;
  }
  .tile-grid-section .tile-image .tile-sub {
    font-size: 11px;
    margin-bottom: 8px;
  }
}

/* Image-Tile variant */
.tile-image {
  padding: 24px 20px 0;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1.15;
}
@media (min-width: 768px) {
  .tile-image { padding: 32px 24px 0; aspect-ratio: 1 / 1; }
}
.tile-image .tile-headline {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--fg);
  padding: 0 4px;
}
.tile-image .tile-sub {
  font-size: 12px; color: var(--fg-muted); line-height: 1.4;
  margin-bottom: 16px; padding: 0 4px;
}
.tile-image .tile-img {
  margin-top: auto; width: 100%; flex: 1;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.tile-image .tile-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* Product-Tile (für Produkte-Übersicht) */
.product-tiles {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) { .product-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-tiles { grid-template-columns: repeat(3, 1fr); } }
.product-tile {
  background: var(--bg-card); border-radius: 24px;
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.product-tile:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.product-tile-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1f 100%);
  overflow: hidden;
}
.product-tile-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-tile-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.product-tile-body .eyebrow { margin-bottom: 12px; font-size: 11px; }
.product-tile-body h3 { font-size: 22px; margin-bottom: 12px; }
.product-tile-body p { color: var(--fg-muted); font-size: 14px; margin-bottom: 20px; flex: 1; }

/* ===== DETAIL SECTIONS ===== */
.detail-section {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .detail-section { grid-template-columns: 1fr 1fr; gap: 96px; }
  .detail-section.reverse .detail-text { order: 2; }
  .detail-section.reverse .detail-visual { order: 1; }
}
.detail-visual {
  aspect-ratio: 4/3; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1f 100%);
  display: flex; align-items: center; justify-content: center;
}
.detail-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Transparente Produkt-PNGs — schweben direkt auf der Sektions-Hintergrundfarbe,
 * keine Box drumherum (damit's bei einem Apple-artigen Produkt-Auftritt aussieht). */
.detail-visual-product {
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: 4 / 3;
}
.detail-visual-product img {
  object-fit: contain;
  padding: 4%;
}
/* Kompakte Tile-Image-Variante: Bild absolut zentriert in seiner Box.
   Cube und Rack nutzen die gleiche Logik → identische Tile-Höhen, gleiche Optik. */
.tile-image .tile-img.tile-img-compact {
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 100%;
}
/* picture transparent im Layout, damit %-Maße auf img direkt gegen tile-img-compact greifen */
.tile-image .tile-img.tile-img-compact picture { display: contents; }
.tile-image .tile-img.tile-img-compact img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 78%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tile-image .tile-img.tile-img-compact img { max-width: 70%; }
}
/* Server-Rack: hochformatig (1024×1536, ratio 0.667).
   Mobile: explizite Höhe via cqh (container-query height) → Bild nutzt
   ~58 % der Tile-Höhe statt der ~30-40 %, die Default-Flex-Layout abgibt.
   So ist der Server-Rack in der gleichen Größenordnung wie der Defense-Engine-Würfel.
   Desktop: schmaler/höher gekappt, damit Tile-Höhe konsistent zum Cube-Tile bleibt. */
.tile-image .tile-img.tile-img-compact img[src*="datacenter-rack"],
.tile-image .tile-img.tile-img-compact img[src*="tile-rack"] {
  /* Mobile: voll-elastisch — width/height auf 100%, object-fit: contain → Bild wird
     automatisch in den verfügbaren Tile-Innenraum eingepasst, KEIN Clipping mehr.
     Das Tile bekommt eine etwas höhere aspect-ratio (1/1.22) für genug Vertikalraum. */
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 768px) {
  .tile-image .tile-img.tile-img-compact img[src*="datacenter-rack"],
  .tile-image .tile-img.tile-img-compact img[src*="tile-rack"] {
    max-width: 62%;
    max-height: 240px;
    height: auto;
  }
}
/* GAD-Chip-Tile (Defense Engine): Mobile soll Bild den schwarzen Bereich besser füllen,
   nicht eingerahmt mit viel Leerraum drumherum.
   Mobile: max-width auf 88% erhöht (vorher 60% — viel zu klein, daher der „Rahmen-Effekt").
   Desktop bleibt bei 53% schlanker, damit Tile-Höhe konsistent zum Server-Rack-Tile bleibt. */
.tile-image--shrunk .tile-img.tile-img-compact img {
  max-width: 88% !important;
  max-height: 100% !important;
}
@media (min-width: 768px) {
  .tile-image--shrunk .tile-img.tile-img-compact img {
    max-width: 53% !important;
    max-height: 145px !important;
  }
}
.detail-bullets { list-style: none; padding: 0; margin-top: 32px; }
.detail-bullets li {
  padding: 16px 0; border-top: 1px solid var(--line);
  display: flex; gap: 16px; align-items: flex-start;
}
.detail-bullets li:last-child { border-bottom: 1px solid var(--line); }
.detail-bullets .icon {
  flex: 0 0 24px; height: 24px; margin-top: 2px;
  color: var(--primary-bright);
}
.detail-bullets .text { flex: 1; }
.detail-bullets .text strong { display: block; margin-bottom: 4px; font-weight: 600; }
.detail-bullets .text span { color: var(--fg-muted); font-size: 14px; }

/* ===== FEATURES (3-spalten Card-Grid) ===== */
.features {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) { .features { grid-template-columns: repeat(3, 1fr); } }
/* 4-Karten-Variante (Mobile 1 → Tablet 2 → Desktop 4) */
@media (min-width: 768px) { .features.features-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features.features-4 { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: var(--bg-card); border-radius: 22px;
  padding: 32px 24px; border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.feature-card .feature-icon { font-size: 32px; margin-bottom: 16px; line-height: 1; display: inline-flex; align-items: center; justify-content: flex-start; }
.feature-card .feature-icon svg { width: 32px; height: 32px; display: block; }
.features-spec .feature-card .feature-icon svg { width: 26px; height: 26px; }
/* PH-Icon (placeholder containers — Carousel/CTA-Visuals) */
.ph-icon svg { width: 48px; height: 48px; display: block; }
/* Tile-EU — Sterne-Visual ersetzt das Datacenter-Bild */
.tile-eu-stars { display: flex; align-items: center; justify-content: center; padding: 16px; }
.tile-eu-stars svg { width: 100%; height: auto; max-width: 240px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--fg-muted); font-size: 14px; line-height: 1.5; }

/* ===== FEATURES — kompaktes Spec-Grid (Apple-Compare-Stil) =====
   Mobile: 2-col   ·   Tablet: 3-col   ·   Desktop: 4-col
   Niemals horizontal-overflow, sauberer Rhythmus. */
.features-spec {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .features-spec { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 1024px) {
  .features-spec { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
.features-spec .feature-card {
  padding: 18px 14px;
  border-radius: 14px;
  min-width: 0; /* erlaubt der Grid-Zelle, unter ihre Content-Min-Width zu schrumpfen */
}
.features-spec .feature-card .feature-icon { font-size: 26px; margin-bottom: 10px; }
.features-spec .feature-card h3 {
  font-size: 14px; margin-bottom: 4px; line-height: 1.3;
  overflow-wrap: anywhere; hyphens: auto;
}
.features-spec .feature-card p {
  font-size: 12.5px; line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ===== Section-Image (Apple-Style Hero pro Sektion) ===== */
.section-image {
  margin: 32px 0 8px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
}
.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .section-image { margin: 48px 0 16px; border-radius: 24px; }
}

/* ===== PROOF BLOCK (zentrierte Stat-Section) ===== */
.proof-block {
  text-align: center;
  padding: 64px 0;
  background: var(--bg-soft);
  border-radius: 32px;
  margin: 64px 0;
}
.proof-block .proof-number {
  font-size: clamp(48px, 8vw, 96px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 16px; color: var(--fg);
}
.proof-block .proof-label {
  font-size: clamp(20px, 3vw, 28px); font-weight: 600;
  margin-bottom: 12px;
}
.proof-block .proof-sub { color: var(--fg-muted); max-width: 540px; margin: 0 auto; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) { .trust-strip { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.trust-item {
  text-align: center; padding: 28px 16px;
  background: var(--bg-card); border-radius: 16px;
  border: 1px solid var(--line);
}
.trust-item .ti-icon { font-size: 28px; margin-bottom: 12px; }
.trust-item .ti-label { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.trust-item .ti-sub { font-size: 13px; color: var(--fg-muted); }

/* ===== TEAM (About) ===== */
.team-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--bg-card); border-radius: 22px;
  padding: 28px 24px; border: 1px solid var(--line);
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1f 0%, #2a2a2f 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--fg-muted);
  margin-bottom: 16px;
  overflow: hidden;
}
/* Foto-Variante: img/picture füllt den runden Container, Initialen-Fallback bleibt
   im Gradient-Hintergrund verborgen. picture ist display:contents, damit % auf img greift. */
.team-photo--img picture { display: contents; }
.team-photo--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.team-card .team-role { font-size: 13px; color: var(--primary-bright); margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-channel {
  background: var(--bg-card); border-radius: 22px;
  padding: 32px 24px; border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.contact-channel:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.contact-channel .ci-icon { font-size: 32px; margin-bottom: 16px; }
.contact-channel h3 { font-size: 18px; margin-bottom: 8px; }
.contact-channel p { color: var(--fg-muted); font-size: 14px; margin-bottom: 16px; }

.contact-form {
  background: var(--bg-card); border-radius: 24px;
  padding: 40px 32px; border: 1px solid var(--line);
  max-width: 720px; margin: 64px auto 0;
}
.contact-form h2 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row.row-2 { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  margin-bottom: 6px; color: var(--fg);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  color: var(--fg); font-family: inherit; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-bright);
  background: rgba(43,138,255,0.05);
}
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; }
.form-checkbox label { font-size: 13px; color: var(--fg-muted); }
.form-checkbox label a { color: var(--primary-bright); text-decoration: underline; }

/* File-Inputs (Bewerbungs-Upload) */
.form-group input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
}
.form-group input[type="file"]::file-selector-button {
  margin-right: 12px; padding: 6px 14px;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: rgba(43,138,255,0.08);
  color: var(--fg); font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.form-group input[type="file"]::file-selector-button:hover {
  background: rgba(43,138,255,0.16);
}
.form-help {
  font-size: 12px; color: var(--fg-muted);
  margin-top: 4px;
}
.form-status {
  margin-top: 16px; padding: 12px 16px;
  border-radius: 10px; font-size: 14px;
  display: none;
}
.form-status.success {
  display: block; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.4); color: #22c55e;
}
.form-status.error {
  display: block; background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.4); color: #ef4444;
}

/* ===== JOB-LISTING (Schwarz-Digits-Stil — Stellenangebote als Zeilen) ===== */
.job-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.job-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.2s, padding-left 0.2s;
}
.job-row:hover {
  background: rgba(43,138,255,0.04);
  padding-left: 16px;
}
.job-row-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.job-row-title {
  font-size: 17px; font-weight: 600;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.job-row-meta {
  display: flex; gap: 6px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-muted);
}
.job-row-meta .sep { opacity: 0.5; }
.job-row-arrow {
  font-size: 22px; color: var(--primary-bright);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.job-row:hover .job-row-arrow { transform: translateX(4px); }

@media (min-width: 768px) {
  .job-row { padding: 28px 12px; gap: 24px; }
  .job-row-content { flex-direction: row; align-items: center; gap: 24px; }
  .job-row-title { flex: 1; font-size: 19px; }
  .job-row-meta { flex-shrink: 0; font-size: 14px; }
}

/* ===== JOB-META (Standort, Abteilung, Level, Arbeitsmodell, Referenz) ===== */
.job-meta-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px 24px;
  margin: 32px 0 48px;
}
@media (min-width: 768px) {
  .job-meta-card { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); padding: 16px 8px; }
}
.job-meta-item {
  display: flex; gap: 14px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .job-meta-item { border-bottom: 0; padding: 12px 16px; }
}
.job-meta-item:last-child { border-bottom: 0; }
.job-meta-icon {
  font-size: 22px; flex-shrink: 0;
  color: var(--primary-bright);
  width: 28px; text-align: center;
}
.job-meta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.job-meta-label {
  font-size: 12px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.job-meta-value { font-size: 14px; font-weight: 500; overflow-wrap: break-word; }

/* ===== JOB-DETAIL-GRID (Aufgaben / Profil / Was dich erwartet / Vorteile) ===== */
.job-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .job-detail-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.job-detail-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
}
.job-detail-block h3 {
  font-size: 18px; margin-bottom: 16px;
  color: var(--fg);
}
.job-detail-block ul {
  list-style: none; padding: 0; margin: 0;
}
.job-detail-block li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--fg-muted);
  font-size: 14.5px; line-height: 1.55;
}
.job-detail-block li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--primary-bright);
  font-weight: 600;
}

/* Scroll-Reveal-Animation entfernt — alle Inhalte sind direkt sichtbar.
   data-reveal-Attribute im HTML sind no-ops und können bei Gelegenheit entfernt werden. */

/* ===== Karriere-Hero (Dark-Hero mit Team-Bild als Hintergrund) ===== */
.karriere-hero {
  position: relative;
  min-height: 88vh;
  padding: 120px 0 96px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #142747 60%, #0a1628 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.karriere-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.karriere-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  opacity: 0.7;
}
.karriere-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,102,255,0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,22,40,0.35) 0%, rgba(10,22,40,0.65) 60%, rgba(10,22,40,0.85) 100%);
}
.karriere-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.karriere-hero .eyebrow {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.karriere-hero .eyebrow .dot { color: var(--primary-bright); }
.karriere-hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.4vw, 76px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.05;
}
.karriere-hero h1 .accent-blue {
  color: #6da7ff;
  background: linear-gradient(180deg, #6da7ff 0%, #2b8aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.karriere-hero .lead {
  color: rgba(255,255,255,0.88);
  font-size: 19px;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.karriere-hero .hero-cta {
  margin-top: 8px;
}
/* Höhere Spezifität, um body.theme-light .btn-ghost zu überschreiben */
body.theme-light .karriere-hero .btn-ghost,
.karriere-hero .btn-ghost {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}
body.theme-light .karriere-hero .btn-ghost:hover,
.karriere-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  color: #fff !important;
}
@media (max-width: 800px) {
  .karriere-hero { min-height: 78vh; padding: 90px 0 64px; }
  .karriere-hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .karriere-hero .lead { font-size: 17px; }
}

/* ===== Bewerbungsprozess-Timeline ===== */
.process-timeline {
  position: relative;
  margin: 56px 0 0;
  max-width: 760px;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.process-step {
  position: relative;
  padding-left: 56px;
  padding-bottom: 36px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-marker {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--primary-bright);
  box-shadow: 0 0 0 4px var(--bg);
}
.process-step-content h3 {
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.process-step-content p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

/* ===== Kununu-Card ===== */
.kununu-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.kununu-text h2 { margin: 12px 0 16px; }
.kununu-text p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 24px;
}
.kununu-stars {
  background: linear-gradient(135deg, #c9d646 0%, #a4b51e 100%);
  border-radius: 16px;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.5);
  min-height: 200px;
}
.kununu-stars svg { width: 100%; max-width: 260px; height: auto; }
@media (max-width: 800px) {
  .kununu-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 28px;
  }
  .kununu-stars { padding: 40px 24px; min-height: 160px; }
}

/* ===== Stellen-Toggle (Liste vs. Einzel-Detail) =====
   - Default: alle [data-stelle-detail] hidden, [data-stelle-list] sichtbar
   - Wenn body data-show-stelle gesetzt: nur die passende Detail-Sektion sichtbar
*/
section[data-stelle-detail] { display: none; }
body[data-show-stelle] section[data-stelle-list] { display: none; }
/* Hero, Prozess-Sektion, Initiativ-Form etc. nur in Listenansicht zeigen */
body[data-show-stelle] [data-karriere-list] { display: none; }

/* === Job-Hero (Stellen-Detail-Hero mit Bild) === */
.job-hero {
  background: var(--bg-soft);
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--line);
}
.job-hero .stelle-back { margin-bottom: 24px; }
/* CTA im Job-Hero immer linksbündig (auch auf Mobile) */
.job-hero .hero-cta { justify-content: flex-start; }
.job-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.job-hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 12px 0 16px;
  line-height: 1.05;
}
.job-hero-lead {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 0 24px;
}
.job-hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8ed 0%, #d2d2d7 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
/* Portrait-Foto (Person-Aufnahmen): unteres Drittel abgeschnitten — Kopf bis Hüfte */
.job-hero-image--photo {
  aspect-ratio: 9 / 8;
  background: #0e1f3a;
  max-height: 480px;
  margin: 0 auto;
  width: 100%;
  max-width: 540px;
}
.job-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.job-hero-image--photo img {
  object-position: center top;
}
.job-hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.35);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .job-hero { padding: 40px 0 32px; }
  .job-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .job-hero-image { aspect-ratio: 16/10; }
  .job-hero-image--photo { aspect-ratio: 9 / 8; max-width: 380px; max-height: 340px; }
}
body[data-show-stelle="pentest"]     section[data-stelle-detail="pentest"],
body[data-show-stelle="aiengineer"]  section[data-stelle-detail="aiengineer"],
body[data-show-stelle="datacenter"]  section[data-stelle-detail="datacenter"],
body[data-show-stelle="compliance"]  section[data-stelle-detail="compliance"],
body[data-show-stelle="businessdev"] section[data-stelle-detail="businessdev"] {
  display: block;
}

.stelle-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.stelle-back:hover { color: var(--primary-bright); }
.stelle-back::before { content: "←"; font-size: 16px; }

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: 32px 8px 0; /* extra horizontal padding on mobile to match Apple-style legal pages */
}
@media (min-width: 768px) {
  .legal-content { padding: 32px 0 0; }
}
.legal-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 48px 0 16px;
  color: var(--fg);
  overflow-wrap: break-word; hyphens: auto;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 18px; margin: 32px 0 12px;
  overflow-wrap: break-word; hyphens: auto;
}
.legal-content p {
  color: var(--fg-muted); font-size: 15px; line-height: 1.7;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
.legal-content ul, .legal-content ol {
  color: var(--fg-muted); font-size: 15px; line-height: 1.7;
  padding-left: 24px; margin-bottom: 16px;
}
.legal-content li { margin-bottom: 6px; overflow-wrap: break-word; }
.legal-content strong { color: var(--fg); font-weight: 600; }
.legal-content a { color: var(--primary-bright); overflow-wrap: anywhere; word-break: break-word; }
.legal-content a:hover { text-decoration: underline; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; }
.final-cta .lead { margin-left: auto; margin-right: auto; }
.final-cta .hero-cta { justify-content: center; margin-top: 32px; }

/* ===== HERO PANGOLIN (Bluebird-Stil, 4 Liquid-Glass-Cards) ===== */
.hero-pangolin {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #c9d8ea 0%, #d6e3f0 30%, #e8eef5 100%);
  isolation: isolate;
  margin-top: -1px; /* nahtloser Übergang vom Header */
  padding: 0; /* generisches section-padding (128px) überschreiben — Hero-Stage soll volle Section-Höhe füllen */
}
/* Bild-Bereich (Pangolin-Hintergrund + Display-Text) */
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 56vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-stage { min-height: 68vh; }
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

/* ===== EAGLE-SCROLL — Frame-Sequence-Hero (Apple-Style, 240 Frames, 3× viewport scroll)
   Aktiv nur auf Desktop (>= 768px) und ohne prefers-reduced-motion. JS toggelt
   .eagle-scroll-enabled / .eagle-scroll-disabled je nach Capability. */

/* Default: Section hat keine extra-Höhe (Mobile / no-JS / disabled) — verhält sich wie hero-pangolin gewohnt */
.eagle-scroll-section { position: relative; }
.eagle-scroll-canvas { display: none; }

/* Aktiviert: Section wird zur Scroll-Arena, Pin sticky, Canvas sichtbar überm Picture */
.eagle-scroll-section.eagle-scroll-enabled {
  height: 300vh;
  overflow: visible;
}
.eagle-scroll-section.eagle-scroll-enabled .eagle-scroll-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}
.eagle-scroll-section.eagle-scroll-enabled .eagle-scroll-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
/* Wenn Canvas aktiv ist, das statische <picture> verstecken (sonst doppeltes Bild) */
.eagle-scroll-section.eagle-scroll-enabled .hero-bg-picture { display: none; }

/* Object-position-Anpassung gilt auch für Canvas */
@media (min-width: 768px) {
  .eagle-scroll-section.eagle-scroll-enabled .eagle-scroll-canvas {
    object-position: 78% center;
  }
}
@media (min-width: 1024px) {
  .eagle-scroll-section.eagle-scroll-enabled .eagle-scroll-canvas {
    object-position: 72% center;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

/* Großer Display-Text — DM Serif, hinter dem Pangolin (deprecated, durch hero-overlay ersetzt) */
.hero-display-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: rgba(20, 40, 80, 0.18);
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-display-text .line { display: block; }

/* === HERO-OVERLAY (Bluebird-Stil): Headline + CTAs links auf dem Bild === */
.hero-stage--split { min-height: 72vh; }
@media (min-width: 768px) { .hero-stage--split { min-height: 86vh; } }
@media (min-width: 1024px) { .hero-stage--split { min-height: 92vh; } }

/* Schild + Kugel auf Wolkenhintergrund (Wide-Format 1456×720, ~2:1).
   Bei Vollbreite: Hero-Container ist 92vh hoch, Bild wird mit `cover`
   hochskaliert und mit Right-Top-Anchor positioniert → Schild+Kugel
   bleiben rechts proportional prominent (wie bei Halb-Breite), die
   linken Wolken werden teilweise beschnitten — Text-Overlay sitzt dort.
   Top-Mask-Fade entfernt, damit die Schild-Spitze voll sichtbar bleibt. */
@media (min-width: 1280px) {
  .hero-stage--split .hero-bg-image {
    object-fit: cover !important;
    object-position: 100% 0% !important;
    width: 100% !important;
    height: 100% !important;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 95%, transparent 100%) !important;
    mask-image: linear-gradient(180deg, #000 0%, #000 95%, transparent 100%) !important;
  }
}

.hero-overlay {
  position: absolute;
  z-index: 3;
  left: 6%;
  right: 6%;
  bottom: 24px;
  max-width: 560px;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .hero-overlay {
    left: 6%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 540px;
  }
}
@media (min-width: 1280px) {
  .hero-overlay {
    left: max(6%, calc((100vw - 1440px) / 2 + 48px));
    max-width: 600px;
  }
}
/* Anti-Kollisionsgürtel zwischen Overlay-CTAs und schwebenden Cards.
   Bei 1280–1499px sind Cards bottom-right (~600px breit) und Overlay vertikal
   zentriert — schmaleres Overlay-Maß verhindert, dass die CTAs in die Cards laufen. */
@media (min-width: 1280px) and (max-width: 1499px) {
  .hero-overlay { max-width: 440px; }
}

.hero-overlay-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 40, 80, 0.55);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-overlay-eyebrow .dot { color: var(--primary, #0066ff); font-weight: 800; }
/* Tieferes Blau für AI-Akzent im Eyebrow (etwas dunkler als das normale primary-bright) */
.accent-blue-deep { color: #0044cc; }

/* Brand-Variante des Eyebrows — Markenname „GermanAI Defense" als ein Wort,
   ohne Flex-Gap zwischen den Spans (sonst schiebt das jeden Child 6px auseinander). */
.hero-overlay-eyebrow.is-brand {
  display: inline-block;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  gap: 0;
}
.hero-overlay-eyebrow.is-brand .dot {
  margin-right: 6px;
}

/* === HERO-TYPO: smooth linear fluid scaling über alle Viewports ===
   Title: linear von 18px (Viewport 360px) bis 42px (Viewport 1440px).
   Formel: 10px + 2.22vw → ergibt 18 bei 360, 42 bei 1440. Clamp deckelt auf beiden Seiten.
   Lead: linear von 12px (360) bis 16px (1500). Formel: 10.5px + 0.37vw.
   Lead max-width: skaliert von 260px (kleine Viewports) bis 480px (groß), als min/max-clamp.
   Title-Sätze bleiben jeweils auf einer Zeile (white-space: nowrap), Lead ist Blocksatz
   (text-align: justify) ohne Silbentrennung — saubere Block-Optik auf jeder Größe. */
.hero-overlay-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(16px, calc(8.5px + 1.95vw), 36px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: #1a1f2c;
  margin: 0 0 16px;
}
.hero-overlay-title .line {
  display: block;
  white-space: nowrap;
}

.hero-overlay-lead {
  font-size: clamp(11px, calc(9.5px + 0.37vw), 14px);
  line-height: 1.55;
  color: rgba(20, 40, 80, 0.78);
  margin: 0 0 24px;
  max-width: clamp(260px, 38vw, 480px);
  text-align: justify;
  text-justify: inter-word;
  hyphens: manual;
}

.hero-overlay-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* (Mobile/Tablet-CTA-Klon-Idee verworfen — CTAs bleiben im hero-overlay) */

.hero-btn-primary,
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}
.hero-btn-primary {
  background: var(--primary, #0066ff);
  color: #fff;
  border: 1px solid var(--primary, #0066ff);
}
.hero-btn-primary:hover { background: #0052cc; transform: translateY(-1px); }
.hero-btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  color: #1a1f2c;
  border: 1px solid rgba(20, 40, 80, 0.14);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
}
.hero-btn-ghost:hover { background: rgba(255, 255, 255, 0.95); transform: translateY(-1px); }

/* Mobile: Bottom-Gradient für Card-Lesbarkeit + Left-Gradient für Text-Lesbarkeit über Adler */
@media (max-width: 767px) {
  .hero-stage--split::after {
    content: "";
    position: absolute;
    inset: 40% 0 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(248,251,255,0.55) 50%, rgba(248,251,255,0.85) 100%);
    z-index: 2;
    pointer-events: none;
  }
  /* Weißer Verlauf — DEUTLICH abgeschwächt (vorher 0.92 → 0.40), damit das Bild
     nicht mehr stark hinter dem Text durchverblasst. */
  .hero-stage--split::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, rgba(248,251,255,0.40) 0%, rgba(248,251,255,0.28) 45%, rgba(248,251,255,0.10) 70%, rgba(248,251,255,0.0) 100%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    display: block !important;
  }
  .hero-overlay { z-index: 3; }
  /* Mobile Title- und Lead-Größe übernehmen die globale fluid clamp aus der Basis-Regel.
     Lead-max-width KEIN 100%-Override mehr — der Block soll auch hier bei
     clamp(260px, 38vw, 480px) bleiben (gleiche Optik wie Tablet/Desktop). */
  /* CTAs nebeneinander auf Mobile — kompakte Buttons, nicht wrappen */
  .hero-overlay-cta { flex-wrap: nowrap; gap: 8px; }
  .hero-btn-primary, .hero-btn-ghost {
    font-size: 13px;
    padding: 10px 14px;
    flex: 0 1 auto;
    white-space: nowrap;
  }
}

/* === LIQUID GLASS CARDS — jetzt unter dem Bild als Grid === */
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .hero-cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; padding: 32px; }
}
@media (min-width: 1024px) {
  .hero-cards-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 40px 48px;
    max-width: 1440px; margin: 0 auto;
  }
}

/* === BLUEBIRD-STIL: Cards schweben ÜBER dem Hero-Bild ===
   - hero-content liegt absolut über hero-stage
   - Cards sind klein, sehr transparent, einzeln positioniert (Cluster rechts)
   - Mobile: 2 Karten am unteren Bildrand, überlappen */
.hero-pangolin .hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  padding: 0;
  margin: 0;
  max-width: none;
}
.hero-pangolin .hero-content .glass-card { pointer-events: auto; }

/* === BLUEBIRD-EXAKT: 3 Cards horizontal Cluster, unten rechts ===
   - Cards nebeneinander (flex row)
   - Mittlere Card OPAQUE weiß als Highlight (wie Bluebird "Integrated AI Agent")
   - Linke + rechte Card sehr transparent
   - Cards bottom-aligned, mittlere etwas höher
   - Variations: leicht unterschiedliche Größen, Step-Border-Radius bei einer */

.hero-pangolin .hero-content .hero-cards-grid--3 {
  position: absolute !important;
  display: flex !important;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  height: auto;
  padding: 0;
  background: transparent;
}

/* Glass-Card-Override für floating-Modus */
.hero-pangolin .hero-content .hero-cards-grid--3 .glass-card {
  position: relative !important;
  background: rgba(255, 255, 255, 0.40) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  box-shadow: 0 12px 40px rgba(20, 40, 80, 0.10), inset 0 1px 0 rgba(255,255,255,0.7);
  inset: auto !important;
  margin: 0 !important;
  flex-shrink: 0;
  border-radius: 22px;
}

/* MITTE: AI-Agent-Card — Container ist transparent, L-Form wird via ::before pseudo gezeichnet */
.hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* === ↗-Pfeil oben rechts in jeder Card (Bluebird-Echo) === */
.hero-pangolin .hero-content .hero-cards-grid--3 .gc-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 40, 80, 0.06);
  color: #1a1f2c;
  z-index: 2;
  transition: background 160ms ease, transform 160ms ease;
}
.hero-pangolin .hero-content .hero-cards-grid--3 .gc-arrow svg {
  width: 13px;
  height: 13px;
  display: block;
}
.hero-pangolin .hero-content .hero-cards-grid--3 .glass-card:hover .gc-arrow {
  background: rgba(0, 102, 255, 0.12);
  transform: translate(1px, -1px);
}
.hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .gc-arrow {
  background: rgba(20, 40, 80, 0.08);
}

/* === Desktop ≥1280px — Cards floaten ÜBER dem Hero (Bluebird-Stil)
   Wichtig: bei <1280 würde Cards mit Demo-Termin/Konfigurator-Buttons kollidieren — daher dort gestackt-Layout */
@media (min-width: 1280px) {
  .hero-pangolin .hero-content .hero-cards-grid--3 {
    bottom: 6%;
    right: 14%;
    align-items: flex-end;
    gap: 10px;
  }
  /* Card-Reihenfolge: AI-Agent (1), Defense-Engine (2), Globus (3) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter { order: 1; }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield { order: 2; }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe { order: 3; }
  /* Globe: rechte Card — gleiche Höhe + Text-Layout wie Defense-Engine-Card */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe {
    width: 220px !important;
    padding: 14px !important;
    height: 208px;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .globe-wrap {
    /* Gleiche Höhe und Top-Margin wie .shield-stack-wrap → visuelle Ausrichtung */
    width: 80px !important;
    height: 80px !important;
    aspect-ratio: 1 / 1;
    max-width: none;
    max-height: none;
    margin: 0 auto;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .globe-wrap canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
  }
  /* Text-Block zentriert, identische Layout-Werte wie Shield-Card */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-globe-stats {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-mini-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1d1d1f;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-counter-mid {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 26px;
    line-height: 1;
    color: #0066ff;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin: 4px 0 4px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-mini-sub {
    font-size: 11px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  /* Defense-Engine Card — gleiche Font-Stufen wie andere Cards */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1d1d1f;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-headline {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #1d1d1f;
    letter-spacing: -0.01em;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-mini-sub .live-dot {
    width: 6px; height: 6px;
    flex-shrink: 0;
  }
  /* MITTE: AI-Agent-Card — L-Form (links höher, rechts kürzer) wie Bluebird-Card */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter {
    width: 220px !important;
    height: 260px;
    align-self: flex-end;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible;
    border-radius: 0 !important;
    padding: 0 !important;
    /* L-Form: links höher (top-left bei y=0), rechts startet bei y=40%
       Rounded outer corners + concave inner corner */
    --ai-bg: rgba(255, 255, 255, 0.96);
  }
  /* Eigentliche L-Form als ::before — hat bg, drop-shadow, clip-path */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ai-bg);
    filter: drop-shadow(0 16px 36px rgba(20, 40, 80, 0.18));
    /* L-Form path (Tab 20 %, Inner-Corner als BOGEN/Rutsche):
       - 220 × 260 px Card
       - Tab oben links: 110 px breit, 52 px hoch (20 %)
       - Inner-Corner: GROSSER Bogen (Radius 38) — fließt wie eine Rutsche
       - Tab top-right: kleiner Radius (14) → fließt direkt in den Bogen
       - keine gerade Tab-Right-Kante mehr */
    /* Alle Außenecken einheitlich Radius 22 — passend zu den 22 px border-radius der Schwester-Cards.
       Inner-Concave (an 110,52) bleibt für die L-Form-Charakteristik. */
    clip-path: path('M 22 0 L 88 0 Q 110 0 110 22 Q 110 52 148 52 L 198 52 Q 220 52 220 74 L 220 238 Q 220 260 198 260 L 22 260 Q 0 260 0 238 L 0 22 Q 0 0 22 0 Z');
  }
  /* Inhalt überlagert die L-Form — Icon spannt Tab + Body (überlappt Inner-Corner) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon {
    position: absolute;
    top: 8px;
    left: 14px;
    width: 84px;
    height: 84px;
    z-index: 1;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon img,
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.30));
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon-img {
    display: block;
    object-fit: contain;
  }
  /* SVG-Fallback ist standardmäßig versteckt — wird via onerror eingeblendet */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon-svg {
    display: none;
  }
  /* AI-Agent Text — Bluebird-Layout: Titel direkt unter dem L-Bruch, Description darunter */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-text {
    position: absolute;
    top: 110px;            /* startet knapp unter dem Icon, das bis ~92px reicht */
    bottom: 16px;
    left: 18px;
    right: 18px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* Texte sitzen im oberen Body-Bereich */
    align-items: flex-start;       /* links-bündig */
    text-align: left;
    gap: 10px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-claim {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0066ff;
    margin: 0 0 4px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1d1d1f;
    margin: 0;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-desc {
    font-size: 12px;
    line-height: 1.4;
    color: #6e6e73;
    margin: 0;
  }
  /* SVG-Icon (Server-Rack) immer sichtbar — kein onerror-Toggle mehr nötig */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon-svg.gc-ai-icon-svg--always {
    display: block;
  }
  /* Pfeil über der ::before-Form positionieren — knapp unter Tab-Bruch (y=52) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .gc-arrow {
    z-index: 2;
    top: 64px;        /* knapp unter dem Tab-Bruch (y=52) */
    right: 14px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .gc-counter-big {
    font-size: 40px;
    margin: 4px 0 6px;
    color: #0066ff;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .gc-mini-eyebrow { font-size: 9px; }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .gc-mini-sub { font-size: 11px; }

  /* Shield: mittlere Card — composite-Bild (5 Schilde) + Text mittig wie Card 3 */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield {
    width: 220px !important;
    padding: 14px !important;
    height: 208px;
    align-self: flex-end;
    /* Card öffnet das Defense-Engine-Modal → klickbarer Cursor wie auf der Globe-Card */
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    /* Alle vier Ecken einheitlich rund — kein verkürztes border-bottom-left mehr */
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .shield-stack-wrap {
    /* Schild-Composite zurück auf "Globus-Augenmaß" — vorher 100% × 80px wirkte
       gegenüber dem 80×80 Globus zu groß (16:9 Bild auf voller Card-Breite). */
    width: 100% !important;
    max-width: 150px;
    height: 70px !important;
    margin: 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .shield-composite {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(20, 40, 80, 0.18));
  }
  /* Shield-Text-Block: zentriert, gleiche Typografie wie Globe-Card (Threat-Aktivität) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-shield-text {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1d1d1f;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-counter-mid {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 26px;
    line-height: 1;
    color: #0066ff;
    font-weight: 600;
    margin: 4px 0 4px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-sub {
    font-size: 11px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.3;
    text-align: center;
  }
}

/* === Tablet-Block entfernt — Mobile-Swipe-Strip (max-width: 1279px) übernimmt diesen Bereich === */

/* === Mobile + Tablet + Schmal-Desktop (<1280px): Cards verlassen den Hero, werden zu horizontalem Swipe-Karussell DARUNTER ===
   - Bricht bei 1280px (passend zum Desktop-min-width:1280px-Breakpoint) — bei <1280 würden Cards mit Demo-Termin/Konfigurator-Buttons kollidieren
   - Hero-Stage zeigt nur Bild + Text-Overlay (sauber, ohne Card-Überlappung)
   - Cards: position:relative in normalem Flow, horizontal scrollbar mit scroll-snap
   - Cards behalten ihre Desktop-Form (L-Form auf der mittleren Card etc.) */
@media (max-width: 1279px) {
  /* Hero-Stage hoch genug für Adler + Headline (oben) + Cards (unten überlappen Füße) */
  .hero-stage--split {
    min-height: 0;
    /* svh statt vh: stabil bei iOS/Android-Adressleisten-Animation, kein Re-Layout beim Scroll */
    height: clamp(580px, 82svh, 720px);
  }

  /* Schild + Kugel in die rechte obere Ecke positionieren — Text-Bereich links bleibt frei.
     Transform scale(1.18) + translateY(-10%): Bild wird leicht hochgezoomt und nach oben
     verschoben, damit Schild+Kugel weiter oben in der Hero-Section sitzen (statt mittig).
     Mobile (≤767) hat eigene, stärkere Transform-Werte (siehe weiter unten). */
  .hero-stage--split .hero-bg-image {
    object-position: 100% 0%;
    transform: scale(1.18) translateY(-10%);
    transform-origin: 100% 0%;
  }

  /* Hero-Overlay sitzt DIREKT über den Cards — Text links, CTAs rechts (auf Höhe der L-Wölbung) */
  .hero-overlay {
    top: auto;
    bottom: calc(16px + 260px + 16px);  /* Cards (260) + bottom-Spacing (16) + Gap (16) */
    left: 16px;
    right: 16px;          /* voll breit, damit CTAs rechts landen können */
    max-width: none;
    transform: none;
    text-align: left;
    z-index: 3;
    display: block;
  }
  /* Text-Block: Eyebrow + Lead links, Title nutzt die globale fluid clamp (siehe oben).
     Title-Sätze bleiben auf einer Zeile (white-space: nowrap), keine Schriftgrößen-Overrides
     mehr, damit das Erscheinungsbild konsistent zum Desktop bleibt. */
  .hero-overlay .hero-overlay-eyebrow { margin-bottom: 4px; max-width: 100%; }
  .hero-overlay .hero-overlay-title { margin: 0 0 6px; }
  /* Lead-Block: max-width kommt aus der globalen Basis-Regel (clamp(260px, 38vw, 480px)).
     Hier nur Margin-Override für die Tablet-Layout-Variante. */
  .hero-overlay .hero-overlay-lead { margin: 0 0 14px; }
  /* CTAs absolut platziert — sitzen direkt in der L-Wölbungs-Notch der ersten Card */
  .hero-overlay .hero-overlay-cta {
    position: absolute;
    bottom: -52px;
    left: 120px;             /* L-Wölbung der ersten Card beginnt hier (ca. 50% der Card-Breite) */
    right: auto;
    width: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
  }
  .hero-overlay .hero-btn-primary,
  .hero-overlay .hero-btn-ghost {
    padding: 8px 12px;
    font-size: 12.5px;
    flex: 0 1 auto;
    white-space: nowrap;
  }
  /* Text-Shadow-Halo entfernt — die weiße Verblassung dahinter war zu stark.
     Lesbarkeit reicht durch leichten Cloud-Bg + dunkle Schriftfarbe ohne Halo. */

  /* Gradient-Mask weg */
  .hero-stage--split::before { display: none; }

  /* Hero-Content bleibt ABSOLUT positioniert — Cards floaten ÜBER dem Adler */
  .hero-pangolin .hero-content {
    position: absolute !important;
    inset: 0 !important;
    z-index: 5;
    pointer-events: none;
    margin-top: 0;
    padding: 0;
  }
  .hero-pangolin .hero-content .glass-card { pointer-events: auto; }

  /* Cards-Grid am ADLER-FUSS-Bereich (Bildunterrand), horizontal scrollbar
     pointer-events: auto damit Touch/Drag-Scroll funktioniert (Parent hat none) */
  .hero-pangolin .hero-content .hero-cards-grid--3 {
    position: absolute !important;
    top: auto !important;
    bottom: 16px !important;
    left: 12px !important;
    right: 12px !important;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 4px;
    pointer-events: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* WICHTIG: pan-x ALLEINE blockt iOS-Safari beim vertikalen Swipen — User konnte
       die Seite vom Hero aus nicht runterscrollen, weil Finger auf den Cards landeten.
       pan-x + pan-y erlaubt beides: Horizontal-Swipe scrollt das Karussell, Vertikal-Swipe
       wird an den Page-Scroll weitergereicht (Browser entscheidet nach initialer Richtung). */
    touch-action: pan-x pan-y;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3::-webkit-scrollbar { display: none; }

  .hero-pangolin .hero-content .hero-cards-grid--3 .glass-card {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
  }
  /* Card-Reihenfolge auch auf Mobile: AI-Agent (1), Defense-Engine (2), Globus (3) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter { order: 1; }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield { order: 2; }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe { order: 3; }

  /* Cards behalten ihre Desktop-Größen — damit L-Form-clip-path und Bilder sauber sitzen */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe {
    width: 220px !important;
    height: 208px !important;
    padding: 14px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .globe-wrap {
    width: 96px !important;
    height: 96px !important;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .globe-wrap canvas {
    width: 100% !important;
    height: 100% !important;
  }
  /* Globe-Card Texte: identisch zur Desktop-Variante (≥1280px) — gleiche Schriftgrößen,
     gleiche Zentrierung, gleiche Tabular-Numerik. */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-globe-stats {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-mini-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1d1d1f;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-counter-mid {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 26px;
    line-height: 1;
    color: #0066ff;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin: 4px 0 4px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-globe .gc-mini-sub {
    font-size: 11px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  /* AI-Agent-Card mit L-Form (gleiche Größe wie Desktop, damit clip-path passt) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter {
    width: 220px !important;
    height: 260px !important;
    padding: 0 !important;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    filter: drop-shadow(0 16px 36px rgba(20, 40, 80, 0.18));
    /* Alle Außenecken einheitlich Radius 22 — passend zu den 22 px border-radius der Schwester-Cards.
       Inner-Concave (an 110,52) bleibt für die L-Form-Charakteristik. */
    clip-path: path('M 22 0 L 88 0 Q 110 0 110 22 Q 110 52 148 52 L 198 52 Q 220 52 220 74 L 220 238 Q 220 260 198 260 L 22 260 Q 0 260 0 238 L 0 22 Q 0 0 22 0 Z');
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon {
    position: absolute;
    top: 8px;
    left: 14px;
    width: 84px;
    height: 84px;
    z-index: 1;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon img {
    width: 100%; height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.30));
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon-svg { display: none; }
  /* Modifier: SVG bleibt immer sichtbar (für Server-Rack-Icon ohne PNG-Fallback) */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-icon-svg.gc-ai-icon-svg--always { display: block; }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-text {
    position: absolute;
    top: 110px;
    bottom: 16px;
    left: 18px;
    right: 18px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1d1d1f;
    margin: 0;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-ai-desc {
    font-size: 12px;
    line-height: 1.4;
    color: #6e6e73;
    margin: 0;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .gc-arrow {
    z-index: 2;
    top: 64px;
    right: 14px;
  }

  /* Defense-Engine Schild-Card */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield {
    width: 220px !important;
    height: 208px !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 22px;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .shield-stack-wrap {
    width: 100% !important;
    height: 100px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .shield-composite {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(20, 40, 80, 0.18));
  }
  /* Defense-Engine-Card Texte: identisch zur Desktop-Variante (≥1280px). */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1d1d1f;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-headline {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #1d1d1f;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-counter-mid {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 26px;
    line-height: 1;
    color: #0066ff;
    font-weight: 600;
    margin: 4px 0 4px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-shield .gc-mini-sub {
    font-size: 11px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.3;
    text-align: center;
    /* override the global inline-flex (causes weird wrap on this single-line label) */
    display: block;
  }
}
.hero-content .glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(20, 40, 80, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  color: #1d1d1f;
  padding: 22px 22px;
  /* keine absolute-Positionierung mehr — alle Karten im Grid */
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
}

/* === Siri-ähnliche Animation für die AI-Swirl-Kugel auf Card 1 ===
   Drei überlagerte Schleifen, leicht versetzt:
   - Slow Spin (sanftes Drehen, 14 s pro Umdrehung)
   - Breathing Scale (subtle 1.0 ↔ 1.05 Pulse, 3.4 s)
   - Glow Pulse (Drop-Shadow intensiviert sich periodisch)
   Bei prefers-reduced-motion: alles aus. */
.gc-ai-icon-img {
  animation:
    gc-ai-spin 14s linear infinite,
    gc-ai-breathe 3.4s ease-in-out infinite,
    gc-ai-glow 3.4s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, filter;
}
@keyframes gc-ai-spin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}
@keyframes gc-ai-breathe {
  0%, 100% { scale: 1; }
  50%      { scale: 1.05; }
}
@keyframes gc-ai-glow {
  0%, 100% { filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.30)); }
  50%      { filter: drop-shadow(0 8px 22px rgba(59, 130, 246, 0.55)) drop-shadow(0 0 12px rgba(125, 211, 252, 0.35)); }
}
@media (prefers-reduced-motion: reduce) {
  .gc-ai-icon-img { animation: none; }
}

.gc-mini-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6e6e73;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gc-mini-headline { font-size: 13px; font-weight: 600; line-height: 1.3; color: #1d1d1f; }
.gc-mini-sub {
  font-size: 12px;
  color: #6e6e73;
  margin-top: 2px;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Live-Indicator-Punkt (pulsiert) */
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255,59,48,0.6);
  animation: livePulse 1.6s ease-out infinite;
  display: inline-block;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,48,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(255,59,48,0); }
}

/* === 1) Headline-Card mit CTAs (oben links) === */
.gc-headline {
  top: 12%;
  left: 4%;
  max-width: 360px;
  padding: 28px 30px;
}
.gc-headline .eyebrow-mini {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #6e6e73;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.gc-headline .gc-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #1d1d1f;
  margin: 0 0 12px;
}
.gc-headline .gc-lead {
  font-size: 14px;
  color: #3c3c43;
  line-height: 1.45;
  margin: 0 0 20px;
}
.gc-cta-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.gc-btn-primary,
.gc-btn-ghost {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 500;
  padding: 10px 18px;
  border-radius: 980px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.gc-btn-primary {
  background: linear-gradient(135deg, #0066ff 0%, #2b8aff 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.32);
}
.gc-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4); }
.gc-btn-ghost {
  background: rgba(255,255,255,0.8);
  color: #1d1d1f;
  border: 1px solid rgba(0,0,0,0.08);
}
.gc-btn-ghost:hover { background: #fff; }

/* === 2) Globus-Card (oben rechts) === */
.gc-globe {
  top: 12%;
  right: 4%;
  width: 260px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
}
.globe-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.globe-live-pill {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 980px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(20, 30, 50, 0.65);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.globe-live-pill .live-dot { width: 6px; height: 6px; }

/* Variante: Pill in der Card-Ecke (links oben), nicht über dem Globus */
.gc-globe .globe-live-pill--corner {
  top: 10px;
  left: 10px;
  z-index: 3;
}
.gc-globe-text { padding: 0 4px; }

/* === Info-Icon (ⓘ) für Globe-Card — global, alle Breiten === */
.gc-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  color: rgba(0, 102, 255, 0.75);
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  /* Größere Hit-Area gegen Flicker (Pseudo-Padding) */
  padding: 4px;
  margin-right: -4px;
  margin-top: -4px;
  margin-bottom: -4px;
  transition: color 160ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.gc-info-btn:hover,
.gc-info-btn:focus-visible,
.gc-info-btn.is-open {
  color: #0066ff;
  outline: none;
}
.gc-info-btn svg { display: block; transition: transform 160ms ease; }
.gc-info-btn:hover svg,
.gc-info-btn:focus-visible svg,
.gc-info-btn.is-open svg { transform: scale(1.1); }
.gc-info-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(2px);
  background: rgba(20, 30, 50, 0.96);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  width: 240px;
  max-width: calc(100vw - 32px);
  white-space: normal;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease 80ms, transform 140ms ease 80ms;
  box-shadow: 0 8px 20px rgba(20, 30, 50, 0.28);
  z-index: 100;
}
.gc-info-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: rgba(20, 30, 50, 0.96);
}
.gc-info-btn:hover .gc-info-tip,
.gc-info-btn:focus-visible .gc-info-tip,
.gc-info-btn.is-open .gc-info-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0ms;
}
/* Auf engen Viewports (Mobile + halbierte Browserfenster <768px): Lead-Text ausblenden,
   spart Platz, Title rutscht automatisch tiefer (hero-overlay ist bottom-anchored) */
/* Tablet/Desktop bis 1279px: Lead-Block schmaler, damit er nicht hinter den Adler läuft.
   Title behält die globale fluid clamp und white-space: nowrap → Sätze immer auf einer Zeile. */
/* Lead-Width-Override für 768–1279 entfernt — vorher max-width: 52 % erzeugte
   ungleichmäßige Block-Umbrüche. Jetzt nutzt Lead die Universal-max-width: 480px. */

@media (max-width: 767px) {
  /* Lead nutzt durchgehend die globale fluid clamp:
     - Schrift: clamp(12px, calc(10.5px+0.37vw), 16px)
     - Breite:  clamp(260px, 38vw, 480px) → schmaler Block, KEIN Volle-Breite-Sprung
       bei der Tablet-Grenze. KEIN max-width-Override mehr hier. */
  .hero-overlay-lead {
    margin: 8px 0 16px !important;
  }
  /* Mobile-Hero-Bild: Schild+Kugel rechts oben angeschlagen.
     scale(1.35) → kleiner als vorher (1.6) damit die Kugel nicht zu groß wirkt.
     translateX(8%) → schiebt das Bild weiter nach rechts, weg vom Text-Overlay.
     translateY(-10%) → leicht nach oben, Schild bleibt sichtbar.
     Origin oben rechts → Skalierung verankert rechts oben. */
  .hero-stage--split .hero-bg-image {
    object-position: 100% 0% !important;
    transform: scale(1.35) translate(8%, -10%) !important;
    transform-origin: 100% 0% !important;
    /* Vertikaler Mask + horizontaler Soft-Fade auf der linken Seite des Schild/Kugel-Bereichs.
       Beide Masks via mask-composite intersect kombiniert → die linke Kante der Kugel wird
       minimal transparent (~25 %), damit die rechten Enden der Lead-Text-Zeilen lesbar bleiben. */
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, #000 1%, #000 99%, transparent 100%),
      linear-gradient(90deg, #000 0%, #000 50%, rgba(0,0,0,0.75) 58%, #000 70%, #000 100%) !important;
    mask-image:
      linear-gradient(180deg, transparent 0%, #000 1%, #000 99%, transparent 100%),
      linear-gradient(90deg, #000 0%, #000 50%, rgba(0,0,0,0.75) 58%, #000 70%, #000 100%) !important;
    -webkit-mask-composite: source-in !important;
    mask-composite: intersect !important;
  }
  /* Overlay bleibt an seiner Default-Position (bottom-anchored, oberhalb der Cards) —
     KEIN top: 32px / bottom: auto Override. Nur seitliche Margins. */
  .hero-overlay {
    left: 18px !important;
    right: 18px !important;
  }
  /* Mobile: Eyebrow kompakt, Title und Lead nutzen die globale fluid clamp.
     KEINE eigenen font-size-Overrides mehr, damit das Erscheinungsbild
     konsistent zum Desktop bleibt. */
  .hero-overlay .hero-overlay-eyebrow {
    margin-bottom: 12px !important;
    max-width: 100% !important;
  }
}

/* Mobile-CTA-Klon: sitzt absolut in der L-Wölbung der AI-Agent-Card und scrollt mit
   ihr horizontal mit. Default (Tablet/Desktop): hidden. */
.hero-cards-cta-mobile { display: none; }

@media (max-width: 767px) {
  /* Original-CTAs im Overlay ausblenden — Mobile nutzt den Klon in der AI-Agent-Card */
  .hero-overlay .hero-overlay-cta { display: none !important; }

  /* CTA-Klon ist absoluter Overlay-Container in der L-Wölbungs-Notch (oben rechts der Card).
     Da .gc-threat-counter position:relative ist, scrollt der Klon mit der Card horizontal mit. */
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .hero-cards-cta-mobile {
    display: flex !important;
    position: absolute;
    top: 6px;
    left: 132px;          /* leicht nach rechts versetzt, nicht am Card-Rand klebend */
    right: auto;
    z-index: 5;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
    padding: 0;
    margin: 0;
  }
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .hero-cards-cta-mobile .hero-btn-primary,
  .hero-pangolin .hero-content .hero-cards-grid--3 .gc-threat-counter .hero-cards-cta-mobile .hero-btn-ghost {
    padding: 8px 12px;
    font-size: 12.5px;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Touch-Devices: Hover-States nicht persistent machen, Click-Toggle via .is-open klappt aber */
@media (hover: none) {
  .gc-info-btn:hover svg,
  .gc-info-btn:focus-visible svg { transform: none; }
  .gc-info-btn:hover .gc-info-tip,
  .gc-info-btn:focus-visible .gc-info-tip {
    opacity: 0;
    transform: translateX(-50%) translateY(2px);
  }
}

/* === Globe-Modal (Detail-Popup, getriggert via Pfeil oben rechts der Globe-Card) === */
.globe-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 18, 35, 0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
  overflow-y: auto;
}
.globe-modal-backdrop.open { opacity: 1; }
.globe-modal-panel {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(10, 18, 35, 0.3);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 280ms cubic-bezier(0.2, 0.9, 0.3, 1.1), opacity 220ms ease;
  padding: 32px;
}
.globe-modal-backdrop.open .globe-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.globe-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 30, 50, 0.06);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #1a1f2c;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
  z-index: 2;
}
.globe-modal-close:hover { background: rgba(20, 30, 50, 0.12); transform: scale(1.05); }
.globe-modal-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.globe-modal-globe-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #f5f8fc 0%, #e8eef5 100%);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.globe-modal-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.globe-modal-globe-wrap .globe-live-pill--corner {
  top: 14px;
  left: 14px;
  font-size: 11px;
  padding: 5px 12px;
}
.globe-modal-content { min-width: 0; }
.globe-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 40, 80, 0.55);
  margin-bottom: 8px;
}
.globe-modal-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1f2c;
  margin: 0 0 12px;
  font-weight: 400;
}
.globe-modal-lead {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(20, 40, 80, 0.72);
  margin: 0 0 24px;
}
.globe-modal-section { margin-bottom: 20px; }
.globe-modal-h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 40, 80, 0.5);
  margin: 0 0 8px;
}
.globe-modal-sources {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #1a1f2c;
}
.globe-modal-sources li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
.globe-modal-sources li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--primary, #0066ff);
  font-weight: 700;
}
.globe-modal-sources a {
  color: #1a1f2c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.globe-modal-sources a:hover {
  color: var(--primary, #0066ff);
  border-bottom-color: rgba(0, 102, 255, 0.3);
}
.globe-modal-sources .ext-icon {
  font-size: 11px;
  color: rgba(20, 40, 80, 0.45);
  margin-left: 2px;
  display: inline-block;
  transition: transform 160ms ease, color 160ms ease;
}
.globe-modal-sources a:hover .ext-icon {
  color: var(--primary, #0066ff);
  transform: translate(1px, -1px);
}
.globe-modal-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.modal-stat {
  background: rgba(20, 40, 80, 0.04);
  border-radius: 12px;
  padding: 14px 16px;
}
.modal-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
  color: #0066ff;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.modal-stat-label {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(20, 40, 80, 0.72);
}
.modal-stat-label sup {
  font-size: 9px;
  color: rgba(20, 40, 80, 0.5);
  font-weight: 700;
  margin-left: 2px;
}
.globe-modal-p {
  font-size: 14px;
  line-height: 1.5;
  color: #1a1f2c;
  margin: 0;
}
.globe-modal-p sup {
  font-size: 9px;
  color: rgba(20, 40, 80, 0.5);
  font-weight: 700;
}
.globe-modal-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 40, 80, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.globe-modal-sourcekey {
  font-size: 11px;
  color: rgba(20, 40, 80, 0.55);
  line-height: 1.5;
}
.globe-modal-sourcekey sup {
  font-size: 9px;
  font-weight: 700;
  margin-right: 2px;
}
.globe-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #0066ff);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 160ms ease, transform 160ms ease;
}
.globe-modal-cta:hover { background: #0052cc; transform: translateY(-1px); }

/* Mobile: 1-Spalten-Layout */
@media (max-width: 768px) {
  .globe-modal-panel { padding: 24px; border-radius: 20px; }
  .globe-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .globe-modal-globe-wrap { width: 100%; max-width: 280px; height: auto; aspect-ratio: 1/1; margin: 0 auto; }
  .globe-modal-stats { grid-template-columns: 1fr; }
  .globe-modal-close { top: 12px; right: 12px; }
}

/* === 3) Live-Threat-Counter (unten links) === */
.gc-threat-counter {
  bottom: 8%;
  left: 4%;
  padding: 22px 26px;
  min-width: 220px;
}
.gc-counter-big {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 56px;
  line-height: 1;
  color: #0066ff;
  letter-spacing: -0.025em;
  margin: 8px 0 12px;
  font-variant-numeric: tabular-nums;
}

/* === 4) Mehrschichtiges Schild — statisches Composite (unten rechts) === */
.gc-shield {
  bottom: 8%;
  right: 4%;
  width: 260px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.shield-stack-wrap {
  position: relative;
  width: 160px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-shield-text { padding: 0; text-align: center; }

/* === MOBILE HERO (< 1280px): Bild kompakt, Cards stacken darunter */
@media (max-width: 1279px) {
  .hero-pangolin {
    min-height: 0;
    padding: 0;
    background: linear-gradient(180deg, #d6e3f0 0%, #e8eef5 100%);
  }
  .hero-bg-picture { display: block; width: 100%; height: 100%; position: absolute; inset: 0; }
  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 65% 35%;
    display: block;
    -webkit-mask-image: none;
    mask-image: none;
  }
  /* hero-content bleibt absolut positioniert (siehe erster Mobile-Block) — keine Static-Override hier */
  /* Display-Text: über dem Bild, oben zentriert */
  .hero-display-text {
    position: absolute;
    top: 8%; left: 50%;
    transform: translateX(-50%);
    font-size: clamp(34px, 10vw, 56px);
    color: rgba(20, 40, 80, 0.28);
    text-shadow: 0 2px 16px rgba(255,255,255,0.45);
    width: 100%;
    z-index: 2;
    pointer-events: none;
  }
  /* Cards: alle relativ + voller Breite, gestackt unter dem Bild */
  .hero-content .glass-card {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    max-width: none !important;
    width: 100%;
    margin: 0;
  }
  .gc-headline {
    margin-top: -40px !important;  /* Headline-Card schiebt sich auf Bild-Unterkante */
    z-index: 5;
  }
  .gc-counter-big { font-size: 48px; }
}

/* === CTA-PANGOLIN (Final-CTA mit Pangolin-Ball als Hintergrund) === */
.cta-pangolin {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #d6e3f0 0%, #e8eef5 50%, #f0f4fa 100%);
}
.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ball weiter nach unten gerückt → freier Raum oben für Text */
  object-position: 50% 95%;
  z-index: 0;
  /* Top/Bottom-Edges weich auslaufen — kein sichtbarer Bruch zur Nachbar-Sektion */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
/* CTA-Content — kein Overlay mehr, kein Glass-Frame.
 * Pangolin bleibt klar sichtbar, Text bekommt nur einen weichen weißen
 * Halo-Schatten für Lesbarkeit über bunten Bild-Bereichen. */
.cta-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 220px;  /* Bottom-Padding gibt dem Ball Platz unter dem Text */
  /* kein Background-Overlay — Pangolin pur */
}
.cta-content .final-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
/* Soft White-Scrim NUR hinter Eyebrow + Headline + Lead — Buttons bleiben außen vor.
   Radial-Gradient → kein harter Rahmen, Bild bleibt sichtbar. */
.cta-content .cta-text-scrim {
  position: relative;
  z-index: 1;
}
.cta-content .cta-text-scrim::before {
  content: "";
  position: absolute;
  inset: -32px -28px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.78) 0%,
    rgba(255,255,255,0.60) 40%,
    rgba(255,255,255,0.28) 70%,
    rgba(255,255,255,0)    92%
  );
  filter: blur(4px);
  border-radius: 50%;
}
/* Text-Halo: weiches Weiß-Glühen um jeden Buchstaben → lesbar auf Pangolin-Ball + hellem BG */
.cta-content .eyebrow {
  color: rgba(20,40,80,0.9);
  text-shadow:
    0 0 10px rgba(255,255,255,0.95),
    0 0 4px rgba(255,255,255,1),
    0 1px 2px rgba(255,255,255,1);
}
.cta-content .eyebrow .dot { color: #0066ff; }
.cta-content h2 {
  color: #1d1d1f;
  text-shadow:
    0 0 18px rgba(255,255,255,0.95),
    0 0 6px rgba(255,255,255,1),
    0 1px 2px rgba(255,255,255,1);
}
.cta-content h2 .accent-blue { color: #0066ff; }
.cta-content .lead {
  color: #1d1d1f;
  max-width: 560px;
  margin: 16px auto 0;
  text-shadow:
    0 0 14px rgba(255,255,255,0.95),
    0 0 4px rgba(255,255,255,1),
    0 1px 2px rgba(255,255,255,1);
}
.cta-content .hero-cta {
  display: flex; gap: 16px; margin-top: 32px;
  flex-wrap: wrap; justify-content: center;
}
/* Ghost-Button auf busy Hintergrund: leicht milchige Pille mit Backdrop-Blur,
   damit „Konfigurator starten →" auf der Schuppenkugel/Schild-Fläche immer sichtbar bleibt. */
.cta-content .btn-ghost {
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  border-color: rgba(20,40,80,0.18);
  color: #1d1d1f;
  box-shadow: 0 6px 18px rgba(20,40,80,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
.cta-content .btn-ghost:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,102,255,0.35);
  color: #0066ff;
}
/* === MOBILE CTA (≤ 768px): Text liegt ÜBER dem Bild im oberen, leeren
 * (hellen) Bereich des Portrait-Bilds — Schild + Ball bleiben darunter sichtbar.
 * Visuell: ein zusammenhängendes Bild-Erlebnis, kein Bruch zwischen Inhalt und Foto.
 */
@media (max-width: 768px) {
  .cta-pangolin {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, #d6e3f0 0%, #e8eef5 100%);
    padding: 0;
    /* WICHTIG: aspect-ratio + max-height kombiniert klemmt die Breite ein
       (z. B. 720 × 0.563 = 405 px Spalte bei 600–768 px Viewport). Stattdessen
       min-height nutzen — Sektion füllt 100 % Breite, wächst nur in der Höhe. */
    min-height: 640px;
  }
  .cta-bg-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
  }
  .cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;  /* override Element-Aspect — füllt Container */
    object-fit: cover;
    object-position: center;
    margin: 0;
    display: block;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .cta-content {
    position: relative;
    z-index: 2;
    padding: 56px 0 32px;
    order: initial;
  }
  .cta-content .final-cta { padding: 0 20px; }
}

/* ===== LOKAL DUNKLE SEKTIONEN (innerhalb body.theme-light) =====
 * Erlaubt einzelne Sektionen einer hellen Seite explizit dunkel zu rendern.
 * Setzt CSS-Variablen lokal zurück + entfernt theme-light-spezifische Schatten.
 */
body.theme-light .theme-dark {
  --bg: #000000;
  --bg-soft: #0a0a0c;
  --bg-card: #111114;
  --bg-card-hover: #161619;
  --fg: #f5f5f7;
  --fg-muted: #86868b;
  --fg-dim: #6e6e73;
  --line: #1d1d1f;
  --line-bright: #2c2c2e;
  background: var(--bg);
  color: var(--fg);
}

/* Final-CTA mit dezent dunklem Verlauf (Original-Look) */
body.theme-light section#contact.theme-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

/* Karten-Schatten zurücknehmen (theme-light fügt sonst Schatten hinzu) */
body.theme-light .theme-dark .carousel-card,
body.theme-light .theme-dark .tile,
body.theme-light .theme-dark .product-tile,
body.theme-light .theme-dark .feature-card,
body.theme-light .theme-dark .trust-item,
body.theme-light .theme-dark .team-card,
body.theme-light .theme-dark .contact-channel,
body.theme-light .theme-dark .contact-form {
  box-shadow: none;
}
body.theme-light .theme-dark .carousel-card:hover,
body.theme-light .theme-dark .product-tile:hover,
body.theme-light .theme-dark .feature-card:hover,
body.theme-light .theme-dark .tile:hover,
body.theme-light .theme-dark .contact-channel:hover,
body.theme-light .theme-dark .team-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

/* Carousel-Pfeile + Dots zurück auf dunkel */
body.theme-light .theme-dark .carousel-arrow {
  background: rgba(20,20,24,0.85);
  border: 1px solid var(--line-bright);
  color: var(--fg);
  box-shadow: none;
}
body.theme-light .theme-dark .carousel-arrow:hover:not(:disabled) {
  background: rgba(40,40,48,0.95);
}
body.theme-light .theme-dark .carousel-dots button { background: rgba(255,255,255,0.22); }
body.theme-light .theme-dark .carousel-dots button:hover { background: rgba(255,255,255,0.45); }
body.theme-light .theme-dark .carousel-dots button.active { background: var(--fg); }

/* Bild-Boxen und Platzhalter wieder dunkel */
body.theme-light .theme-dark .hero-visual,
body.theme-light .theme-dark .page-hero-visual,
body.theme-light .theme-dark .carousel-visual,
body.theme-light .theme-dark .product-tile-visual,
body.theme-light .theme-dark .detail-visual {
  background: linear-gradient(135deg, #0a0a0c 0%, #1a1a1f 100%);
}
body.theme-light .theme-dark .placeholder .ph-icon { background: rgba(255,255,255,0.05); }

/* Form-Inputs dunkel */
body.theme-light .theme-dark .form-group input,
body.theme-light .theme-dark .form-group select,
body.theme-light .theme-dark .form-group textarea {
  background: rgba(255,255,255,0.03);
}

/* Btn-Ghost dunkel */
body.theme-light .theme-dark .btn-ghost { color: var(--fg); }
body.theme-light .theme-dark .btn-ghost:hover { background: var(--bg-card); }

/* ===== TESTIMONIALS (Apple-Style, interaktiver Switcher) =====
 * Weiße „Insel" auf der Startseite. Klick auf Avatar wechselt Zitat + Rolle
 * mit Blur+Scale-Übergang. Hover auf inaktive Avatars zeigt Namen vorab.
 */
.testimonials {
  background: #ffffff;
  color: #1d1d1f;
  padding: 96px 0;
}
@media (min-width: 768px) { .testimonials { padding: 128px 0; } }
.testimonials-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 720px;
}

.testimonial-quote-wrapper {
  position: relative;
  padding: 0 36px;
  width: 100%;
  max-width: 600px;
}
.testimonial-mark {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(64px, 9vw, 96px);
  line-height: 1;
  font-weight: 700;
  color: rgba(0,0,0,0.07);
  user-select: none;
  pointer-events: none;
}
.testimonial-mark-left { left: -8px; top: -28px; }
.testimonial-mark-right { right: -8px; bottom: -52px; }

.testimonial-quote-text {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.45;
  color: #1d1d1f;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
  transition: opacity 0.4s ease-out, filter 0.4s ease-out, transform 0.4s ease-out;
}
.testimonial-quote-text.is-animating {
  opacity: 0;
  filter: blur(4px);
  transform: scale(0.98);
}

.testimonial-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6e6e73;
  text-align: center;
  margin: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.testimonial-role.is-animating {
  opacity: 0;
  transform: translateY(8px);
}

.testimonial-avatars {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  border-radius: 980px;
  font-family: inherit;
  transition: background 0.5s cubic-bezier(0.4,0,0.2,1),
              padding 0.5s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-avatar.active {
  background: #1d1d1f;
  padding: 4px 16px 4px 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}

.testimonial-avatar-photo {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  overflow: hidden;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-avatar.active .testimonial-avatar-photo {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.testimonial-avatar-name {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  color: #1d1d1f;
  transition: max-width 0.4s cubic-bezier(0.4,0,0.2,1),
              margin-left 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease-out,
              color 0.3s;
}
.testimonial-avatar.active .testimonial-avatar-name {
  max-width: 220px;
  margin-left: 10px;
  opacity: 1;
  color: #ffffff;
}

/* Hover-Vorschau nur auf echten Pointer-Geräten — verhindert „klebenden" Hover auf Touch */
@media (hover: hover) and (pointer: fine) {
  .testimonial-avatar:not(.active):hover {
    background: rgba(0,0,0,0.06);
  }
  .testimonial-avatar:not(.active):hover .testimonial-avatar-photo {
    transform: scale(1.05);
  }
  .testimonial-avatar:not(.active):hover .testimonial-avatar-name {
    max-width: 220px;
    margin-left: 10px;
    opacity: 1;
  }
}

/* ===== FOOTER (XM-Cyber-Layout) ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.site-footer .footer-top { padding-top: 64px; padding-bottom: 40px; }

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .footer-main { grid-template-columns: 360px 1fr; gap: 56px; }
}
.footer-brand-link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo { height: 25px; width: auto; display: block; }
.footer-brand-name { font-weight: 700; font-size: 16px; color: var(--fg); letter-spacing: -0.01em; }
.footer-tagline {
  font-size: 14px; color: var(--fg-muted);
  line-height: 1.5; max-width: 280px;
  margin-bottom: 24px;
}

/* === Newsletter-Signup im Footer (kompakt) === */
.footer-newsletter {
  margin-top: 4px;
  max-width: 360px;
}
.footer-newsletter-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.footer-newsletter-hint {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
  margin: 0 0 14px;
}
.footer-newsletter-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}
.footer-newsletter-row input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 980px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.footer-newsletter-row input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-bright, #0066ff);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}
.footer-newsletter-row .btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}
.footer-newsletter-legal {
  font-size: 11.5px;
  color: var(--fg-muted);
  line-height: 1.45;
  margin: 10px 0 0;
}
.footer-newsletter-legal a {
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-newsletter-legal a:hover { color: var(--primary-bright, #0066ff); }
@media (max-width: 540px) {
  .footer-newsletter-row { flex-direction: column; align-items: stretch; }
  .footer-newsletter-row input[type="email"] { flex: 0 0 auto; width: 100%; }
  .footer-newsletter-row .btn { width: 100%; }
}
.footer-cols {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px;
}
/* Tablet bleibt im 2-Col-Layout (mobile-style) bis Desktop greift —
   verhindert klemmige 3-/4-Col-Reihen mit wenig Inhalt pro Spalte */
@media (min-width: 1024px) { .footer-cols { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.footer-col h4 {
  font-size: 14px; font-weight: 600; margin: 0 0 14px;
  color: var(--fg); letter-spacing: -0.01em;
}
.footer-col h4 a { color: inherit; transition: color 0.2s; }
.footer-col h4 a:hover { color: var(--primary-bright); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col li a {
  font-size: 13px; color: var(--fg-muted);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--fg); }

/* Social + Trust-Badges Reihe */
.footer-meta {
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .footer-meta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social .social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-bright);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social .social-icon:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer-social .social-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-trust { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-trust .trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  padding: 8px 14px; border-radius: 980px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-bright);
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Weißer Legal-Bar ganz unten (XM-Cyber-Stil) */
.footer-legalbar {
  background: #f5f5f7;
  color: #1d1d1f;
  border-top: 1px solid var(--line);
}
.footer-legalbar > .container {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 18px; padding-bottom: 18px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .footer-legalbar > .container {
    flex-direction: row; justify-content: space-between; align-items: center;
  }
}
.footer-legalbar a {
  color: #1d1d1f; opacity: 0.7;
  margin-right: 16px;
  transition: opacity 0.2s, color 0.2s;
}
.footer-legalbar a:last-child { margin-right: 0; }
.footer-legalbar a:hover { opacity: 1; color: var(--primary); }

/* Light-Theme Anpassungen für Footer */
body.theme-light .footer-social .social-icon {
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--line);
}
body.theme-light .footer-social .social-icon:hover {
  background: var(--primary); color: #ffffff; border-color: var(--primary);
}
body.theme-light .footer-trust .trust-badge {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--fg);
}
body.theme-light .footer-legalbar {
  background: #ffffff;
}

/* ===== DATACENTER SCROLL HERO (Apple-style frame sequence) ===== */
.dc-scroll {
  height: 180vh; /* ~1.8× viewport — kürzer als zuvor (war 300vh), letzte 2-3 Scroll-Aktionen weg */
  position: relative;
  background: #000;
  margin-top: -56px; /* compensate for sticky header height so animation starts at top */
  padding-top: 56px;
}
.dc-scroll-pin {
  position: sticky;
  top: 0;
  height: 80vh; /* compact, ~20% smaller than full viewport */
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dc-scroll-canvas {
  width: 100%;
  height: 100%;
  display: block;
  /* contain: full image visible, no cropping (sides + top/bottom always shown) */
  object-fit: contain;
  object-position: center;
}
.dc-scroll-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  /* User wollte alles näher an die untere Kante — padding minimal */
  padding-bottom: 10px;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.45) 100%);
}
.dc-scroll-overlay .container { width: 100%; }
.dc-scroll-overlay .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.dc-scroll-overlay h1 {
  /* Noch kompakter (war 34-64) → Block sitzt deutlich tiefer am unteren Rand */
  font-size: clamp(28px, 4.2vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-weight: 700;
  max-width: 720px;
  margin: 0;
  /* Explizit weiß setzen, sonst erbt h1 auf theme-light body die dunkle Foreground-Farbe.
     .accent-datacenter span bleibt blau (von eigener Klasse). */
  color: #fff !important;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.dc-scroll-overlay h1 .accent-datacenter {
  color: var(--accent-datacenter, #0a84ff) !important;
}
.dc-scroll-overlay .dc-scroll-lead {
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  max-width: 580px;
  /* sehr kompakt — Block sitzt direkt an der unteren Kante */
  margin: 8px 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.dc-scroll-overlay .dc-scroll-cta {
  pointer-events: auto;
  margin-top: 0;
}
@media (max-width: 768px) {
  .dc-scroll-overlay .dc-scroll-lead {
    font-size: 14.5px;
    margin: 8px 0 14px;
  }
}
/* Scroll-indicator removed: was overlapping with headline + Apple-style sites
   don't show such hints. Users naturally scroll on hero sections. */
.dc-scroll-indicator { display: none; }

/* Mobile: kompakteres Layout, Text+CTA ans untere Ende verlagert,
   damit nicht so viel ungenutzte schwarze Fläche bleibt. Lead-Text
   wird auf Mobile ausgeblendet — überladen sonst. */
@media (max-width: 768px) {
  .dc-scroll-pin {
    height: 70vh; /* etwas mehr Höhe für das 16:9 Bild + Text-Block am unteren Rand */
  }
  .dc-scroll-overlay {
    /* mehr padding-bottom → Text+CTA rücken weiter Richtung untere visuelle Mitte */
    padding-bottom: 36px;
    align-items: flex-end;
  }
  .dc-scroll-overlay h1 {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.1;
  }
  /* Lead-Text auf Mobile ausblenden — Hero kompakter, weniger überladen */
  .dc-scroll-overlay .dc-scroll-lead {
    display: none;
  }
  .dc-scroll-overlay h1 {
    margin-bottom: 14px;
  }
  /* CTA auf Mobile kompakter (Override des btn-large 14px/16px Defaults) */
  .dc-scroll-overlay .btn-large {
    padding: 11px 20px;
    font-size: 14px;
  }
}

/* Reduced-motion users: static last frame, no scroll-pin */
@media (prefers-reduced-motion: reduce) {
  .dc-scroll {
    height: auto;
    margin-top: 0;
    padding-top: 0;
  }
  .dc-scroll-pin {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('../images/datacenter-scroll/ezgif-frame-240.jpg');
    background-size: cover;
    background-position: center;
  }
  .dc-scroll-canvas { display: none; }
  .dc-scroll-indicator { display: none; }
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  z-index: 99999;
  transition: top 0.2s;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

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

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 999;
  background: rgba(17,17,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  padding: 20px 24px;
  display: none;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .cookie-banner { left: auto; right: 24px; bottom: 24px; }
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  font-size: 13px; color: var(--fg-muted);
  line-height: 1.5; margin-bottom: 12px;
}
.cookie-banner p strong { color: var(--fg); }
.cookie-banner .cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 13px; padding: 8px 16px;
  border-radius: 980px; cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: var(--primary); color: white;
}
.cookie-banner .cookie-decline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line-bright);
}
.cookie-banner a { color: var(--primary-bright); }

/* === Consent-Tool v2 (4 Kategorien, Settings-Panel) === */
.cookie-banner .cookie-banner-inner { display: block; }
.cookie-banner .cookie-summary p { margin-bottom: 14px; }
.cookie-banner .btn { font-size: 13px; padding: 8px 14px; }
.cookie-banner .btn-link {
  background: transparent; border: 0; padding: 8px 4px;
  color: var(--primary-bright); cursor: pointer; font-size: 13px;
}
.cookie-banner .btn-link:hover { text-decoration: underline; }

.cookie-banner .cookie-settings {
  display: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  max-height: 60vh;
  overflow-y: auto;
}
.cookie-banner.show-settings .cookie-settings { display: block; }
.cookie-banner .cookie-settings h3 {
  font-size: 14px; margin: 0 0 12px;
  color: var(--fg);
}
.cookie-banner .cookie-cat {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.cookie-banner .cookie-cat:last-of-type { border-bottom: 0; }
.cookie-banner .cookie-cat input[type="checkbox"] {
  flex-shrink: 0; margin-top: 4px;
  width: 18px; height: 18px;
  cursor: pointer;
}
.cookie-banner .cookie-cat.forced input { cursor: not-allowed; opacity: 0.7; }
.cookie-banner .cookie-cat-body { display: flex; flex-direction: column; gap: 4px; }
.cookie-banner .cookie-cat-title {
  font-size: 13px; font-weight: 600; color: var(--fg);
}
.cookie-banner .cookie-cat-title em {
  font-style: normal; font-weight: 400;
  color: var(--fg-muted); font-size: 12px; margin-left: 4px;
}
.cookie-banner .cookie-cat-desc {
  font-size: 12.5px; color: var(--fg-muted); line-height: 1.45;
}
.cookie-banner .cookie-actions-bottom {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .cookie-banner.show-settings { max-width: 720px; }
}

/* ===== LIGHT THEME (Apple-Style — nur auf body.theme-light)
 * Wird ausschließlich von der Startseite (index.html) genutzt.
 * Alle Unterseiten bleiben dunkel.
 * ===== */
body.theme-light {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-hover: #fbfbfd;
  --fg: #1d1d1f;
  --fg-muted: #6e6e73;
  --fg-dim: #86868b;
  --line: #d2d2d7;
  --line-bright: #b0b0b8;
}

/* Header: helles Frosted Glass */
body.theme-light .site-header {
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
}

/* GAD-Logo ist jetzt farbig (3D-Skalen) — kein Filter mehr nötig.
 * Sieht auf hellen UND dunklen Themes gut aus. */

/* Desktop-Mega-Menu: heller Backdrop matching .search-overlay Light-Theme */
body.theme-light .nav-dropdown .nav-menu {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
body.theme-light .nav-menu a {
  border-bottom-color: rgba(0,0,0,0.08);
}
body.theme-light .nav-menu a:hover { background: transparent; color: var(--primary); }

/* Sprach-Menü bleibt klein und schwebt — kein Mega-Layout */
body.theme-light .nav-lang .lang-menu {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
body.theme-light .lang-menu a:hover { background: rgba(0,0,0,0.05); }
body.theme-light .lang-toggle:hover { background: rgba(0,0,0,0.04); }

/* Mobile-Overlay: weiß */
body.theme-light .nav-mobile { background: rgba(255,255,255,0.97); }

/* Hero: weiß mit zartem Blauschimmer */
body.theme-light .hero {
  background: radial-gradient(ellipse at 50% 30%, #eef3ff 0%, #ffffff 70%);
}

/* Bild-Platzhalter (Hero, Carousel, Tiles, Detail) — helle Verläufe */
body.theme-light .hero-visual,
body.theme-light .page-hero-visual,
body.theme-light .carousel-visual,
body.theme-light .product-tile-visual,
body.theme-light .detail-visual {
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
}

/* Carousel-Pfeile + Dots auf hellem Grund */
body.theme-light .carousel-arrow {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: var(--fg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
body.theme-light .carousel-arrow:hover:not(:disabled) {
  background: #ffffff;
}
body.theme-light .carousel-dots button { background: rgba(0,0,0,0.18); }
body.theme-light .carousel-dots button:hover { background: rgba(0,0,0,0.4); }
body.theme-light .carousel-dots button.active { background: var(--fg); }

/* Karten/Kacheln: weiß mit Hairline-Border + sanfter Schatten */
body.theme-light .carousel-card,
body.theme-light .tile,
body.theme-light .product-tile,
body.theme-light .feature-card,
body.theme-light .trust-item,
body.theme-light .team-card,
body.theme-light .contact-channel,
body.theme-light .contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
body.theme-light .carousel-card:hover,
body.theme-light .product-tile:hover,
body.theme-light .feature-card:hover,
body.theme-light .tile:hover,
body.theme-light .contact-channel:hover,
body.theme-light .team-card:hover {
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Platzhalter-Icon-Badge */
body.theme-light .placeholder .ph-icon { background: rgba(0,0,0,0.05); }

/* Form-Inputs */
body.theme-light .form-group input,
body.theme-light .form-group select,
body.theme-light .form-group textarea {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--line);
}
body.theme-light .form-group input:focus,
body.theme-light .form-group select:focus,
body.theme-light .form-group textarea:focus {
  background: rgba(43,138,255,0.05);
}

/* Footer & Team-Photo */
body.theme-light .site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
body.theme-light .team-photo {
  background: linear-gradient(135deg, #e8e8ed 0%, #d2d2d7 100%);
}

/* Ghost-Button auf Hell */
body.theme-light .btn-ghost {
  border: 1px solid var(--line-bright);
  color: var(--fg);
}
body.theme-light .btn-ghost:hover { background: #f5f5f7; }

/* Cookie-Banner */
body.theme-light .cookie-banner {
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== TRUST-LIGHT-BAR (Apple iPhone-Pro-Stil)
 * Helle, minimalistische Logo/Branchen-Bar mit kleinen Bullet-Markern.
 * 2 Reihen: Branchen oben + "Powered by" unten, getrennt durch Trennlinie. */
.trust-light-section {
  background: var(--bg);
  padding: 56px 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust-light-section .container { text-align: center; }
.trust-light-eyebrow {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 28px;
}
.trust-light-eyebrow--small {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  color: var(--fg-dim);
}
.trust-light-divider {
  height: 1px;
  width: 88%;
  max-width: 1200px;
  margin: 36px auto;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(20,40,80,0.10) 20%,
    rgba(20,40,80,0.18) 50%,
    rgba(20,40,80,0.10) 80%,
    transparent 100%);
}
.trust-light-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.trust-light-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: trust-light-scroll 55s linear infinite;
  will-change: transform;
}
.trust-light-marquee--reverse .trust-light-track {
  animation-name: trust-light-scroll-reverse;
}
.trust-light-marquee--small .trust-light-track {
  gap: 44px;
  animation-duration: 65s;
}
.trust-light-item {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(20, 40, 80, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  line-height: 1;
}
.trust-light-marquee--small .trust-light-item {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 600;
  color: rgba(20, 40, 80, 0.55);
}
/* Echte Brand-Logos — fix zentriert, kein Marquee (nur 3 Logos) */
.trust-light-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 96px);
  padding: 8px 16px 16px;
  flex-wrap: wrap;
}
.trust-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.trust-logo:hover { opacity: 1; }
.trust-logo svg,
.trust-logo img { display: block; height: auto; }
.trust-logo--microsoft svg { width: 130px; }
.trust-logo--ibm img { width: 170px; }
.trust-logo--cisco img { width: 90px; }
@media (max-width: 767px) {
  .trust-light-logos { gap: 24px; padding-bottom: 12px; flex-wrap: wrap; }
  .trust-logo--microsoft svg { width: 100px; }
  .trust-logo--ibm img { width: 130px; }
  .trust-logo--cisco img { width: 70px; }
}
.trust-bullet {
  display: inline-block;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  background: var(--primary, #0066ff);
  opacity: 0.9;
}
.trust-light-marquee--small .trust-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.7;
}
.trust-bullet--circle { border-radius: 50%; }
.trust-bullet--diamond { transform: rotate(45deg); border-radius: 1px; }
.trust-bullet--triangle {
  width: 0; height: 0;
  background: transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 11px solid var(--primary, #0066ff);
}
.trust-light-marquee--small .trust-bullet--triangle {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--primary, #0066ff);
}
.trust-bullet--square { border-radius: 1px; }

@keyframes trust-light-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes trust-light-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.trust-light-marquee:hover .trust-light-track,
.trust-light-marquee.is-touched .trust-light-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .trust-light-track { animation-duration: 180s; }
}

/* ===== WORDMARK BANNER (Bluebird-Stil)
 * Riesige Schriftzüge auf Schwarz, gegenläufig animiert. Verwendet auf referenzen.html. */
.wordmark-banner-section {
  padding: 96px 0 80px;
  overflow: hidden;
}
/* Bare-Variante: nur Marquees, ohne Headline-Block (z. B. Index-Trust-Banner) */
.wordmark-banner-section--bare {
  padding: 56px 0 48px;
}
.wordmark-banner-section .container {
  text-align: center;
  margin-bottom: 40px;
}
/* Lange dünne Trennlinie zwischen Hero-Block und Marquees */
.wordmark-divider {
  height: 1px;
  width: 88%;
  max-width: 1400px;
  margin: 18px auto;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.18) 20%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.18) 80%,
    transparent 100%);
}
.wordmark-banner-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.wordmark-banner-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
}
.wordmark-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.wordmark-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: wordmark-scroll 60s linear infinite;
  will-change: transform;
}
.wordmark-marquee--reverse .wordmark-track {
  animation-name: wordmark-scroll-reverse;
}
.wordmark-marquee--small .wordmark-track {
  animation-duration: 75s;
  gap: 28px;
}
.wordmark-item {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255,255,255,0.95);
  flex-shrink: 0;
}
.wordmark-marquee--small .wordmark-item {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.02em;
}
.wordmark-sep {
  color: var(--primary-bright, #5ac8fa);
  font-size: clamp(20px, 3vw, 36px);
  flex-shrink: 0;
  opacity: 0.6;
}
.wordmark-marquee--small .wordmark-sep {
  color: rgba(255,255,255,0.25);
  font-size: clamp(16px, 2vw, 24px);
}
@keyframes wordmark-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes wordmark-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.wordmark-marquee:hover .wordmark-track,
.wordmark-marquee.is-touched .wordmark-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .wordmark-track { animation-duration: 180s; }
}

/* ===== FAQ — Apple-Style „Questions? Answers."
 * <details>/<summary> für native Accessibility, weiße Sektion mit großer Serif-Headline,
 * dünne Trennlinien zwischen Items, Chevron rotiert beim Aufklappen. */
.faq-section {
  padding: 96px 0 112px;
  background: var(--bg);
  color: var(--fg);
}
@media (max-width: 768px) {
  .faq-section { padding: 72px 0 88px; }
}
.faq-container {
  max-width: 1080px;
}
.faq-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 56px;
  color: var(--fg);
}
.faq-headline-answer {
  color: var(--fg-muted, #6e6e73);
}
@media (max-width: 768px) {
  .faq-headline { margin-bottom: 36px; }
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  outline: none;
  transition: background 160ms ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover {
  background: rgba(0,0,0,0.02);
}
.faq-item > summary:focus-visible {
  outline: 2px solid var(--primary-bright, #5ac8fa);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-question {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.faq-chevron {
  font-size: 24px;
  font-weight: 300;
  color: var(--fg-muted, #6e6e73);
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  transform-origin: center;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 4px 28px;
  max-width: 820px;
}
.faq-answer p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--fg-muted, #424245);
  margin: 0;
}
.faq-answer p strong {
  color: var(--fg);
  font-weight: 600;
}
.faq-item[open] .faq-answer {
  animation: faq-fade-in 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-chevron { transition: none; }
  .faq-item[open] .faq-answer { animation: none; }
}

/* Dark-Theme-Override (falls FAQ mal in einer .theme-dark-Sektion landet) */
body .theme-dark .faq-section,
.faq-section.theme-dark {
  background: var(--bg);
}
body .theme-dark .faq-item > summary:hover,
.theme-dark .faq-item > summary:hover {
  background: rgba(255,255,255,0.04);
}

/* ===== KONFIGURATOR — Apple-Buy-Stil
 * Linke Spalte mit Schritten (Cards), rechte Spalte mit klebriger Summary,
 * Cart-Button im Header zeigt Counter + öffnet Mobile-Drawer. */

/* --- Cart-Button im Header --- */
.konfig-cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}
.konfig-cart-btn:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--line-bright);
}
.konfig-cart-btn svg { display: block; }
.konfig-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--primary, #0066ff);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: scale(0);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.konfig-cart-count.is-active { transform: scale(1); }
@media (max-width: 720px) {
  .konfig-cart-btn { width: 38px; height: 38px; }
}

/* --- Hero --- */
.konfig-hero {
  padding: 48px 0 24px;
  background: var(--bg);
}
.konfig-back {
  display: inline-block;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 160ms ease;
}
.konfig-back:hover { color: var(--fg); }
.konfig-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--fg);
}
.konfig-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-muted);
  max-width: 680px;
  margin: 0;
}

/* --- Layout: 2-Spalten-Grid --- */
.konfig-page {
  padding: 24px 0 96px;
  background: var(--bg);
}
.konfig-grid {
  display: block;
}
@media (min-width: 1024px) {
  .konfig-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: start;
  }
}
.konfig-content { min-width: 0; }

/* --- Schritt --- */
.konfig-step {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.konfig-step:first-child { border-top: 0; padding-top: 24px; }
.konfig-step-header { margin-bottom: 28px; }
.konfig-step-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.konfig-step-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--fg);
}
.konfig-step-header p {
  font-size: 16px;
  color: var(--fg-muted);
  margin: 0;
  max-width: 600px;
}
.konfig-multi-hint {
  display: inline-block;
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary, #0066ff);
  vertical-align: middle;
}

/* --- Optionen-Grid --- */
.konfig-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .konfig-options { grid-template-columns: 1fr 1fr; }
}
.konfig-options--compact { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .konfig-options--compact { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .konfig-options--compact { grid-template-columns: 1fr 1fr 1fr; }
}

/* --- Option-Card --- */
.konfig-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  -webkit-tap-highlight-color: transparent;
}
.konfig-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.konfig-option:hover {
  border-color: var(--line-bright);
  background: rgba(0,0,0,0.015);
}
.konfig-option.is-selected {
  border-color: var(--primary, #0066ff);
  background: rgba(0, 102, 255, 0.04);
  box-shadow: 0 0 0 1px var(--primary, #0066ff);
}
.konfig-option-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}
.konfig-option-icon svg {
  width: 32px; height: 32px;
}
.konfig-option.is-selected .konfig-option-icon {
  background: rgba(0, 102, 255, 0.10);
  color: var(--primary, #0066ff);
}
.konfig-option-body { flex: 1; min-width: 0; }
.konfig-option-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.konfig-pop {
  display: inline-block;
  background: var(--primary, #0066ff);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
}
.konfig-option-meta {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.konfig-option-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
.konfig-option-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-bright);
  margin-top: 2px;
  position: relative;
  transition: border-color 200ms ease, background 200ms ease;
}
.konfig-option.is-selected .konfig-option-check {
  border-color: var(--primary, #0066ff);
  background: var(--primary, #0066ff);
}
.konfig-option.is-selected .konfig-option-check::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
/* Compact-Variante (für Compliance + Add-ons) — kein Icon, kompakter */
.konfig-options--compact .konfig-option {
  padding: 16px;
  gap: 12px;
}
.konfig-options--compact .konfig-option-icon { display: none; }
.konfig-options--compact .konfig-option-body p {
  font-size: 13px;
  margin-top: 4px;
}

/* --- Form (Schritt 8) --- */
.konfig-form {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.konfig-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .konfig-form .form-row { grid-template-columns: 1fr 1fr; }
}
.konfig-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 16px;
}
.konfig-form .form-row label { margin-bottom: 0; }
.konfig-form .req { color: #ff3b30; margin-left: 2px; }
.konfig-form input[type="text"],
.konfig-form input[type="email"],
.konfig-form input[type="tel"],
.konfig-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.konfig-form input:focus,
.konfig-form textarea:focus {
  outline: none;
  border-color: var(--primary, #0066ff);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
.konfig-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  margin: 16px 0 24px;
}
.konfig-form .form-consent input { margin-top: 3px; flex-shrink: 0; }
.konfig-form .form-consent a { color: var(--primary, #0066ff); }
.konfig-submit { width: 100%; }
.form-status {
  margin-top: 16px;
  font-size: 14px;
}
.form-status--success { color: #34c759; font-weight: 600; }
.form-status--error { color: #ff3b30; }

/* --- Summary-Sidebar (Desktop sticky / Mobile bottom-sheet) --- */
.konfig-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .konfig-summary {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .konfig-summary {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 80;
    border-radius: 16px 16px 0 0;
    border: none;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
    transform: translateY(calc(100% - 0px));
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
  }
  .konfig-summary.is-open { transform: translateY(0); }
}
.konfig-summary-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.konfig-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.konfig-summary-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.01em;
}
.konfig-summary-close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .konfig-summary-close { display: none; }
}
.konfig-summary-list {
  list-style: none;
  margin: 0;
  padding: 14px 20px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.konfig-summary-empty {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  padding: 8px 0;
}
.konfig-summary-group {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 14px 0 6px;
}
.konfig-summary-group:first-child { margin-top: 0; }
.konfig-summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
  padding: 4px 0;
  line-height: 1.4;
}
.konfig-summary-remove {
  background: transparent;
  border: 0;
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 160ms ease, color 160ms ease;
}
.konfig-summary-remove:hover {
  background: rgba(255, 59, 48, 0.10);
  color: #ff3b30;
}
.konfig-summary-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.btn-block { display: block; width: 100%; }
.konfig-summary-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.konfig-summary-reset {
  display: block;
  margin: 10px auto 0;
  font-size: 13px;
  color: var(--fg-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.konfig-summary-reset:hover { color: var(--fg); }

/* Mobile: Body-Scroll-Lock wenn Drawer offen */
body.konfig-summary-open { overflow: hidden; }

/* Mobile-Bottom-Bar (nur wenn Drawer geschlossen) — zeigt sticky Cart-Hint */
@media (max-width: 1023px) {
  .konfig-summary:not(.is-open) {
    transform: translateY(calc(100% - 56px));
  }
  .konfig-summary:not(.is-open) .konfig-summary-list,
  .konfig-summary:not(.is-open) .konfig-summary-footer { opacity: 0; pointer-events: none; }
  .konfig-summary:not(.is-open) .konfig-summary-header {
    border-bottom: 0;
    cursor: pointer;
  }
  .konfig-summary:not(.is-open) .konfig-summary-header::after {
    content: "▴";
    margin-left: auto;
    margin-right: 14px;
    color: var(--fg-muted);
    font-size: 14px;
  }
  .konfig-summary:not(.is-open) .konfig-summary-close { display: none; }
  /* Padding am Body-Bottom, damit Inhalte nicht unter dem Bar verschwinden */
  body:has(.konfig-page) { padding-bottom: 56px; }
}

/* ===== GLOBAL CART — Cart-Button im Header + Drawer ===== */
.global-cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.global-cart-btn:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--line-bright);
}
.global-cart-btn svg { display: block; }
.global-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--primary, #0066ff);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: scale(0);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.global-cart-count.is-active { transform: scale(1); }
@media (max-width: 720px) { .global-cart-btn { width: 38px; height: 38px; } }


/* === Submit-Modal (zentrale Cart-Submission) === */
.global-cart-submit-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}
.global-cart-submit-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}
.global-cart-submit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 200ms ease;
}
.global-cart-submit-modal.is-open .global-cart-submit-backdrop { opacity: 1; }
.global-cart-submit-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 12px));
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.30);
  padding: 28px 28px 24px;
  opacity: 0;
  transition: opacity 200ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.global-cart-submit-modal.is-open .global-cart-submit-panel {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.global-cart-submit-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 18px;
}
.global-cart-submit-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary, #0066ff); margin-bottom: 4px;
}
.global-cart-submit-title {
  font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 0; color: #0a0e1a;
}
.global-cart-submit-close {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid #e5e5ea; color: #6e6e73; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}
.global-cart-submit-close:hover { background: #f5f5f7; color: #0a0e1a; }
.global-cart-submit-form { display: flex; flex-direction: column; gap: 14px; }
.global-cart-submit-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .global-cart-submit-form .form-row { grid-template-columns: 1fr; } }
.global-cart-submit-form label {
  display: flex; flex-direction: column; font-size: 13px; font-weight: 500;
  color: #1d1d1f; gap: 6px;
}
/* Label-Text + Sternchen INLINE — nicht stacken */
.global-cart-submit-form .lbl-text {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.global-cart-submit-form .lbl-text .req {
  margin-left: 1px;
  font-weight: 700;
  color: #ff3b30;
}
/* Guest-Banner (für nicht-eingeloggte Nutzer) */
.gc-guest-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,102,255,0.06);
  border: 1px solid rgba(0,102,255,0.18);
  border-radius: 10px;
  font-size: 13px;
  color: #1d1d1f;
  line-height: 1.4;
}
.gc-guest-banner[hidden] { display: none; }
.gc-guest-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary, #0066ff);
  color: #fff;
  margin-top: 1px;
}
.gc-guest-text { flex: 1 1 auto; font-weight: 400; display: flex; flex-direction: column; gap: 3px; }
.gc-guest-text a { color: var(--primary, #0066ff); font-weight: 600; text-decoration: underline; }
.gc-guest-text a:hover { color: #0052cc; }
.gc-guest-sub { font-size: 12px; color: var(--fg-muted, #6e6e73); font-weight: 400; }
.global-cart-submit-form input[type="text"],
.global-cart-submit-form input[type="email"],
.global-cart-submit-form input[type="tel"],
.global-cart-submit-form textarea {
  font: inherit; font-size: 14.5px; padding: 9px 12px; border: 1px solid #d2d2d7;
  border-radius: 8px; background: #fff; color: #1d1d1f; font-weight: 400;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.global-cart-submit-form input:focus,
.global-cart-submit-form textarea:focus {
  outline: none; border-color: var(--primary, #0066ff);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}
.global-cart-submit-form .req { color: #ff3b30; margin-left: 2px; }
.global-cart-submit-form .form-consent {
  flex-direction: row; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #444; font-weight: 400; line-height: 1.45;
}
.global-cart-submit-form .form-consent input { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 2px; }
.global-cart-submit-form .form-consent a { color: var(--primary, #0066ff); text-decoration: underline; }
.global-cart-submit-btn { margin-top: 4px; }
.global-cart-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.global-cart-submit-form .form-status { font-size: 13px; margin: 4px 0 0; min-height: 18px; }
.global-cart-submit-form .form-status--success { color: #1a8e4a; font-weight: 500; }
.global-cart-submit-form .form-status--error { color: #d6353a; font-weight: 500; }
.global-cart-submit-summary-preview {
  background: #f5f5f7; border-radius: 10px; padding: 12px 14px; margin-bottom: 4px;
}
.gc-summary-services {
  font-size: 12px; font-weight: 600; color: #6e6e73; letter-spacing: 0.01em; margin-bottom: 6px;
}
.gc-summary-services-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px;
}
.gc-summary-services-list li {
  background: #fff; padding: 3px 10px; border-radius: 980px; font-size: 12.5px;
  font-weight: 500; color: #0a0e1a; border: 1px solid #e5e5ea;
}
body.gc-modal-open { overflow: hidden; }

/* Drawer */
.global-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.global-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.global-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 50, 0.40);
  opacity: 0;
  transition: opacity 240ms ease;
  cursor: pointer;
}
.global-cart-drawer.is-open .global-cart-backdrop { opacity: 1; }

.global-cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.14);
}
.global-cart-drawer.is-open .global-cart-panel { transform: translateX(0); }

.global-cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.global-cart-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.global-cart-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0;
}
.global-cart-close {
  background: transparent;
  border: 0;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
}
.global-cart-close:hover { background: rgba(0,0,0,0.06); color: var(--fg); }

.global-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px 16px;
  min-height: 0;
}

.global-cart-empty {
  padding: 64px 8px 32px;
  color: var(--fg);
  text-align: left;
}
.global-cart-empty-headline {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--fg);
}
.global-cart-empty-sub {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  color: var(--fg);
}
.global-cart-empty-sub a {
  color: var(--primary-bright, #0a84ff);
  text-decoration: none;
}
.global-cart-empty-sub a:hover { text-decoration: underline; }
.global-cart-empty-link {
  display: inline-block;
  font-size: 16px;
  color: var(--primary-bright, #0a84ff);
  text-decoration: none;
  font-weight: 500;
}
.global-cart-empty-link:hover { text-decoration: underline; }

/* Item — eine Konfiguration pro Produkt */
.global-cart-item {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  border-left: 3px solid var(--item-accent, var(--primary, #0066ff));
}
.global-cart-item-head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  -webkit-tap-highlight-color: transparent;
}
.global-cart-item-head::-webkit-details-marker { display: none; }
.global-cart-item-info { flex: 1; min-width: 0; }
.global-cart-item-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--item-accent, var(--fg-muted));
  margin-bottom: 2px;
}
.global-cart-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}
.global-cart-item-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.global-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.global-cart-chevron {
  font-size: 20px;
  color: var(--fg-muted);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}
.global-cart-item[open] .global-cart-chevron { transform: rotate(180deg); }

.global-cart-item-detail {
  padding: 4px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.global-cart-group {
  margin-top: 12px;
}
.global-cart-group-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.global-cart-group-item {
  font-size: 13px;
  color: var(--fg);
  padding: 3px 0;
  line-height: 1.4;
}
.global-cart-item-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.global-cart-edit-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--item-accent, var(--primary, #0066ff));
  text-decoration: none;
  transition: gap 160ms ease;
}
.global-cart-edit-btn:hover { text-decoration: underline; }
.global-cart-remove-btn {
  background: transparent;
  border: 0;
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
}
.global-cart-remove-btn:hover {
  background: rgba(255, 59, 48, 0.10);
  color: #ff3b30;
}

.global-cart-footer {
  padding: 16px 20px 22px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  background: #ffffff;
}
.global-cart-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-cart-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.global-cart-clear {
  display: block;
  margin: 10px auto 0;
  font-size: 13px;
  color: var(--fg-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.global-cart-clear:hover { color: #ff3b30; }

/* Body-Scroll-Lock wenn Drawer offen */
body.global-cart-open { overflow: hidden; }

/* Falls auf einer Konfigurator-Seite der alte konfig-cart-btn da ist, verstecken — der globale ersetzt ihn */
.konfig-cart-btn { display: none !important; }

/* ===== KONFIGURATOR-HUB (Produkt-Auswahl) ===== */
.konfig-hub-hero {
  background: var(--bg);
  padding: 56px 0 32px;
}
.konfig-hub-title {
  /* Inter Bold — gleiche Typo wie alle anderen Headlines auf der Seite (war DM Serif) */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
  color: var(--fg);
  max-width: 880px;
}
.konfig-hub-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0;
  line-height: 1.5;
}
.konfig-hub-grid-section {
  background: var(--bg);
  padding: 24px 0 96px;
}
.konfig-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .konfig-hub-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (min-width: 1100px) {
  .konfig-hub-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}
.konfig-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
.konfig-hub-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--primary, #0066ff));
  opacity: 0.85;
}
.konfig-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-accent, var(--primary, #0066ff));
  box-shadow: 0 16px 40px rgba(20, 40, 80, 0.10);
}
.konfig-hub-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent, var(--fg-muted));
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* Eyebrow-Dot: nicht das Unicode-„·"-Zeichen rendern (das hängt baseline-bedingt schief),
   sondern als CSS-Kreis — perfekt vertikal mittig zur Schrift via flex align-items:center. */
.konfig-hub-card-eyebrow .dot {
  font-size: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.konfig-hub-card-title {
  /* Inter — gleiche Typo wie alle anderen Card-Headlines */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--fg);
}
.konfig-hub-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 0 18px;
  flex: 0 0 auto;
}
.konfig-hub-card-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
/* Flexbox-Layout statt absolute Positionierung — ::before als Flex-Item zentriert sich
   per align-items:center perfekt zur Zeile, unabhängig von padding/line-height. */
.konfig-hub-card-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.konfig-hub-card-list li:first-child { border-top: 0; padding-top: 0; }
.konfig-hub-card-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--card-accent, var(--primary, #0066ff));
  opacity: 0.6;
}
.konfig-hub-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--card-accent, var(--primary, #0066ff));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 200ms ease;
}
.konfig-hub-card-cta .arr { transition: transform 200ms ease; }
.konfig-hub-card:hover .konfig-hub-card-cta { gap: 10px; }
.konfig-hub-card:hover .konfig-hub-card-cta .arr { transform: translateX(2px); }

/* Akzentfarben pro Karte */
.konfig-hub-card--datacenter { --card-accent: var(--accent-datacenter, #007aff); }
.konfig-hub-card--cyber { --card-accent: var(--accent-cyber, #5ac8fa); }
.konfig-hub-card--grc { --card-accent: var(--accent-grc, #0a84a8); }
.konfig-hub-card--ai { --card-accent: var(--accent-ai, #34c759); }
.konfig-hub-card--test { --card-accent: var(--accent-test, #a8b0bd); }
.konfig-hub-card--redmind { --card-accent: var(--accent-redmind, #ff3b30); }
/* Wide-Banner-Layout — generisch wiederverwendbar (Datacenter-Banner oben, Beratungs-Banner unten) */
.konfig-hub-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.konfig-hub-card--wide .konfig-hub-card-eyebrow,
.konfig-hub-card--wide .konfig-hub-card-title { margin-bottom: 4px; }
.konfig-hub-card--wide .konfig-hub-card-desc { flex: 1 1 380px; margin: 0; }
.konfig-hub-card--wide .konfig-hub-card-list { display: none; }
.konfig-hub-card--wide .konfig-hub-card-cta {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 18px;
  border-radius: 980px;
  background: var(--card-accent);
  color: #fff;
}
.konfig-hub-card--wide:hover .konfig-hub-card-cta {
  filter: brightness(0.92);
  gap: 6px;
}
.konfig-hub-card--wide > .konfig-hub-card-text-wrap { flex: 0 0 auto; min-width: 200px; }
.konfig-hub-card--wide .konfig-hub-card-shield { display: none; }

/* Beratungs-Banner: neutrales Grau statt blau — dezenter, weniger ablenkend von den Produkt-Cards */
.konfig-hub-card--contact {
  --card-accent: #555a66;
  background: linear-gradient(135deg, rgba(20,40,80,0.05) 0%, rgba(20,40,80,0.01) 100%);
  border-color: rgba(20,40,80,0.14);
}
.konfig-hub-card--contact .konfig-hub-card-eyebrow { color: #6e6e73; }
.konfig-hub-card--contact .konfig-hub-card-cta {
  background: #1d1d1f;
  color: #fff;
}
.konfig-hub-card--contact:hover .konfig-hub-card-cta { background: #3a3a3c; filter: none; }
/* Beratungs-Illustration: Punkte und Linien auf neutrales Grau abstimmen */
.konfig-hub-card--contact .konfig-contact-illustration ellipse,
.konfig-hub-card--contact .konfig-contact-illustration rect,
.konfig-hub-card--contact .konfig-contact-illustration path,
.konfig-hub-card--contact .konfig-contact-illustration line,
.konfig-hub-card--contact .konfig-contact-illustration circle {
  /* SVG-Inline-stroke/fill bleiben (das Markup hat #0066ff im SVG selbst) — wir tönen via opacity neutral */
}

/* Datacenter-Banner: Datacenter-Accent (Blau) + eigene Visual-Illustration */
.konfig-hub-card--datacenter.konfig-hub-card--wide {
  background: linear-gradient(135deg, rgba(10,132,255,0.07) 0%, rgba(10,132,255,0.01) 100%);
  border-color: rgba(10,132,255,0.20);
}
.konfig-dc-illustration {
  flex: 0 0 auto;
  width: 280px;
  height: 100px;
  align-self: center;
}
@media (max-width: 1024px) {
  .konfig-dc-illustration { width: 220px; height: 80px; }
}
@media (max-width: 820px) {
  .konfig-dc-illustration { display: none; }
  /* Wide-Banner ohne SVG: flex-row + flex-wrap erzeugte mit der 280-px-min-height der Basis-Card
     riesigen Leerraum. Auf Mobile: column-Stack, min-height aufheben, Card sizes to content. */
  .konfig-hub-card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 24px 22px;
  }
  .konfig-hub-card--wide .konfig-hub-card-desc { flex: 0 0 auto; }
  .konfig-hub-card--wide .konfig-hub-card-cta { width: auto; }
}
.konfig-contact-illustration {
  flex: 0 0 auto;
  width: 220px;
  height: 88px;
  align-self: center;
}
@media (max-width: 1024px) {
  .konfig-contact-illustration { width: 180px; height: 72px; }
}
@media (max-width: 820px) {
  .konfig-contact-illustration { display: none; }
}
@media (max-width: 720px) {
  .konfig-hub-card--contact { flex-direction: column; align-items: flex-start; }
  .konfig-hub-card--contact .konfig-hub-card-cta { width: auto; }
}

/* Hub-Status-Badge — kleine Auszeichnung UNTEN rechts, damit Shield-Position
   auf allen Karten konsistent oben rechts bleibt */
.konfig-hub-card { position: relative; }
.konfig-hub-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}
.konfig-hub-badge--dev {
  background: rgba(180,130,30,0.14);
  color: #8e6314;
  border: 1px solid rgba(180,130,30,0.25);
}

/* Shield-Icon oben rechts auf jeder Konfigurator-Hub-Karte (transparente PNGs) */
.konfig-hub-card-shield {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 76px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0, 30, 80, 0.20));
  transition: transform 0.3s ease;
}
/* Badge sitzt jetzt unten rechts → Shield bleibt überall an gleicher Position oben */
.konfig-hub-card:hover .konfig-hub-card-shield {
  transform: translateY(-3px) scale(1.05);
}

/* Disabled-Card: nicht klickbar, gedämpft, kein Hover */
.konfig-hub-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
}
.konfig-hub-card.is-disabled:hover {
  transform: none;
  border-color: var(--line, rgba(0,0,0,0.08));
}
.konfig-hub-card-cta--disabled {
  color: var(--fg-muted, #6e6e73) !important;
  font-weight: 500;
}
.konfig-hub-card-cta--disabled .arr { display: none; }

/* RedMind-Status-Pill — sichtbarer „In Entwicklung"-Hinweis im Hero */
.redmind-status-row {
  display: flex;
  margin: 10px 0 18px;
}
.redmind-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(180,130,30,0.12);
  color: #8e6314;
  border: 1px solid rgba(180,130,30,0.28);
}
.redmind-status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d49915;
  box-shadow: 0 0 0 3px rgba(212,153,21,0.20);
}

/* ===== BEWERBUNGS-MODAL ===== */
.bewerbung-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 220ms ease;
}
.bewerbung-modal-backdrop.open {
  display: flex;
  opacity: 1;
}
.bewerbung-modal-panel {
  position: relative;
  background: var(--bg, #fff);
  color: var(--fg, #1d1d1f);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  margin: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.985);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bewerbung-modal-backdrop.open .bewerbung-modal-panel {
  transform: translateY(0) scale(1);
}
.bewerbung-modal-body {
  padding: 40px 40px 36px;
}
@media (max-width: 640px) {
  .bewerbung-modal-backdrop { padding: 16px 12px; }
  .bewerbung-modal-panel { border-radius: 18px; }
  .bewerbung-modal-body { padding: 28px 22px 24px; }
}
.bewerbung-modal-body h2 {
  font-size: clamp(22px, 4vw, 30px);
  margin: 6px 0 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
/* Nur das X-Icon (direkter Kind des Panels) bekommt das Absolute-Positioning.
   Andere .bewerbung-modal-close Elemente (z. B. „Abbrechen" Button im Form) bleiben inline. */
.bewerbung-modal-panel > .bewerbung-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  color: #1d1d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: background 160ms ease, border-color 160ms ease;
}
.bewerbung-modal-panel > .bewerbung-modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
}
.bewerbung-modal-success {
  text-align: center;
  padding: 16px 0 8px;
}
.bewerbung-modal-success-icon {
  color: #34c759;
  display: inline-flex;
  margin-bottom: 14px;
}
.bewerbung-modal-success h3 {
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.bewerbung-modal-success p {
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}
@media (prefers-reduced-motion: reduce) {
  .bewerbung-modal-backdrop, .bewerbung-modal-panel { transition: none; }
}
/* Modal-internes Form: Eigene Card-Styles der .contact-form aufheben,
   damit die Form sich nahtlos in die Modal-Box einfügt */
.bewerbung-modal-body .contact-form {
  background: transparent;
  border: none;
  padding: 0;
  margin: 24px 0 0;
  max-width: none;
  box-shadow: none;
}
body.theme-light .bewerbung-modal-body .contact-form {
  background: transparent;
  border: none;
  box-shadow: none;
}
/* === Modal- + Career-Form: gleiche kompakte Field-Styles (1:1 einheitlich) === */
.bewerbung-modal-body .form-row,
.career-form .form-row { margin-bottom: 10px; gap: 12px; }
.bewerbung-modal-body .form-row:last-of-type,
.career-form .form-row:last-of-type { margin-bottom: 0; }
.bewerbung-modal-body .form-group label,
.career-form .form-group label {
  margin-bottom: 4px;
  font-size: 13px;
}
.bewerbung-modal-body .form-group input,
.bewerbung-modal-body .form-group select,
.bewerbung-modal-body .form-group textarea,
.career-form .form-group input,
.career-form .form-group select,
.career-form .form-group textarea {
  padding: 9px 14px;
  font-size: 14px;
}
.bewerbung-modal-body .form-group textarea,
.career-form .form-group textarea { min-height: 90px; }
.bewerbung-modal-body .form-help,
.career-form .form-help { margin-top: 3px; font-size: 11px; }
.bewerbung-modal-body h2 {
  margin-top: 0;
  margin-bottom: 4px;
}
/* Section-Heading — gleicher kompakter Stil für beide Forms */
.form-section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 18px 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--fg);
}
.form-section-title:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 14px;
}
.bewerbung-modal-body .form-checkbox,
.career-form .form-checkbox { padding: 4px 0; }
.bewerbung-modal-body .hero-cta { margin-top: 18px !important; }
@media (max-width: 640px) {
  .bewerbung-modal-body { padding: 22px 18px 20px; }
}
/* Auf schmalen Viewports: alle inline-grid-template-columns Form-Rows stacken */
@media (max-width: 640px) {
  .bewerbung-modal-body .form-row[style*="grid-template-columns"],
  .career-form .form-row[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
/* (m/w/d)-Suffix in Stellen-Headlines: kleiner gerendert (Referenz: Schwarz CS) */
h1 .mwd, h2 .mwd, h3 .mwd {
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: baseline;
}
/* Custom Select-Pfeil (kein nativer Browser-Doppelpfeil) — beide Forms */
.bewerbung-modal-body .form-group select,
.career-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231d1d1f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ===== Kontakt-Page Layout ===== */
.kontakt-hero-mini { padding: 64px 0 32px; }
.kontakt-hero-mini-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.kontakt-hero-text { max-width: 640px; }
.kontakt-hero-mini h1 {
  font-size: clamp(36px, 4.6vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 8px 0 12px;
}
.kontakt-hero-sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  max-width: 560px;
}
.kontakt-hero-mail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}
.kontakt-hero-mail:hover { border-color: var(--primary-bright); transform: translateY(-1px); }
.kontakt-hero-mail-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.kontakt-hero-mail-addr {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-bright);
}
@media (max-width: 800px) {
  .kontakt-hero-mini { padding: 40px 0 20px; }
  .kontakt-hero-mini-inner { gap: 20px; }
  .kontakt-hero-sub { font-size: 15px; }
  .kontakt-hero-mail { width: 100%; }
}

.kontakt-anfrage { padding: 56px 0 72px; }
@media (max-width: 800px) {
  .kontakt-anfrage { padding: 40px 0 48px; }
}
.kontakt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 32px; }
}
.kontakt-form-col .contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 36px;
}
@media (max-width: 640px) {
  .kontakt-form-col .contact-form { padding: 28px 22px; }
}

/* Sidebar — kompakte Standort-Infobox + Map */
.kontakt-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
@media (max-width: 1024px) {
  .kontakt-sidebar { position: static; }
}
.kontakt-info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
}
.kontakt-info-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 12px;
}
.kontakt-info-card address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
}
.kontakt-info-card address strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.kontakt-info-meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.kontakt-info-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.kontakt-info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}
.kontakt-info-row:last-child { margin-bottom: 0; }
.kontakt-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.kontakt-info-row a {
  color: var(--primary-bright);
  text-decoration: none;
}
.kontakt-info-row a:hover { text-decoration: underline; }

.kontakt-map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.kontakt-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--bg-card);
}
.kontakt-map-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  color: #1d1d1f;
  padding: 6px 12px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
}
.kontakt-map-link:hover { background: #fff; }

/* ===== Über-uns Layout ===== */
/* Über uns — Editorial Question-Hero */
.ueber-hero-question { padding: 96px 0 72px; text-align: center; }
.ueber-hero-question .eyebrow { justify-content: center; }
.ueber-hero-question h1 {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 1000px;
  margin: 16px auto 22px;
  hyphens: manual;
  word-break: normal;
  overflow-wrap: normal;
}
.ueber-hero-question-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
}
@media (max-width: 800px) {
  .ueber-hero-question { padding: 60px 0 44px; }
  .ueber-hero-question-sub { font-size: 16px; }
}

/* Über uns — Image-Hero mit Text-Overlay links + Bild rechts (Server-Schild-Szene) */
.ueber-hero-image {
  position: relative;
  padding: 0;
  background: #eef3f8;
  overflow: hidden;
  isolation: isolate;
}
.ueber-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/ueber-hero.jpg?v=20260511c');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}
.ueber-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ffffff 0%,
    rgba(255,255,255,0.96) 28%,
    rgba(255,255,255,0.78) 45%,
    rgba(255,255,255,0.30) 60%,
    rgba(255,255,255,0) 75%);
  z-index: 1;
}
.ueber-hero-image .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(72px, 10vw, 130px);
  padding-bottom: clamp(72px, 10vw, 130px);
  min-height: clamp(440px, 56vw, 600px);
  display: flex;
  align-items: center;
}
.ueber-hero-image-text {
  max-width: 580px;
}
.ueber-hero-image .eyebrow { color: var(--accent-cyber, #0a84ff); }
.ueber-hero-image h1 {
  font-size: clamp(36px, 5.6vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 14px 0 22px;
  color: #0a0e1a;
  hyphens: manual;
  word-break: normal;
}
.ueber-hero-image-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(20,40,80,0.72);
  margin: 0 0 28px;
  max-width: 540px;
}
.ueber-hero-image-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
@media (max-width: 900px) {
  /* Auf Tablet/Mobile: Bild rutscht etwas mehr nach rechts, Text bleibt lesbar */
  .ueber-hero-image::after {
    background: linear-gradient(180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.40) 30%,
      rgba(255,255,255,0.92) 65%,
      #ffffff 100%);
  }
  .ueber-hero-image::before {
    background-position: 70% top;
    background-size: 140% auto;
  }
  .ueber-hero-image .container {
    align-items: flex-end;
    min-height: clamp(420px, 70vw, 540px);
  }
  .ueber-hero-image-text { max-width: 100%; }
}
@media (max-width: 540px) {
  .ueber-hero-image::before { background-size: 200% auto; background-position: 65% top; }
  .ueber-hero-image .container { min-height: 480px; }
}

/* Über uns — Asymmetric Split-Hero (Heading links, Eckdaten-Card rechts) */
.ueber-hero-split { padding: 80px 0 56px; }
.ueber-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .ueber-hero-grid { grid-template-columns: 1.45fr 1fr; gap: 56px; }
}
.ueber-hero-text h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 12px 0 18px;
  hyphens: manual;
  word-break: normal;
  overflow-wrap: normal;
}
.ueber-hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0;
}

.ueber-hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.ueber-hero-fact {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ueber-hero-fact:last-child { border-bottom: none; }
.ueber-hero-fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ueber-hero-fact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}
@media (max-width: 800px) {
  .ueber-hero-split { padding: 48px 0 36px; }
  .ueber-hero-facts { padding: 6px 18px; }
  .ueber-hero-fact { grid-template-columns: 110px 1fr; padding: 14px 0; gap: 12px; }
  .ueber-hero-fact-value { font-size: 14px; }
}

/* Mission */
.ueber-mission { padding: 56px 0 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ueber-mission-text {
  max-width: 760px;
  margin: 16px 0 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.ueber-mission-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ueber-mission-points li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 22px 60px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--fg);
  position: relative;
}
.ueber-mission-points li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--primary-bright, #0066ff) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='2 7 5.5 10.5 12 4'/></svg>") center / 14px no-repeat;
}
@media (max-width: 800px) {
  .ueber-mission { padding: 44px 0 40px; }
  .ueber-mission-points { grid-template-columns: 1fr; }
}

/* Prinzipien — kompakter, kein Doppel-Spacing zur Leistungs-Sektion */
.ueber-principles { padding: 56px 0 32px; }
@media (max-width: 800px) {
  .ueber-principles { padding: 44px 0 24px; }
}

/* Inline-Prinzipien innerhalb der Mission-Sektion (nahtlos, ohne Trennlinie) */
.ueber-principles-inline { margin-top: 28px; }
.ueber-principles-inline .ueber-principles-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--fg);
}
.ueber-principles-inline .features { margin-top: 0; gap: 12px; }
.ueber-principles-inline .feature-card { padding: 18px 20px; border-radius: 14px; }
.ueber-principles-inline .feature-card .feature-icon { margin-bottom: 10px; }
.ueber-principles-inline .feature-card .feature-icon svg { width: 24px; height: 24px; }
.ueber-principles-inline .feature-card h3 { font-size: 16px; margin-bottom: 4px; }
.ueber-principles-inline .feature-card p { font-size: 13.5px; line-height: 1.5; }
@media (max-width: 800px) {
  .ueber-principles-inline { margin-top: 22px; }
}

/* Mission-Sektion: enger nach unten, Mission-Text-Bottom-Margin reduziert */
.ueber-mission { padding-bottom: 44px; }
.ueber-mission .ueber-mission-text { margin-bottom: 0; }

/* Leistungs-Tiles */
.ueber-services { padding: 32px 0 64px; border-top: 1px solid var(--line); }
.ueber-services-lead {
  max-width: 680px;
  margin: 12px 0 36px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.ueber-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .ueber-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ueber-services-grid { grid-template-columns: 1fr; }
}
.ueber-service-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 24px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.ueber-service-tile:hover {
  border-color: var(--primary-bright, #0066ff);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,255,0.08);
}
.ueber-service-tile h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.ueber-service-tile p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.ueber-service-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 20px;
  color: var(--primary-bright, #0066ff);
  transition: transform 200ms ease;
}
.ueber-service-tile:hover .ueber-service-arrow { transform: translateX(3px); }

/* Trust — kompakt */
.ueber-trust { padding: 56px 0 56px; }
.ueber-trust-lead {
  max-width: 760px;
  margin: 14px 0 32px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.ueber-trust-points {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 920px;
}
@media (max-width: 800px) {
  .ueber-trust-points { grid-template-columns: 1fr; gap: 12px; }
}
.ueber-trust-points li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  padding-left: 36px;
  position: relative;
  min-height: 22px;
}
.ueber-trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-bright, #0066ff) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='2 7 5.5 10.5 12 4'/></svg>") center / 14px no-repeat;
}

/* Team-Lead */
.ueber-team-lead {
  max-width: 760px;
  margin: 12px 0 36px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Standort */
.ueber-standort { padding: 56px 0 64px; }
.ueber-standort-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .ueber-standort-grid { grid-template-columns: 1fr; gap: 28px; }
}
.ueber-standort-text h2 { letter-spacing: -0.01em; margin-top: 8px; }
.ueber-standort-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 12px 0 24px;
}
.ueber-standort-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
}
.ueber-standort-card strong { display: block; font-size: 15px; margin-bottom: 6px; }
.ueber-standort-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-muted);
}
.ueber-standort-card .btn-link { margin-top: 14px; display: inline-block; }
.ueber-standort-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.ueber-standort-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Final CTA */
.ueber-final-cta { padding: 64px 0 80px; text-align: center; }
.ueber-final-cta h2 { letter-spacing: -0.02em; max-width: 760px; margin-left: auto; margin-right: auto; }
.ueber-final-cta p {
  max-width: 640px;
  margin: 16px auto 28px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.55;
}
@media (max-width: 800px) {
  .ueber-final-cta { padding: 48px 0 56px; }
}

/* ===== Anwendungsfälle (Use-Case-Page) ===== */
.usecases-hero { padding: 88px 0 64px; }
.usecases-hero-sub {
  margin: 24px auto 0;
  max-width: 820px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--fg);
  text-align: center;
}
.usecases-hero-body {
  margin: 18px auto 0;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  text-align: center;
}
.usecases-hero h1 {
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(34px, 5.4vw, 60px);
  hyphens: manual;
  word-break: normal;
  overflow-wrap: normal;
}
.usecases-hero .lead { max-width: 820px; margin: 16px auto 0; text-align: center; }
.usecases-hero .hero-cta { margin-top: 32px; }
@media (max-width: 800px) { .usecases-hero { padding: 60px 0 40px; } }

/* === Anwendungsfälle — Image-Hero mit Text links und Icon-Plattform-Szene rechts === */
.usecases-hero-image {
  position: relative;
  padding: 0;
  background: #eef3f8;
  overflow: hidden;
  isolation: isolate;
}
.usecases-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/anwendungsfaelle-hero.webp?v=20260507b');
  /* auto 100%: skaliert auf Container-Höhe, kein Upscale → scharf auf Retina */
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}
.usecases-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ffffff 0%,
    rgba(255,255,255,0.96) 28%,
    rgba(255,255,255,0.78) 45%,
    rgba(255,255,255,0.30) 60%,
    rgba(255,255,255,0) 75%);
  z-index: 1;
}
.usecases-hero-image .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  min-height: clamp(360px, 42vw, 460px);
  display: flex;
  align-items: center;
}
.usecases-hero-image-text {
  max-width: 560px;
}
.usecases-hero-image .eyebrow { color: var(--accent-cyber, #0a84ff); }
.usecases-hero-image h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 12px 0 16px;
  color: #0a0e1a;
  text-align: left;
  hyphens: manual;
  word-break: normal;
  max-width: 100%;
}
.usecases-hero-image-body {
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.6;
  color: rgba(20,40,80,0.72);
  margin: 0 0 24px;
  max-width: 520px;
}
.usecases-hero-image .hero-cta {
  margin-top: 0;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .usecases-hero-image::after {
    background: linear-gradient(180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.40) 30%,
      rgba(255,255,255,0.92) 65%,
      #ffffff 100%);
  }
  .usecases-hero-image::before {
    /* Mobile: weiter cover, weil hier kein Retina-Upscale-Problem entsteht */
    background-position: 70% top;
    background-size: cover;
  }
  .usecases-hero-image .container {
    align-items: flex-end;
    min-height: clamp(360px, 60vw, 480px);
  }
  .usecases-hero-image-text { max-width: 100%; }
  .usecases-hero-image h1 { text-align: left; }
}
@media (max-width: 540px) {
  .usecases-hero-image::before { background-size: cover; background-position: 60% top; }
  .usecases-hero-image .container { min-height: 420px; }
}

.usecases-intro { padding: 56px 0 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usecases-intro h2 { letter-spacing: -0.015em; max-width: 820px; }
.usecases-intro p {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Filter-Chips */
.usecases-grid-section { padding: 56px 0 64px; }
.usecases-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.uc-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  padding: 9px 16px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.005em;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.uc-chip:hover { border-color: var(--primary-bright, #0066ff); color: var(--primary-bright, #0066ff); }
.uc-chip.is-active {
  background: var(--primary-bright, #0066ff);
  border-color: var(--primary-bright, #0066ff);
  color: #fff;
}

/* Use-Case Karussell — Apple-Style horizontal scroll */
.uc-carousel-wrap { position: relative; }
.uc-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 4px 24px;
  margin: 0 -4px;
  scroll-padding-left: 4px;
}
.uc-grid::-webkit-scrollbar { display: none; }

.uc-card {
  flex: 0 0 auto;
  width: clamp(300px, 32%, 400px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
              color 240ms ease,
              border-color 240ms ease,
              transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 240ms ease;
}
@media (max-width: 720px) {
  .uc-card { width: 86vw; max-width: 360px; }
}
.uc-card[hidden] { display: none; }

/* Apple-Style Card-Invert bei Hover (Desktop) */
@media (hover: hover) {
  .uc-card:hover {
    background: #1d1d1f;
    border-color: #1d1d1f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  }
  .uc-card:hover h3 { color: #fff; }
  .uc-card:hover .uc-meta dt { color: rgba(255,255,255,0.55); }
  .uc-card:hover .uc-meta dd { color: rgba(255,255,255,0.92); }
  .uc-card:hover .uc-claim { color: #6da7ff; }
  .uc-card:hover .uc-area {
    color: rgba(255,255,255,0.55);
    border-top-color: rgba(255,255,255,0.14);
  }
  .uc-card:hover .uc-cta { color: #fff; }
  /* Tag-Pillen auf dunklem Hintergrund anpassen */
  .uc-card:hover .uc-tag--monitoring { background: rgba(10,132,255,0.25);  color: #7eb6ff; }
  .uc-card:hover .uc-tag--pentest    { background: rgba(30,64,175,0.25);   color: #93b0f0; }
  .uc-card:hover .uc-tag--redmind    { background: rgba(255,59,48,0.22);   color: #ff8d83; }
  .uc-card:hover .uc-tag--grc        { background: rgba(90,200,250,0.22);  color: #6dd4ee; }
  .uc-card:hover .uc-tag--ai         { background: rgba(52,199,89,0.22);   color: #6fe5a6; }
  .uc-card:hover .uc-tag--testing    { background: rgba(168,176,189,0.22); color: #c8ced8; }
  .uc-card:hover .uc-tag--infra      { background: rgba(180,190,210,0.20); color: #c8d2df; }
  /* Badge */
  .uc-card:hover .uc-badge--dev {
    background: rgba(220,170,60,0.20);
    color: #e8c47b;
    border-color: rgba(220,170,60,0.35);
  }
}
/* Touch-Devices: kein Hover-Toggle, nur leichter Border-Glow */
@media (hover: none) {
  .uc-card:active { border-color: var(--primary-bright, #0066ff); }
}

/* Karussell-Pfeile (Desktop) */
.uc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease;
  font-family: inherit;
  padding: 0;
}
.uc-arrow:hover { background: var(--bg-card-hover); border-color: var(--primary-bright, #0066ff); }
.uc-arrow:disabled { opacity: 0; pointer-events: none; }
.uc-arrow--prev { left: -22px; }
.uc-arrow--next { right: -22px; }
@media (max-width: 900px) { .uc-arrow { display: none; } }

/* Pagination-Dots (kompakter Karussell-Indikator, Desktop + Mobile) */
.uc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.uc-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line-bright, #b0b0b8);
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.uc-dot:hover { background: var(--fg-muted); }
.uc-dot.is-active { background: var(--primary-bright, #0066ff); transform: scale(1.25); }
/* Dots auf Mobile etwas größer für bessere Tap-Targets */
@media (max-width: 720px) {
  .uc-dots { gap: 10px; margin-top: 16px; }
  .uc-dot { width: 9px; height: 9px; }
}

.uc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 980px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.uc-tag--monitoring { background: rgba(10,132,255,0.10);  color: #0066ff; }
.uc-tag--pentest    { background: rgba(30,64,175,0.10);   color: #1e40af; }
.uc-tag--redmind    { background: rgba(255,59,48,0.10);   color: #c92a1f; }
.uc-tag--grc        { background: rgba(10,132,168,0.12);  color: #0a84a8; }
.uc-tag--ai         { background: rgba(52,199,89,0.10);   color: #0e8c5d; }
.uc-tag--testing    { background: rgba(110,110,115,0.12); color: #5e5e63; }
.uc-tag--infra      { background: rgba(80,90,110,0.10);   color: #43536b; }

/* Shield-Logo oben rechts auf jeder Use-Case-Card (außer Infrastruktur) */
.uc-shield {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(20,40,80,0.10));
  transition: filter 240ms ease, transform 240ms ease;
}
@media (hover: hover) {
  .uc-card:hover .uc-shield {
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
    transform: scale(1.04);
  }
}

/* Tag-Row: Tag + optionaler Badge in einer Zeile oben, kein Wrap */
.uc-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 14px;
  /* Schmaler Abstand rechts, damit Badge nicht ins Shield läuft */
  padding-right: 50px;
}
.uc-tag-row .uc-tag { margin-bottom: 0; flex: 0 0 auto; }
.uc-tag-row .uc-badge { flex: 0 0 auto; }

/* Badge (In Entwicklung / In Konzeption) inline neben Tag */
.uc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.uc-badge--dev {
  background: rgba(180,130,30,0.14);
  color: #8e6314;
  border: 1px solid rgba(180,130,30,0.25);
}

.uc-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin: 0 0 16px;
}

.uc-meta {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-meta dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}
.uc-meta dt:first-child { margin-top: 0; }
.uc-meta dd {
  margin: 0 0 4px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg);
}
.uc-claim {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--primary-bright, #0066ff);
  font-weight: 500;
}

.uc-area {
  margin: 0 0 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.uc-area::before {
  content: "Leistungsbereich · ";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
}
.uc-cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-bright, #0066ff);
  text-decoration: none;
  align-self: flex-start;
}
.uc-cta:hover { text-decoration: underline; }

.uc-empty {
  text-align: center;
  margin-top: 32px;
  color: var(--fg-muted);
  font-size: 15px;
}
.uc-empty-reset {
  appearance: none;
  background: none;
  border: 0;
  color: var(--primary-bright, #0066ff);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}

/* Decision Helper */
.usecases-decision { padding: 64px 0 64px; border-top: 1px solid var(--line); }
.usecases-decision h2 { letter-spacing: -0.015em; margin-bottom: 28px; }
.uc-decision-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 880px;
  border-top: 1px solid var(--line);
}
.uc-decision-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.uc-decision-q { font-size: 16px; color: var(--fg); font-weight: 500; }
.uc-decision-list li a {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--primary-bright, #0066ff);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.uc-decision-list li a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .uc-decision-list li { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 0; }
  .uc-decision-list li a { font-size: 13px; }
}

/* Final CTA */
.usecases-final { padding: 72px 0 80px; text-align: center; }
.usecases-final h2 { letter-spacing: -0.02em; max-width: 880px; margin: 0 auto; }
.usecases-final p { max-width: 720px; margin: 16px auto 28px; font-size: 17px; color: var(--fg-muted); line-height: 1.55; }
@media (max-width: 800px) { .usecases-final { padding: 56px 0 64px; } }

/* ===== Lösungen & Leistungen (produkte.html) ===== */
.solutions-hero { padding: 88px 0 56px; }
.solutions-hero h1 {
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(34px, 5.4vw, 60px);
  hyphens: manual;
  word-break: normal;
  overflow-wrap: normal;
}
.solutions-hero .lead { max-width: 820px; margin: 16px auto 0; text-align: center; }
.solutions-hero-statement {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.solutions-hero .hero-cta { margin-top: 32px; }
@media (max-width: 800px) { .solutions-hero { padding: 60px 0 40px; } }

.solutions-intro { padding: 48px 0 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.solutions-intro h2 { letter-spacing: -0.015em; max-width: 880px; }
.solutions-intro p {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ===== Leistungsbereich-Karten — Karussell mit Text+Bild Apple-Style ===== */
.solutions-grid-section { padding: 64px 0 72px; scroll-margin-top: 70px; }
.lp-carousel-wrap { position: relative; margin-top: 32px; }

.lp-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 4px 24px;
  margin: 0 -4px;
  scroll-padding-left: 4px;
}
.lp-grid::-webkit-scrollbar { display: none; }

.lp-card {
  flex: 0 0 auto;
  width: clamp(560px, 78%, 880px);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms ease;
  min-height: 480px;
}
.lp-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,0.12); }

@media (max-width: 800px) {
  /* 92vw war breiter als der Carousel-Wrap → letzte Wörter wurden rechts abgeschnitten.
     Jetzt gleich der inneren Container-Breite, damit Text vollständig sichtbar ist. */
  .lp-card { width: calc(100vw - 56px); max-width: 600px; grid-template-columns: minmax(0, 1fr); min-height: 0; }
  /* min-width: 0 erlaubt Grid-Items, schmaler als ihr Content-Min zu werden — verhindert,
     dass lange Wörter wie "Sicherheitslage" den Track breiter als 1fr machen und Text rechts
     aus der Card schieben. overflow-wrap als Defense-in-Depth für sehr lange Strings. */
  .lp-card > * { min-width: 0; }
  .lp-card .lp-claim,
  .lp-card .lp-desc,
  .lp-card h3 { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
  /* Module-Bullets: keine Hyphenation — Eigennamen wie „Penetration" sollen nicht umbrechen,
     stattdessen kompakter setzen, damit der Badge daneben passt. */
  .lp-card .lp-modules li {
    font-size: 12.5px;
    padding-left: 14px;
    overflow-wrap: break-word;
  }
  .lp-card .lp-modules li::before { top: 7px; }
}
/* Auch im Tablet/Halbfenster-Bereich (801-1100) Bullet-Schrift kompakter halten,
   damit AI-Based Penetration Testing + Beta-Badge auf einer Zeile bleiben. */
@media (min-width: 801px) and (max-width: 1100px) {
  .lp-card .lp-modules li {
    font-size: 12.5px;
    padding-left: 14px;
  }
  .lp-card .lp-modules li::before { top: 7px; }
}

/* Dark Variant — Apple-Schwarz */
.lp-card--dark { background: #1d1d1f; color: #fff; }
/* Light Variant — Apple-Hellgrau */
.lp-card--light { background: #f5f5f7; color: #1d1d1f; }
/* RedMind: dunkel mit dezentem rotem Glow */
.lp-card--redmind { background: linear-gradient(180deg, #1d1d1f 0%, #2a1416 100%); }

.lp-card-text {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}
/* Bei mittleren Breiten (Tablet/halbes Fenster) ist die Text-Spalte schon eng — kompakter padden,
   damit Bullet+Badge inline auf eine Zeile passen statt umzubrechen. */
@media (max-width: 1100px) { .lp-card-text { padding: 28px 24px 24px; } }
@media (max-width: 640px)  { .lp-card-text { padding: 28px 26px 24px; } }

.lp-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 980px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.lp-card--dark .lp-label  { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.85); }
.lp-card--light .lp-label { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.65); }

.lp-card h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.lp-claim {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0;
}
.lp-card--dark  .lp-claim { color: #6da7ff; }
.lp-card--light .lp-claim { color: #0066ff; }
.lp-card--grc                    .lp-claim { color: #5ac8fa; }
.lp-card--testing                .lp-claim { color: #b8bdc8; }
.lp-card--ai.lp-card--dark       .lp-claim { color: #5fd8a4; }
.lp-card--redmind                .lp-claim { color: #ff7d72; }

.lp-desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.lp-card--dark  .lp-desc { color: rgba(255,255,255,0.72); }
.lp-card--light .lp-desc { color: var(--fg-muted); }

.lp-modules {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lp-modules li {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.lp-modules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.lp-card--dark  .lp-modules li { color: rgba(255,255,255,0.82); }
.lp-card--light .lp-modules li { color: var(--fg); }

.lp-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  vertical-align: middle;
}
/* Mobile + Tablet: Badge zeigt „Beta" statt „in Entwicklung", damit er neben dem Text auf einer Zeile bleibt.
   Erst ab ≥1101 px (echtes Desktop) ist die Card breit genug für den vollen Text inline. */
.lp-badge-full { display: inline; }
.lp-badge-short { display: none; }
@media (max-width: 1100px) {
  .lp-badge-full { display: none; }
  .lp-badge-short { display: inline; }
  .lp-badge {
    font-size: 9px;
    padding: 1.5px 6px;
    margin-left: 5px;
    letter-spacing: 0.04em;
  }
}
.lp-card--dark  .lp-badge { background: rgba(232,196,123,0.22); color: #e8c47b; border: 1px solid rgba(232,196,123,0.28); }
.lp-card--light .lp-badge { background: rgba(180,130,30,0.14); color: #8e6314; border: 1px solid rgba(180,130,30,0.25); }

.lp-cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
}
.lp-card--dark  .lp-cta { color: #fff; }
.lp-card--light .lp-cta { color: #0066ff; }
.lp-card--grc     .lp-cta { color: #5ac8fa; }
.lp-card--testing .lp-cta { color: #b8bdc8; }
.lp-card:hover .lp-cta { text-decoration: underline; }

.lp-card-image {
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.12);
}
.lp-card--light .lp-card-image { background: rgba(0,0,0,0.05); }
/* RedMind nutzt denselben dezenten dunklen Overlay wie die anderen dunklen Cards,
   damit die optische Trennung Text|Schild konsistent ist (vorher: roter Tint → keine sichtbare Trennung). */
.lp-card--redmind .lp-card-image { background: rgba(0,0,0,0.12); }
@media (max-width: 800px) {
  /* aspect-ratio: 16/10 hat einen 12 px Gap zwischen Image-Element und Grid-Track erzeugt
     → unter dem Schild war ein dunkler Streifen zur Card-Border sichtbar.
     min-height + align-self: stretch hält das Image bündig zum Card-Boden. */
  .lp-card-image { min-height: 260px; align-self: stretch; }
}
.lp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Schild-Variante: einzelnes Schild zentriert + Contain (kein Crop), transparenter PNG */
.lp-card-image--shield {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: visible;
}
.lp-image-shield {
  width: auto !important;
  height: 100% !important;
  max-width: 94%;
  aspect-ratio: 3 / 2;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  /* opacity:0 + Fade-In via .is-loaded — verhindert harten Pop, wenn Schild verzögert dekodiert */
  opacity: 0;
  transition: opacity 0.24s ease-out, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.lp-image-shield.is-loaded { opacity: 1; }
/* Mobile + Tablet (≤1100): Schild deutlich größer — kleineres Padding + Scale-Faktor.
   Davor war zwischen 801-1023 keine Regel aktiv → Schild wirkte klein, obwohl Platz da war. */
@media (max-width: 1100px) {
  .lp-card-image--shield { padding: 14px; }
  .lp-image-shield { max-width: 100%; transform: scale(1.18); }
  .lp-card:hover .lp-image-shield { transform: translateY(-2px) scale(1.20); }
}

/* Auf Desktop (≥1024px) Schild deutlich größer — Padding kleiner + Scale ~125% */
@media (min-width: 1024px) {
  .lp-card-image--shield { padding: 10px; overflow: visible; }
  .lp-image-shield {
    max-width: 100%;
    transform: scale(1.22);
  }
  .lp-card:hover .lp-image-shield { transform: translateY(-4px) scale(1.25); }
}

/* Rechenzentrum-Block (vor FAQ) — lp-Card Solo, Bullets links, Heading+Text rechts */

/* Solo-Variante einer lp-Card (außerhalb des Karussells) */
.lp-card--solo {
  width: 100% !important;
  max-width: 1100px;
  margin: 0 auto;
  scroll-snap-align: none;
  flex: none;
}
@media (max-width: 800px) {
  .lp-card--solo { width: 100% !important; max-width: 600px; }
}

/* List-only-Variante: links nur Bullets + CTA, kein Heading/Claim/Desc */
.lp-card-text--list-only {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-card-text--list-only .lp-modules { margin: 0 0 24px; }
.lp-card-text--list-only .lp-cta { margin-top: 0; }

/* Textblock-Variante: rechts Heading + Claim + Desc (statt Bild) */
.lp-card-image--textblock {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 40px;
}
.lp-textblock { max-width: 100%; }
.lp-textblock h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}
.lp-textblock .lp-claim {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 16px;
  /* Farbe wird per .lp-card--infra Variante schon gesetzt */
}
.lp-textblock .lp-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
@media (max-width: 800px) {
  .lp-card-image--textblock { padding: 28px 26px; }
  .lp-textblock h3 { font-size: 22px; }
}
@media (max-width: 800px) {
  .lp-card-image--shield { padding: 26px; }
}
.lp-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.lp-card--dark  .lp-image-placeholder { color: rgba(255,255,255,0.18); }
.lp-card--light .lp-image-placeholder { color: rgba(0,0,0,0.20); }
.lp-card--redmind .lp-image-placeholder { color: rgba(255,59,48,0.35); }

/* Subtle accent gradient per variant (matches the RedMind glow pattern) */
.lp-card--cyber   { background: linear-gradient(180deg, #1d1d1f 0%, #142235 100%); }
.lp-card--ai      { background: linear-gradient(180deg, #1d1d1f 0%, #142a1c 100%); }
.lp-card--infra   { background: linear-gradient(180deg, #1d1d1f 0%, #142235 100%); }
.lp-card--grc     { background: linear-gradient(180deg, #1d1d1f 0%, #112730 100%); }
.lp-card--testing { background: linear-gradient(180deg, #1d1d1f 0%, #25272d 100%); }

.lp-card--cyber   .lp-card-image { background: rgba(10,132,255,0.10); }
.lp-card--grc     .lp-card-image { background: rgba(10,132,168,0.12); }
.lp-card--ai      .lp-card-image { background: rgba(52,199,89,0.10); }
.lp-card--testing .lp-card-image { background: rgba(94,94,99,0.10); }
.lp-card--infra   .lp-card-image { background: rgba(10,132,255,0.10); }

.lp-card--cyber   .lp-image-placeholder { color: rgba(10,132,255,0.40); }
.lp-card--grc     .lp-image-placeholder { color: rgba(10,132,168,0.45); }
.lp-card--ai      .lp-image-placeholder { color: rgba(52,199,89,0.45); }
.lp-card--testing .lp-image-placeholder { color: rgba(94,94,99,0.45); }
.lp-card--infra   .lp-image-placeholder { color: rgba(10,132,255,0.40); }

/* Karussell-Pfeile */
.lp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease;
  font-family: inherit;
  padding: 0;
}
.lp-arrow:hover { background: var(--bg-card-hover); border-color: var(--primary-bright, #0066ff); }
.lp-arrow:disabled { opacity: 0; pointer-events: none; }
.lp-arrow--prev { left: -22px; }
.lp-arrow--next { right: -22px; }
/* Mobile/Tablet: Pfeile bleiben sichtbar (kompakter, nahe an den Edges, mit Backdrop-Blur,
   damit sie auch über Card-Content lesbar bleiben). */
@media (max-width: 900px) {
  .lp-arrow {
    width: 38px;
    height: 38px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .lp-arrow--prev { left: 4px; }
  .lp-arrow--next { right: 4px; }
}

/* Pagination-Dots */
.lp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.lp-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line-bright, #b0b0b8);
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.lp-dot:hover { background: var(--fg-muted); }
.lp-dot.is-active { background: var(--primary-bright, #0066ff); transform: scale(1.25); }
/* Mobile: Dots bleiben sichtbar (statt versteckt), damit User sieht „Position 2 von 5" etc. */
@media (max-width: 900px) {
  .lp-dots { margin-top: 14px; }
  .lp-dot { width: 7px; height: 7px; }
}

/* Journey */
.solutions-journey { padding: 64px 0 64px; border-top: 1px solid var(--line); }
.solutions-journey-text {
  max-width: 880px;
  margin: 14px 0 36px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.journey-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: js;
}
@media (max-width: 900px) { .journey-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journey-steps { grid-template-columns: 1fr; } }
.journey-steps li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
  position: relative;
}
.js-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--primary-bright, #0066ff);
  line-height: 1;
  margin-bottom: 8px;
}
.js-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.js-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
}

/* Matrix */
.solutions-matrix { padding: 64px 0 64px; }
.solutions-matrix-text {
  max-width: 820px;
  margin: 14px 0 36px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .matrix-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .matrix-grid { grid-template-columns: 1fr; } }
.matrix-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.matrix-head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.matrix-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.matrix-item li {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}
.matrix-item li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary-bright, #0066ff);
  font-weight: 700;
}

/* Trust */
.solutions-trust { padding: 64px 0 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 1100px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.trust-key {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary-bright, #0066ff);
  margin-bottom: 8px;
  line-height: 1.1;
}
.trust-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted);
}

/* Decision-Helper */
.solutions-decision { padding: 64px 0 64px; }
.solutions-decision h2 { letter-spacing: -0.015em; margin-bottom: 24px; }
.decision-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 920px;
  border-top: 1px solid var(--line);
}
.decision-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.decision-q { font-size: 16px; color: var(--fg); font-weight: 500; }
.decision-list li a {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--primary-bright, #0066ff);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.decision-list li a:hover { text-decoration: underline; }

/* Polish-Variante mit Icon-Spalte + Hover-Highlight */
.decision-list-polish {
  border-top: 0;
  margin: 8px auto 0;
}
.decision-list-polish li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 16px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.decision-list-polish li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 0;
  background: var(--primary-bright, #0066ff);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.18s ease, opacity 0.18s ease;
  opacity: 0;
}
.decision-list-polish li:hover {
  background: rgba(43,138,255,0.05);
  border-bottom-color: transparent;
}
.decision-list-polish li:hover::before {
  height: 60%;
  opacity: 1;
}
.decision-list-polish .decision-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(43,138,255,0.06);
  color: var(--primary-bright, #0066ff);
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.decision-list-polish li:hover .decision-icon {
  background: rgba(43,138,255,0.14);
  transform: scale(1.06);
}
.decision-list-polish .decision-q {
  font-size: 16px;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.4;
}
.decision-list-polish .decision-link {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--primary-bright, #0066ff);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}
.decision-list-polish .decision-link:hover { text-decoration: none; }
.decision-list-polish .decision-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}
.decision-list-polish li:hover .decision-link .decision-arrow {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .decision-list li { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 0; }
  .decision-list li a { font-size: 13px; }
  .decision-list-polish li {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 14px;
    padding: 14px 12px;
  }
  .decision-list-polish .decision-icon { grid-row: 1; }
  .decision-list-polish .decision-q { grid-column: 2; grid-row: 1; }
  .decision-list-polish .decision-link {
    grid-column: 2; grid-row: 2;
    font-size: 13px;
  }
}

/* Light-Theme: dasselbe Schema mit etwas dunkleren Akzenten */
body.theme-light .decision-list-polish li:hover {
  background: rgba(0,102,255,0.04);
}
body.theme-light .decision-list-polish .decision-icon {
  background: rgba(0,102,255,0.06);
  color: var(--primary, #0066ff);
}
body.theme-light .decision-list-polish li:hover .decision-icon {
  background: rgba(0,102,255,0.12);
}

/* Final CTA */
.solutions-final { padding: 72px 0 80px; text-align: center; border-top: 1px solid var(--line); }
.solutions-final h2 { letter-spacing: -0.02em; max-width: 880px; margin: 0 auto; }
.solutions-final p { max-width: 720px; margin: 16px auto 28px; font-size: 17px; color: var(--fg-muted); line-height: 1.55; }
@media (max-width: 800px) { .solutions-final { padding: 56px 0 64px; } }

/* ===== Defense-Engine-Modal (von der Index-Card) ===== */
.hero-pangolin .glass-card.gc-shield[data-defense-modal-open],
.glass-card.gc-shield[data-defense-modal-open] { cursor: pointer; }
.glass-card.gc-shield[data-defense-modal-open]:focus-visible { outline: 2px solid var(--primary-bright, #0066ff); outline-offset: 4px; }

/* ===== AI-Agent-Modal (von der Card 1 — Sphere/Swirl) ===== */
.hero-pangolin .glass-card.gc-ai-agent[data-ai-agent-modal-open],
.glass-card.gc-ai-agent[data-ai-agent-modal-open] { cursor: pointer; }
.glass-card.gc-ai-agent[data-ai-agent-modal-open]:focus-visible { outline: 2px solid var(--primary-bright, #0066ff); outline-offset: 4px; border-radius: 22px; }
/* Mobile-CTA-Buttons in der Card behalten ihren eigenen Cursor */
.glass-card.gc-ai-agent[data-ai-agent-modal-open] a,
.glass-card.gc-ai-agent[data-ai-agent-modal-open] button { cursor: pointer; }

/* Hero-Sphere im Modal — vergrößerte Variante des Card-Icons */
.ai-agent-modal-hero {
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
}
.ai-agent-modal-hero img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 102, 255, 0.32));
  animation: ai-agent-hero-float 6s ease-in-out infinite;
}
@media (max-width: 540px) {
  .ai-agent-modal-hero img { width: 104px; height: 104px; }
}
@keyframes ai-agent-hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .ai-agent-modal-hero img { animation: none; }
}
.ai-agent-modal-eyebrow { justify-content: center; text-align: center; }
.ai-agent-modal #ai-agent-modal-title { text-align: center; }
.ai-agent-modal .defense-modal-lead { text-align: center; margin-left: auto; margin-right: auto; }
/* Listen-Items im AI-Agent-Modal: <strong>-Lead vom beschreibenden Rest klar abheben */
.ai-agent-modal-grid .defense-mod li { font-size: 13.5px; line-height: 1.55; }
.ai-agent-modal-grid .defense-mod li strong { color: var(--fg, #1d1d1f); font-weight: 600; }
.ai-agent-modal-foot {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.55;
  text-align: center;
  max-width: 720px;
  margin: 4px auto 24px;
  padding: 14px 18px;
  background: rgba(0, 102, 255, 0.045);
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 14px;
}

.defense-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 220ms ease;
}
.defense-modal.is-open { opacity: 1; }
.defense-modal[hidden] { display: none; }
.defense-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.defense-modal-panel {
  position: relative;
  background: var(--bg, #fff);
  color: var(--fg, #1d1d1f);
  border-radius: 24px;
  max-width: 920px;
  width: 100%;
  margin: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: translateY(16px) scale(0.985);
  transition: transform 240ms cubic-bezier(0.2,0.8,0.2,1);
  z-index: 1;
}
.defense-modal.is-open .defense-modal-panel { transform: translateY(0) scale(1); }
.defense-modal-body { padding: 44px 44px 40px; }
@media (max-width: 640px) {
  .defense-modal { padding: 16px 12px; }
  .defense-modal-panel { border-radius: 18px; }
  .defense-modal-body { padding: 30px 22px 28px; }
}
.defense-modal-body h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.015em;
  margin: 8px 0 12px;
  line-height: 1.15;
}
.defense-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.85);
  color: #1d1d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: background 160ms ease, border-color 160ms ease;
}
.defense-modal-close:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.18); }

.defense-modal-lead {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 0 28px;
}

.defense-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 900px) { .defense-modal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .defense-modal-grid { grid-template-columns: 1fr; } }

.defense-mod {
  background: var(--bg-card, #fff);
  border: 1px solid var(--line, #d2d2d7);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Shield-Icon oben rechts pro Modul (5 farbige Schilder als Vignette).
   Größer für besseren Wiedererkennungswert — Bilder sind PNG mit Alpha. */
.defense-mod-shield {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.22));
}
@media (max-width: 540px) {
  .defense-mod-shield { width: 44px; top: 10px; right: 10px; }
}
/* Headline darf nicht unter dem Schild durchlaufen */
.defense-mod h3 { padding-right: 70px; }
.defense-mod-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--primary-bright, #0066ff);
  line-height: 1;
  margin-bottom: 6px;
}
.defense-mod h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.defense-mod ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.defense-mod li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted);
  padding-left: 14px;
  position: relative;
}
.defense-mod li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary-bright, #0066ff);
  font-weight: 700;
}
.defense-mod-link {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-bright, #0066ff);
  text-decoration: none;
}
.defense-mod-link:hover { text-decoration: underline; }

.defense-mod--cyber   .defense-mod-num, .defense-mod--cyber   li::before, .defense-mod--cyber   .defense-mod-link { color: #0066ff; }
.defense-mod--grc     .defense-mod-num, .defense-mod--grc     li::before, .defense-mod--grc     .defense-mod-link { color: #0a84a8; }
.defense-mod--ai      .defense-mod-num, .defense-mod--ai      li::before, .defense-mod--ai      .defense-mod-link { color: #0e8c5d; }
.defense-mod--testing .defense-mod-num, .defense-mod--testing li::before, .defense-mod--testing .defense-mod-link { color: #5e5e63; }
.defense-mod--redmind .defense-mod-num, .defense-mod--redmind li::before, .defense-mod--redmind .defense-mod-link { color: #c92a1f; }

.defense-modal-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .defense-modal, .defense-modal-panel { transition: none; }
}

/* ===== Index-Lösungen-Sektion Dark Override ===== */
.solutions-grid-section--dark {
  background: #0a0a0c;
  color: #fff;
}
.solutions-grid-section--dark .eyebrow,
.solutions-grid-section--dark h2,
.solutions-grid-section--dark .lead {
  color: #fff;
}
.solutions-grid-section--dark .eyebrow { color: rgba(255,255,255,0.7); }
.solutions-grid-section--dark .eyebrow .dot { color: var(--primary-bright, #2b8aff); }
.solutions-grid-section--dark .lead { color: rgba(255,255,255,0.78); }
.solutions-grid-section--dark .lp-card--light {
  /* Light Cards bleiben hellgrau — kontrastiert schön gegen schwarzen Sektion-BG */
  background: #f5f5f7;
  color: #1d1d1f;
}
/* Pfeile auf dunklem BG */
.solutions-grid-section--dark .lp-arrow {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.solutions-grid-section--dark .lp-arrow:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.solutions-grid-section--dark .lp-dot {
  background: rgba(255,255,255,0.25);
}
.solutions-grid-section--dark .lp-dot.is-active {
  background: var(--primary-bright, #2b8aff);
}

/* ============================================================
   ACCOUNT / AUTH — Header-Icons + Pages
   ============================================================ */

/* Header rechts: Cart + Login/Avatar — Apple-Style, kompakt, symmetrisch */
.nav-account {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 14px;
}
.nav-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.nav-icon-btn svg { display: block; width: 18px; height: 18px; }
.nav-icon-btn[hidden] { display: none; }
/* Auth-Sichtbarkeit: kritischer Teil steht inline im <head> jeder Seite (gegen Flash).
   Hier nur die langfristige Kopie als Backup. */
html [data-nav-login], html [data-nav-avatar] { display: none; }
html[data-auth="out"] [data-nav-login] { display: inline-flex; }
html[data-auth="in"]  [data-nav-avatar] { display: inline-flex; }
.nav-icon-btn:hover {
  background: rgba(120,120,120,0.12);
  color: var(--primary-bright, #0a84ff);
}
.nav-icon-btn:focus-visible {
  outline: 2px solid var(--primary-bright, #0a84ff);
  outline-offset: 2px;
}
.nav-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--primary-bright, #0a84ff);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}
.nav-cart-badge[hidden] { display: none; }

.nav-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 2px;
  border-radius: 50%;
  background: var(--primary-bright, #0a84ff);
  color: #fff;
  font-weight: 600;
  font-size: 11.5px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-avatar:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10,132,255,0.30);
}
.nav-avatar[hidden] { display: none; }

/* ============================================================
   ACCOUNT-Seiten (login/register/forgot/reset/dashboard/profile)
   ============================================================ */
.account-shell {
  min-height: calc(100vh - 80px);
  padding: 60px 24px 80px;
  background: var(--bg-soft, #f5f5f7);
}
.account-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--line, rgba(0,0,0,0.08));
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.account-card h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.account-sub {
  font-size: 14.5px;
  color: var(--fg-muted, #6e6e73);
  margin: 0 0 28px;
  line-height: 1.5;
}
.account-form { display: flex; flex-direction: column; gap: 14px; }
.account-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.account-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg, #1d1d1f);
  margin-bottom: 5px;
}
.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="tel"],
.account-form input[type="password"],
.account-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line, rgba(0,0,0,0.10));
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--fg);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.account-form input:focus,
.account-form select:focus {
  outline: none;
  border-color: var(--primary-bright, #0a84ff);
  box-shadow: 0 0 0 3px rgba(10,132,255,0.15);
}
.account-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted, #6e6e73);
}
.account-form .checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.account-form button[type="submit"] {
  width: 100%;
  padding: 13px;
  background: var(--primary-bright, #0a84ff);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  margin-top: 8px;
}
.account-form button[type="submit"]:hover { background: #0066cc; }
.account-form button[type="submit"]:active { transform: translateY(1px); }
.account-form button[type="submit"][disabled] { opacity: 0.6; cursor: wait; }

.account-meta {
  margin-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: var(--fg-muted, #6e6e73);
}
.account-meta a { color: var(--primary-bright, #0a84ff); text-decoration: none; }
.account-meta a:hover { text-decoration: underline; }

.account-msg {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 4px;
}
.account-msg.error   { background: rgba(255,69,58,0.10); color: #c92a1f; border: 1px solid rgba(255,69,58,0.25); }
.account-msg.success { background: rgba(52,199,89,0.10); color: #1f8a45; border: 1px solid rgba(52,199,89,0.25); }
.account-msg.info    { background: rgba(10,132,255,0.08); color: #0a4f99; border: 1px solid rgba(10,132,255,0.20); }
.account-msg[hidden] { display: none; }

/* ============================================================
   Account-Dashboard
   ============================================================ */
.account-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 36px 24px 80px;
}
@media (max-width: 800px) {
  .account-layout { grid-template-columns: 1fr; gap: 18px; padding: 24px 16px 56px; }
}
.account-sidebar {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--line, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 20px 14px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
@media (max-width: 800px) { .account-sidebar { position: static; } }
.account-sidebar h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 8px 10px;
}
.account-sidebar nav { display: flex; flex-direction: column; gap: 2px; }
.account-sidebar nav a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.account-sidebar nav a:hover { background: rgba(120,120,120,0.08); }
.account-sidebar nav a.active {
  background: var(--primary-bright, #0a84ff);
  color: #fff;
  font-weight: 500;
}
.account-sidebar .logout-btn {
  margin-top: 12px;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--fg-muted);
  cursor: pointer;
  text-align: left;
}
.account-sidebar .logout-btn:hover { color: var(--fg); border-color: var(--fg-muted); }

.account-main {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--line, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 32px 32px 36px;
  min-height: 400px;
}
.account-main h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.account-main .lead {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0 0 28px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.dashboard-stat {
  background: var(--bg-soft, #f5f5f7);
  border-radius: 12px;
  padding: 18px 20px;
}
.dashboard-stat-num { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; }
.dashboard-stat-label { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

.dashboard-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.dashboard-action {
  display: block;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-radius: 12px;
  text-decoration: none;
  color: var(--fg);
  border: 1px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}
.dashboard-action:hover { border-color: var(--primary-bright, #0a84ff); transform: translateY(-1px); }
.dashboard-action-title { font-weight: 600; font-size: 15px; }
.dashboard-action-desc { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

.verify-banner {
  background: rgba(255,180,30,0.12);
  border: 1px solid rgba(255,180,30,0.35);
  color: #8a5800;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.verify-banner button {
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,180,30,0.5);
  background: #fff;
  color: #8a5800;
  cursor: pointer;
  font-size: 12.5px;
}

/* Account-Listen (Configurations / Saves / Cart / Requests) */
.account-empty {
  padding: 48px 8px;
  color: var(--fg-muted);
  text-align: left;
}
.account-empty h3 {
  font-size: 22px; font-weight: 600; margin: 0 0 12px;
  color: var(--fg); letter-spacing: -0.01em;
}
.account-empty p { font-size: 15px; line-height: 1.55; margin: 0; }
.account-empty-link {
  font-size: 15px; font-weight: 500;
  color: var(--primary-bright, #0a84ff); text-decoration: none;
}
.account-empty-link:hover { text-decoration: underline; }

.account-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.account-item-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-bottom: 6px;
}
.account-item-title {
  font-size: 16px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em;
}
.account-item-meta { font-size: 12.5px; color: var(--fg-muted); margin-top: 2px; }
.account-item-desc {
  font-size: 14px; color: var(--fg); line-height: 1.5; margin: 6px 0 0;
}
.account-item-actions {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 13.5px;
}
.account-item-actions a,
.account-item-actions button {
  font-size: 13.5px;
  padding: 7px 14px;
  background: var(--primary-bright, #0a84ff);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.account-item-actions a:hover,
.account-item-actions button:hover { background: #0066cc; }
.account-item-actions .ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--line);
}
.account-item-actions .ghost:hover {
  background: rgba(0,0,0,0.04); color: var(--fg);
}

.account-status {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(120,120,120,0.10);
  color: var(--fg-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.status-draft                 { background: rgba(120,120,120,0.12); color: #6e6e73; }
.status-sent                  { background: rgba(10,132,255,0.12);  color: #0a4f99; }
.status-received              { background: rgba(10,132,255,0.12);  color: #0a4f99; }
.status-in_review             { background: rgba(255,180,30,0.16);  color: #8a5800; }
.status-clarification         { background: rgba(255,180,30,0.16);  color: #8a5800; }
.status-quote_in_progress     { background: rgba(170,130,255,0.16); color: #5535a3; }
.status-quote_sent            { background: rgba(170,130,255,0.16); color: #5535a3; }
.status-closed                { background: rgba(52,199,89,0.12);   color: #1f8a45; }
.status-rejected              { background: rgba(255,69,58,0.12);   color: #c92a1f; }
.status-interview_scheduled   { background: rgba(52,199,89,0.12);   color: #1f8a45; }
.status-saved                 { background: rgba(10,132,255,0.12);  color: #0a4f99; }

/* Phase 4 Polish: Flash-of-Protected-Content vermeiden — Account-Layout bleibt
   unsichtbar bis account-guard.js den User geprüft hat (gad-authed-Klasse setzt). */
html:not(.gad-authed) body[data-account-page] .account-layout,
html:not(.gad-authed) body[data-account-page] .account-shell {
  visibility: hidden;
}
html.gad-authed body[data-account-page] .account-layout,
html.gad-authed body[data-account-page] .account-shell {
  visibility: visible;
}

/* Sidebar-Items die noch nicht aktiviert sind (Phase 3+) — sichtbar als gegraut */
.account-sidebar nav a[data-disabled] {
  color: var(--fg-muted);
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.account-sidebar nav a[data-disabled]::after {
  content: 'Bald';
  display: inline-block;
  margin-left: 8px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(120,120,120,0.10);
  color: var(--fg-muted);
  vertical-align: middle;
}

/* Floating-Bookmark-Button auf Service-Detail-Pages */
/* bottom 96px schafft Platz für Cookie-Banner (bottom ~16-24px, ~50-60px hoch). */
.service-bookmark-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-card, #fff);
  color: var(--fg, #1d1d1f);
  border: 1px solid var(--line, rgba(0,0,0,0.10));
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  z-index: 90;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.service-bookmark-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.service-bookmark-btn[data-bookmark="1"] {
  background: var(--primary-bright, #0a84ff);
  color: #fff;
  border-color: var(--primary-bright, #0a84ff);
}
.service-bookmark-btn[data-bookmark="1"] svg {
  fill: currentColor;
  stroke: none;
}
.service-bookmark-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (max-width: 640px) {
  .service-bookmark-btn { bottom: 84px; right: 16px; padding: 9px 14px; font-size: 12.5px; }
}

/* Phase 4: Active Sessions Liste */
.session-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.session-item-info { font-size: 13px; line-height: 1.5; flex: 1; min-width: 0; }
.session-item-info strong { font-size: 13.5px; }
.session-item-info .session-meta { color: var(--fg-muted); font-size: 12px; word-break: break-word; }
.session-current-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(52,199,89,0.12);
  color: #1f8a45;
  margin-left: 6px;
  vertical-align: middle;
}

/* ============================================================
   AI SERVICES — Komponenten (2026-05-05)
   Scoped: .ai-service-card · .chip · .ai-journey · .use-case-card
   ============================================================ */

/* Hero-Statement-Strip (kleine Caps unter Lead) */
.hero-statement {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
}

/* Lead-Sub für Sekundär-Text in „kein isoliertes Produkt" */
.lead-sub {
  margin-top: 18px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 720px;
}

/* AI-Service-Card — die 4 Hauptkarten */
.ai-service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, border-color 0.3s;
}
.ai-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52,199,89,0.4);
}
.ai-service-card-head { display: flex; flex-direction: column; gap: 6px; }
.ai-service-card h3 {
  font-size: 19px;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.ai-service-claim {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ai);
}
.ai-service-body {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.ai-service-cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
}

/* Chip / Chip-List */
.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip-list-block { margin-top: 24px; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  white-space: nowrap;
}
.ai-service-card .chip { font-size: 11.5px; padding: 4px 10px; }

/* AI-Journey — 5-Schritte-Pipeline */
.ai-journey {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: ai-journey;
}
@media (min-width: 640px) { .ai-journey { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ai-journey { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
.ai-journey-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.ai-journey-step:hover { border-color: rgba(52,199,89,0.3); transform: translateY(-2px); }
.ai-journey-num {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-ai);
  margin-bottom: 12px;
}
.ai-journey-step h3 {
  font-size: 16px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.ai-journey-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* Section-CTA-Row — Inline-CTA-Block */
.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.section-cta-row p {
  margin: 0;
  font-size: 14.5px;
  color: var(--fg-muted);
  flex: 1;
  min-width: 240px;
}
.section-cta-row p strong { color: var(--fg); font-weight: 600; }
.section-cta-row.section-cta-row-center { justify-content: center; padding: 0; background: none; border: none; }

/* Use-Case-Grid + Use-Case-Card */
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 768px) { .use-case-grid { grid-template-columns: repeat(2, 1fr); } }
.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.use-case-card:hover {
  border-color: rgba(52,199,89,0.3);
  transform: translateY(-2px);
}
.use-case-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ai);
  margin-bottom: 12px;
}
.use-case-card h3 {
  font-size: 19px;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.use-case-meta { margin: 0; }
.use-case-meta dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 14px 0 4px;
}
.use-case-meta dt:first-of-type { margin-top: 0; }
.use-case-meta dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg);
}

/* Governance-Bullets — 2-spaltig auf Desktop, kompakter */
.governance-bullets { margin-top: 32px; }
@media (min-width: 768px) {
  .governance-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}

/* 5er-Variante von features-spec (für Trust/Qualität-Punkte) */
@media (min-width: 1024px) {
  .features-spec.features-spec-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Final-CTA Sekundär-Links */
.final-cta-secondary {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.final-cta-divider {
  color: var(--fg-muted);
  opacity: 0.5;
}
.final-cta-secondary .btn-link { font-size: 14.5px; }

/* ============================================================
   AI SERVICES — Hero-Network + Model-Visual (2026-05-07e)
   Inline-SVG-Visuals, ersetzen die generischen JPG-Bilder
   ============================================================ */

/* Hero-Visual-Container — überschreibt page-hero-visual-Standardgradient */
.ai-hero-visual {
  background: radial-gradient(ellipse at 50% 50%, #0d1410 0%, #08090a 75%) !important;
  border: 1px solid rgba(52,199,89,0.12);
}
.ai-hero-network {
  width: 100%;
  height: 100%;
  display: block;
}

/* Edges — pulsierender Stroke, gestaffelte Delays */
.ai-net-edges line {
  stroke: rgba(52,199,89,0.18);
  stroke-width: 1;
  fill: none;
  animation: ai-edge-pulse 5s ease-in-out infinite;
}
.ai-net-edges line:nth-child(3n) { animation-delay: 0.7s; }
.ai-net-edges line:nth-child(5n) { animation-delay: 1.4s; }
.ai-net-edges line:nth-child(7n) { animation-delay: 2.2s; }
.ai-net-edges line:nth-child(11n) { animation-delay: 3s; }
@keyframes ai-edge-pulse {
  0%, 100% { stroke: rgba(52,199,89,0.12); }
  50%      { stroke: rgba(52,199,89,0.45); }
}

/* Nodes — Glow-Pulse */
.ai-net-nodes circle {
  fill: rgba(52,199,89,0.75);
  filter: drop-shadow(0 0 4px rgba(52,199,89,0.45));
  animation: ai-node-pulse 3.5s ease-in-out infinite;
}
.ai-net-nodes circle:nth-child(2n) { animation-delay: 0.4s; }
.ai-net-nodes circle:nth-child(3n) { animation-delay: 0.9s; }
.ai-net-nodes circle:nth-child(5n) { animation-delay: 1.6s; }
@keyframes ai-node-pulse {
  0%, 100% {
    fill: rgba(52,199,89,0.7);
    filter: drop-shadow(0 0 3px rgba(52,199,89,0.35));
  }
  50% {
    fill: rgba(140,230,160,1);
    filter: drop-shadow(0 0 12px rgba(52,199,89,0.85));
  }
}

/* Layer-Labels */
.ai-net-labels text {
  fill: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-family: inherit;
}

/* Model-Visual — Custom-Model-Sektion (Decision-Boundary) */
.ai-model-visual-wrap {
  background: radial-gradient(ellipse at 50% 50%, #0d1410 0%, #08090a 75%) !important;
  border: 1px solid rgba(52,199,89,0.12);
}
.ai-model-visual { width: 100%; height: 100%; display: block; }
.ai-model-grid line {
  stroke: rgba(255,255,255,0.045);
  stroke-width: 1;
}
.ai-model-cluster circle {
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}
.ai-model-cluster-a circle {
  fill: rgba(52,199,89,0.85);
  filter: drop-shadow(0 0 6px rgba(52,199,89,0.45));
}
.ai-model-cluster-b circle {
  fill: rgba(255,255,255,0.55);
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.15));
}
.ai-model-boundary {
  stroke: rgba(52,199,89,0.7);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(52,199,89,0.35));
  animation: ai-boundary-flow 6s linear infinite;
}
@keyframes ai-boundary-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -56; }
}
.ai-model-labels text {
  fill: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-family: inherit;
}

/* Reduced-Motion: alles still */
@media (prefers-reduced-motion: reduce) {
  .ai-net-edges line,
  .ai-net-nodes circle,
  .ai-model-boundary {
    animation: none;
  }
}

/* Light-Theme — gedämpfte Versionen */
body.theme-light .ai-hero-visual,
body.theme-light .ai-model-visual-wrap {
  background: radial-gradient(ellipse at 50% 50%, #eef4ef 0%, #f5f5f7 75%) !important;
  border-color: rgba(52,199,89,0.18);
}
body.theme-light .ai-net-labels text,
body.theme-light .ai-model-labels text {
  fill: rgba(40,40,45,0.55);
}
body.theme-light .ai-model-grid line {
  stroke: rgba(0,0,0,0.05);
}
body.theme-light .ai-model-cluster-b circle {
  fill: rgba(60,60,70,0.55);
}

/* ============================================================
   GRC & COMPLIANCE — Hero-Stack + Card-Overrides (2026-05-07f)
   Apple-Cyan-Akzent (#5ac8fa) für GRC-Frameworks
   ============================================================ */

/* Hero-Stack-Visual */
.grc-hero-visual {
  background: radial-gradient(ellipse at 50% 50%, #0d1418 0%, #08090a 75%) !important;
  border: 1px solid rgba(90,200,250,0.12);
}
.grc-hero-stack { width: 100%; height: 100%; display: block; }
.grc-stack-cards rect {
  fill: rgba(90,200,250,0.06);
  stroke: rgba(90,200,250,0.35);
  stroke-width: 1.5;
}
.grc-stack-cards .grc-check circle {
  fill: rgba(90,200,250,0.18);
  stroke: rgba(90,200,250,0.7);
  stroke-width: 1.5;
}
.grc-stack-cards .grc-check path {
  stroke: rgba(140,220,255,1);
}
.grc-stack-cards .grc-card-label {
  fill: rgba(255,255,255,0.95);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: inherit;
  dominant-baseline: middle;
}
.grc-stack-cards .grc-card-meta {
  fill: rgba(140,220,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-family: inherit;
  dominant-baseline: middle;
}

/* GRC-Card-Overrides — Cyan-Hover statt AI-Grün */
.grc-card:hover { border-color: rgba(90,200,250,0.45) !important; }
.grc-claim { color: var(--accent-grc) !important; }
.grc-num { color: var(--accent-grc) !important; }
.grc-tag { color: var(--accent-grc) !important; }
.grc-use-case:hover { border-color: rgba(90,200,250,0.35) !important; }
.grc-journey .ai-journey-step:hover { border-color: rgba(90,200,250,0.35); }

/* Light-Theme GRC */
body.theme-light .grc-hero-visual {
  background: radial-gradient(ellipse at 50% 50%, #eef6fb 0%, #f5f5f7 75%) !important;
  border-color: rgba(90,200,250,0.22);
}
body.theme-light .grc-stack-cards .grc-card-label {
  fill: rgba(20,20,25,0.92);
}
body.theme-light .grc-stack-cards .grc-card-meta {
  fill: rgba(40,90,130,0.72);
}

/* ============================================================
   APPLE-STYLE SUCHE — Icon + Overlay (2026-05-07h)
   ============================================================ */

/* Search-Icon-Button im Header — teilt sich .nav-icon-btn-Basis */
.nav-search-btn { /* keine Sonder-Styles, nur Marker für JS */ }

/* Search-Overlay — fährt vom Header herunter */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  max-height: 100vh;
  overflow-y: auto;
}
.search-overlay.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-overlay-inner {
  max-width: 692px;
  margin: 0 auto;
  padding: 80px 24px 48px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.search-overlay .search-icon { color: rgba(255,255,255,0.55); flex: 0 0 auto; }
.search-bar input[type="search"] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--fg);
  font-size: 28px;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: -0.01em;
  padding: 4px 0;
  -webkit-appearance: none;
  appearance: none;
}
.search-bar input[type="search"]::placeholder {
  color: rgba(255,255,255,0.4);
}
.search-bar input[type="search"]::-webkit-search-cancel-button { display: none; }
.search-close {
  flex: 0 0 auto;
  background: transparent;
  color: rgba(255,255,255,0.6);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.search-close:hover { background: rgba(255,255,255,0.1); color: white; }
.search-results { padding-top: 24px; }
.search-section-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 8px;
}
.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results-list li { margin: 0; }
.search-results-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color 0.15s;
}
.search-results-list a:hover,
.search-results-list a:focus-visible {
  color: var(--primary-bright);
  outline: none;
}
.search-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  flex: 0 0 auto;
  width: 20px;
  transition: color 0.15s, transform 0.15s;
}
.search-results-list a:hover .search-arrow {
  color: var(--primary-bright);
  transform: translateX(2px);
}
.search-label { flex: 1; }

body.search-open { overflow: hidden; }

/* Mobile: kompaktere Search-Bar */
@media (max-width: 640px) {
  .search-overlay-inner { padding: 64px 18px 36px; }
  .search-bar input[type="search"] { font-size: 22px; }
  .search-results-list a { font-size: 15.5px; padding: 12px 4px; }
}

/* Light-Theme */
body.theme-light .search-overlay {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
body.theme-light .search-overlay .search-icon { color: rgba(0,0,0,0.5); }
body.theme-light .search-bar { border-bottom-color: rgba(0,0,0,0.1); }
body.theme-light .search-bar input[type="search"]::placeholder { color: rgba(0,0,0,0.4); }
body.theme-light .search-section-title { color: rgba(0,0,0,0.5); }
body.theme-light .search-results-list a { border-bottom-color: rgba(0,0,0,0.08); color: var(--fg); }
body.theme-light .search-results-list a:hover { color: var(--primary); }
body.theme-light .search-arrow { color: rgba(0,0,0,0.4); }
body.theme-light .search-results-list a:hover .search-arrow { color: var(--primary); }
body.theme-light .search-close { color: rgba(0,0,0,0.55); }
body.theme-light .search-close:hover { background: rgba(0,0,0,0.08); color: black; }

/* ============================================================
   REDMIND — Hero-Graph + Card-/Accordion-Overrides (2026-05-07j)
   Apple-Red-Akzent (#ff3b30), Forschungs-/Entwicklungsstadium
   ============================================================ */

/* Hero-Graph-Visual */
.redmind-hero-visual {
  background: radial-gradient(ellipse at 50% 50%, #15090a 0%, #08090a 75%) !important;
  border: 1px solid rgba(255,59,48,0.14);
}
.redmind-hero-graph { width: 100%; height: 100%; display: block; }
.rm-graph-edges line {
  stroke: rgba(255,59,48,0.14);
  stroke-width: 1;
}
.rm-graph-path line {
  stroke: rgba(255,90,80,0.85);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 6 5;
  filter: drop-shadow(0 0 6px rgba(255,59,48,0.55));
  animation: rm-path-flow 5s linear infinite;
}
@keyframes rm-path-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -55; }
}
.rm-graph-nodes circle {
  fill: rgba(255,59,48,0.65);
  filter: drop-shadow(0 0 4px rgba(255,59,48,0.35));
}
.rm-graph-nodes .rm-node-target {
  fill: rgba(255,120,110,1);
  filter: drop-shadow(0 0 12px rgba(255,59,48,0.85));
  animation: rm-target-pulse 2.4s ease-in-out infinite;
}
@keyframes rm-target-pulse {
  0%, 100% { r: 9; opacity: 1; }
  50%      { r: 11; opacity: 0.85; }
}
.rm-graph-labels text {
  fill: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-family: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .rm-graph-path line,
  .rm-graph-nodes .rm-node-target { animation: none; }
}

/* Card-Overrides — RedMind-Akzent */
.redmind-card:hover { border-color: rgba(255,59,48,0.40) !important; }
.redmind-claim { color: var(--accent-redmind) !important; }
.redmind-claim-muted { color: var(--fg-muted) !important; }
.redmind-num { color: var(--accent-redmind) !important; }
.redmind-tag { color: var(--accent-redmind) !important; }
.redmind-use-case:hover { border-color: rgba(255,59,48,0.32) !important; }
.redmind-journey .ai-journey-step:hover { border-color: rgba(255,59,48,0.30); }

/* Phase-Number-Badge in Roadmap-Cards */
.redmind-phase-num {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-redmind);
  padding: 4px 10px;
  background: rgba(255,59,48,0.10);
  border-radius: 999px;
  align-self: flex-start;
}

/* Status-Block — ohne den alten roten Content-Block */
.redmind-status-block {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 0;
}
.redmind-status-block h2 { margin-top: 12px; }
.redmind-status-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Accordion (details/summary) */
.redmind-accordion {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  padding: 0;
  transition: border-color 0.2s;
}
.redmind-accordion:hover { border-color: rgba(255,59,48,0.30); }
.redmind-accordion[open] { border-color: rgba(255,59,48,0.30); }
.redmind-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.redmind-accordion summary::-webkit-details-marker { display: none; }
.redmind-accordion summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--accent-redmind);
  border-bottom: 2px solid var(--accent-redmind);
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.redmind-accordion[open] summary::after {
  transform: rotate(-135deg);
}
.redmind-accordion > *:not(summary) {
  padding: 0 22px;
}
.redmind-accordion > *:not(summary):last-child {
  padding-bottom: 22px;
}
.redmind-accordion p {
  margin: 6px 0 14px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.redmind-accordion-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 6px;
  counter-reset: rmstep;
}
.redmind-accordion-list li {
  counter-increment: rmstep;
  padding: 12px 0 12px 36px;
  border-top: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.redmind-accordion-list li:first-child { border-top: 0; }
.redmind-accordion-list li::before {
  content: counter(rmstep, decimal-leading-zero);
  position: absolute;
  left: 0; top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-redmind);
  opacity: 0.75;
}
.redmind-accordion-list strong { font-size: 15px; color: var(--fg); }
.redmind-accordion-list span { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.redmind-accordion-note {
  margin-top: 16px !important;
  font-size: 13px !important;
  color: var(--fg-muted) !important;
  font-style: italic;
}

/* Light-Theme RedMind */
body.theme-light .redmind-hero-visual {
  background: radial-gradient(ellipse at 50% 50%, #fbeeef 0%, #f5f5f7 75%) !important;
  border-color: rgba(255,59,48,0.22);
}
body.theme-light .rm-graph-labels text {
  fill: rgba(40,40,45,0.55);
}
body.theme-light .redmind-accordion {
  background: rgba(0,0,0,0.02);
}

/* ============================================================
   CYBERSECURITY — Card-Overrides + RedMind-Notice (2026-05-07x)
   Apple-Cyan-Akzent (--accent-cyber: #0a84ff) für Cyber-Cards
   ============================================================ */

.cyber-card:hover { border-color: rgba(10,132,255,0.40) !important; }
.cyber-claim { color: var(--accent-cyber) !important; }
.cyber-claim-muted { color: var(--fg-muted) !important; }
.cyber-tag { color: var(--accent-cyber) !important; }
.cyber-use-case:hover { border-color: rgba(10,132,255,0.32) !important; }

/* RedMind-Notice — eigenständiger zentrierter Hinweisblock zwischen Pentest & Architektur */
.redmind-notice {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(180deg, rgba(255,59,48,0.04) 0%, transparent 100%);
  border: 1px solid rgba(255,59,48,0.18);
  border-radius: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.redmind-notice .eyebrow { justify-content: center; margin-bottom: 16px; }
.redmind-notice h2 { letter-spacing: -0.02em; margin: 0 0 18px; }
.redmind-notice .lead { margin: 0 auto; max-width: 680px; }
.redmind-notice .hero-cta { justify-content: center; }
@media (max-width: 640px) {
  .redmind-notice { padding: 32px 22px; }
}

/* ============================================================
   RECHENZENTRUM — Accordion-Grid + Datacenter-Akzent (2026-05-07y)
   Apple-Blue-Akzent (--accent-datacenter: #0a84ff)
   Wiederverwendet .redmind-accordion-Pattern, überschreibt Akzentfarbe
   ============================================================ */

.dc-accordion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 800px) {
  .dc-accordion-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Datacenter-Variante des redmind-accordion: Akzent → Apple-Blue */
.dc-accordion:hover { border-color: rgba(10,132,255,0.30); }
.dc-accordion[open] { border-color: rgba(10,132,255,0.30); }
.dc-accordion summary::after {
  border-right-color: var(--accent-datacenter);
  border-bottom-color: var(--accent-datacenter);
}
.dc-accordion .redmind-accordion-list li::before {
  color: var(--accent-datacenter);
}

/* Use-Case-Override für Datacenter-Akzent */
.dc-use-case:hover { border-color: rgba(10,132,255,0.32) !important; }
.dc-tag { color: var(--accent-datacenter) !important; }

/* === Rechenzentrum-Hero (Vollbild-BG + Text-Overlay links) === */
.rz-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 86vh;
  /* flex-column auf der Section selbst — saubere Pin-to-bottom Garantie für den
     Bullets+CTA-Block via margin-top:auto. max-height entfernt, weil das in Kombi
     mit flex-stretch auf manchen Browsern den Container nicht voll dehnt. */
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #0a0a0c;
  color: #fff;
}
.rz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.rz-hero-bg img,
.rz-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rz-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Reduced-motion: Loop-Video pausieren und Poster als statisches Bild zeigen.
   User mit "Bewegung reduzieren"-OS-Setting bekommen kein dauerlaufendes Video. */
@media (prefers-reduced-motion: reduce) {
  .rz-hero-video {
    /* Video-Element bleibt im DOM (für SEO/Layout), wird aber unsichtbar gemacht */
    visibility: hidden;
  }
  .rz-hero--video {
    background-image: url('../images/rz-journey-poster.jpg?v=20260508b');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Click-to-Play Overlay — kompakter Button (NICHT inset:0, damit CTA-Link darunter
   klickbar bleibt). Zentriert über dem Poster, im is-playing-State unsichtbar. */
.rz-hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
  color: #fff;
  transition: opacity 0.35s ease, transform 0.25s ease;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.rz-hero-play svg {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.rz-hero-play:hover,
.rz-hero-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}
.rz-hero-play-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
@media (max-width: 640px) {
  .rz-hero-play svg { width: 68px; height: 68px; }
  .rz-hero-play-label { font-size: 11px; }
}

/* Play-Label-Overlay + is-engaged-Logik entfernt — Native HTML5-Video-Controls
   übernehmen alle UI/Steuerung. Headline/Bullets/CTA bleiben immer sichtbar. */
/* Container splittet sich in oben (Headline-Block) und unten (Bullets-Reihe + CTA).
   Dazwischen leerer Raum, in dem das Video atmet. Kein Scrim → text-shadow trägt
   die Lesbarkeit auf den durchlaufenden Frames. */
.rz-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  /* flex:1 → Container nimmt die volle verfügbare Höhe der flex-column Section.
     Innen wieder flex-column, mit margin-top:auto auf .rz-hero-bottom für sicheren
     Pin-zu-Boden, egal wie hoch die Section gerendert wird. */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  padding-bottom: 36px;
  text-align: center;
  /* Klicks gehen aufs Video durch (Tap-to-Play funktioniert), nur die interaktiven
     Elemente (CTA, später ggf. mehr) fangen Klicks ab. */
  pointer-events: none;
}
.rz-hero-cta, .rz-hero-cta a { pointer-events: auto; }
/* Titel-Bereich — KEINE Frosted-Glass-Box mehr (durchgehend, auf allen Viewports
   entfernt). Lesbarkeit kommt über text-shadow auf Eyebrow und H2. */
.rz-hero-top {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.rz-hero-top .eyebrow {
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.rz-hero-top h2 {
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.45);
}
.rz-hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  /* margin-top: auto garantiert "ganz unten" am Section-Boden, auch wenn der Container
     mehr Höhe hat als der Content — flex space-between alleine reicht nicht zuverlässig. */
  margin-top: auto;
  /* Position relative damit der ::before-Gradient sauber dahinter sitzt */
  position: relative;
}
/* Subtile dunkle Verblassung hinter Bullets + CTA — verbessert Lesbarkeit auf hellen
   Video-Frames ohne harten Scrim. Reicht von ~30% bis 70% transparent. */
.rz-hero-bottom::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  top: -28px;
  width: min(100%, 1100px);
  background: radial-gradient(ellipse at center,
              rgba(0,0,0,0.55) 0%,
              rgba(0,0,0,0.42) 45%,
              rgba(0,0,0,0.18) 75%,
              transparent 100%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
/* Bullets in einer Reihe — drei gleich breite Spalten, kompakte Frosted-Glass-Backplate.
   Padding bewusst knapp, Schrift kleiner als Lead — soll Stichpunkte sein, kein Fließtext. */
.rz-hero-bullets-row {
  list-style: none;
  margin: 0;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 28px;
  width: 100%;
  max-width: 980px;
  /* Frosted-Glass-Box entfernt (Desktop+Mobile) — Bullets sitzen direkt auf dem Video,
     Lesbarkeit über text-shadow auf strong + span. */
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.rz-hero-bullets-row li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  text-align: left;
}
.rz-bullet-dot {
  flex: 0 0 auto;
  font-size: 10px;
  line-height: 1;
  margin-top: 5px;
  color: var(--accent-datacenter);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
}
.rz-bullet-text { display: flex; flex-direction: column; gap: 1px; }
.rz-bullet-text strong {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.55);
}
.rz-bullet-text span {
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.45);
}
.rz-hero-cta { margin-top: 0; }

@media (max-width: 1023px) {
  .rz-hero-bullets-row {
    grid-template-columns: 1fr;
    gap: 10px;
    /* width:max-content + margin:auto → der gesamte Bullet-Block ist exakt so breit
       wie sein breitester Inhalt und wird als Block horizontal zentriert.
       Dadurch stehen alle Dots vertikal an einer Linie + Block ist mittig auf dem Screen. */
    width: max-content;
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    padding: 12px 18px;
  }
  .rz-hero-bullets-row li {
    justify-content: flex-start;
  }
  .rz-hero-bottom { gap: 14px; }
}
@media (max-width: 768px) {
  .rz-hero { min-height: 72vh; }
  .rz-hero-container { padding-top: 32px; padding-bottom: 20px; }
  /* Mobile: keine grauen Hintergrund-Boxen mehr — Titel und Bullets sitzen direkt auf
     dem Video, nur Text-Shadow trägt die Lesbarkeit. Aufgeräumter Look. */
  .rz-hero-top {
    padding: 0;
    max-width: 92%;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .rz-hero-top h2 { font-size: clamp(22px, 6.2vw, 32px); line-height: 1.15; }
  .rz-hero-top .eyebrow { margin-bottom: 8px; }
  .rz-hero-bullets-row {
    padding: 0;
    gap: 8px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .rz-bullet-text strong { font-size: 13px; }
  .rz-bullet-text span { font-size: 11.5px; }
  .rz-bullet-dot { font-size: 9px; margin-top: 4px; }
  .rz-hero-bottom { gap: 12px; }
}

/* === Rechenzentrum-Page: Hero mit Vollbild-Foto + Foto-Story-Sektionen === */
.rz-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: #fff;
}
.rz-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.rz-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rz-page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,8,14,0.55) 0%, rgba(5,8,14,0.30) 35%, rgba(5,8,14,0.65) 100%),
    linear-gradient(95deg, rgba(5,8,14,0.55) 0%, rgba(5,8,14,0.10) 60%);
}
.rz-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.rz-page-hero-content .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.rz-page-hero-content h1 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.rz-page-hero-content .lead {
  color: rgba(255,255,255,0.85);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 0 32px;
}
.rz-page-hero-content .hero-cta { gap: 14px; }
/* Ghost-Button mit Glas-Look damit er auf dem Foto sichtbar bleibt */
.btn.btn-ghost.btn-on-photo {
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.btn.btn-ghost.btn-on-photo:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
  .rz-page-hero { min-height: 0; padding: 88px 0 56px; }
}

/* Foto-Story-Sektionen: 2-Spalten-Grid (Bild/Text) */
.rz-photo-story {
  padding: 88px 0;
}
.rz-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) {
  .rz-photo-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .rz-photo-grid--reverse .rz-photo-grid-img { order: 2; }
}
.rz-photo-grid-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20,40,80,0.14);
  aspect-ratio: 16/10;
  background: #1d1d1f;
}
.rz-photo-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.rz-photo-grid-img:hover img { transform: scale(1.03); }
.rz-photo-grid-text h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
.rz-photo-grid-text .lead { margin: 0 0 20px; max-width: 520px; }
@media (max-width: 768px) {
  .rz-photo-story { padding: 56px 0; }
}

/* === Language-Switcher (Header, links der Search-Icon) ===
   Identische Maße/Style wie nav-icon-btn (32×32 rund, 18-px-SVG), damit alle Header-Icons
   visuell konsistent sind. „DE"-Indicator als kleines Pill-Badge unten rechts (wie cart-badge). */
.nav-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-lang-btn {
  /* erbt width/height/border-radius von .nav-icon-btn (32×32, 50%) — keine Overrides */
  position: relative;
}
.nav-lang-btn .globe-icon { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.nav-lang-current {
  position: absolute;
  bottom: -2px;
  right: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  min-width: 22px;
  padding: 0 4px;
  border-radius: 980px;
  background: var(--primary-bright, #0066ff);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid var(--bg, #fff);
}
.nav-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20,40,80,0.14);
  padding: 6px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-lang-menu[hidden] { display: none; }
.nav-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--fg);
  font-family: inherit;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.nav-lang-item:hover:not(:disabled) { background: var(--bg-soft); }
.nav-lang-item.is-active {
  background: rgba(0,102,255,0.08);
  color: var(--primary-bright, #0066ff);
  font-weight: 600;
}
.nav-lang-item.is-disabled,
.nav-lang-item:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.nav-lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(0,0,0,0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-lang-item.is-active .nav-lang-code {
  background: rgba(0,102,255,0.15);
  color: var(--primary-bright, #0066ff);
}
.nav-lang-name { font-size: 13px; }

/* Dark-Theme Variante */
body.theme-dark .nav-lang-menu,
.hero-pangolin .nav-lang-menu {
  background: #1d1d1f;
  border-color: rgba(255,255,255,0.12);
}
body.theme-dark .nav-lang-item,
.hero-pangolin .nav-lang-item { color: rgba(255,255,255,0.92); }
body.theme-dark .nav-lang-item:hover:not(:disabled),
.hero-pangolin .nav-lang-item:hover:not(:disabled) { background: rgba(255,255,255,0.06); }
body.theme-dark .nav-lang-code,
.hero-pangolin .nav-lang-code { background: rgba(255,255,255,0.10); }

/* === Rechenzentrum: Acht Disziplinen — Bento-Grid (statt Akkordeon) === */
.rz-disciplines {
  padding: 96px 0;
  background:
    radial-gradient(1200px 600px at 100% 0%, rgba(10,132,255,0.04), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(10,132,255,0.03), transparent 60%);
}
.rz-disc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .rz-disc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .rz-disc-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.rz-disc-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 18px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--line, #d2d2d7);
  transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1), border-color 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
}
.rz-disc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-datacenter, #0a84ff), transparent);
  opacity: 0.55;
  transition: opacity 220ms ease;
}
.rz-disc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10,132,255,0.35);
  box-shadow: 0 14px 32px rgba(20,40,80,0.10);
}
.rz-disc-card:hover::before { opacity: 1; }
.rz-disc-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  line-height: 1;
  color: var(--accent-datacenter, #0a84ff);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.rz-disc-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-datacenter, #0a84ff);
  margin-top: -4px;
}
.rz-disc-icon svg { width: 100%; height: 100%; display: block; }
.rz-disc-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--fg, #1d1d1f);
}
.rz-disc-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted, #6e6e73);
  margin: 0;
}
@media (max-width: 768px) {
  .rz-disciplines { padding: 64px 0; }
  .rz-disc-num { font-size: 32px; }
  .rz-disc-card { min-height: 0; padding: 22px 20px 20px; }
}

/* === Trenner zwischen Sektionen (Soft-Line) === */
.section-with-divider {
  position: relative;
}
.section-with-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(20,40,80,0.12) 18%, rgba(20,40,80,0.18) 50%, rgba(20,40,80,0.12) 82%, transparent 100%);
  pointer-events: none;
}

/* === Trust-Sektoren-Marquee (frei laufende Wortmarken mit Icons) === */
.trust-sectors {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  overflow: hidden;
  border-top: 1px solid rgba(20,40,80,0.06);
  border-bottom: 1px solid rgba(20,40,80,0.06);
}
.trust-sectors-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,40,80,0.55);
  margin: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-sectors-eyebrow .dot { color: #0066ff; font-weight: 800; }
.trust-sectors-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Soft fade-out edges links und rechts */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.trust-sectors-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: trust-sectors-scroll 60s linear infinite;
  will-change: transform;
}
.trust-sector {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(20,40,80,0.62);
  transition: color 220ms ease, opacity 220ms ease;
}
.trust-sector svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: rgba(20,40,80,0.55);
  stroke: currentColor;
}
.trust-sectors-marquee:hover .trust-sectors-track {
  animation-play-state: paused;
}
.trust-sector:hover {
  color: rgba(20,40,80,0.95);
}
.trust-sector:hover svg {
  color: rgba(20,40,80,0.85);
}
@keyframes trust-sectors-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-sectors-track { animation: none; }
  .trust-sectors-marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
}
@media (max-width: 768px) {
  .trust-sectors { padding: 52px 0 48px; }
  .trust-sectors-track { gap: 36px; }
  .trust-sector { font-size: 18px; gap: 10px; }
  .trust-sector svg { width: 22px; height: 22px; }
}


/* ============================================================
   GAD Defense Engine — Plattform-Showcase mit Mock-Dashboard
   ============================================================ */
.gad-platform {
  position: relative;
  padding: 120px 0 130px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  overflow: hidden;
}
.gad-platform-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
}
.gad-platform-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,40,80,0.55);
  margin-bottom: 18px;
}
.gad-platform-headline {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #0a0e1a;
  margin: 0 0 18px;
}
.gad-platform-sub {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgba(20,40,80,0.70);
  margin: 0;
}

/* === 3 Feature-Karten === */
.gad-platform-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.gad-feature {
  background: #fff;
  border: 1px solid rgba(20,40,80,0.08);
  border-radius: 18px;
  padding: 28px 28px 30px;
  box-shadow: 0 1px 2px rgba(20,40,80,0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.gad-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20,40,80,0.10);
  border-color: rgba(0,102,255,0.25);
}
.gad-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,102,255,0.10) 0%, rgba(0,102,255,0.04) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #0066ff;
  margin-bottom: 18px;
}
.gad-feature-icon svg { width: 22px; height: 22px; }
.gad-feature h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #0a0e1a;
  margin: 0 0 10px;
}
.gad-feature p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20,40,80,0.68);
  margin: 0;
}

/* === Dashboard-Mockup === */
.gad-dash-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.gad-dash-frame {
  position: relative;
  background: #fff;
  border: 1px solid rgba(20,40,80,0.10);
  border-radius: 20px;
  box-shadow:
    0 30px 90px rgba(20,40,80,0.18),
    0 4px 12px rgba(20,40,80,0.06);
  overflow: hidden;
  font-family: 'Inter', -apple-system, sans-serif;
}
.gad-dash-frame::after {
  /* sanftes Highlight oben */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.30), transparent);
  pointer-events: none;
}

/* Top-Bar */
.gad-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-bottom: 1px solid rgba(20,40,80,0.08);
}
.gad-dash-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13.5px;
  color: #0a0e1a;
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.gad-dash-shield {
  width: 22px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,102,255,0.25));
}
.gad-dash-tabs {
  display: flex;
  gap: 4px;
  font-size: 13px;
  color: rgba(20,40,80,0.55);
  flex: 1;
  justify-content: center;
}
.gad-tab {
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}
.gad-tab:hover { background: rgba(20,40,80,0.05); color: #0a0e1a; }
.gad-tab.is-active {
  background: rgba(0,102,255,0.10);
  color: #0066ff;
  font-weight: 600;
}
.gad-tab:focus-visible { outline: 2px solid rgba(0,102,255,0.45); outline-offset: 2px; }

.gad-dash-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gad-dash-demo-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20,40,80,0.62);
  padding: 4px 10px;
  border-radius: 980px;
  background: rgba(20,40,80,0.06);
  border: 1px solid rgba(20,40,80,0.08);
}
.gad-dash-cycle {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(20,40,80,0.12);
  background: #fff;
  color: rgba(20,40,80,0.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.gad-dash-cycle svg { width: 16px; height: 16px; }
.gad-dash-cycle:hover {
  background: #0066ff;
  border-color: #0066ff;
  color: #fff;
  transform: translateX(2px);
}
.gad-dash-cycle:focus-visible { outline: 2px solid rgba(0,102,255,0.45); outline-offset: 2px; }

@keyframes gad-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(41,210,125,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(41,210,125,0); }
  100% { box-shadow: 0 0 0 0 rgba(41,210,125,0); }
}

/* Body */
.gad-dash-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 560px;
}
.gad-dash-side {
  background: linear-gradient(180deg, #f8fafd 0%, #f1f4f9 100%);
  border-right: 1px solid rgba(20,40,80,0.08);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gad-dash-side-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(20,40,80,0.45);
  transition: all 180ms ease;
}
.gad-dash-side-icon svg { width: 18px; height: 18px; }
.gad-dash-side-icon.is-active {
  background: linear-gradient(135deg, #0066ff 0%, #0040c0 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,102,255,0.30);
}

/* Panels: only the active one renders */
.gad-panel { display: none; flex-direction: column; gap: 22px; min-width: 0; padding: 0; }
.gad-panel.is-active { display: flex; animation: gad-fade-in 360ms ease both; }
@keyframes gad-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gad-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #0a0e1a;
  margin: 0;
  letter-spacing: -0.005em;
}
.gad-panel-title span { font-weight: 400; color: rgba(20,40,80,0.50); }
.gad-panel-sub {
  font-size: 12.5px;
  color: rgba(20,40,80,0.62);
  margin-top: 4px;
}

.gad-dash-main {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

/* KPI-Tiles */
.gad-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gad-kpi {
  position: relative;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20,40,80,0.08);
  overflow: hidden;
}
.gad-kpi::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.gad-kpi--red::before    { background: linear-gradient(180deg, #ff5e63, #ff8a8e); }
.gad-kpi--blue::before   { background: linear-gradient(180deg, #4f8dff, #7da9ff); }
.gad-kpi--green::before  { background: linear-gradient(180deg, #4ade80, #6ee7a3); }
.gad-kpi-label {
  font-size: 12px;
  color: rgba(20,40,80,0.60);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.gad-kpi-value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0a0e1a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gad-kpi-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(20,40,80,0.55);
}
.gad-kpi-meta {
  margin-top: 8px;
  font-size: 11.5px;
  color: rgba(20,40,80,0.55);
}
.gad-kpi-trend {
  font-weight: 600;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 4px;
  margin-right: 4px;
}
.gad-kpi-trend--up    { background: rgba(255,94,99,0.10); color: #d6353a; }

/* Two cards */
.gad-dash-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 14px;
}
.gad-dash-card {
  background: #fff;
  border: 1px solid rgba(20,40,80,0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  min-width: 0;
}
.gad-dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.gad-dash-card-head h5 {
  font-size: 13px;
  font-weight: 600;
  color: #0a0e1a;
  margin: 0;
  letter-spacing: -0.005em;
}
.gad-dash-card-head h5 span {
  font-weight: 400;
  color: rgba(20,40,80,0.50);
}
.gad-dash-link {
  font-size: 12px;
  color: #0066ff;
  text-decoration: none;
  font-weight: 500;
}

/* Choke-Table */
.gad-choke-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.gad-choke-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,40,80,0.50);
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(20,40,80,0.08);
}
.gad-choke-table th:last-child { text-align: right; }
.gad-choke-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,40,80,0.05);
  color: #0a0e1a;
  font-size: 13px;
  vertical-align: middle;
}
.gad-choke-table td:first-child {
  font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gad-choke-table td:last-child { text-align: right; }
.gad-choke-table tr:last-child td { border-bottom: 0; }
.gad-asset-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(20,40,80,0.30);
  flex-shrink: 0;
}
.gad-asset-icon[data-type="mail"]  { background: #ff5e63; }
.gad-asset-icon[data-type="vpn"]   { background: #ff5e63; }
.gad-asset-icon[data-type="ad"]    { background: #ff9f43; }
.gad-asset-icon[data-type="cloud"] { background: #ff9f43; }
.gad-asset-icon[data-type="k8s"]   { background: #4f8dff; }

.gad-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gad-tag--crit { color: #d6353a; background: rgba(255,94,99,0.12); }
.gad-tag--high { color: #c5660b; background: rgba(255,159,67,0.14); }
.gad-tag--med  { color: #1856c4; background: rgba(79,141,255,0.14); }
.gad-score {
  font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
  font-weight: 600;
  font-size: 13.5px;
  color: #0a0e1a;
}

/* Bars */
.gad-bars {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gad-bars li {
  display: grid;
  grid-template-columns: 130px 1fr 32px;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
}
.gad-bar-label {
  color: rgba(20,40,80,0.78);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gad-bar-track {
  height: 8px;
  background: rgba(20,40,80,0.06);
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.gad-bar-fill {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  border-radius: 6px;
  transition: width 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gad-bar-fill--red    { background: linear-gradient(90deg, #ff5e63, #ff8a8e); }
.gad-bar-fill--orange { background: linear-gradient(90deg, #ff9f43, #ffbf7d); }
.gad-bar-fill--blue   { background: linear-gradient(90deg, #4f8dff, #7da9ff); }
.gad-bar-fill--green  { background: linear-gradient(90deg, #4ade80, #6ee7a3); }
.gad-bar-val {
  text-align: right;
  font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
  font-weight: 600;
  color: #0a0e1a;
  font-variant-numeric: tabular-nums;
}

/* Donut + Legende — robust: Center-Text liegt absolut über dem SVG */
.gad-donut-wrap {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(20,40,80,0.06);
}
.gad-donut-chart {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.gad-donut {
  width: 130px;
  height: 130px;
  transform: rotate(-90deg);
  display: block;
}
.gad-donut-bg { stroke: rgba(20,40,80,0.06); }
.gad-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.gad-donut-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0a0e1a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gad-donut-label {
  font-size: 10.5px;
  color: rgba(20,40,80,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.gad-donut-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  min-width: 0;
}
.gad-donut-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(20,40,80,0.72);
  min-width: 0;
}
.gad-donut-legend .lab { flex: 1; min-width: 0; }
.gad-donut-legend li b {
  margin-left: auto;
  font-weight: 600;
  color: #0a0e1a;
  font-variant-numeric: tabular-nums;
}
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--red    { background: #ff5e63; }
.dot--orange { background: #ff9f43; }
.dot--blue   { background: #4f8dff; }
.dot--green  { background: #4ade80; }

.gad-dash-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(20,40,80,0.50);
  letter-spacing: 0.01em;
}

/* === Tab: Incidents (Live-Stream im Dashboard) === */
.gad-incidents-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.gad-incidents-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: rgba(20,40,80,0.62);
  flex-wrap: wrap;
}
.gad-incidents-stats > div {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(20,40,80,0.04);
  border: 1px solid rgba(20,40,80,0.06);
}
.gad-incidents-stats b {
  color: #0a0e1a;
  font-weight: 600;
  margin-right: 4px;
}
.gad-stream {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,40,80,0.92);
  background: linear-gradient(180deg, #fafbfd 0%, #f5f7fb 100%);
  border: 1px solid rgba(20,40,80,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.gad-stream-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 9px 18px;
  border-bottom: 1px dashed rgba(20,40,80,0.08);
  min-width: 0;
}
.gad-panel.is-active[data-gad-panel="incidents"] .gad-stream-row {
  opacity: 0;
  transform: translateY(4px);
  animation: gad-stream-in 0.5s ease-out forwards;
  animation-delay: var(--d, 0s);
}
.gad-stream-row:last-child { border-bottom: 0; }
@keyframes gad-stream-in {
  to { opacity: 1; transform: translateY(0); }
}
.gad-stream-ts {
  color: rgba(20,40,80,0.45);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.gad-stream-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.gad-stream-tag--info     { color: #1856c4; background: rgba(79,141,255,0.12); border: 1px solid rgba(79,141,255,0.20); }
.gad-stream-tag--warn     { color: #b96f00; background: rgba(255,159,67,0.14); border: 1px solid rgba(255,159,67,0.28); }
.gad-stream-tag--block    { color: #d6353a; background: rgba(255,90,90,0.12);  border: 1px solid rgba(255,90,90,0.28); }
.gad-stream-tag--success  { color: #1a8e4a; background: rgba(74,222,128,0.14); border: 1px solid rgba(74,222,128,0.30); }
.gad-stream-msg { word-break: break-word; overflow-wrap: anywhere; min-width: 0; }
.gad-stream-msg em {
  color: #0a0e1a;
  font-style: normal;
  background: rgba(0,102,255,0.10);
  padding: 0 4px;
  border-radius: 3px;
}

/* === Tab: Assets === */
.gad-asset-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.gad-asset-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.gad-asset-chip {
  padding: 5px 11px;
  border-radius: 980px;
  font-size: 12px;
  color: rgba(20,40,80,0.62);
  background: rgba(20,40,80,0.04);
  border: 1px solid rgba(20,40,80,0.06);
  white-space: nowrap;
}
.gad-asset-chip.is-active {
  background: rgba(0,102,255,0.10);
  border-color: rgba(0,102,255,0.20);
  color: #0066ff;
  font-weight: 600;
}
.gad-assets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border: 1px solid rgba(20,40,80,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.gad-assets-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(20,40,80,0.50);
  padding: 12px 16px;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7fb 100%);
  border-bottom: 1px solid rgba(20,40,80,0.08);
}
.gad-assets-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(20,40,80,0.05);
  color: #0a0e1a;
  vertical-align: middle;
}
.gad-assets-table td:first-child {
  font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gad-assets-table tr:last-child td { border-bottom: 0; }
.gad-mini-bar {
  display: inline-block;
  width: 60px;
  height: 6px;
  border-radius: 4px;
  margin-right: 8px;
  background: rgba(20,40,80,0.06);
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.gad-mini-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 0%);
  background: var(--c, #0066ff);
  border-radius: 4px;
}
.gad-assets-table td:last-child b {
  font-family: 'JetBrains Mono', 'Menlo', ui-monospace, monospace;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* === Tab: Compliance === */
.gad-comp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.gad-comp-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(20,40,80,0.65);
}
.gad-comp-summary b { color: #0a0e1a; font-weight: 600; }
.gad-comp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.gad-comp-card {
  background: #fff;
  border: 1px solid rgba(20,40,80,0.08);
  border-radius: 12px;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gad-comp-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.gad-comp-name {
  font-size: 14px;
  font-weight: 600;
  color: #0a0e1a;
  letter-spacing: -0.005em;
}
.gad-comp-pct {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.gad-comp-pct--green  { color: #1a8e4a; }
.gad-comp-pct--orange { color: #b96f00; }
.gad-comp-pct--red    { color: #d6353a; }
.gad-comp-track {
  height: 8px;
  background: rgba(20,40,80,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.gad-comp-track span {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: var(--c, #4ade80);
  border-radius: 6px;
}
.gad-comp-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgba(20,40,80,0.62);
}
.gad-comp-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === CTA unter dem Dashboard === */
.gad-dash-cta {
  text-align: center;
  margin-top: 36px;
}
.gad-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: #0066ff;
  color: #fff;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  box-shadow: 0 12px 32px rgba(0,102,255,0.30);
}
.gad-cta-btn:hover {
  transform: translateY(-2px);
  background: #0052cc;
  box-shadow: 0 18px 44px rgba(0,102,255,0.42);
}
.gad-cta-btn svg { width: 18px; height: 18px; }
.gad-cta-foot {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(20,40,80,0.55);
  letter-spacing: 0.01em;
}

/* === Responsive === */
@media (max-width: 1080px) {
  .gad-dash-cols { grid-template-columns: 1fr; }
  .gad-donut-wrap { grid-template-columns: 130px 1fr; }
}
@media (max-width: 900px) {
  .gad-platform-features { grid-template-columns: 1fr; gap: 16px; }
  .gad-platform { padding: 88px 0 96px; }
  .gad-platform-head { margin-bottom: 48px; }
}
@media (max-width: 820px) {
  .gad-comp-grid { grid-template-columns: 1fr; }
  /* Tabs: Scroll-Streifen statt Wrap */
  .gad-dash-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .gad-dash-tabs::-webkit-scrollbar { display: none; }
}
@media (max-width: 768px) {
  .gad-dash-body { grid-template-columns: 1fr; min-height: 0; }
  .gad-dash-side {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid rgba(20,40,80,0.08);
    padding: 8px 12px;
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .gad-dash-side-icon { width: 30px; height: 30px; flex-shrink: 0; }
  .gad-dash-side-icon svg { width: 15px; height: 15px; }
  .gad-dash-topbar {
    padding: 12px 14px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .gad-dash-tabs { order: 3; flex: 1 1 100%; font-size: 12px; }
  .gad-dash-tabs .gad-tab { padding: 5px 10px; }
  .gad-dash-meta { gap: 8px; }
  .gad-dash-demo-badge { font-size: 10px; padding: 3px 8px; }
  .gad-dash-cycle { width: 28px; height: 28px; }
  .gad-dash-main { padding: 16px 14px 18px; gap: 14px; }
  .gad-dash-kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .gad-kpi { padding: 12px 10px 12px 14px; border-radius: 11px; }
  .gad-kpi-label { font-size: 10.5px; margin-bottom: 4px; line-height: 1.25; }
  .gad-kpi-value { font-size: 22px; }
  .gad-kpi-sub { font-size: 12px; }
  .gad-kpi-meta { font-size: 10.5px; margin-top: 6px; line-height: 1.3; }
  .gad-kpi-trend { font-size: 9.5px; padding: 2px 5px; }
  .gad-bars li { grid-template-columns: 110px 1fr 32px; font-size: 12px; }
  .gad-choke-table td:first-child { font-size: 11.5px; }
  .gad-donut-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
  .gad-donut-legend { width: 100%; max-width: 280px; }

  /* Incidents-Stream auf Mobile kompakter */
  .gad-stream { font-size: 11.5px; }
  .gad-stream-row {
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    padding: 8px 14px;
  }
  .gad-stream-msg { grid-column: 1 / -1; }
  .gad-stream-ts { font-size: 11px; }
  .gad-stream-tag { min-width: 50px; font-size: 9.5px; }
  .gad-incidents-stats { font-size: 11.5px; gap: 8px; }
  .gad-incidents-stats > div { padding: 5px 10px; }

  /* Assets-Tabelle: mit horizontalem Scroll falls nötig */
  .gad-assets-table { font-size: 12px; }
  .gad-assets-table th, .gad-assets-table td { padding: 10px 12px; }
  .gad-assets-table td:first-child { font-size: 11.5px; }
  .gad-mini-bar { width: 40px; }
  .gad-asset-filters { gap: 5px; }
  .gad-asset-chip { font-size: 11px; padding: 4px 9px; }
}
@media (max-width: 540px) {
  /* Assets-Tabelle: weniger Spalten auf sehr kleinen Geräten */
  .gad-assets-table thead { display: none; }
  .gad-assets-table tr {
    display: block;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(20,40,80,0.05);
  }
  .gad-assets-table tr:last-child { border-bottom: 0; }
  .gad-assets-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border: 0;
    font-size: 12px;
  }
  .gad-assets-table td:first-child {
    font-weight: 600;
    color: #0a0e1a;
    margin-bottom: 4px;
  }
  .gad-assets-table td:not(:first-child)::before {
    content: attr(data-label);
    color: rgba(20,40,80,0.50);
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .gad-platform { padding: 72px 0 80px; }
  .gad-feature { padding: 22px 22px 24px; }
  .gad-bars li { grid-template-columns: 90px 1fr 26px; }
  .gad-choke-table th { font-size: 9.5px; }
  .gad-cta-btn { padding: 14px 24px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .gad-bar-fill, .gad-feature, .gad-stream-row, .gad-panel { transition: none; animation: none; }
}

/* =================================================================
   SUBPAGE 2.0 — Redesigned solution-page components
   ================================================================= */

/* --- Compare-Block: zweispaltige "Heute vs RedMind/Service"-Gegenüberstellung --- */
.sub-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 880px) {
  .sub-compare { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.sub-compare-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sub-compare-card--muted {
  background: var(--bg-soft);
  border-color: rgba(20,40,80,0.06);
}
.sub-compare-card--accent {
  background: linear-gradient(180deg, #fff 0%, rgba(255,59,48,0.04) 100%);
  border-color: rgba(255,59,48,0.18);
}
.sub-compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sub-compare-card--accent .sub-compare-tag { color: var(--accent-redmind, #ff3b30); }
.sub-compare-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.sub-compare-card h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
  line-height: 1.25;
}
.sub-compare-stat {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--fg);
  margin: 4px 0;
  font-variant-numeric: tabular-nums;
}
.sub-compare-card--accent .sub-compare-stat { color: var(--accent-redmind, #ff3b30); }
.sub-compare-stat-sub { font-size: 13px; color: var(--fg-muted); margin: 0; }
.sub-compare-card p { font-size: 15px; line-height: 1.55; color: var(--fg); margin: 0; }
.sub-compare-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.45;
}
.sub-compare-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(20,40,80,0.06);
  position: relative;
  margin-top: 1px;
}
.sub-compare-card--accent .sub-compare-list li::before { background: rgba(255,59,48,0.10); }

/* --- Kill-Chain / Process-Flow: horizontal 4-Step --- */
.sub-flow {
  margin-top: 48px;
  position: relative;
}
.sub-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 880px) {
  .sub-flow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .sub-flow-grid--5 { grid-template-columns: repeat(5, 1fr); }
  .sub-flow-grid::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,59,48,0.12) 0%, rgba(255,59,48,0.45) 50%, rgba(255,59,48,0.12) 100%);
    z-index: 0;
  }
  .sub-flow-grid--5::before { left: 10%; right: 10%; }
}
.sub-flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sub-flow-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid rgba(255,59,48,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-redmind, #ff3b30);
  box-shadow: 0 8px 24px rgba(255,59,48,0.10);
  margin: 0 auto;
}
.sub-flow-icon svg { width: 30px; height: 30px; }
.sub-flow-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--accent-redmind, #ff3b30);
  text-align: center;
  text-transform: uppercase;
}
.sub-flow-step h3 {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.sub-flow-step p {
  font-size: 13.5px;
  text-align: center;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Dark Section: schwarzer Block für "Governance / Sicherheit" --- */
.sub-dark-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #14171f 100%);
  color: rgba(255,255,255,0.92);
  position: relative;
  overflow: hidden;
}
.sub-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 80% 10%, rgba(255,59,48,0.10), transparent 60%),
    radial-gradient(700px 400px at 0% 90%, rgba(255,59,48,0.06), transparent 60%);
  pointer-events: none;
}
.sub-dark-section .container { position: relative; z-index: 1; }
.sub-dark-section h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sub-dark-section .lead { color: rgba(255,255,255,0.72); }
.sub-dark-section .eyebrow { color: rgba(255,255,255,0.85); }
.sub-dark-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .sub-dark-pillars { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.sub-dark-pillar {
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.sub-dark-pillar-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,59,48,0.14);
  border: 1px solid rgba(255,59,48,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5e63;
}
.sub-dark-pillar-icon svg { width: 20px; height: 20px; }
.sub-dark-pillar h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.01em;
}
.sub-dark-pillar p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin: 0;
}

/* --- Phase-Cards: Roadmap-Block --- */
.sub-phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 880px) {
  .sub-phases { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.sub-phase {
  position: relative;
  padding: 32px 30px 30px;
  border-radius: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sub-phase--active {
  background: linear-gradient(180deg, #fff 0%, rgba(255,59,48,0.05) 100%);
  border-color: rgba(255,59,48,0.22);
  box-shadow: 0 12px 32px rgba(255,59,48,0.06);
}
.sub-phase-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sub-phase-num {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 980px;
  background: rgba(20,40,80,0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sub-phase--active .sub-phase-num { background: rgba(255,59,48,0.12); color: var(--accent-redmind, #ff3b30); }
.sub-phase-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fg-muted);
}
.sub-phase-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.sub-phase--active .sub-phase-status { color: var(--accent-redmind, #ff3b30); }
.sub-phase h3 {
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.sub-phase p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
.sub-phase-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sub-phase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fg);
}
.sub-phase-bullets li::before {
  content: "";
  flex: 0 0 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(20,40,80,0.30);
  margin-top: 8px;
}
.sub-phase--active .sub-phase-bullets li::before { background: var(--accent-redmind, #ff3b30); }

/* --- Feature-Tile mit Icon (4er-Grid) --- */
.sub-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}
@media (min-width: 600px) { .sub-features { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1024px) { .sub-features { grid-template-columns: repeat(4, 1fr); } }
.sub-feature {
  padding: 26px 24px 24px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(20,40,80,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.sub-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(255,59,48,0.30);
  box-shadow: 0 16px 32px rgba(20,40,80,0.08);
}
.sub-cyber .sub-feature:hover { border-color: rgba(10,132,255,0.30); }
.sub-grc .sub-feature:hover { border-color: rgba(90,200,250,0.35); }
.sub-ai .sub-feature:hover { border-color: rgba(52,199,89,0.30); }
.sub-test .sub-feature:hover { border-color: rgba(168,176,189,0.45); }
.sub-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,59,48,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-redmind, #ff3b30);
}
.sub-feature-icon svg { width: 22px; height: 22px; }
.sub-feature h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 4px 0 0;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.sub-feature p {
  font-size: 13.5px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

/* --- Use-Case-Card mit Side-by-Side Situation/Beitrag --- */
.sub-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 880px) { .sub-cases { grid-template-columns: repeat(3, 1fr); } }
.sub-case {
  padding: 28px 26px;
  border-radius: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sub-case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-redmind, #ff3b30);
}
.sub-case-tag::before {
  content: ""; width: 22px; height: 1.5px; background: currentColor;
}
.sub-case h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.sub-case-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sub-case-meta dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sub-case-meta dd {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
}

/* --- Color-Override-Hooks pro Subpage (ohne CSS-Vars zu ändern) --- */
.sub-cyber .sub-flow-icon,
.sub-cyber .sub-feature-icon,
.sub-cyber .sub-case-tag { color: var(--accent-cyber, #0a84ff); }
.sub-cyber .sub-feature-icon,
.sub-cyber .sub-flow-icon { background: rgba(10,132,255,0.10); border-color: rgba(10,132,255,0.20); box-shadow: 0 8px 24px rgba(10,132,255,0.10); }
.sub-cyber .sub-flow-grid::before { background: linear-gradient(90deg, rgba(10,132,255,0.12) 0%, rgba(10,132,255,0.45) 50%, rgba(10,132,255,0.12) 100%); }
.sub-cyber .sub-dark-pillar-icon { color: #5ac8fa; background: rgba(10,132,255,0.14); border-color: rgba(10,132,255,0.28); }
.sub-cyber .sub-phase--active { border-color: rgba(10,132,255,0.22); box-shadow: 0 12px 32px rgba(10,132,255,0.06); background: linear-gradient(180deg, #fff 0%, rgba(10,132,255,0.05) 100%); }
.sub-cyber .sub-phase--active .sub-phase-num,
.sub-cyber .sub-phase--active .sub-phase-status,
.sub-cyber .sub-phase--active .sub-phase-bullets li::before { color: var(--accent-cyber, #0a84ff); background: rgba(10,132,255,0.12); }

.sub-grc .sub-flow-icon,
.sub-grc .sub-feature-icon,
.sub-grc .sub-case-tag { color: var(--accent-grc, #5ac8fa); }
.sub-grc .sub-feature-icon,
.sub-grc .sub-flow-icon { background: rgba(90,200,250,0.10); border-color: rgba(90,200,250,0.22); box-shadow: 0 8px 24px rgba(90,200,250,0.10); }
.sub-grc .sub-flow-grid::before { background: linear-gradient(90deg, rgba(90,200,250,0.12) 0%, rgba(90,200,250,0.45) 50%, rgba(90,200,250,0.12) 100%); }
.sub-grc .sub-dark-pillar-icon { color: #5ac8fa; background: rgba(90,200,250,0.14); border-color: rgba(90,200,250,0.28); }

.sub-ai .sub-flow-icon,
.sub-ai .sub-feature-icon,
.sub-ai .sub-case-tag { color: var(--accent-ai, #34c759); }
.sub-ai .sub-feature-icon,
.sub-ai .sub-flow-icon { background: rgba(52,199,89,0.10); border-color: rgba(52,199,89,0.22); box-shadow: 0 8px 24px rgba(52,199,89,0.10); }
.sub-ai .sub-flow-grid::before { background: linear-gradient(90deg, rgba(52,199,89,0.12) 0%, rgba(52,199,89,0.45) 50%, rgba(52,199,89,0.12) 100%); }
.sub-ai .sub-dark-pillar-icon { color: #4ade80; background: rgba(52,199,89,0.14); border-color: rgba(52,199,89,0.28); }

.sub-test .sub-flow-icon,
.sub-test .sub-feature-icon,
.sub-test .sub-case-tag { color: var(--accent-test, #a8b0bd); }
.sub-test .sub-feature-icon,
.sub-test .sub-flow-icon { background: rgba(168,176,189,0.10); border-color: rgba(168,176,189,0.30); box-shadow: 0 8px 24px rgba(20,40,80,0.06); }
.sub-test .sub-flow-grid::before { background: linear-gradient(90deg, rgba(168,176,189,0.20) 0%, rgba(168,176,189,0.55) 50%, rgba(168,176,189,0.20) 100%); }
.sub-test .sub-dark-pillar-icon { color: #d4d8df; background: rgba(168,176,189,0.16); border-color: rgba(168,176,189,0.30); }

@media (max-width: 768px) {
  .sub-flow-icon { width: 60px; height: 60px; border-radius: 18px; }
  .sub-flow-icon svg { width: 26px; height: 26px; }
  .sub-feature { padding: 22px 20px 20px; }
  .sub-feature-icon { width: 42px; height: 42px; }
  .sub-feature-icon svg { width: 20px; height: 20px; }
  .sub-phase { padding: 26px 22px; }
  .sub-dark-pillar { padding: 20px 22px; gap: 14px; }
  .sub-compare-card { padding: 24px 22px; }
}
