/* ============================================================
   CLOUD & AI SECURITY HUB — Design System
   "Clean Cloud" · Light-First · WCAG AAA
   ============================================================ */

/* ---------- 1. CSS Custom Properties (Design Tokens) ------- */
:root {
  /* Colors */
  --color-white:        #FFFFFF;
  --color-surface:      #FFFFFF; /* Bugfix 2026-09-05: fehlte komplett, FAQ-Boxen (26x sitejeweit) hatten dadurch keinen Hintergrund */
  /* Seitenhintergrund 05.09.2026: dezenter Blau-Grau-Ton statt sterilem Weiß.
     Karten/Komponenten bleiben --color-white/--color-surface, damit sie sichtbar
     vom Seitenhintergrund abheben ("Karten schweben auf sanftem Grund"). */
  --color-page-bg:      #F7F9FC;
  --color-soft-slate:   #EEF2F7;
  --color-slate-100:    #F1F5F9;
  --color-slate-200:    #E2E8F0;
  --color-slate-400:    #94A3B8;
  --color-charcoal:     #0F172A;
  --color-charcoal-70:  #0F172AB3;
  --color-enterprise:   #1D4ED8;
  --color-enterprise-dk:#1E40AF;
  --color-indigo:       #16A34A;
  --color-indigo-lt:    #DCFCE7;
  /* Fix 05.09.2026 (PageSpeed A11y): #16A34A als TEXTFARBE auf hellen
     Hintergründen (weiß / --color-page-bg / --color-indigo-lt) erreicht
     nur ~3:1 Kontrast statt der geforderten 4.5:1 (WCAG AA, normal text).
     Als Hintergrundfarbe (Buttons etc. mit weißer Schrift) bleibt
     --color-indigo unverändert, da dort kein Kontrastproblem besteht.
     Für Text auf hellem Grund (.label, .card__tag--kmu/--ai, .hero__eyebrow,
     .timeline-item__year) wird stattdessen dieser abgedunkelte Ton genutzt
     (>=4.5:1 gegen Weiß, --color-page-bg, --color-soft-slate, --color-indigo-lt). */
  --color-indigo-text:  #1B7A43;
  --color-amber:        #F59E0B;
  --color-amber-lt:     #FEF3C7;
  --color-success:      #059669;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Roboto', system-ui, sans-serif;
  --font-code: 'Fira Code', 'Courier New', monospace;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.75rem,  1.5vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 2vw,   1rem);
  --text-base: clamp(1rem,     2.5vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 3vw,   1.25rem);
  --text-xl:   clamp(1.25rem,  3.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem,   4vw,   2rem);
  --text-3xl:  clamp(2rem,     5vw,   2.75rem);
  --text-4xl:  clamp(2.5rem,   6vw,   3.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  /* Fix 05.09.2026: fehlte komplett (nie definiert, aber sitejeweit in
     FAQ-Boxen und Vergleichstabellen-Zellen als padding-Wert referenziert).
     Eine ungültige var()-Referenz in einem Shorthand wie
     "padding: var(--space-5) var(--space-6)" macht die GESAMTE
     padding-Deklaration ungültig -> Padding fiel komplett auf 0 zurück,
     Text saß dadurch bündig an der (abgerundeten) Boxkante und wirkte,
     als würde er über den Rand hinausragen. */
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius & Shadows */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 4px rgba(15, 23, 42, 0.04);
  --shadow-md:   0 8px 32px rgba(15, 23, 42, 0.10), 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-enterprise: 0 8px 32px rgba(29, 78, 216, 0.20);
  --shadow-indigo:     0 8px 32px rgba(22, 163, 74, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset & Base -------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background: var(--color-page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-enterprise); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-indigo-text); }

/* Focus visible (Keyboard Nav) */
:focus-visible {
  outline: 3px solid var(--color-enterprise);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--color-enterprise);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 0; }

/* ---------- 3. Layout Utilities ---------------------------- */
.container {
  width: min(1200px, 100% - 2 * var(--space-6));
  margin-inline: auto;
}

.section { padding-block: var(--space-20); }
.section--slate { background: var(--color-soft-slate); }
.section--dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: var(--space-6); }

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

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

