/* ================================================================
   HERO + HEADER REDESIGN (v2)
   Loaded AFTER styles.css — overrides selected classes.
   Inspirationen: REP (sticky pill, grid pattern), Payload (massive type),
   Creativo Code (gradient accent word), Clay (clean two-col).
   ================================================================ */

/* ---------- Topbar v3 (Floating Pill, fixed — schwebt im Hero) ---------- */
.topbar {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
  padding: 0 1rem;
  pointer-events: none;
  transition: top 220ms ease;
}
.topbar-inner {
  pointer-events: auto;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60px;
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  gap: 28px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -12px rgba(15, 23, 42, 0.18);
  transition: box-shadow 220ms ease, background 220ms ease;
}
.topbar.is-scrolled .topbar-inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 40px -14px rgba(15, 23, 42, 0.22);
}
.topbar .brand-link { display: inline-flex; align-items: center; }
.topbar .brand-link svg { width: 150px; height: auto; }

/* Nav: leichter, lesbarer; Hover mit Underline-Slide */
.nav {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: #475569;
  gap: 1.75rem;
}
.nav a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 180ms ease;
}
.nav a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav a:not(.cta):hover { color: var(--text); }
.nav a:not(.cta):hover::after { transform: scaleX(1); }
.nav a.is-active {
  color: var(--text);
  border-bottom: 0;
  padding-bottom: 0.4rem;
}
.nav a.is-active::after { transform: scaleX(1); }

/* CTA-Pill prominenter, mit Glow */
.nav .cta {
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0;
  background: var(--gradient-bg);
  box-shadow: 0 8px 22px rgba(0, 119, 238, 0.22);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.nav .cta::after { content: none !important; }
.nav .cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 119, 238, 0.28);
}

/* ---------- Leistungen Dropdown ---------- */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* Generöser unsichtbarer Hover-Bereich nach unten,
     damit die Maus vom Trigger zum Menü kein "Loch" überquert */
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #475569;
  padding: 0.4rem 0;
  position: relative;
  transition: color 180ms ease;
}
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.is-active .nav-dropdown-trigger,
.nav-dropdown-trigger[aria-expanded="true"] { color: var(--text); }
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.is-active .nav-dropdown-trigger::after,
.nav-dropdown-trigger[aria-expanded="true"]::after { transform: scaleX(1); }

.nav-dropdown-arrow {
  width: 10px; height: 10px;
  transition: transform 200ms ease;
  color: currentColor;
}
.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-arrow { transform: rotate(180deg); }

/* Dropdown-Menü */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  box-shadow: 0 20px 48px -16px rgba(15, 23, 42, 0.28);
  padding: 0.5rem;
  z-index: 200;
  /* Vermeidet harten Sprung beim Öffnen */
  will-change: opacity, transform;
}
.nav-dropdown-menu.is-open {
  display: block;
  animation: dropdownIn 180ms cubic-bezier(.2,.8,.25,1) forwards;
}
/* Transparente Brücke: füllt den Spalt zwischen Trigger und Menü
   und stellt sicher, dass mouseleave nicht früh feuert */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: -1rem;
  right: -1rem;
  height: 0.65rem;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: rgba(0, 119, 238, 0.06);
  color: #0077EE;
}

/* Tablet: Reduzierte Navigation */
@media (min-width: 761px) and (max-width: 1100px) {
  .nav {
    gap: 1.2rem;
  }
  .nav-dropdown-trigger {
    font-size: 13px;
    letter-spacing: 0.005em;
  }
}

/* Mobile: Dropdown als flache Liste */
@media (max-width: 760px) {
  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; font-size: 15px; }
  .nav-dropdown-trigger::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(248, 250, 252, 0.9);
    border-radius: 10px;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    margin-top: 0.25rem;
    animation: none;
    min-width: 0;
    width: 100%;
  }
  .nav-dropdown-menu.is-open {
    animation: none;
    transform: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-item { font-size: 14px; white-space: normal; }
}

/* ---------- Hero v2 (Homepage) ---------- */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 78% 28%, rgba(136, 68, 238, 0.22), transparent 60%),
    radial-gradient(700px 480px at 18% 78%, rgba(0, 119, 238, 0.20), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
  background-size: cover;
  padding: 9rem 0 5rem; /* 9rem: Platz für fixierte Pill (76px) + Luftraum */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 80%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(136, 68, 238, 0.10) 0%, rgba(136, 68, 238, 0) 35%),
    radial-gradient(circle at 22% 72%, rgba(0, 119, 238, 0.12) 0%, rgba(0, 119, 238, 0) 35%);
  pointer-events: none;
  z-index: 1;
}

/* Hero-Grid: zwei Spalten auf Desktop, eine auf Mobile */
.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-col-content { min-width: 0; }
.hero-col-visual { min-width: 0; }

