/* ================================================================
   Adacor Website v2 — Stylesheet
   Layout, Header, Footer, Mega-Menu, Buttons, Sections
   Adapted from KI-Workplace design system with Adacor Brand tokens
   ================================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-margin-top: var(--header-height); }
body { font-family: var(--font-system); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
/* Easter Egg (nur Desktop): Hover auf die dunkle „Jetzt"-Kostenbox der VMware-Seite kippt die
   ganze Seite in Dark Mode. Umsetzung über Token-Override auf :root.dark-mode (per JS gesetzt). */
:root.dark-mode {
  --bg: #011f3a;
  --surface: #0d2e4d;
  --surface-hover: #123b5f;
  --surface-elevated: #0d2e4d;
  --text: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #7c8ea0;
  --text-light: #5f7286;
  --border: #1a3f62;
  --border-light: #16375a;
}
:root.dark-mode .site-header.header-scrolled { background: rgba(13,46,77,0.92); border-bottom-color: var(--border); }
body, section, .site-header, .site-footer { transition: background-color 0.4s ease, color 0.4s ease; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Accessibility ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; box-shadow: 0 0 0 4px rgba(0, 173, 208, 0.15); }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-8); }
section { padding: var(--space-24) 0; }
section[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
.cta-conversion[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
.section-dark { background: var(--dark-bg); color: var(--text-on-dark); }
.section-dark .section-title { color: var(--text-on-dark); }
.section-dark .section-subtitle { color: var(--text-on-dark-secondary); }
.section-surface { background: var(--border-light); }
.section-light { background: var(--surface); }
.text-center { text-align: center; }

/* ── Section Typography ── */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  color: var(--text);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Serif accent — used for emotional/differentiating words in headlines */
.serif-accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}
.serif-accent.gradient-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-system);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}
.btn-lg { font-size: var(--text-base); padding: 14px 28px; border-radius: var(--radius-xl); }
.btn-md { font-size: var(--text-sm); padding: 12px 20px; border-radius: var(--radius-lg); }
.btn-sm { font-size: var(--text-sm); padding: 10px 16px; border-radius: var(--radius-lg); }
.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-on-dark);
  box-shadow: 0 4px 14px rgba(0, 173, 208, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 173, 208, 0.4);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text-muted); background: var(--surface-hover); }
.btn-secondary-dark { background: transparent; color: var(--text-on-dark); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-secondary-dark:hover { border-color: rgba(255,255,255,0.6); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: none; }
.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.btn-arrow::after { content: "\2192"; transition: transform var(--transition-fast); }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-white { background: white; color: var(--text); font-weight: 700; }
.btn-white:hover { background: #f1f5f9; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: white; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  height: var(--header-height);
  background: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 var(--space-8);
  transition: background var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}
.site-header.header-scrolled {
  position: fixed;
  background: rgba(253,252,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo svg,
.header-logo img { height: 36px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
}
.header-nav > a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.header-nav > a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Vertikaler Trenner zwischen Nav und Login/Kontakt (setzt Login optisch ab) */
.header-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 10px;
}
.hamburger svg { width: 24px; height: 24px; }

/* ================================================================
   MEGA MENU
   ================================================================ */
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-system);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-trigger svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }

.mega-backdrop {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  z-index: 998;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mega-backdrop.visible { opacity: 1; pointer-events: auto; }

.mega-panel {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) var(--space-8);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: 999;
}
.nav-item.open .mega-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }

.mega-panel-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-6);
}

/* Leistungen: 4-column mega menu */
.mega-leistungen .mega-panel-inner { grid-template-columns: repeat(4, 1fr); }

/* 3-zone mega layout: intro | nav-links | highlight */
.mega-3zone .mega-panel-inner {
  grid-template-columns: 240px 1fr 280px;
  gap: 0;
  align-items: start;
}

/* Zone 1: Intro (left) */
.mega-intro {
  padding: var(--space-2) var(--space-6) var(--space-2) var(--space-2);
  border-right: 1px solid var(--border);
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.mega-intro-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--space-2);
}
.mega-intro-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}
.mega-intro .btn { margin-top: auto; }

/* Zone 2: Nav links (center) */
.mega-nav-links {
  padding: var(--space-2) var(--space-6);
  display: grid;
  gap: var(--space-1);
}
.mega-nav-links.cols-1 { grid-template-columns: 1fr; }
.mega-nav-links.cols-2 { grid-template-columns: 1fr 1fr; }

/* Zone 3: Highlight (right) */
.mega-highlight {
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-6);
  border-left: 1px solid var(--border);
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.mega-highlight-card {
  background: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.mega-highlight-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}
.mega-highlight-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.mega-highlight-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-highlight-card .btn { margin-top: auto; align-self: flex-start; }

.mega-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  padding: 0 var(--space-2);
}
.mega-col-tagline {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  padding: 0 var(--space-2);
  line-height: 1.4;
}
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  margin-bottom: 2px;
}
.mega-link:hover { background: var(--border-light); }
.mega-link-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.mega-link-icon svg { width: 16px; height: 16px; }
.mega-link-text { display: flex; flex-direction: column; min-width: 0; }
.mega-link-name { font-size: var(--text-sm); font-weight: 600; color: var(--text); line-height: 1.3; }
.mega-link-desc { font-size: 11px; color: var(--text-muted); line-height: 1.3; margin-top: 1px; }

/* Hervorgehobener Produkt-Eintrag (KI-Workplace, externes Adacor-Produkt) */
.mega-link-product { margin-top: var(--space-2); background: rgba(177,115,217,0.06); border: 1px solid rgba(177,115,217,0.20); }
.mega-link-product:hover { background: rgba(177,115,217,0.12); }
.mega-link-product .mega-link-name { color: var(--accent-purple); }
.mega-link-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-purple); line-height: 1.2; margin-bottom: 2px; }

/* Kundenlogo-Strip auf Branchenseiten ("Kunden aus …") */
.client-logos { display: flex; gap: var(--space-6); justify-content: center; align-items: center; flex-wrap: wrap; margin-top: var(--space-8); }
.client-logo-box { width: 160px; height: 80px; display: flex; align-items: center; justify-content: center; }
.client-logo-box img { height: 40px; width: auto; max-width: 150px; object-fit: contain; }
.client-logo-box.is-text { background: var(--border-light); border-radius: var(--radius-lg); font-size: var(--text-sm); color: var(--text-secondary); font-weight: 600; }