/* ---------- 4. Typography ---------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

h1 { font-size: var(--text-4xl); font-weight: 800; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-xl);  font-weight: 700; }
h4 { font-size: var(--text-lg);  font-weight: 600; }

.label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-indigo-text);
}

.section-title { margin-block: var(--space-3) var(--space-4); text-align: center; }
.section-subtitle { font-size: var(--text-lg); color: var(--color-charcoal-70); max-width: 60ch; text-align: center; margin-inline: auto; }

/* ---------- Scroll-Offset für Fixed Navbar ----------------- */
:target,
.solution-block[id],
[id].section-anchor {
  scroll-margin-top: 100px;
}

/* ---------- 5. Navigation ---------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: var(--space-4);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  padding-block: var(--space-3);
  box-shadow: var(--shadow-soft);
}

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

.navbar__logo {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.navbar__logo-icon {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--color-soft-slate);
  color: var(--color-enterprise);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown__menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 280px;
  background: var(--color-white);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 100;
}

.dropdown.open .dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown__menu a {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--color-charcoal);
}
.dropdown__menu a:hover { background: var(--color-soft-slate); }

.dropdown__icon {
  font-size: 1.25rem;
  min-width: 28px;
  text-align: center;
}

.dropdown__text strong { display: block; font-size: var(--text-sm); font-weight: 600; }
.dropdown__text span { font-size: var(--text-xs); color: var(--color-slate-400); }

.dropdown__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-indigo);
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: var(--space-2);
}

.dropdown__divider {
  height: 1px;
  background: var(--color-slate-200);
  margin: var(--space-2);
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }

.lang-toggle {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-charcoal);
  background: var(--color-soft-slate);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  cursor: pointer;
  transition: background var(--transition-fast);
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lang-toggle:hover { background: var(--color-slate-200); }

/* Mobile close button (injected by JS into nav-links overlay) */
.nav-close-btn {
  display: none;
}

@media (max-width: 900px) {
  /* A11y-Fix 05.09.2026: Der Button liegt jetzt als Sibling NACH .nav-links
     im DOM (statt als Kind, s.o.), daher hier explizit an den .open-Zustand
     von .nav-links koppeln — sonst wäre er dauerhaft sichtbar statt nur bei
     geöffnetem Menü (vorher übernahm er das transform des Eltern-<ul>). */
  .nav-links.open ~ .nav-close-btn {
    display: flex;
  }
  .nav-close-btn {
    align-items: center;
    gap: var(--space-2);
    position: fixed;
    top: var(--space-6);
    right: var(--space-6);
    background: var(--color-soft-slate);
    border: 2px solid var(--color-slate-200);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-charcoal);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    z-index: 1001;
  }
  .nav-close-btn:hover {
    background: var(--color-slate-200);
    border-color: var(--color-charcoal);
  }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Buttons ------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    border-color var(--transition-base);
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-enterprise);
  color: white;
  box-shadow: var(--shadow-enterprise);
}
.btn--primary:hover {
  background: var(--color-indigo);
  box-shadow: var(--shadow-indigo);
  color: white;
}

.btn--secondary {
  background: transparent;
  color: var(--color-enterprise);
  border-color: var(--color-enterprise);
}
.btn--secondary:hover {
  background: var(--color-enterprise);
  color: white;
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.btn--lg { font-size: var(--text-base); padding: 1rem 2rem; border-radius: var(--radius-lg); }

/* Segment Buttons (Enterprise vs KMU) */
.btn--enterprise {
  background: var(--color-enterprise);
  color: white;
  box-shadow: var(--shadow-enterprise);
  position: relative;
  overflow: hidden;
}
.btn--enterprise::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--color-indigo) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.btn--enterprise:hover::after { opacity: 1; }
.btn--enterprise:hover { color: white; box-shadow: var(--shadow-indigo); }
.btn--enterprise span { position: relative; z-index: 1; }

.btn--kmu {
  background: white;
  color: var(--color-enterprise);
  border-color: var(--color-enterprise);
}
.btn--kmu:hover {
  background: var(--color-enterprise);
  color: white;
}