/* Pill mit Live-Dot */
.hero-badge {
  border-radius: 999px;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse 1.9s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Headline: viel größer, generös */
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: none;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

/* Lead: ohne Bar-Border, ruhiger */
.hero .lead {
  border-left: 0;
  padding-left: 0;
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
  margin: 0 0 2.25rem;
}
.hero .hero-sub { display: none; }

/* CTAs: zwei nebeneinander */
.hero-actions { gap: 0.85rem; margin-bottom: 2rem; }
.hero .btn-primary {
  background: var(--gradient-bg);
  box-shadow: 0 18px 44px rgba(0, 119, 238, 0.28);
}
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.48);
}

/* Trust-Row IM Hero (statt separater Sektion) */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust-row .trust-prefix {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 0.5rem;
}
.hero-trust-row .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-trust-row .pill svg { opacity: 0.65; }

/* Visual rechts (custom SVG) */
.hero-visual-card {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 119, 238, 0.20), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(136, 68, 238, 0.20), transparent 50%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  padding: 2rem;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 119, 238, 0.45), rgba(136, 68, 238, 0.45), rgba(255, 255, 255, 0.06));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-visual-card svg { width: 100%; height: auto; max-width: 460px; }

/* Hero-Meta entfernen — durch Trust-Row ersetzt */
.hero .hero-meta { display: none; }

/* ---------- Page-Hero v2 (Sub-pages) ---------- */
.page-hero {
  padding: 9rem 0 4.5rem; /* 9rem: Platz für fixierte Pill */
  background:
    radial-gradient(700px 420px at 78% 28%, rgba(136, 68, 238, 0.22), transparent 60%),
    radial-gradient(620px 420px at 18% 88%, rgba(0, 119, 238, 0.20), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 2; }

.page-hero-eyebrow {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  letter-spacing: 0.16em;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}
.page-hero .lead {
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
}

/* Breadcrumb feiner */
.page-hero .breadcrumb {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
}
.page-hero .breadcrumb a { color: rgba(255, 255, 255, 0.78); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

/* Trust-Strip nach Hero — minimaler */
.trust-strip {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 0;
}

/* ── Section-Bridge: Overlap-Karte zwischen Hero und erster Sektion ── */
.section-bridge {
  /* Obere Hälfte = Hero-Dunkel, untere Hälfte = Surface-Hell */
  background: linear-gradient(to bottom, #0b1120 50%, var(--surface) 50%);
  padding: 2.5rem 0;
}

.bridge-card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.16),
    0 4px 12px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* Logo-only variant */
.bridge-card--logos {
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 2.5rem 1.5rem;
}
.bridge-logos-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8;
}
.bridge-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
  width: 100%;
}
.bridge-logo {
  display: block;
  width: 200px;
  height: auto;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity 200ms ease, filter 200ms ease;
}
.bridge-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Stat-Blöcke */
.bc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  padding: 0.5rem 2rem;
}
.bc-num {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bc-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #94a3b8;
  white-space: nowrap;
}