/* Referenz-Projektblöcke (alternierend: Visual + Content) */
.project-blocks { display: flex; flex-direction: column; gap: var(--space-16); margin-top: var(--space-12); }
.project-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-12); align-items: center; }
.project-block:nth-child(even) .project-block-visual { order: 2; }
.project-block-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); aspect-ratio: 4 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); padding: var(--space-10); }
.project-block-visual img { max-width: 72%; max-height: 56%; object-fit: contain; }
.project-block-visual .project-block-anon { color: var(--text-muted); font-size: var(--text-sm); font-weight: 600; text-align: center; }
.project-block-meta { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-4) 0 var(--space-5); }
.project-block-meta .fact { font-size: var(--text-xs); background: var(--border-light); border-radius: var(--radius-full); padding: 5px 12px; color: var(--text-secondary); }
.project-block-meta .fact strong { color: var(--text); font-weight: 700; }
.project-block-quote { font-style: italic; color: var(--text-secondary); margin-top: var(--space-4); }
.project-block-quote cite { display: block; font-style: normal; font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-2); }

/* Partnerstatus-Badges (Leistungen, z. B. Public Cloud) — Badges in Farbe, nicht entsättigt */
.partner-badges { display: flex; flex-wrap: wrap; gap: var(--space-8); justify-content: center; align-items: center; margin-top: var(--space-10); }
.partner-badge { width: 200px; height: 120px; display: flex; align-items: center; justify-content: center; }
.partner-badge img { max-width: 100%; max-height: 110px; object-fit: contain; }
.partner-badge.is-text { background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius-lg); color: var(--text-muted); font-size: var(--text-sm); font-weight: 600; text-align: center; padding: var(--space-4); }
.partner-platforms { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-4) var(--space-8); margin-top: var(--space-10); }
.partner-platform { flex: 1 1 0; min-width: 0; display: inline-flex; align-items: center; justify-content: center; text-align: center; gap: var(--space-2); height: 120px; padding: 0 var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text); }
.partner-platform-icon { width: 30px; height: 30px; color: var(--text-secondary); flex-shrink: 0; }
.partner-columns { display: grid; grid-template-columns: 1fr 1fr; margin-top: var(--space-10); }
.partner-column { text-align: center; padding: 0 var(--space-8); }
.partner-column + .partner-column { border-left: 1px solid var(--border); }
.partner-column-label { display: block; font-size: var(--text-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: var(--space-8); }
.partner-column .partner-badges { margin-top: 0; }
.partner-column .partner-platforms { margin-top: 0; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: var(--space-3); }
@media (max-width: 768px) {
  .partner-columns { grid-template-columns: 1fr; }
  .partner-column { padding: 0; }
  .partner-column + .partner-column { border-left: none; border-top: 1px solid var(--border); padding-top: var(--space-8); margin-top: var(--space-8); }
}

/* Simple mega link (no icon) */
.mega-simple-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mega-simple-link:hover { background: var(--border-light); color: var(--text); }
.mega-simple-link.external::after { content: " \2197"; font-size: 11px; opacity: 0.5; }

/* Mega footer bar */
.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
  margin-top: var(--space-2);
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  align-items: center;
}
.mega-footer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.mega-footer a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.mega-footer a:hover { color: var(--primary); }
.mega-footer .mega-workplace-link { color: var(--accent-purple); }
.mega-footer .mega-workplace-link:hover { color: #9a5cc4; }

/* Urgency badge */
.mega-badge-urgent {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(255, 82, 47, 0.12);
  color: var(--accent-warm);
  margin-left: var(--space-1);
  vertical-align: middle;
}

/* ================================================================
   MOBILE NAVIGATION
   ================================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;        /* Fallback */
  height: 100dvh;       /* dynamische Viewport-Hoehe: beruecksichtigt iOS-Browserleisten */
  width: 340px;
  max-width: 85vw;
  background: var(--surface);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-drawer.open { transform: translateX(0); }
/* Drawer-Kinder duerfen nicht schrumpfen — sonst quetscht Flexbox den geoeffneten
   Accordion-Body zusammen (statt den Drawer ueberlaufen und scrollen zu lassen). */
.mobile-drawer > * { flex-shrink: 0; }
.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: var(--space-2);
  margin-bottom: var(--space-4);
}
.mobile-drawer-close svg { width: 24px; height: 24px; }
/* :not(.btn) — sonst ueberschreibt diese Regel die Login-/Kontakt-Buttons im Drawer */
.mobile-drawer > a:not(.btn) {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-light);
  display: block;
}
.mobile-drawer > a:not(.btn):hover { color: var(--text); }

.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-system);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-4) 0;
  cursor: pointer;
  text-align: left;
}
.mobile-accordion-trigger svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.mobile-accordion-trigger.open svg { transform: rotate(180deg); }
.mobile-accordion-body { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
/* Aufklappen CSS-gesteuert ueber die .open-Klasse — unabhaengig von der JS-Hoehenberechnung.
   !important schlaegt ein evtl. vom Skript gesetztes inline max-height. */
.mobile-accordion-trigger.open + .mobile-accordion-body { max-height: 1000px !important; }
.mobile-accordion-body a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.mobile-accordion-body a:hover { color: var(--text); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 600px at 30% 20%, rgba(0, 173, 208, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at 75% 65%, rgba(146, 212, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 50% 45%, rgba(0, 173, 208, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-6);
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-trust-pills {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}
.hero-pill-icon { color: var(--accent-green); font-size: 14px; display: flex; }
.hero-ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }

/* ================================================================
   LOGO MARQUEE
   ================================================================ */
.logo-marquee-section { padding: var(--space-12) 0; overflow: hidden; }
.logo-marquee-section .section-eyebrow { text-align: center; margin-bottom: var(--space-8); }
.marquee-track {
  display: flex;
  gap: var(--space-20);
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
/* Einheitliche Hoehe pro Logo (44px), Breite automatisch wie auf den Logo-Waenden;
   setzt eng beschnittene Logos ohne Weissraum voraus. */
.marquee-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   CHALLENGE TRIGGERS (3x2 Grid)
   ================================================================ */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.challenge-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.challenge-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}
.challenge-body {
  padding: var(--space-6) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.challenge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: var(--border-light);
}
.challenge-icon svg { width: 24px; height: 24px; color: var(--primary); }
.challenge-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.challenge-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}
.challenge-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition-fast);
}
.challenge-link:hover { gap: var(--space-3); }
.challenge-link::after { content: "\2192"; }

/* ================================================================
   PLATFORM TABS
   ================================================================ */
.platform-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  position: relative; /* Bezug für die gleitende Kategorie-Pill */
}
/* Gleitende Pill hinter dem aktiven Tab. Größe/Position/Farbe werden per JS gesetzt
   (Farbe = Kategorie-Punkt als weiche Tönung), sie wischt beim Wechsel zur neuen Kategorie. */