/* ---------- 7. Cards --------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  height: 40px;
  display: flex;
  align-items: center;
}
.card__icon img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.card__tag--enterprise { background: #DBEAFE; color: var(--color-enterprise); }
.card__tag--kmu        { background: var(--color-indigo-lt); color: var(--color-indigo-text); }
.card__tag--ai         { background: var(--color-indigo-lt); color: var(--color-indigo-text); }

.card h3 { margin-bottom: var(--space-3); }
.card p  { color: var(--color-charcoal-70); font-size: var(--text-sm); }

/* ---------- 8. Badges & Pills ------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.badge--cert {
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  color: white;
}

/* ---------- 9. Hero Section -------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px; /* navbar height */
  padding-bottom: var(--space-20);
  background: var(--color-page-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(22, 163, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle at center, rgba(29, 78, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-12);
}

.hero__text { max-width: 680px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-indigo-lt);
  color: var(--color-indigo-text);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__title { margin-bottom: var(--space-6); }
.hero__title .highlight {
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub { font-size: var(--text-lg); color: var(--color-charcoal-70); margin-bottom: var(--space-10); max-width: 55ch; }

/* Self-Segmenting Split */
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 620px;
}

/* Fix 05.09.2026: index.html/en/index.html hatten für die 3-Karten-Reihe
   (Identity/Data/AI) bislang ein Inline-style="grid-template-columns:
   repeat(3, 1fr)" direkt am Element. Inline-Styles haben höhere Spezifität
   als Media-Query-Regeln aus dem Stylesheet und überstimmen diese IMMER,
   egal wie schmal der Viewport ist — deshalb blieb die Reihe auf jedem
   Handy stur 3-spaltig und lief seitlich aus dem Bildschirm. Eigene Klasse
   statt Inline-Style, damit die Mobile-Regel unten wieder greifen kann. */
.hero__split--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}

.segment-card {
  background: var(--color-white);
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-decoration: none;
  display: block;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.segment-card:hover {
  transform: translateY(-4px);
}

.segment-card--enterprise:hover {
  border-color: var(--color-enterprise);
  box-shadow: var(--shadow-enterprise);
}

.segment-card--kmu:hover {
  border-color: var(--color-indigo);
  box-shadow: var(--shadow-indigo);
}

.segment-card__icon { font-size: 2rem; margin-bottom: var(--space-3); }
.segment-card__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-slate-400); margin-bottom: var(--space-1); }
.segment-card__title { font-size: var(--text-base); font-weight: 700; color: var(--color-charcoal); margin-bottom: var(--space-2); }
.segment-card__desc { font-size: var(--text-xs); color: var(--color-charcoal-70); }
.segment-card__arrow { display: inline-block; margin-top: var(--space-3); font-size: var(--text-sm); font-weight: 600; }

.segment-card--enterprise .segment-card__arrow { color: var(--color-enterprise); }
.segment-card--kmu .segment-card__arrow { color: var(--color-indigo-text); }

/* ---------- 10. Trust Bar ---------------------------------- */
.trust-bar {
  background: var(--color-soft-slate);
  border-top: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
  padding-block: var(--space-6);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal-70);
  white-space: nowrap;
}

.trust-item .icon { font-size: 1.25rem; }

/* ---------- 11. Stats Row ---------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-6);
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: var(--text-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label { font-size: var(--text-sm); color: var(--color-charcoal-70); }

/* ---------- 12. Feature List ------------------------------- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.feature-list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  color: white;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- 13. Testimonials ------------------------------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-head);
  color: var(--color-indigo-lt);
  pointer-events: none;
}

.testimonial-card__text { font-style: italic; color: var(--color-charcoal-70); margin-bottom: var(--space-6); padding-top: var(--space-6); }
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: var(--text-lg);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: var(--text-sm); }
.testimonial-card__role { font-size: var(--text-xs); color: var(--color-slate-400); }

/* ---------- 14. Certification Cards ------------------------ */
.cert-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.cert-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cert-card__icon { font-size: 2rem; flex-shrink: 0; }
.cert-card__name { font-weight: 700; font-size: var(--text-sm); }
.cert-card__org  { font-size: var(--text-xs); color: var(--color-slate-400); }