/* Trennstrich */
.bc-sep {
  width: 1px;
  height: 2.75rem;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* Stationen-Block */
.bc-stations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 2rem;
}
.bc-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8;
}
.bc-logos {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* ── Company-Badges (global, used in bridge + founder cards) ── */
.co-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.72rem;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Inter", system-ui, Arial, sans-serif;
  white-space: nowrap;
}
.co-badge.schaeffler {
  background: #f0faf4;
  border: 1.5px solid rgba(0, 154, 62, 0.4);
  color: #009A3E;
  text-transform: uppercase;
}
.co-badge.dspace {
  background: #f0f5ff;
  border: 1.5px solid rgba(0, 63, 135, 0.3);
}
.co-badge.dspace .d  { color: #D5001C; }
.co-badge.dspace .s  { color: #003F87; letter-spacing: 0.04em; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-col-visual { max-width: 520px; margin: 0 auto; }
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .topbar-inner { min-height: 64px; }
}

@media (max-width: 760px) {
  .topbar { top: 0.5rem; padding: 0 0.5rem; }
  .topbar-inner {
    position: relative;          /* Anker für Drawer-Positionierung */
    min-height: 56px;
    padding: 0.4rem 0.5rem 0.4rem 1rem;
    border-radius: 999px;
    gap: 0;
  }
  .topbar .brand-link svg { width: 132px; }
  /* Mobile-Drawer: aus der Pill „herauswachsen" */
  .nav {
    position: absolute !important;
    top: calc(100% + 0.5rem) !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255,255,255,0.98) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    backdrop-filter: blur(18px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(15,23,42,0.06) !important;
    box-shadow: 0 18px 40px -14px rgba(15,23,42,0.22) !important;
    padding: 1rem 1.25rem !important;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
  }
  .hero { padding: 7rem 0 3rem; }
  .page-hero { padding: 7rem 0 3.5rem; }
  .hero-trust-row { gap: 0.4rem; }
  .hero-trust-row .pill { font-size: 11.5px; padding: 0.32rem 0.65rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .nav .cta { padding: 0.6rem 1rem; }
  /* Bridge: einspaltig auf Mobile */
  .section-bridge { padding: 1.5rem 0; }
  .bridge-card { padding: 1.25rem 1.5rem; gap: 0; justify-content: center; }
  .bridge-card--logos { padding: 1rem 1.25rem; }
  .bridge-logos {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .bridge-logo {
    width: auto !important;
    max-width: 160px;
    height: 28px !important;
  }
  .bc-stat { padding: 0.5rem 1.25rem; }
  .bc-stations { padding: 0.5rem 1.25rem; }
  .bc-sep--hide-sm,
  .bc-stat--hide-sm { display: none; }
}

/* ---------- A11y: Fokus-Sichtbarkeit ---------- */
:focus { outline: 0; } /* Default-Outline weg, durch focus-visible ersetzt */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="menuitem"]:focus-visible {
  outline: 2px solid #0077EE;
  outline-offset: 3px;
  border-radius: 6px;
}
/* Auf dunklem Hintergrund (Hero, Page-Hero) heller Outline */
.hero a:focus-visible,
.hero button:focus-visible,
.page-hero a:focus-visible,
.page-hero button:focus-visible,
.topbar a:focus-visible,
.topbar button:focus-visible {
  outline-color: #fff;
}
/* CTA-Pill: runder Outline */
.nav .cta:focus-visible,
.btn:focus-visible {
  outline-offset: 3px;
  border-radius: 999px;
}
/* Skip-Link sichtbar bei Tastatur-Fokus */
.skip-link:focus,
.skip-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ---------- A11y: Touch-Target-Größen (Mobile) ---------- */
@media (max-width: 760px) {
  .nav a,
  .nav .cta { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .menu-toggle { min-width: 44px; min-height: 44px; }
}

/* ---------- A11y: Kontraste im Hero leicht anheben ---------- */
.hero .lead { color: rgba(255, 255, 255, 0.85); }
.page-hero .lead { color: rgba(255, 255, 255, 0.85); }
.page-hero .breadcrumb { color: rgba(255, 255, 255, 0.65); }
.hero-trust-row .trust-prefix { color: rgba(255, 255, 255, 0.55); }
.hero-trust-row .pill { color: rgba(255, 255, 255, 0.92); }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-badge .pulse-dot { animation: none; }
  .nav a:not(.cta)::after { transition: none; }
  .nav .cta { transition: none; }
  .topbar { transition: none; }
  .topbar-inner { transition: none; }
  .link-card { transition: none; }
  .nav-dropdown-menu.is-open { animation: none; }
}

/* ============================================================
   Mobile Polish (≤ 760px)
   Letzte Korrekturen für sauberes Mobile-Verhalten
   ============================================================ */
@media (max-width: 760px) {
  /* Page-Hero Visual: kleiner und unter dem Content */
  .page-hero-visual {
    aspect-ratio: 4 / 3;
    padding: 1.25rem;
    border-radius: 24px;
    margin-top: 0.5rem;
  }
  .page-hero-visual svg { max-width: 280px; }

  /* Headlines auf Mobile etwas tighter */
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.6rem); }

  /* Lead-Texte komfortabler */
  .hero .lead,
  .page-hero .lead {
    font-size: clamp(1rem, 4vw, 1.15rem);
    padding-left: 1rem;
    border-left-width: 4px;
  }

  /* Breadcrumb kompakter */
  .breadcrumb { font-size: 0.78rem; margin-bottom: 1rem; }

  /* Cards: kleines Padding-Refinement */
  .card,
  .trigger-card,
  .approach-step { padding: 1.5rem; }

  /* Section-Padding etwas zurücknehmen */
  .section { padding: 56px 0; }

  /* CTA-Dark: Headline kleiner */
  .cta-dark .h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Buttons: konsistent groß und tappable */
  .btn { min-height: 48px; padding: 0.85rem 1.25rem; }

  /* hero-actions sicher stapeln auch außerhalb des Heros */
  .section .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .section .hero-actions .btn { width: 100%; }

  /* Forms: volle Breite */
  .form-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .input, .select, .textarea { font-size: 16px; }  /* iOS zoom-fix */

  /* Tabellen / KPI-Strip: lesbare Größen */
  .kpi strong { font-size: 1.5rem; }
  .kpi span { font-size: 0.75rem; }
}