.tab-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: var(--radius-full);
  background: transparent;
  z-index: 0;
  pointer-events: none;
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1),
              width var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1),
              height var(--transition-slow),
              background var(--transition-normal);
}
.platform-tab-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.platform-tab-btn:hover { color: var(--text-secondary); }
.platform-tab-btn.active {
  color: var(--text);
  border-bottom-color: transparent;
}
.platform-tab-btn .tab-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.platform-tab-panel { display: none; }
.platform-tab-panel.active { display: block; }
.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
/* Award-Logo-Slot: Basisklasse (identisch zu den Inline-Platzhaltern) + gefüllte Variante mit echtem Logo */
.award-logo-slot {
  width: 100%;
  height: 120px;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-weight: 500;
}
.award-logo-slot--filled { background: #fff; padding: var(--space-4); }
.award-logo-slot img { max-width: 100%; max-height: 100%; object-fit: contain; }
/* Foto-Variante (News-Bilder statt Logo): formatfüllend, beschnitten */
.award-logo-slot--photo { padding: 0; overflow: hidden; }
.award-logo-slot--photo img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; border-radius: var(--radius-lg); }
/* Platzhalter, solange kein echtes Logo vorliegt: dezentes Award-Emblem */
.award-logo-slot--placeholder svg { width: 46px; height: 46px; color: var(--text-secondary); opacity: .28; }
/* Bildnachweis/Copyright auf Foto-Kacheln */
.award-logo-slot--photo { position: relative; }
.award-credit { position: absolute; right: 6px; bottom: 5px; font-size: 9px; line-height: 1; color: #fff; background: rgba(0,0,0,.55); padding: 2px 5px; border-radius: 4px; letter-spacing: .02em; }

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.platform-card .platform-card-link {
  margin-top: auto;
  padding-top: var(--space-4);
}
.platform-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.platform-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.platform-card-icon svg { width: 20px; height: 20px; }
.platform-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.platform-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}
.platform-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}
.platform-card-link::after { content: "\2192"; transition: transform var(--transition-fast); }
.platform-card-link:hover::after { transform: translateX(3px); }
/* Hervorgehobene Produkt-Karte (KI-Workplace, externes Adacor-Produkt) — analog .mega-link-product */
.platform-card-product { background: rgba(177,115,217,0.06); border-color: rgba(177,115,217,0.30); }
.platform-card-product .platform-card-link { color: var(--accent-purple); }
.platform-card-eyebrow { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-purple); margin-bottom: var(--space-1); }

.award-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-3);
}
.award-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
}
.award-pill.award-pill-active {
  background: rgba(146, 212, 0, 0.12);
  border-color: rgba(146, 212, 0, 0.35);
  color: #5a8500;
}
.award-pill.award-pill-ongoing {
  background: rgba(0, 173, 208, 0.1);
  border-color: rgba(0, 173, 208, 0.3);
  color: var(--primary);
}

.partner-cert-logo {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--space-4);
}
.partner-cert-logo img {
  max-height: 64px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.history-timeline {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.history-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-8);
  align-items: baseline;
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border);
}
.history-item:first-child { padding-top: 0; }
.history-item:last-child { border-bottom: none; padding-bottom: 0; }
.history-year {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  line-height: 1;
}
.history-year-current { color: var(--accent-green); }
.history-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.history-body p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
}
.history-body p + p { margin-top: var(--space-3); }
@media (max-width: 640px) {
  .history-item { grid-template-columns: 1fr; gap: var(--space-2); padding: var(--space-6) 0; }
  .history-year { font-size: var(--text-2xl); }
}

/* ================================================================
   K.O.-BLOCK — Buyer-Committee-Trust-Anker (C-01, Diskrepanz #20)
   ================================================================ */
.ko-block {
  padding: var(--space-20) 0;
  background: var(--surface-hover);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ko-block-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto var(--space-12);
}
.ko-block-header .section-subtitle {
  margin: var(--space-3) auto 0;
  max-width: none;
  white-space: nowrap;
}
.ko-block-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
}
.ko-block-item {
  border-top: 1px solid var(--border);
}
.ko-block-item:last-child {
  border-bottom: 1px solid var(--border);
}
.ko-block-details {
  width: 100%;
}
.ko-block-summary {
  display: grid;
  grid-template-columns: 88px 1fr 32px;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-8) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease;
}
.ko-block-summary::-webkit-details-marker { display: none; }
.ko-block-summary::marker { display: none; }
.ko-block-summary:hover .ko-block-question {
  color: var(--accent-green);
}
.ko-block-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-green);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-style: italic;
}
.ko-block-question {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.ko-block-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 173, 208, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ko-block-summary:hover .ko-block-toggle {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 173, 208, 0.35);
}
.ko-block-toggle::before,
.ko-block-toggle::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease;
}
.ko-block-toggle::before {
  width: 14px;
  height: 2px;
}
.ko-block-toggle::after {
  width: 2px;
  height: 14px;
}
.ko-block-details[open] .ko-block-toggle::after {
  transform: rotate(90deg);
}
.ko-block-answer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin: 0 0 var(--space-6) calc(88px + var(--space-6));
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.ko-block-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ko-block-check svg {
  color: #fff;
  width: 14px;
  height: 14px;
}
.ko-block-answer p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.ko-block-answer p strong {
  color: var(--text);
  font-weight: 700;
}

/* ================================================================
   KI-WORKPLACE HIGHLIGHT BANNER
   ================================================================ */
.workplace-banner {
  background: var(--gradient-workplace);
  padding: var(--space-16) 0;
  overflow: hidden;
}
.workplace-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: center;
}
.workplace-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
}
.workplace-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}
.workplace-video {
  max-width: 460px;
  margin-inline: auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 30px 60px -18px rgba(0,0,0,0.45);
  line-height: 0;
}
.workplace-video video {
  display: block;
  width: 100%;
  height: auto;
}
.workplace-preview {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  backdrop-filter: blur(8px);
}
.workplace-preview-header {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-4);
}
.workplace-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
}
.workplace-preview-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.workplace-preview-line {
  height: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
}