/* ---------- 15. Timeline (Karriere) ------------------------ */
.timeline { position: relative; padding-left: var(--space-8); }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-enterprise), var(--color-indigo));
}

.timeline-item { position: relative; margin-bottom: var(--space-8); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) + 3px);
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-enterprise);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--color-enterprise);
}

.timeline-item__year {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-indigo-text);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}

.timeline-item h4 { margin-bottom: var(--space-2); }
.timeline-item p  { font-size: var(--text-sm); color: var(--color-charcoal-70); }

/* ---------- 16. Blog / Insights Cards ---------------------- */
.post-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.post-card__thumb {
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.post-card__meta { display: flex; gap: var(--space-3); font-size: var(--text-xs); color: var(--color-slate-400); margin-bottom: var(--space-3); }
.post-card__title { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-3); color: var(--color-charcoal); }
.post-card__excerpt { font-size: var(--text-sm); color: var(--color-charcoal-70); flex: 1; margin-bottom: var(--space-4); }
.post-card__link { font-size: var(--text-sm); font-weight: 600; color: var(--color-enterprise); align-self: flex-start; }
.post-card__link::after { content: ' →'; }

/* ---------- 17. Contact Form ------------------------------- */
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-6); }
.form-label { font-size: var(--text-sm); font-weight: 600; }
.form-label .required { color: var(--color-amber); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-enterprise);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-error {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-amber);
  background: var(--color-amber-lt);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* ---------- 18. CTA Section -------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-enterprise) 0%, var(--color-indigo) 100%);
  color: white;
  text-align: center;
  padding-block: var(--space-24);
}

.cta-section h2 { color: white; margin-bottom: var(--space-4); }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: var(--text-lg); max-width: 50ch; margin: 0 auto var(--space-10); }
.cta-section .btn-group { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ---------- 19. Footer ------------------------------------- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.footer__brand .navbar__logo { color: white; margin-bottom: var(--space-4); }
.footer__brand p { font-size: var(--text-sm); max-width: 30ch; }

/* A11y-Fix 05.09.2026: h4->h3 (siehe HTML) — vorher übersprang die Seite
   eine Überschriften-Ebene (letztes Heading vor dem Footer war h2). */
.footer__col h3 { color: white; font-size: var(--text-sm); margin-bottom: var(--space-4); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col a { color: rgba(255,255,255,0.6); font-size: var(--text-sm); transition: color var(--transition-fast); }
.footer__col a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
}

.footer__social { display: flex; gap: var(--space-4); }
.footer__social a {
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  padding: var(--space-2);
  transition: background var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.65;
}
.footer__social a:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.footer__social a img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }

/* ---------- 20. Breadcrumb --------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-slate-400);
  padding-block: var(--space-4);
  list-style: none;
}
.breadcrumb li + li::before { content: '/'; margin-right: var(--space-2); }
.breadcrumb a { color: var(--color-slate-400); }
.breadcrumb a:hover { color: var(--color-enterprise); }
.breadcrumb [aria-current] { color: var(--color-charcoal); font-weight: 600; }

/* ---------- 21. Page Header -------------------------------- */
.page-header {
  padding-top: calc(90px + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--color-soft-slate);
  border-bottom: 1px solid var(--color-slate-200);
}
.page-header .label { margin-bottom: var(--space-3); }
.page-header h1 { margin-bottom: var(--space-4); }
.page-header .lead { font-size: var(--text-lg); color: var(--color-charcoal-70); max-width: 60ch; }

/* ---------- 22. Alert / Warning Box ------------------------ */
.alert {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
}
.alert--info { background: #DBEAFE; border-left: 4px solid var(--color-enterprise); }
.alert--warning { background: var(--color-amber-lt); border-left: 4px solid var(--color-amber); }
.alert__icon { font-size: 1.25rem; flex-shrink: 0; }
.alert__text { font-size: var(--text-sm); }
.alert__text strong { display: block; font-weight: 700; margin-bottom: var(--space-1); }

/* ---------- 23. Social Feed Placeholder -------------------- */
.social-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
}