/* ================================================================
   INDUSTRY VERTICALS (5 cols)
   ================================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}
/* 6er-Grid (z. B. Branchen-Hub): 3 pro Reihe statt 5 — schmalere Breakpoints greifen weiter über .industry-grid */
.industry-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--transition-slow), border-color var(--transition-slow);
  position: relative;
  overflow: hidden;
}
/* Branchen-Cards (hell): Stock-Foto als oberer Bildstreifen, heller Body darunter */
.industry-card-media { height: 140px; background-size: cover; background-position: center; }
.industry-card-content {
  position: relative;
  z-index: 1;
  padding: var(--space-6);
}
.industry-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(0, 173, 208, 0.1);
}
.industry-icon svg { width: 24px; height: 24px; color: var(--primary); }
.industry-card h2,
.industry-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.industry-card-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 var(--space-3);
}
.industry-badges {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.industry-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(0, 173, 208, 0.15);
  color: var(--primary);
}
.industry-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}
.industry-link::after { content: "\2192"; transition: transform var(--transition-fast); }
.industry-link:hover::after { transform: translateX(3px); }

/* ================================================================
   TRUST & COMPLIANCE
   ================================================================ */
.trust-section .section-title,
.trust-section .section-subtitle { text-align: center; }
.trust-section .section-subtitle { margin: 0 auto var(--space-10); }

.cert-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.cert-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: rgba(0, 173, 208, 0.1);
  border: 1px solid rgba(0, 173, 208, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-badge-icon svg { width: 28px; height: 28px; color: var(--primary); }
.cert-badge-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-on-dark-secondary);
  text-align: center;
}
.trust-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.trust-feature {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: border-color var(--transition-slow);
}
.trust-feature:hover { border-color: var(--primary); }
/* Trust-Feature-Karten sind Links auf die Zertifizierungs-Seite */
a.trust-feature { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.trust-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(0, 173, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-feature-icon svg { width: 24px; height: 24px; color: var(--primary); }
.trust-feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--space-2);
}
.trust-feature p {
  font-size: var(--text-sm);
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
}

/* Security Shield Animation */
.security-shield-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto var(--space-10);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.shield-bg-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.shield-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 31, 58, 0.7), rgba(0, 173, 208, 0.3));
}
.security-shield {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 173, 208, 0.15);
  animation: shield-pulse 4s ease-in-out infinite;
}
.shield-ring:nth-child(2) { inset: 15px; border-color: rgba(0, 173, 208, 0.25); animation-delay: 0.5s; }
.shield-ring:nth-child(3) { inset: 30px; border-color: rgba(0, 173, 208, 0.35); animation-delay: 1s; }
.shield-center {
  position: absolute;
  inset: 45px;
  border-radius: 50%;
  background: rgba(0, 173, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-center svg { width: 48px; height: 48px; color: var(--primary); }
@keyframes shield-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* ================================================================
   ABOUT / FACTS GRID
   ================================================================ */
.about-photo-band {
  margin-bottom: var(--space-12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-band img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}
.about-text p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.fact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.fact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fact-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: var(--space-1);
}
.fact-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ================================================================
   INSIGHTS TEASERS
   ================================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}
/* Referenzen: Leistungs-Filter (Chips über dem Kachel-Grid) */
.ref-featured { margin-bottom: var(--space-6); }
.ref-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-10);
}
.ref-filter-chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.ref-filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.ref-filter-chip.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
/* Link-Pill (führt von der Seite weg, z. B. zu /referenzen/) */
.ref-filter-chip { display: inline-flex; align-items: center; text-decoration: none; }
.ref-filter-link { color: var(--primary); border-color: var(--primary); }
.ref-filter-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.insight-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.insight-content {
  padding: var(--space-6) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insight-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  align-self: flex-start;
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.insight-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-4);
}
.insight-date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
/* Karten sind anklickbare Links — Standard-Link-Optik zurücksetzen */
.insight-card { text-decoration: none; color: inherit; }
.insight-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-light);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}
/* Featured-Beitrag: volle Breite, ab Tablet zweispaltig (Bild | Text) */
.insight-card-featured { margin-top: var(--space-10); }
@media (min-width: 768px) {
  .insight-card-featured { flex-direction: row; }
  .insight-card-featured .insight-image { width: 48%; aspect-ratio: 16 / 10; }
  .insight-card-featured .insight-content { justify-content: center; padding: var(--space-10); }
  .insight-card-featured h3 { font-size: var(--text-2xl); }
}

/* ================================================================
   INSIGHT-ARTIKEL — Detailseite (/news/<slug>/)
   ================================================================ */
/* Bewusst NICHT die Vollbild-Hero (min-height:100vh) und NICHT die
   zentrierte Spalte der Landingpages: Artikel sind kompakt und der
   Lauftext ist linksbündig — besser lesbar für lange Beiträge. */
.article-hero {
  padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-8);
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  margin-top: var(--space-2);
}
.article-body-section {
  padding: var(--space-10) 0 var(--space-16);
}

/* Lesespalte: begrenzte Zeilenlänge für gute Lesbarkeit, Text linksbündig */
.article-wrap {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.article-meta time { color: var(--text-secondary); }

.article-hero-figure {
  margin: 0 0 var(--space-8);
}
.article-hero-figure .insight-image {
  border-radius: var(--radius-2xl);
}

.article-body {
  margin-top: 0;
}
.article-body > * + * { margin-top: var(--space-6); }
.article-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-top: var(--space-10);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text);
  margin-top: var(--space-8);
}
.article-body p,
.article-body ul,
.article-body ol {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--text-secondary);
}
.article-body ul,
.article-body ol { padding-left: var(--space-6); }
.article-body li + li { margin-top: var(--space-2); }
.article-body a { color: var(--primary); text-decoration: underline; }
/* Inline-Bilder im Fließtext: natürliche Größe, auf Spaltenbreite gedeckelt
   (nie hochskalieren), zentriert als eigener Block. So bleiben Logos/Porträts
   klein und Diagramme füllen die Spalte – ohne "Flattern". */
.article-body img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: var(--space-8) auto;
  border-radius: var(--radius-2xl);
}
/* Verlinktes Bild (z. B. Teaser zur Flickr-Galerie): Link auf Blockbreite,
   damit das enthaltene Bild über margin:auto zentriert bleibt. */
.article-body a:has(> img) { display: block; }
/* Eingebettete Videos (YouTube): responsives 16:9, volle Spaltenbreite.
   Einheitliches Markup <div class="video-embed"><iframe>…</iframe></div>,
   damit es sich später leicht in eine Consent-Lösung einhängen lässt. */
.article-body .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: var(--space-8) 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #000;
}
.article-body .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding-left: var(--space-5);
  color: var(--text);
  font-style: italic;
}

/* Datumszeile unter der Überschrift (entspricht der "Stand"-Zeile) */
.article-dateline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-muted);
}

/* Fett gesetzter Vorspann (Lead) aus dem excerpt */
.article-lead {
  margin-top: var(--space-6);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
}