.social-post {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-slate-200);
}

.social-post__header { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-3); }
.social-post__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: var(--text-xs); font-weight: 800;
}
.social-post__meta strong { display: block; font-size: var(--text-xs); font-weight: 700; }
.social-post__meta span  { font-size: var(--text-xs); color: var(--color-slate-400); }
.social-post__platform { margin-left: auto; font-size: 1rem; }
.social-post__text { font-size: var(--text-xs); color: var(--color-charcoal-70); line-height: 1.6; }
.social-post__tags { display: flex; flex-wrap: wrap; gap: var(--space-1); margin-top: var(--space-3); }
.social-post__tag { font-size: 0.65rem; font-weight: 700; color: var(--color-enterprise); background: #DBEAFE; padding: 2px 6px; border-radius: var(--radius-full); }

/* ---------- 24. Hamburger Mobile Menu ---------------------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  /* Fix 05.09.2026: Der CTA-Button ("Beratungsgespräch") in .nav-actions
     wurde nie ausgeblendet und ist zusammen mit Logo + Sprach-Umschalter +
     Hamburger schlicht zu breit für ein Handy-Display. Da .navbar__inner
     kein flex-wrap hat, lief die Zeile seitlich aus dem Bildschirm –
     das Hamburger-Icon (letztes Element) landete dadurch unsichtbar
     außerhalb des sichtbaren Viewports und war nicht mehr antippbar.
     Kontakt bleibt über den "Kontakt"-Link im aufklappbaren Menü erreichbar. */
  .nav-actions .btn { display: none; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100svh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-24) var(--space-8);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    display: block;
    width: 100%;
    font-size: var(--text-xl);
    font-weight: 700;
    padding: var(--space-4);
  }

  .dropdown__menu {
    position: static;
    opacity: 1;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--color-soft-slate);
    padding: 0;
    margin-top: 0;
    border-radius: var(--radius-md);
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
  }

  .dropdown.open .dropdown__menu {
    pointer-events: auto;
    max-height: 600px;
    padding: var(--space-2) 0;
    margin-top: var(--space-1);
  }

  .dropdown__menu a {
    font-size: var(--text-base);
    font-weight: 600;
    padding: var(--space-3) var(--space-4);
  }

  .dropdown__text span {
    display: none;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- 24. Blog Pagination --------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
}

.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-charcoal-70);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination__btn:hover {
  border-color: var(--color-enterprise);
  color: var(--color-enterprise);
}

.pagination__btn--active {
  background: var(--color-enterprise);
  color: white;
  border-color: var(--color-enterprise);
}

.pagination__btn--prev,
.pagination__btn--next {
  padding: var(--space-2) var(--space-4);
}

/* ---------- Team Profile: Speaking & Blog Expand/Collapse ---- */
.team-more-btn {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-enterprise);
  background: var(--color-soft-slate);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.team-more-btn:hover {
  background: var(--color-slate-100);
  border-color: var(--color-enterprise);
}

.team-more-btn.expanded {
  display: none;
}

.team-hidden-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
  animation: slideDown 0.3s ease;
}

.team-hidden-items.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero__split, .hero__split--3col { grid-template-columns: 1fr; }
  .cta-section .btn-group { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-bar__inner { gap: var(--space-4); }
}

/* ---------- 25. Character / Mascot Helpers ----------------- */

/* FAQ header with Marc_why character */
.faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-2);
}
.faq-header--right {
  flex-direction: row-reverse;
}
.faq-header__img {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
@media (max-width: 700px) {
  .faq-header,
  .faq-header--right { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .faq-header__img { display: none; }
}

/* Fix 05.09.2026: <summary> trägt in Safari/Chrome zusätzlich zum eigenen
   "＋"-Icon einen nativen Dreiecks-Marker, der außerhalb des Paddings sitzt
   und links über die faq-item-Box hinausragt. list-style:none (inline gesetzt)
   reicht in WebKit nicht aus – ::-webkit-details-marker/::marker müssen
   zusätzlich explizit entfernt werden. */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

/* Page-header character (e.g. Marc_zeigen on Insights) */
.page-header__character {
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 90%;
  max-height: 260px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  mix-blend-mode: multiply;
  filter: drop-shadow(-4px 0 12px rgba(0,0,0,0.08));
  pointer-events: none;
}
@media (max-width: 860px) {
  .page-header__character { display: none; }
}

/* ---------- 26. Cookie Consent Banner ---------------------- */
/*
 * DSGVO-konform nach DSK-Orientierungshilfe:
 * – Ablehnen und Akzeptieren gleichwertig gestaltet (kein Dark Pattern)
 * – Ablehnen steht links / zuerst
 * – Kein Tracking vor Zustimmung (Consent Mode V2, default: denied)
 * – Einwilligung jederzeit widerrufbar (data-cookie-withdraw)
 */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0F172A;
  color: var(--color-white);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.28);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#cookieBanner.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.cookie-banner__text {
  flex: 1;
  min-width: 0;
}
.cookie-banner__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-1);
}
.cookie-banner__text p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__text a {
  color: #60a5fa; /* helles Blau – gut lesbar auf dunkel */
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  align-items: center;
}

/* ── Beide Banner-Buttons gleichwertig (kein Dark Pattern) ── */
.btn--cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  min-height: 40px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.55);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--cookie:hover,
.btn--cookie:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  outline: none;
}
/* Akzeptieren: leicht hervorgehoben aber GLEICHE Größe */
.btn--cookie-accept {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.7);
}
.btn--cookie-accept:hover,
.btn--cookie-accept:focus-visible {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-4);
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-banner__actions .btn--cookie {
    width: 100%;
    text-align: center;
  }
}

/* ---------- 27. Logo Ticker -------------------------------- */
.logo-ticker-wrap {
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding-block: var(--space-2);
}

.logo-ticker {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: ticker 30s linear infinite;
}

.logo-ticker:hover { animation-play-state: paused; }

.logo-item {
  flex-shrink: 0;
  height: 64px;
  min-width: 160px;
  background: var(--color-white);
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-6);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.logo-item:hover {
  border-color: var(--color-enterprise);
  box-shadow: var(--shadow-soft);
}

.logo-item span {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-slate-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  user-select: none;
}

/* When real logos are used: */
.logo-item img {
  max-height: 36px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--transition-base);
}
.logo-item:hover img { filter: grayscale(0) opacity(1); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ---------- 28. Comparison Table (z.B. Zero Trust vs. Perimeter) ---------- */
.compare-table-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.compare-table-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  /* Fix 05.09.2026: border-collapse:collapse verhindert in Safari/WebKit,
     dass overflow:hidden + border-radius der Wrapper-Box die äußere
     Tabellenkante sauber clippt — die linke obere Ecke ragt dadurch über
     die abgerundete Box hinaus. border-collapse:separate + border-spacing:0
     behebt das zuverlässig, ohne das Erscheinungsbild zu verändern. */
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--text-sm);
}
.compare-table thead tr {
  background: linear-gradient(135deg, var(--color-enterprise), var(--color-indigo));
}
.compare-table thead th:first-child { border-top-left-radius: var(--radius-lg); }
.compare-table thead th:last-child  { border-top-right-radius: var(--radius-lg); }
.compare-table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.compare-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-slate-200);
  vertical-align: top;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--color-soft-slate); }
.compare-table td:first-child { font-weight: 600; color: var(--color-charcoal); }
.compare-table td:last-child  { font-weight: 600; color: var(--color-enterprise); }

/* ---------- 25b. Animations --------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s var(--transition-slow) both;
}

[data-delay="1"] { animation-delay: 0.1s; }
[data-delay="2"] { animation-delay: 0.2s; }
[data-delay="3"] { animation-delay: 0.3s; }
[data-delay="4"] { animation-delay: 0.4s; }

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

/* ---------- 26. Print ------------------------------------- */
@media print {
  .navbar, .footer, .cta-section, .nav-toggle { display: none; }
  body { font-size: 12pt; }
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
}

/* ---------- 27. Utility classes ---------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.w-full { width: 100%; }