/* Autorenzeile mit Initialen-Avatar, oben und unten fein abgesetzt */
.article-byline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.article-byline-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}
.article-byline-text {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-secondary);
}
.article-byline-text a { color: var(--primary); font-style: normal; }
/* Byline-Avatar als Foto (echter Autor) */
.article-byline-photo { object-fit: cover; padding: 0; }
/* Byline-Avatar als Adacor-Signet (Adacor Redaktion): helle Fläche, Signet zentriert */
.article-byline-signet { background: #fff; border: 1px solid var(--border-light); padding: 0; }
.article-byline-signet img { width: 26px; height: 26px; object-fit: contain; }

/* Autorenbox am Fuß ("Unser Autor") – Layout in Anlehnung an die alte Seite */
.article-author-box {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-10);
  padding: var(--space-6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
}
.article-author-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  object-fit: cover;
}
.article-author-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.article-author-name {
  margin-top: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
}
.article-author-role {
  margin-top: 2px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.article-author-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--primary);
  text-decoration: underline;
}

/* Bildunterschrift und Bildnachweis unter dem Aufmacherbild */
.article-hero-figure figcaption {
  margin-top: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-muted);
}
.article-figcredit { color: var(--text-muted); }

/* Teilen-Reihe am Ende des Beitrags */
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
}
.article-share-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: var(--space-2);
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.article-share-btn:hover { border-color: var(--primary); color: var(--primary); }
.article-share-btn svg { width: 16px; height: 16px; }

.author-box {
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
}
.author-box-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}
.author-box-role {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: 2px;
}
.author-box-link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: var(--gradient-brand);
  padding: var(--space-20) 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
}
.cta-banner-btns { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--dark-bg);
  color: var(--text-on-dark-secondary);
  padding: var(--space-16) var(--space-8) var(--space-8);
  border-top: 1px solid var(--dark-border);
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand { padding-right: var(--space-8); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-logo svg,
.footer-logo img { height: 30px; width: auto; }
.footer-desc { font-size: var(--text-sm); line-height: 1.6; margin-bottom: var(--space-6); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-1); margin-bottom: var(--space-6); }
.footer-contact a { font-size: var(--text-sm); color: var(--text-on-dark-secondary); text-decoration: none; transition: color var(--transition-fast); }
.footer-contact a:hover { color: #fff; }
.footer-trust { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer-trust-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-on-dark-secondary);
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
}
.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-secondary);
  margin-bottom: var(--space-4);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-on-dark-secondary);
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--text-on-dark); }
/* Verbands- / Kundenlogo-Slot zwischen Footer-Grid und Footer-Bottom */
.footer-associations {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.footer-associations-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-secondary);
  flex-shrink: 0;
}
.footer-associations-logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: nowrap;
}
.footer-associations-logos img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-sizing: border-box;
  opacity: 0.95;
  transition: opacity var(--transition-normal);
}
.footer-associations-logos img:hover { opacity: 1; }
.footer-associations-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-on-dark-secondary);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.footer-associations-link:hover { color: var(--text-on-dark); }

@media (max-width: 768px) {
  .footer-associations-logos { flex-wrap: wrap; justify-content: flex-start; gap: var(--space-6); }
  .footer-associations-logos img { height: 50px; width: auto; max-width: 128px; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}
.footer-bottom-links { display: flex; gap: var(--space-6); }
.footer-bottom-links a { color: var(--text-on-dark-secondary); }
.footer-bottom-links a:hover { color: var(--text-on-dark); }

/* ================================================================
   CHALLENGE SUBPAGE — Hero, Problem, Migration, Trust, CTA, Related
   ================================================================ */

/* --- Utility: Narrow content column --- */
.content-narrow {
  max-width: 900px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

/* --- Challenge Hero --- */
.challenge-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Flacher Hero (z. B. Kontaktseite): volle Luft oben wie auf allen anderen
   Seiten, nur der untere Abstand ist reduziert, damit das Formular naeher folgt */
.challenge-hero--flat {
  min-height: 100vh;
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-10);
}
.challenge-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 600px at 30% 20%, rgba(0, 173, 208, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at 75% 65%, rgba(146, 212, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 50% 45%, rgba(0, 173, 208, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.challenge-hero > .container { position: relative; z-index: 1; width: 100%; }
.challenge-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.challenge-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  transition: color var(--transition-fast);
}
.challenge-breadcrumb:hover { color: var(--primary); }
.challenge-hero-content .section-eyebrow { text-align: left; margin-bottom: var(--space-4); }
.challenge-hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}
.challenge-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 540px;
}
.challenge-hero-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.challenge-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  background: rgba(0, 173, 208, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.challenge-hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.challenge-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.challenge-hero-visual img {
  width: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(0.85);
  box-shadow: var(--shadow-2xl);
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}
.problem-card-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}
.problem-card-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}
.problem-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.problem-detail-card {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.problem-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.problem-detail-icon svg { width: 24px; height: 24px; color: var(--primary); }
.problem-detail-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.problem-detail-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}
/* Icon neben Headline in einer Zeile (Problem-Detail-Karten; zentrierte ausgenommen) */
.problem-detail-card:has(> .problem-detail-icon):not([style*="center"]) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--space-3);
  row-gap: var(--space-4);
}
.problem-detail-card:has(> .problem-detail-icon):not([style*="center"]) > .problem-detail-icon { margin-bottom: 0; }
.problem-detail-card:has(> .problem-detail-icon):not([style*="center"]) > h3 { grid-column: 2; margin-bottom: 0; }
.problem-detail-card:has(> .problem-detail-icon):not([style*="center"]) > :not(.problem-detail-icon):not(h3) { grid-column: 1 / -1; }
.problem-quote {
  max-width: 720px;
  margin: 0 auto;
}
.problem-quote blockquote {
  border-left: 3px solid var(--primary);
  padding-left: var(--space-6);
}
.problem-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.problem-quote cite {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: normal;
}

/* --- Situation-Block: erweiterter Look (gekapselt) ---
   Aktiv nur auf Sektionen mit .situation-block: Herausforderungsseiten, bei denen
   nach dem Hero der Situation-Abschnitt mit 3 Zahlen, 3 Fakten und Zitat folgt.
   Standard-.problem-* (Branchen-, Leistungsseiten usw.) bleibt unberuehrt. */
.situation-block .problem-grid { margin-bottom: var(--space-6); }
.situation-block .problem-card,
.situation-block .problem-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.situation-block .problem-card {
  padding: var(--space-8) var(--space-6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.situation-block .problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.situation-block .problem-card-value {
  white-space: nowrap;
  background: none;
  -webkit-text-fill-color: var(--primary);
  color: var(--primary);
  transition: transform 0.25s ease;
}
.situation-block .problem-card:hover .problem-card-value { transform: scale(1.08); }
.situation-block .problem-quote {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: var(--space-10) auto 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 173, 208, 0.12), rgba(146, 212, 0, 0.12));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.situation-block .problem-quote::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gradient-brand);
}
.situation-block .problem-quote blockquote { border-left: none; padding-left: 0; }
.situation-block .problem-quote p { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.situation-block .problem-quote cite { display: block; color: var(--text-secondary); }
@media (prefers-reduced-motion: reduce) {
  .situation-block .problem-card,
  .situation-block .problem-card-value { transition: none; }
  .situation-block .problem-card:hover { transform: none; }
  .situation-block .problem-card:hover .problem-card-value { transform: none; }
}

/* --- Cost Comparison --- */
.cost-comparison {
  display: flex;
  align-items: stretch;
  gap: var(--space-6);
  max-width: 900px;
  margin: var(--space-10) auto 0;
}
.cost-card {
  flex: 1;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}
.cost-card--before {
  background: var(--surface);
  border: 1px solid var(--border);
}
.cost-card--after {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  border: 1px solid var(--dark-border);
}
.cost-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}
.cost-card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.cost-card--after .cost-card-label { color: var(--text-on-dark-secondary); }
.cost-card-period {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.cost-card--after .cost-card-period { color: var(--text-on-dark-secondary); }
.cost-card-price { margin-bottom: var(--space-6); }
.cost-card-amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
}
.cost-card--after .cost-card-amount {
  background: linear-gradient(135deg, #ff522f, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cost-card-unit {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-1);
}
.cost-card--after .cost-card-unit { color: var(--text-on-dark-secondary); }
.cost-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  flex: 1;
}
.cost-card-features li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-light);
}
.cost-card--after .cost-card-features li {
  color: var(--text-on-dark-secondary);
  border-bottom-color: var(--dark-border);
}
.cost-card-features--negative li::before {
  content: "✕ ";
  color: #ff522f;
}
.cost-card-increase {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #ff522f;
  text-align: center;
  padding: var(--space-3);
  background: rgba(255, 82, 47, 0.1);
  border-radius: var(--radius-lg);
}
.cost-card-divider {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

/* --- Migration Paths --- */
.migration-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.migration-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.migration-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.migration-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
  gap: var(--space-3);
}
.migration-card-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.migration-card-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0, 173, 208, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.migration-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.migration-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.migration-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  flex: 1;
}
.migration-card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  line-height: 1.5;
}
.migration-card-benefits li svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Trust Why Grid --- */
.trust-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10) var(--space-16);
  max-width: 900px;
  margin: var(--space-10) auto var(--space-12);
}
/* Ausnahme: genau 5 Karten als 3 oben + 2 mittig darunter (3+2, nicht 2+2+1) */
@media (min-width: 769px) {
  .trust-why-grid:has(> .trust-why-card:nth-child(5):last-child) {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-10) var(--space-8);
  }
  .trust-why-grid:has(> .trust-why-card:nth-child(5):last-child) > .trust-why-card { grid-column: span 2; }
  .trust-why-grid:has(> .trust-why-card:nth-child(5):last-child) > .trust-why-card:nth-child(4) { grid-column: 2 / span 2; }
  .trust-why-grid:has(> .trust-why-card:nth-child(5):last-child) > .trust-why-card:nth-child(5) { grid-column: 4 / span 2; }
}
/* Ausnahme: genau 6 Karten als 3 + 3 */
@media (min-width: 769px) {
  .trust-why-grid:has(> .trust-why-card:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10) var(--space-8);
  }
}
/* Icon-Hover: Lichtpunkt wandert an der Icon-Outline entlang */
@property --icon-orbit-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.trust-why-icon { position: relative; }
.trust-why-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--icon-orbit-angle), transparent 0deg 280deg, rgba(0,173,208,0.55) 330deg, #ffffff 352deg, rgba(0,173,208,0.55) 356deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.trust-why-card:hover .trust-why-icon::before {
  opacity: 1;
  animation: icon-orbit 1.8s linear infinite;
}
@keyframes icon-orbit {
  to { --icon-orbit-angle: 360deg; }
}
/* 3 Karten (z. B. Branchen-Hub „Warum Adacor"): 3 statt 4 Spalten → mittig unter der Headline. Schmalere Breakpoints (2/1) greifen weiter über .trust-why-grid */
.trust-why-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.trust-why-card {
  text-align: center;
}
.trust-why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-xl);
  background: rgba(0, 173, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-why-icon svg { width: 28px; height: 28px; color: var(--primary); }
.trust-why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--space-2);
}
.trust-why-card p {
  font-size: var(--text-sm);
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
}
/* brand-eins-Siegel in der Wert-Kachel statt Text-Wert (helle problem-card) */
/* Sonderfall brandeins-Kachel: zweispaltig - links vollflaechig das Siegel, rechts der Text */
.problem-card--brandeins { display: flex; align-items: center; gap: var(--space-6); text-align: left; }
.problem-card--brandeins .problem-card-logo { flex-shrink: 0; margin: 0; }
.problem-card--brandeins .problem-card-logo img { height: auto; max-height: 128px; width: auto; display: block; }
.problem-card--brandeins .problem-card-body { display: flex; flex-direction: column; }
.problem-card--brandeins .problem-card-body .problem-card-value { margin-bottom: var(--space-2); }

/* --- Trust Reference --- */
.trust-reference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.trust-reference-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trust-reference-content {
  padding: var(--space-8) var(--space-8) var(--space-8) 0;
}
.trust-reference-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--text-on-dark);
  line-height: 1.5;
  margin-bottom: var(--space-8);
}
.trust-reference-stats {
  display: flex;
  gap: var(--space-8);
}
.trust-reference-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-reference-stat-label {
  font-size: var(--text-xs);
  color: var(--text-on-dark-secondary);
}

/* --- CTA Conversion Section --- */
.cta-conversion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.cta-conversion-content .section-eyebrow { text-align: left; }
.cta-conversion-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}
.cta-conversion-content > p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.cta-conversion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}
.cta-conversion-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--space-2) 0;
}
.cta-conversion-list li svg { color: var(--accent-green); flex-shrink: 0; }
.cta-conversion-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-conversion-or {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.cta-conversion-phone {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
}
.cta-conversion-phone:hover { text-decoration: underline; }

/* Telefon als ruhige Zeile unter dem Button (Desktop): Button eigene Zeile, Label + Nummer darunter */
@media (min-width: 1025px) {
  .cta-conversion-actions {
    display: grid;
    grid-template-columns: max-content max-content 1fr;
    align-items: baseline;
    column-gap: var(--space-3);
    row-gap: var(--space-4);
  }
  .cta-conversion-actions .btn { grid-column: 1 / -1; justify-self: start; }
}
.cta-conversion-visual img {
  width: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

/* --- Related Links --- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.related-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.related-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.related-card-text { flex: 1; }
.related-card-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-1);
}
.related-card-text p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}
.related-card-arrow {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.related-card:hover .related-card-arrow { transform: translateX(3px); }

/* --- Requirements Grid (NIS2 page) --- */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  margin-bottom: var(--space-8);
}
.requirements-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
}
.requirements-card-check {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background: rgba(146, 212, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.requirements-card-check svg { color: var(--accent-green); }
.requirements-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.requirements-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
/* Letztes Element traegt keinen Abstand nach unten -> Luft oben/unten symmetrisch, Karten wirken gefuellter statt unten leer */
.requirements-card > *:last-child { margin-bottom: 0; }
/* Icon neben Headline in einer Zeile (Standard-Karten mit Icon-Slot; zentrierte Karten ausgenommen) */
.requirements-card:has(> .requirements-card-check):not([style*="center"]) {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--space-3);
  row-gap: var(--space-4);
}
.requirements-card:has(> .requirements-card-check):not([style*="center"]) > .requirements-card-check { margin-bottom: 0; }
.requirements-card:has(> .requirements-card-check):not([style*="center"]) > h3 { grid-column: 2; margin-bottom: 0; }
.requirements-card:has(> .requirements-card-check):not([style*="center"]) > :not(.requirements-card-check):not(h3) { grid-column: 1 / -1; }
/* Hover-Kaskade: gruene Haken in Karten-Listen laufen einmal von oben nach unten durch */
@keyframes check-cascade {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.requirements-card ul li svg { transform-origin: center; }
.requirements-card:hover ul li svg { animation: check-cascade 0.4s ease both; }
.requirements-card:hover ul li:nth-child(1) svg { animation-delay: 0s; }
.requirements-card:hover ul li:nth-child(2) svg { animation-delay: 0.08s; }
.requirements-card:hover ul li:nth-child(3) svg { animation-delay: 0.16s; }
.requirements-card:hover ul li:nth-child(4) svg { animation-delay: 0.24s; }
.requirements-card:hover ul li:nth-child(5) svg { animation-delay: 0.32s; }
.requirements-card:hover ul li:nth-child(6) svg { animation-delay: 0.40s; }
.requirements-card:hover ul li:nth-child(7) svg { animation-delay: 0.48s; }
.requirements-card:hover ul li:nth-child(8) svg { animation-delay: 0.56s; }
@media (prefers-reduced-motion: reduce) {
  .requirements-card:hover ul li svg { animation: none; }
}
.requirements-status {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #3f6d00;
  background: rgba(146, 212, 0, 0.14);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
/* Grid-Karten (Icon neben Headline): Pill nicht auf Zellenbreite strecken,
   sondern alle so breit wie die laengste Pill im Grid (JS setzt --pill-w pro Grid) */
.requirements-card:has(> .requirements-card-check):not([style*="center"]) > .requirements-status {
  justify-self: start;
  width: var(--pill-w, max-content);
  max-width: 100%;
  white-space: nowrap;
}

/* --- Regulation Status: Fristen/Deadlines (auffälliger als Pill) --- */
.reg-status {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  padding: 5px 11px;
  border-radius: var(--radius-md);
  border: 1px solid;
}
/* Licht-Schimmer, der bei Hover leicht ueber die Pill wandert */
.reg-status::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
  transform: translateX(-130%);
  pointer-events: none;
}
.requirements-card:hover .reg-status::after {
  transform: translateX(130%);
  transition: transform 0.75s ease;
}
.reg-status--past   { color: #d83a1b; background: rgba(255, 82, 47, 0.12); border-color: rgba(255, 82, 47, 0.42); }
.reg-status--phased { color: #3f6d00; background: rgba(146, 212, 0, 0.14); border-color: rgba(146, 212, 0, 0.45); }
/* Status oben rechts in die Kachel setzen */
.requirements-card .reg-status {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
}
/* Auf schmalen Handys wieder unter den Titel, sonst kollidiert der lange Hinweis */
@media (max-width: 600px) {
  .requirements-card .reg-status {
    position: relative;
    margin-top: var(--space-2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .requirements-card:hover .reg-status::after { transition: none; }
}

/* --- Requirements Note --- */
.requirements-note {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  background: rgba(0, 173, 208, 0.05);
  border: 1px solid rgba(0, 173, 208, 0.45);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}
.requirements-note strong {
  color: var(--text);
}

/* --- Challenge Page Responsive --- */
@media (max-width: 1024px) {
  .challenge-hero-inner { grid-template-columns: 1fr; }
  .challenge-hero-visual { max-width: 560px; }
  .migration-paths { grid-template-columns: 1fr !important; }
  .trust-why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-reference-inner { grid-template-columns: 1fr; }
  .trust-reference-content { padding: var(--space-8); }
  .cta-conversion { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .project-block { grid-template-columns: 1fr; gap: var(--space-6); }
  .project-block:nth-child(even) .project-block-visual { order: 0; }
  /* !important: schlaegt die Inline-grid-template-columns-Overrides auf den Seiten (Tablet: 2 Spalten) */
  .requirements-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .challenge-hero { padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10); min-height: auto; }
  .challenge-hero-content h1 { font-size: var(--text-3xl); }
  .challenge-hero-meta { flex-direction: column; gap: var(--space-2); }
  .challenge-hero-ctas { flex-direction: column; }
  .challenge-hero-ctas .btn { width: 100%; justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-details { grid-template-columns: 1fr !important; }
  .cost-comparison { flex-direction: column; }
  .cost-card-divider { justify-content: center; }
  .cost-card-divider svg { transform: rotate(90deg); }
  .trust-why-grid { grid-template-columns: 1fr; }
  .cta-conversion-actions { flex-direction: column; align-items: flex-start; }
  /* !important: schlaegt die Inline-grid-template-columns-Overrides auf den Seiten (Handy: 1 Spalte) */
  .requirements-grid { grid-template-columns: 1fr !important; }
}

/* ================================================================
   PREISLISTE — Tabellen-Komponente (Pilot: domain-management.html, fuer C-18)
   ================================================================ */
.preisliste-wrap {
  max-width: 760px;
  margin: var(--space-10) auto 0;
}
.preisliste {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(13, 17, 23, 0.03);
}
.preisliste table {
  width: 100%;
  border-collapse: collapse;
}
.preisliste thead tr {
  background: var(--surface-hover);
}
.preisliste th {
  text-align: left;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.preisliste th + th { text-align: right; }
.preisliste td {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--text);
}
.preisliste td + td {
  text-align: right;
  font-feature-settings: "tnum";
}
.preisliste tbody tr { transition: background 0.12s ease; }
.preisliste tbody tr:nth-child(even) { background: rgba(13, 17, 23, 0.015); }
.preisliste tbody tr + tr { border-top: 1px solid var(--border-light); }
.preisliste tbody tr:hover { background: var(--surface-hover); }
.preisliste-tld { font-weight: 600; }
.preisliste-hinweis {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-top: var(--space-3);
  padding: 0 var(--space-2);
}
@media (max-width: 640px) {
  .preisliste th, .preisliste td { padding: var(--space-3) var(--space-4); }
  .preisliste th { font-size: 0.65rem; }
}

/* ================================================================
   AKTUALISIERT-DATUM — Stand-Anzeige fuer Inhalts-Seiten (Diskrepanz #25)
   ================================================================ */
.aktualisiert-datum {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-4);
}
.aktualisiert-datum svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.65;
}
.aktualisiert-datum time {
  font-weight: 600;
  color: var(--text);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-features { grid-template-columns: repeat(2, 1fr); }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .workplace-banner-inner { grid-template-columns: 1fr; }
  .workplace-preview { max-width: 400px; }
  .workplace-video { max-width: 560px; margin-inline: auto; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: var(--text-4xl); }
  .hero { padding: var(--space-20) 0 var(--space-16); min-height: auto; }
  .hero-subtitle { font-size: var(--text-base); }
  .section-title { font-size: var(--text-3xl); }
  .cta-banner h2 { font-size: var(--text-3xl); }
  section { padding: var(--space-16) 0; }
  .challenge-grid { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .ko-block { padding: var(--space-16) 0; }
  .ko-block-header { margin-bottom: var(--space-10); }
  .ko-block-header .section-subtitle { white-space: normal; }
  .ko-block-summary {
    grid-template-columns: 56px 1fr 28px;
    gap: var(--space-4);
    padding: var(--space-5) 0;
  }
  .ko-block-num { font-size: 2rem; }
  .ko-block-question { font-size: 1.0625rem; }
  .ko-block-toggle { width: 32px; height: 32px; }
  .ko-block-toggle::before { width: 12px; }
  .ko-block-toggle::after { height: 12px; }
  .ko-block-answer {
    margin-left: 0;
    margin-bottom: var(--space-5);
  }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-features { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-band img { height: 200px; }
  .about-photo-band { margin-bottom: var(--space-8); }
  .security-shield-wrapper { max-width: 100%; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .header-actions .btn { display: none; }
  .header-actions .header-divider { display: none; }
  .header-actions .hamburger { display: block; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   MOBILE-FEINSCHLIFF STARTSEITE (U-18)
   Trust-Layout, Insights, CTA-Banner, Footer, Container-Innenabstand
   ================================================================ */
@media (max-width: 900px) {
  /* Trust & Compliance: Inline-3-Spalten-Grid auf eine Spalte, Shield-Foto ans Ende */
  .trust-layout { grid-template-columns: 1fr !important; }
  .trust-layout .security-shield-wrapper {
    order: 1;
    max-width: 100% !important;
    height: auto !important;
    margin: var(--space-2) 0 0;
  }
  .trust-layout .shield-bg-photo { height: auto !important; aspect-ratio: 3 / 2 !important; }
}
@media (max-width: 768px) {
  /* CTA-Banner: weniger vertikale Wucht auf dem Handy */
  .cta-banner { padding: var(--space-16) 0; }
}
@media (max-width: 640px) {
  /* Mehr nutzbare Breite auf schmalen Screens (global) */
  .container { padding: 0 var(--space-5); }
  .site-footer { padding-left: var(--space-5); padding-right: var(--space-5); }
  /* Insight-Karten kompakter */
  .insight-content { padding: var(--space-5) var(--space-6) var(--space-6); }
}
@media (max-width: 600px) {
  /* CTA-Buttons frueher stapeln, volle Breite */
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  /* Sehr schmale Screens: Footer-Linkspalten doch einspaltig */
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   "UNSERE LEISTUNGEN" (#leistungen) MOBIL — kompaktere Karten,
   Headline einzeilig neben dem Icon (U-18)
   ================================================================ */
@media (max-width: 768px) {
  #leistungen .platform-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: var(--space-3);
    row-gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
  }
  #leistungen .platform-card-icon {
    grid-column: 1; grid-row: 1;
    width: 36px; height: 36px;
    margin: 0;
  }
  #leistungen .platform-card-icon svg { width: 18px; height: 18px; }
  /* Headline zwingend einzeilig; zu lange werden mit … gekuerzt statt umzubrechen */
  #leistungen .platform-card h3 {
    grid-column: 2; grid-row: 1;
    margin: 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #leistungen .platform-card p { grid-column: 1 / -1; margin: 0; }
  #leistungen .platform-card .platform-card-link {
    grid-column: 1 / -1;
    margin-top: var(--space-1);
    padding-top: 0;
  }
  /* Produkt-Karte (KI-Workplace) hat einen Eyebrow: Icon ueber zwei Zeilen,
     Eyebrow ueber die Headline, damit auch hier die Headline neben dem Icon sitzt */
  #leistungen .platform-card-product .platform-card-icon { grid-row: 1 / 3; align-self: start; }
  #leistungen .platform-card-product .platform-card-eyebrow { grid-column: 2; grid-row: 1; margin: 0; }
  #leistungen .platform-card-product h3 { grid-row: 2; }
}

/* ================================================================
   BRANCHEN (#branchen) — Headline einzeilig neben dem Icon,
   auf allen Breiten inkl. Desktop. Zu lange Headlines mit … statt Umbruch.
   ================================================================ */
#branchen .industry-card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--space-3);
  row-gap: var(--space-3);
  text-align: left;
  padding: var(--space-5);
}
#branchen .industry-icon {
  grid-column: 1; grid-row: 1;
  margin: 0;
  width: 40px; height: 40px;
}
#branchen .industry-icon svg { width: 20px; height: 20px; }
#branchen .industry-card h3 {
  grid-column: 2; grid-row: 1;
  margin: 0;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#branchen .industry-badges {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin: 0;
}
#branchen .industry-link { grid-column: 1 / -1; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { transition: none !important; animation: none !important; }
  .marquee-track { animation: none !important; }
  .shield-ring { animation: none !important; }
  .tab-pill { transition: none !important; }
}
