@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --primary: #76b9e4;
  --deep: #ecf5ff;
  --light: #8fd1ff;
  --surface: #101923;
  --background: #0b1219;
  --background-strong: #0f1720;
  --text: #e5eef9;
  --muted: #a8b7c8;
  --line: rgba(143, 209, 255, 0.16);
  --line-strong: rgba(143, 209, 255, 0.26);
  --soft-blue: rgba(118, 185, 228, 0.12);
  --hero-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --card-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(11, 18, 25, 0.88);
  --nav-link: rgba(229, 238, 249, 0.84);
  --menu-bg: rgba(118, 185, 228, 0.12);
  --menu-text: #e5eef9;
  --panel-bg: rgba(16, 25, 35, 0.94);
  --panel-bg-soft: rgba(16, 25, 35, 0.82);
  --panel-bg-strong: rgba(16, 25, 35, 0.9);
  --input-bg: #0f1720;
  --input-focus-bg: #111d29;
  --footer-bg: #081018;
  --footer-text: rgba(229, 238, 249, 0.82);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.85rem;
  --container: 1180px;
}

.site-header .brand-logo,
html[data-theme="dark"] .site-header .brand-logo,
body[data-theme="dark"] .site-header .brand-logo {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"],
body[data-theme="dark"] {
  --primary: #76b9e4;
  --deep: #ecf5ff;
  --light: #8fd1ff;
  --surface: #101923;
  --background: #0b1219;
  --background-strong: #0f1720;
  --text: #e5eef9;
  --muted: #a8b7c8;
  --line: rgba(143, 209, 255, 0.16);
  --line-strong: rgba(143, 209, 255, 0.26);
  --soft-blue: rgba(118, 185, 228, 0.12);
  --hero-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --card-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(11, 18, 25, 0.88);
  --nav-link: rgba(229, 238, 249, 0.84);
  --menu-bg: rgba(118, 185, 228, 0.12);
  --menu-text: #e5eef9;
  --panel-bg: rgba(16, 25, 35, 0.94);
  --panel-bg-soft: rgba(16, 25, 35, 0.82);
  --panel-bg-strong: rgba(16, 25, 35, 0.9);
  --input-bg: #0f1720;
  --input-focus-bg: #111d29;
  --footer-bg: #081018;
  --footer-text: rgba(229, 238, 249, 0.82);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(95, 168, 211, 0.14), transparent 32%),
    linear-gradient(180deg, var(--background-strong) 0%, var(--background) 100%);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
ul,
ol {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 50;
  background: var(--surface);
  color: var(--deep);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-shell {
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: min(17rem, 46vw);
  height: auto;
}

.brand-mark {
  width: 2.8rem;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-wordmark strong {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--nav-link);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.theme-toggle,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-bg-soft);
  color: var(--nav-link);
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--card-shadow);
}

.theme-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.theme-toggle {
  display: none !important;
}

.theme-toggle-label {
  line-height: 1;
}

.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;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--menu-bg);
  color: var(--menu-text);
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  cursor: pointer;
  color: #fff;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.button:hover,
.button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-primary,
.nav-cta {
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fff;
}

.button-secondary {
  color: #fff;
}

/* Ganzes Workshops-Panel klickbar: eigene Overlay-Ebene (kein ::after auf dem
   CTA, dessen Hover-Transform sonst die Klickflaeche kollabieren laesst). */
.service-panel--linked {
  position: relative;
  cursor: pointer;
}

.service-panel--linked:hover {
  border-color: rgba(118, 185, 228, 0.4);
}

.service-panel-stretch {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* Sichtbarer CTA liegt ueber dem Overlay und behaelt seinen eigenen Hover. */
.service-panel--linked .service-panel-cta {
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.section {
  padding: clamp(4.75rem, 7vw, 7rem) 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  margin-bottom: 3rem;
}

.section-heading--narrow {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--compact {
  margin-bottom: 2.35rem;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--light);
}

.section-title {
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--deep);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 43rem;
}

.hero {
  position: relative;
  overflow: clip;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 20, 34, 0.74) 0%, rgba(12, 37, 60, 0.66) 48%, rgba(18, 58, 89, 0.62) 100%),
    url("netzhintergrund.png") center / cover no-repeat,
    #0d2943;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(95, 168, 211, 0.26), transparent 22%),
    radial-gradient(circle at 86% 24%, rgba(95, 168, 211, 0.18), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.06), transparent 22%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(60svh - 5rem);
  padding-block: clamp(4rem, 7vw, 6.25rem);
}

.hero-copy {
  max-width: 52rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  margin: 2.75rem 0 1rem;
  max-width: none;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: none;
}

.hero-title::after {
  content: "";
  position: absolute;
  inset: -1rem -2rem;
  background: radial-gradient(ellipse at center, rgba(118, 185, 228, 0.22) 0%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.hero-title-note {
  display: block;
  margin-top: 1.6rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.hero-lead {
  margin-top: 1.3rem;
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.13rem;
  font-weight: 500;
  text-shadow: 0 12px 32px rgba(2, 9, 18, 0.28);
}

.hero-sub {
  margin-top: 1rem;
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 400;
  text-shadow: 0 12px 32px rgba(2, 9, 18, 0.28);
}

.pain-section {
  background: #0b1f38;
  padding: 3.5rem 0;
  text-align: center;
}

.pain-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.pain-headline {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin: 2.75rem 0 0;
  min-height: 1.3em;
}

.pain-rotate {
  color: #5fa8d3;
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pain-rotate.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.pain-sub {
  max-width: 38rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin: 1.25rem 0 0;
  line-height: 1.6;
}

.pain-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 0.625rem;
  background: #173a5e;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(15, 30, 55, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.pain-cta:hover {
  background: #0f2a47;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 30, 55, 0.35);
}

.pain-footer {
  max-width: 38rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin: 1.25rem 0 0;
  line-height: 1.6;
}

.pain-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.75rem 0 0;
  width: 100%;
}

.pain-usp-card {
  background: #173a5e;
  color: #fff;
  border-radius: 0.625rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 30, 55, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5fa8d3, #00b7cc);
  opacity: 0.85;
}

.pain-usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 30, 55, 0.35);
}

.pain-usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(95, 168, 211, 0.18);
  color: #76b9e4;
  border-radius: 50%;
  margin-bottom: 0.25rem;
}

.pain-usp-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.pain-usp-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}

.pain-usp-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.78);
}

/* Reveal-Karte (Aufklapp-Effekt): Kurztitel immer sichtbar, Volltext klappt bei
   Hover auf. Nur wo Hover verfuegbar ist (Desktop) — auf Touch bleibt der
   Volltext sichtbar, daher kein JS noetig. */
.pain-usp-card--reveal .card-short {
  font-weight: 600;
  color: #fff;
}
.pain-usp-card--reveal .pain-usp-icon {
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .pain-usp-card--reveal .card-full {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }
  .pain-usp-card--reveal:hover .card-full,
  .pain-usp-card--reveal.expanded .card-full {
    max-height: 200px;
    opacity: 1;
  }
  .pain-usp-card--reveal:hover .pain-usp-icon,
  .pain-usp-card--reveal.expanded .pain-usp-icon {
    transform: scale(1.1);
  }
}

@media (max-width: 900px) {
  .pain-usp { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 520px) {
  .pain-usp { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .pain-usp-card { padding: 1rem 0.65rem; gap: 0.5rem; }
  .pain-usp-icon { width: 1.9rem; height: 1.9rem; margin-bottom: 0.5rem; }
  .pain-usp-icon svg { width: 1rem; height: 1rem; }
  .pain-usp-title { font-size: 1rem; }
  .pain-usp-text { font-size: 0.78rem; line-height: 1.4; }

  .hero-title {
    font-size: clamp(1.7rem, 8.5vw, 2.6rem) !important;
  }
  .hero-title-note {
    font-size: clamp(1rem, 4vw, 1.35rem);
    margin-top: 1rem;
  }
  .pain-headline {
    font-size: 0.95rem;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}

.hero-media {
  justify-self: end;
  width: 100%;
  max-width: 30rem;
}

.hero-visual-link {
  display: block;
  padding: 1rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--hero-shadow);
  text-decoration: none;
}

.hero-visual-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 1.35rem;
}

.hero-visual-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.section-region {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(95, 168, 211, 0.06) 100%);
}

/* Leistungen-Abschnitt farblich etwas abheben (von Loesungen oben und
   Regionaler Fokus unten): leicht hellere Flaeche mit sanftem Top-Glow. */
.services-section {
  background:
    radial-gradient(ellipse at 50% -8%, rgba(95, 168, 211, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(118, 185, 228, 0.055) 0%, rgba(118, 185, 228, 0.02) 100%);
}

.region-map {
  margin: 0 auto 3rem;
  max-width: 54rem;
}

.region-map img {
  width: 100%;
  height: auto;
}

.region-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  padding: 0;
  list-style: none;
}

.region-reasons li {
  display: block;
  padding: 1.25rem 1.3rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  border: 1px solid rgba(118, 185, 228, 0.2);
  box-shadow: 0 12px 30px rgba(19, 56, 90, 0.05);
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(95, 168, 211, 0.18), rgba(31, 78, 121, 0.2));
  color: var(--primary);
  font-weight: 800;
  font-size: 0.94rem;
}

.region-reasons h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
  color: var(--deep);
}

.region-reasons p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Reveal-Karte (Aufklapp-Effekt) fuer die regionalen Gruende:
   Titel (h3) + Kurztitel (reason-short) immer sichtbar, Volltext (reason-full)
   klappt bei Hover auf. Auf Touch (kein Hover) bleibt der Volltext sichtbar. */
.region-reasons--reveal .reason-short {
  margin: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.region-reasons--reveal .reason-full {
  margin: 0.4rem 0 0;
}
.region-reasons--reveal .reason-number {
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .region-reasons--reveal .reason-full {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }
  .region-reasons--reveal li:hover .reason-full {
    max-height: 240px;
    opacity: 1;
    margin-top: 0.4rem;
  }
  .region-reasons--reveal li:hover .reason-number {
    transform: scale(1.1);
  }
}

.services-desktop {
  display: flex;
  flex-direction: column;
}

/* Jede Gruppe (Kern / Support) ist eine eigene Reihe: links die Kaestchen,
   rechts die zugehoerige feste Box. align-items: stretch koppelt die Box-Hoehe
   automatisch an die Hoehe der Kaestchen-Spalte. Keine Sticky-Wanderung. */
.service-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "label label"
    "list  stage";
  column-gap: clamp(1.25rem, 3vw, 2rem);
  row-gap: 0;
  align-items: stretch;
}
.service-row > .service-group-label {
  grid-area: label;
}
.service-row > .service-list {
  grid-area: list;
}
.service-row > .service-stage {
  grid-area: stage;
}

.service-row--support {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.service-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
  min-width: 0;
}

.service-group-label {
  margin: 0.25rem 0 0.5rem;
  padding: 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.75;
}

.service-group-label:not(:first-child) {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.service-list .service-group-label {
  grid-column: 1 / -1;
}


.services-mobile .service-group-label {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.services-mobile .service-group-label:first-child {
  margin-top: 0.25rem;
  padding-top: 0;
  border-top: none;
}

.service-group-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.1rem;
  margin: 0;
  padding: 1.35rem 1.25rem;
  min-height: 5.25rem;
  min-width: 0;
  max-width: 100%;
  border: 1px dashed rgba(118, 185, 228, 0.28);
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
}

.service-list .service-group-cta {
  grid-column: 1 / -1;
}

.service-group-cta-text {
  flex: 1 1 12rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--muted);
}

.service-group-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.05rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #173a5e 0%, #0f7f8c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.service-group-cta-btn:hover,
.service-group-cta-btn:focus-visible {
  gap: 0.6rem;
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 127, 140, 0.28);
}

.service-group-cta-marquee {
  flex: 0 0 100%;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.service-group-cta-marquee:hover,
.service-group-cta-marquee:focus-visible {
  opacity: 0.85;
}

.service-group-cta-marquee:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 0.35rem;
}

.service-group-cta-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  animation: cta-marquee 55s linear infinite;
  will-change: transform;
}

.service-group-cta-marquee-track > span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.88;
  position: relative;
  padding-right: 1.6rem;
}

.service-group-cta-marquee-track > span::after {
  content: "·";
  position: absolute;
  right: 0;
  opacity: 0.55;
}

.service-group-cta-marquee:hover .service-group-cta-marquee-track,
.service-group-cta-marquee:focus-within .service-group-cta-marquee-track {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .service-group-cta-marquee-track { animation: none; }
}

.solutions-collage-all {
  display: block;
  margin: 2.25rem 0 2rem;
  padding: 0.75rem;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(118, 185, 228, 0.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(118, 185, 228, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  outline-offset: 4px;
}

.solutions-collage-all:hover,
.solutions-collage-all:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(118, 185, 228, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.solutions-collage-all img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.55rem;
}

@media (max-width: 700px) {
  .solutions-collage-all {
    margin: 1.75rem 0 1.5rem;
  }
}

.solutions-cta {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

.solutions-cta .service-group-cta-marquee {
  order: 1;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.solutions-cta .service-group-cta-btn {
  order: 2;
  margin-top: 1rem;
  margin-bottom: 0.9rem;
}

.service-trigger {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.95rem;
  align-items: center;
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(118, 185, 228, 0.2);
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  text-align: left;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-trigger:hover,
.service-trigger:focus-visible,
.service-trigger.is-active {
  transform: translateY(-1px);
  background:
    linear-gradient(145deg, rgba(22, 42, 60, 1), rgba(18, 35, 51, 0.96)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.22), transparent 46%);
  border-color: rgba(118, 185, 228, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

/* Aktives Kaestchen (dessen rechte Box gerade angezeigt wird) noch eine Spur
   heller als der Hover-Zustand. */
.service-trigger.is-active {
  background:
    linear-gradient(145deg, rgba(31, 55, 75, 1), rgba(25, 47, 66, 0.97)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.28), transparent 46%);
  border-color: rgba(118, 185, 228, 0.5);
}

.service-icon {
  grid-row: span 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(95, 168, 211, 0.14);
}

.service-icon img {
  width: 1.2rem;
  height: 1.2rem;
}

.service-trigger-kicker,
.service-kicker,
.about-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--light);
}

.service-trigger-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--deep);
}

.service-trigger-copy {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-stage,
.process-stage {
  padding: clamp(1.5rem, 3vw, 2rem);
  min-width: 0;
  max-width: 100%;
  border-radius: 1.8rem;
  border: 1px solid rgba(118, 185, 228, 0.2);
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.service-stage {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Box-Inhalt zaehlt nicht fuer die Grid-Zeilenhoehe: die Hoehe kommt allein
     aus der Kaestchen-Spalte. So zieht ein hoeheres Panel nicht die linke
     Liste mit (verhindert Flacker-Schleife beim Hover) und die Box bleibt
     buendig mit den Kaestchen. Inhalt passt sich per Flex/Bild-Schrumpf an. */
  contain: size;
}

/* Aktives Panel fuellt die fixierte Stage-Hoehe als Flex-Spalte; nichts
   scrollt – der Inhalt wird so kompakt gehalten, dass alle Panels in die
   fixe Hoehe (= Hoehe der vier Kaestchen) passen. */
.service-stage .service-panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Inaktive Panels ausgeblendet lassen – sonst hebt die display:flex-Regel
   oben das [hidden] der UA-Styles auf und alle Panels stapeln sich. */
.service-stage .service-panel[hidden] {
  display: none;
}

/* Kleine Kicker-Ueberschrift (z. B. ASSISTENZ, PROZESSE) in der rechten Box ausblenden. */
.service-stage .service-kicker {
  display: none;
}

/* Kompaktere Typografie in der rechten Box. */
.service-stage .service-panel h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
}
.service-stage .service-panel > p {
  font-size: 0.9rem;
  line-height: 1.4;
}
.service-stage .service-panel-subhead {
  margin-top: 0.6rem;
}
.service-stage .service-panel-thumb-label {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.service-stage .detail-list {
  margin-top: 0.7rem;
  gap: 0.4rem;
}
.service-stage .detail-list li {
  font-size: 0.88rem;
  line-height: 1.35;
}
.service-stage .service-panel-cta {
  margin-top: 0.7rem;
  align-self: flex-start;
}

/* Support-Boxen haben kein Bild als Platzfueller; damit der Inhalt nicht oben
   klumpt und unten viel Leerraum bleibt, wird er vertikal zentriert – der freie
   Platz verteilt sich ausgewogen oben und unten, mit normalem Zeilenabstand. */
.service-row--support .service-stage .service-panel {
  justify-content: center;
}

/* In den Support-Boxen: Leerzeile nach der Hauptueberschrift, je eine Leerzeile
   vor und nach der Aufzaehlung, und 0,75-Zeile Abstand zwischen den Punkten,
   damit der vorhandene Platz ansprechend genutzt wird. */
.service-row--support .service-stage .service-panel h3 {
  margin-bottom: 1.3rem;
}
.service-row--support .service-stage .detail-list {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  gap: 0.9rem;
}

/* Vorschaubild: der figure-Rahmen schrumpft exakt auf das Bild – Breite ueber
   fit-content, Hoehe ueber das Bild (height:100%). Dadurch umschliesst die
   vorhandene Einfassung (Rahmen/Radius/Schatten/Glanz) genau das Bild, ohne
   leeren Rand. Der figure waechst per flex in den freien Platz, damit der
   restliche Inhalt immer hineinpasst (kein Scrollbalken). */
.service-stage .service-panel-thumb {
  flex: 1 1 auto;
  min-height: 56px;
  margin: 0.6rem auto 0;
  width: fit-content;
  max-width: 100%;
  aspect-ratio: auto;
}
.service-stage .service-panel-thumb a {
  display: block;
  height: 100%;
}
.service-stage .service-panel-thumb img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.service-panel h3,
.process-panel h3,
.thank-list strong {
  margin-top: 0.55rem;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--deep);
}

.service-panel p,
.process-panel p,
.mobile-card-body p,
.footer-meta,
.legal-card p,
.legal-list li,
.thank-list p {
  color: var(--muted);
}

.service-panel .service-kicker,
.process-panel .service-kicker,
.about-kicker {
  color: var(--light);
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--light);
}

.service-panel-thumb {
  position: relative;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 16 / 10;
  padding: 0.6rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(95, 168, 211, 0.10) 0%, rgba(95, 168, 211, 0.02) 60%, rgba(95, 168, 211, 0.07) 100%);
  border: 1px solid rgba(95, 168, 211, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(19, 56, 90, 0.08),
    0 2px 6px rgba(19, 56, 90, 0.10),
    0 18px 44px rgba(19, 56, 90, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-panel-thumb::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  top: 0.6rem;
  height: 32%;
  border-radius: 0.55rem 0.55rem 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.service-panel-thumb--wide {
  max-width: 100%;
  aspect-ratio: auto;
}

.service-panel-thumb--wide img {
  height: auto;
  object-fit: initial;
}

.service-panel-subhead {
  margin: 1.4rem 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.005em;
}

.service-panel-thumb-label {
  margin: 1rem 0 0.1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.8;
  text-align: center;
}

.service-panel-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 168, 211, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(19, 56, 90, 0.08),
    0 2px 6px rgba(19, 56, 90, 0.12),
    0 28px 64px rgba(19, 56, 90, 0.28);
}

.service-panel-thumb a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.service-panel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0.55rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(19, 56, 90, 0.12);
  position: relative;
  z-index: 0;
}

/* Dark Mode — Bezel angepasst */
html[data-theme="dark"] .service-panel-thumb {
  background: linear-gradient(180deg, rgba(118, 185, 228, 0.09) 0%, rgba(118, 185, 228, 0.02) 60%, rgba(118, 185, 228, 0.06) 100%);
  border-color: rgba(118, 185, 228, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.28),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"] .service-panel-thumb::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  mix-blend-mode: screen;
}

html[data-theme="dark"] .service-panel-thumb img {
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .service-panel-thumb:hover {
  border-color: rgba(118, 185, 228, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.28),
    0 32px 80px rgba(0, 0, 0, 0.65);
}

.service-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.35rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, #173a5e 0%, #0f7f8c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.service-panel-cta:hover {
  gap: 0.6rem;
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 127, 140, 0.28);
}

.hover-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hover-zoom-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><g fill='none' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='7' stroke='%23000' stroke-width='4'/><path d='M17.2 17.2L25 25' stroke='%23000' stroke-width='4'/><path d='M8 12h8' stroke='%23000' stroke-width='4'/><circle cx='12' cy='12' r='7' stroke='%23fff' stroke-width='2'/><path d='M17.2 17.2L25 25' stroke='%23fff' stroke-width='2'/><path d='M8 12h8' stroke='%23fff' stroke-width='2'/></g></svg>") 12 12, zoom-out;
}

[data-hover-zoom] {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><g fill='none' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='7' stroke='%23000' stroke-width='4'/><path d='M17.2 17.2L25 25' stroke='%23000' stroke-width='4'/><path d='M8 12h8M12 8v8' stroke='%23000' stroke-width='4'/><circle cx='12' cy='12' r='7' stroke='%23fff' stroke-width='2'/><path d='M17.2 17.2L25 25' stroke='%23fff' stroke-width='2'/><path d='M8 12h8M12 8v8' stroke='%23fff' stroke-width='2'/></g></svg>") 12 12, zoom-in;
}

.hover-zoom-overlay img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}

.services-mobile,
.process-mobile {
  display: none;
}

.mobile-card {
  border: 1px solid rgba(118, 185, 228, 0.2);
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.mobile-card + .mobile-card,
.mobile-card + .service-group-cta,
.service-group-cta + .mobile-card {
  margin-top: 0.8rem;
}

.mobile-card summary {
  display: grid;
  gap: 0.3rem;
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.05rem;
}

.mobile-card summary::-webkit-details-marker {
  display: none;
}

.mobile-card summary span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--light);
}

.mobile-card summary strong {
  font-size: 1rem;
  color: var(--deep);
}

.mobile-card-body {
  padding: 0 1.05rem 1rem;
}

.process-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(95, 168, 211, 0.13), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(95, 168, 211, 0.05) 100%);
}

.process-layout {
  display: block;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.process-desktop {
  display: grid;
  gap: 1rem;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  position: relative;
}

/* Verbindende Linie zwischen den Schritten */
.process-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(118, 185, 228, 0.45) 0%, rgba(118, 185, 228, 0.18) 100%);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.process-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem 0.95rem 0.85rem;
  border: 1px solid rgba(118, 185, 228, 0.2);
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

/* Pfeil zwischen den Schritten */
.process-trigger:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.05rem;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid rgba(118, 185, 228, 0.55);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  transition: border-left-color 0.2s ease;
}

/* Nummer als runder Badge */
.process-trigger span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(118, 185, 228, 0.14);
  border: 1.5px solid rgba(118, 185, 228, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.process-trigger strong {
  font-size: 0.97rem;
  color: var(--deep);
}

.process-trigger:hover,
.process-trigger:focus-visible,
.process-trigger.is-active {
  transform: translateY(-1px);
  box-shadow: var(--card-shadow);
  border-color: rgba(118, 185, 228, 0.5);
}

.process-trigger.is-active {
  background: linear-gradient(180deg, rgba(118, 185, 228, 0.10) 0%, rgba(118, 185, 228, 0.02) 100%);
}

.process-trigger.is-active span,
.process-trigger:hover span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--light) 100%);
  border-color: transparent;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(118, 185, 228, 0.18);
}

.process-trigger.is-active:not(:last-child)::after {
  border-left-color: var(--primary);
}

.about-section {
  background: linear-gradient(180deg, rgba(95, 168, 211, 0.06) 0%, rgba(95, 168, 211, 0.03) 100%);
}

html[data-theme="dark"] .about-section {
  background: linear-gradient(180deg, rgba(95, 168, 211, 0.05) 0%, rgba(95, 168, 211, 0.08) 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-media {
  display: grid;
  gap: 1rem;
  align-content: start;
  justify-items: start;
}

.about-portrait {
  max-width: 20rem;
  margin: 0;
}

.about-portrait img {
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(17, 49, 82, 0.18);
}

.about-portrait figcaption {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.about-copy .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: -0.15rem;
}

.about-more {
  margin-top: 0.5rem;
}

.about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  background: #173a5e;
  border-radius: 0.625rem;
  box-shadow: 0 4px 16px rgba(15, 30, 55, 0.25);
  transition: gap 0.15s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.about-more-link:hover {
  gap: 0.8rem;
  background: #0f2a47;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 30, 55, 0.35);
}

.quick-check {
  background:
    radial-gradient(circle at 14% 16%, rgba(95, 168, 211, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(95, 168, 211, 0.08) 100%);
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-inline: auto;
}

.quick-form {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  border-radius: 1.8rem;
  background:
    linear-gradient(145deg, rgba(18, 35, 51, 0.98), rgba(15, 28, 41, 0.92)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  border: 1px solid rgba(118, 185, 228, 0.2);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--deep);
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--input-bg);
  padding: 0.92rem 1rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quick-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(95, 168, 211, 0.14);
  background: var(--input-focus-bg);
}

.quick-form input[aria-invalid="true"],
.quick-form select[aria-invalid="true"],
.quick-form textarea[aria-invalid="true"] {
  border-color: #c85050;
  box-shadow: 0 0 0 4px rgba(200, 80, 80, 0.12);
}

.field-error {
  min-height: 1.1rem;
  color: #bc2b2b;
  font-size: 0.82rem;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.quick-form-footer {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.consent-wrap {
  width: 100%;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--muted);
}

.consent input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  padding: 0;
  border-radius: 0.3rem;
}

.consent a {
  color: var(--primary);
}

.quick-form-actions {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.quick-form-actions .button {
  color: #fff;
  background: #173a5e;
  border: none;
  border-radius: 0.625rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(15, 30, 55, 0.25);
}

.quick-form-actions .button:hover,
.quick-form-actions .button:focus-visible {
  background: #0f2a47;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 30, 55, 0.35);
}

.assurance {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #bc2b2b;
}

.form-status.is-success {
  color: #14653d;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.footer-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-self: center;
}

.brand--footer .brand-logo {
  width: min(14rem, 46vw);
  filter: brightness(0) invert(1);
}

.footer-meta a,
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-self: end;
}

.footer-address {
  font-style: normal;
  color: var(--footer-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-address strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.legal-hero {
  padding: clamp(6rem, 10vw, 8rem) 0 2.5rem;
  background: linear-gradient(135deg, #102b44 0%, #173a5e 100%);
  color: #fff;
}

.legal-hero .hero-title,
.legal-hero .hero-lead {
  max-width: 44rem;
  color: #fff;
}

.legal-shell {
  padding: 0 0 4.5rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  padding: 1.4rem;
  border-radius: 1.35rem;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(19, 56, 90, 0.06);
}

.legal-card h2,
.legal-card h3 {
  color: var(--deep);
}

.legal-list {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.2rem;
  margin-top: 0.8rem;
}

.thank-you {
  padding: clamp(6rem, 10vw, 8rem) 0 4.5rem;
}

.thank-card {
  max-width: 48rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: 1.8rem;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.thank-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .region-map {
    justify-self: center;
  }

  .services-desktop {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-addresses {
    justify-content: center;
  }

  .footer-links {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 1360px), (max-height: 860px) {
  .services-desktop {
    display: none;
  }

  .services-mobile {
    display: block;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5rem 1rem auto 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: var(--panel-bg);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(18, 56, 92, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .button,
  .header-controls,
  .theme-toggle,
  .lang-toggle {
    width: 100%;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 3.3rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.8rem, 11vw, 4.2rem);
    overflow-wrap: break-word;
    hyphens: auto;
    min-width: 0;
  }

  .region-reasons,
  .process-track,
  .legal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-layout {
    display: none;
  }

  .process-mobile {
    display: block;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    justify-items: center;
  }

  .about-portrait {
    max-width: 15rem;
  }

  .about-portrait figcaption {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .brand-logo {
    width: min(12.5rem, 54vw);
  }

  .hero-layout {
    padding-top: 2.5rem;
    padding-bottom: 3.4rem;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-media .section-label {
    justify-self: start;
    text-align: left;
  }

  .thank-actions,
  .footer-links {
    width: 100%;
  }

  .thank-actions .button,
  .quick-form-actions .button {
    width: 100%;
  }

  .region-reasons li {
    padding: 1rem;
  }

  .quick-form {
    padding: 1.1rem;
  }
}

/* ============================================================
   LOADER
   ============================================================ */
html.no-scroll { overflow: hidden; }

#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a1a2c;
  color: #fff;
  display: grid;
  place-items: center;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), visibility .8s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-mark {
  width: 180px; height: 72px;
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 30px 80px rgba(95,168,211,.4);
  animation: loaderPulse 2s ease-in-out infinite;
  overflow: hidden;
}
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.45);
}
@keyframes loaderPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 30px 80px rgba(95,168,211,.35), 0 0 0 0 rgba(95,168,211,.5); }
  50%       { box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 30px 80px rgba(95,168,211,.45), 0 0 0 20px rgba(95,168,211,0); }
}

.loader-pct {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 2.6rem;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,.15);
  margin: 1.4rem auto 1rem;
  overflow: hidden;
}
.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #5fa8d3, #a8d6ec);
  transition: width .25s linear;
}
.loader-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}

/* ============================================================
   ANIMATIONS — hero canvas, glow orbs, custom cursor, effects
   ============================================================ */

/* Custom cursor */
#cursorDot,
#cursorRing {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}
#cursorDot {
  width: 6px; height: 6px;
  background: #5fa8d3;
}
#cursorRing {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(95,168,211,.55);
  transition: width .22s ease, height .22s ease, border-color .22s ease;
}
#cursorRing.hover { width: 52px; height: 52px; border-color: rgba(95,168,211,.9); }
#cursorRing.click { width: 22px; height: 22px; border-color: #5fa8d3; }
@media (hover: none) { #cursorDot, #cursorRing { display: none; } }

/* Hero canvas (particle network) */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Hero grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(95,168,211,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,168,211,.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 50%, transparent 100%);
  animation: gridDrift 60s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

/* Hero ambient glow orbs */
.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero-glow-1 {
  top: -15%; left: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(95,168,211,.30), transparent 60%);
  animation: heroFloat1 20s ease-in-out infinite;
}
.hero-glow-2 {
  bottom: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(31,78,121,.50), transparent 60%);
  animation: heroFloat2 26s ease-in-out infinite;
}
@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(50px, 40px); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-40px, -50px); }
}

/* Spotlight effect on cards */
[data-spotlight] { position: relative; }
[data-spotlight]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--sx, 50%) var(--sy, 50%), rgba(95,168,211,.10), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
[data-spotlight]:hover::before { opacity: 1; }

/* ============================================================
   ENHANCED SUBPAGES — About + AI Insights
   ============================================================ */

.subpage-enhanced {
  --subpage-cyan: #6bd3f2;
  --subpage-teal: #0f7f8c;
  --subpage-ink: #071724;
  --subpage-panel: rgba(15, 28, 41, 0.92);
  --subpage-panel-strong: rgba(18, 35, 51, 0.98);
  --subpage-border: rgba(118, 185, 228, 0.2);
  --subpage-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  overflow-x: hidden;
}

html[data-theme="dark"] .subpage-enhanced,
body[data-theme="dark"].subpage-enhanced {
  --subpage-panel: rgba(15, 28, 41, 0.92);
  --subpage-panel-strong: rgba(18, 35, 51, 0.98);
  --subpage-border: rgba(118, 185, 228, 0.2);
  --subpage-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.subpage-enhanced main {
  overflow: hidden;
}

.subpage-enhanced .subpage-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(22rem, 44vw, 31rem);
  padding: clamp(5.25rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  color: #fff;
  background:
    linear-gradient(125deg, rgba(5, 16, 28, 0.86) 0%, rgba(10, 44, 68, 0.82) 46%, rgba(0, 95, 106, 0.76) 100%),
    url("netzhintergrund.png") center / cover no-repeat,
    #0a1b2d;
}

.subpage-enhanced .subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse 60% 45% at 72% 44%, rgba(107, 211, 242, 0.2), transparent 68%);
  background-size: 88px 88px, 88px 88px, auto;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.98), rgba(0,0,0,0.58));
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.98), rgba(0,0,0,0.58));
  pointer-events: none;
}

.subpage-enhanced .subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 8rem;
  background: linear-gradient(180deg, transparent, var(--background));
  pointer-events: none;
}

.subpage-enhanced .subpage-hero .hero-canvas {
  z-index: 1;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.subpage-enhanced .subpage-hero .hero-grid {
  z-index: 0;
  opacity: 0.72;
}

.subpage-enhanced .subpage-hero-inner {
  position: relative;
  z-index: 2;
  max-width: min(calc(100% - 2rem), var(--container));
  padding-right: min(26vw, 21rem);
}

.subpage-enhanced .about-page-hero .eyebrow,
.subpage-enhanced .lab-hero-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  min-height: 2rem;
  margin: 0 0 1.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.subpage-enhanced .about-page-hero h1,
.subpage-enhanced .lab-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  text-wrap: balance;
}

.subpage-enhanced.insights-enhanced .lab-hero h1,
.subpage-enhanced.about-enhanced .about-page-hero h1 {
  position: relative;
  max-width: none;
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: none;
}

.subpage-enhanced.insights-enhanced .lab-hero h1::after,
.subpage-enhanced.about-enhanced .about-page-hero h1::after {
  content: "";
  position: absolute;
  inset: -1rem -2rem;
  background: radial-gradient(ellipse at center, rgba(118, 185, 228, 0.22) 0%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.subpage-enhanced .subpage-hero-desc,
.subpage-enhanced .lab-hero-desc {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
  font-weight: 500;
}

.insights-enhanced .neural-sphere {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(10rem, 22vw);
  width: min(32vw, 24rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.32));
}

.insights-enhanced .neural-sphere::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 50%, rgba(168, 214, 236, 0.22), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(15, 127, 140, 0.18), transparent 64%);
  filter: blur(2px);
  opacity: 0.9;
}

.neural-sphere-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(143, 209, 255, 0.24);
  border-radius: 50%;
}

.neural-sphere-ring--two {
  inset: 18%;
  border-color: rgba(143, 209, 255, 0.16);
}

.neural-sphere-ring--three {
  inset: 30%;
  border-color: rgba(143, 209, 255, 0.1);
}

.neural-sphere-ring--four {
  inset: 39%;
  border-color: rgba(168, 214, 236, 0.28);
  border-style: dashed;
  animation: neural-sphere-ring-spin 56s linear infinite;
}

.neural-sphere-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.neural-sphere-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: rgba(168, 214, 236, 0.62);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: clamp(1.05rem, 1.9vw, 1.6rem);
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(143, 209, 255, 0.55),
    0 0 4px rgba(255, 255, 255, 0.35);
  mix-blend-mode: screen;
  pointer-events: none;
  white-space: nowrap;
}

@keyframes neural-sphere-ring-spin {
  to { transform: rotate(360deg); }
}

.subpage-orbit {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(2rem, 7vw);
  width: min(24vw, 19rem);
  aspect-ratio: 1;
  border: 1px solid rgba(168, 214, 236, 0.22);
  border-radius: 50%;
  transform: translateY(-50%) rotateX(62deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  pointer-events: none;
  animation: subpage-orbit-roll 18s linear infinite;
}

.subpage-orbit::before,
.subpage-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168, 214, 236, 0.18);
}

.subpage-orbit::before {
  inset: 18%;
}

.subpage-orbit::after {
  inset: 34%;
}

.subpage-orbit span {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #a8d6ec;
  box-shadow: 0 0 0 6px rgba(168, 214, 236, 0.12), 0 0 34px rgba(107, 211, 242, 0.6);
}

.subpage-orbit span:nth-child(1) { top: -0.36rem; left: 48%; }
.subpage-orbit span:nth-child(2) { right: 9%; bottom: 17%; }
.subpage-orbit span:nth-child(3) { left: 12%; bottom: 24%; }

@keyframes subpage-orbit-roll {
  from { transform: translateY(-50%) rotateX(62deg) rotateZ(-18deg); }
  to { transform: translateY(-50%) rotateX(62deg) rotateZ(342deg); }
}

.subpage-hero-panel {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(26vw, 18rem);
  aspect-ratio: 1;
  border: 1px solid rgba(168, 214, 236, 0.24);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(95, 168, 211, 0.1), rgba(0, 95, 106, 0.18));
  box-shadow: 0 30px 80px rgba(3, 13, 24, 0.36), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  transform: translateY(-50%) rotateX(58deg) rotateZ(-18deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

.hero-panel-ring,
.hero-panel-ring::before,
.hero-panel-ring::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168, 214, 236, 0.28);
}

.hero-panel-ring {
  inset: 15%;
  animation: subpage-panel-spin 16s linear infinite;
}

.hero-panel-ring::before,
.hero-panel-ring::after {
  content: "";
}

.hero-panel-ring::before { inset: 20%; }
.hero-panel-ring::after { inset: 38%; }

.hero-panel-core,
.hero-panel-node {
  position: absolute;
  border-radius: 50%;
  background: #a8d6ec;
  box-shadow: 0 0 28px rgba(107, 211, 242, 0.62);
}

.hero-panel-core {
  inset: 46%;
  animation: subpage-node-pulse 2.8s ease-in-out infinite;
}

.hero-panel-node {
  width: 0.85rem;
  height: 0.85rem;
}

.hero-panel-node--one { top: 18%; left: 45%; }
.hero-panel-node--two { right: 18%; top: 58%; }
.hero-panel-node--three { left: 20%; bottom: 22%; }

@keyframes subpage-panel-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes subpage-node-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 1; }
}

.about-enhanced .about-section {
  position: relative;
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  background:
    linear-gradient(180deg, var(--background) 0%, var(--background-strong) 100%);
}

.about-enhanced .about-section::before,
.about-enhanced .network-section::before,
.insights-enhanced .lab-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31, 78, 121, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.about-enhanced .about-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: stretch;
  perspective: 1200px;
}

.about-enhanced .about-media {
  align-items: stretch;
}

.about-enhanced .about-portrait {
  position: relative;
  max-width: 22rem;
  padding: 0.65rem;
  overflow: hidden;
  border: 1px solid var(--subpage-border);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, var(--subpage-panel-strong), rgba(95, 168, 211, 0.13));
  box-shadow: var(--subpage-shadow);
  transform-style: preserve-3d;
}

.about-enhanced .about-portrait::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 70%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
  transform: rotate(18deg);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.about-enhanced .about-portrait:hover::after {
  transform: translateX(180%) rotate(18deg);
}

.about-enhanced .about-portrait img {
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(17, 49, 82, 0.18);
}

.about-enhanced .about-portrait figcaption {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0.15rem 0.05rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-enhanced .about-copy {
  position: relative;
  align-content: center;
  gap: 1.15rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid var(--subpage-border);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, var(--subpage-panel-strong), var(--subpage-panel)),
    radial-gradient(ellipse at 100% 0%, rgba(95, 168, 211, 0.18), transparent 48%);
  box-shadow: var(--subpage-shadow);
  backdrop-filter: blur(18px);
}

.about-enhanced .about-copy p {
  max-width: 58rem;
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.about-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.about-signal-strip span {
  min-height: 5rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(95, 168, 211, 0.1);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.3;
}

.about-signal-strip strong {
  display: block;
  color: var(--deep);
  font-size: 1.18rem;
  line-height: 1.15;
}

.about-enhanced .network-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    linear-gradient(180deg, var(--background-strong), rgba(95, 168, 211, 0.09));
}

.about-enhanced .network-section > .container {
  position: relative;
  z-index: 1;
}

.about-enhanced .network-grid {
  counter-reset: network-card;
  perspective: 1400px;
}

.about-enhanced .network-card {
  counter-increment: network-card;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.4rem, 2.5vw, 2.15rem);
  border: 1px solid var(--subpage-border);
  border-top: 1px solid var(--subpage-border);
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, var(--subpage-panel-strong), var(--subpage-panel)),
    linear-gradient(135deg, rgba(95, 168, 211, 0.1), transparent 52%);
  box-shadow: var(--subpage-shadow);
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-enhanced .network-card::after {
  content: counter(network-card, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: rgba(31, 78, 121, 0.13);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.about-enhanced .network-card > * {
  position: relative;
  z-index: 1;
}

.about-enhanced .network-card h3 {
  max-width: 16rem;
  color: var(--deep);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}

.about-enhanced .network-card p {
  color: var(--muted);
  line-height: 1.75;
}

.about-enhanced .network-card:hover {
  border-color: rgba(95, 168, 211, 0.42);
  box-shadow: 0 30px 80px rgba(7, 28, 47, 0.22);
}

.about-enhanced .network-card--wide {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.subpage-enhanced .page-actions {
  position: relative;
  z-index: 1;
}

.subpage-enhanced .page-action-btn {
  border-radius: 0.75rem;
  transform-style: preserve-3d;
}

.subpage-enhanced .page-action-btn--primary {
  background: linear-gradient(135deg, #173a5e 0%, #0f7f8c 100%);
}

.subpage-enhanced .page-action-btn--back {
  background: var(--subpage-panel);
  backdrop-filter: blur(14px);
}

.insights-enhanced .lab-content {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    linear-gradient(180deg, var(--background) 0%, var(--background-strong) 56%, rgba(95, 168, 211, 0.13) 100%);
}

.insights-enhanced .lab-content > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  align-items: start;
  perspective: 1400px;
}

.insights-enhanced .article-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
  border: 1px solid var(--subpage-border);
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, var(--subpage-panel-strong), var(--subpage-panel)),
    radial-gradient(ellipse at 95% 0%, rgba(95, 168, 211, 0.16), transparent 46%);
  box-shadow: var(--subpage-shadow);
  transform-style: preserve-3d;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.insights-enhanced .article-card:first-of-type {
  grid-column: 1 / -1;
}

.insights-enhanced .article-card:hover {
  border-color: rgba(95, 168, 211, 0.42);
  box-shadow: 0 30px 80px rgba(7, 28, 47, 0.22);
}

.insights-enhanced .article-card > * {
  position: relative;
  z-index: 1;
}

.insights-enhanced .article-card > img,
.insights-enhanced .article-card > a:first-child > img {
  width: 100% !important;
  max-height: 22rem;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.insights-enhanced .article-card:hover > img,
.insights-enhanced .article-card:hover > a:first-child > img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.03);
}

.insights-enhanced .article-card-meta {
  gap: 0.85rem;
  padding: 1.45rem clamp(1.25rem, 2.6vw, 2rem) 0;
}

.insights-enhanced .article-badge,
.insights-enhanced .project-tag {
  border: 1px solid var(--line);
  background: rgba(95, 168, 211, 0.13);
  color: var(--deep);
}

.insights-enhanced .article-header {
  padding: 1.25rem clamp(1.25rem, 2.6vw, 2rem) 1.35rem;
  border-bottom: 1px solid var(--line);
}

.insights-enhanced .article-title {
  color: var(--deep);
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.insights-enhanced .article-teaser-body {
  padding: 1.3rem clamp(1.25rem, 2.6vw, 2rem) 0;
}

.insights-enhanced .article-teaser-intro {
  color: var(--muted);
  line-height: 1.72;
}

.insights-enhanced .article-readmore {
  margin-top: auto;
  padding: 1.35rem clamp(1.25rem, 2.6vw, 2rem) clamp(1.4rem, 2.6vw, 2rem);
}

.insights-enhanced .readmore-btn,
.insights-enhanced .paywall-btn,
.insights-enhanced .article-share-btn {
  background: linear-gradient(135deg, #173a5e 0%, #0f7f8c 100%);
  box-shadow: 0 10px 28px rgba(15, 74, 94, 0.24);
}

.insights-enhanced .readmore-btn:hover,
.insights-enhanced .paywall-btn:hover,
.insights-enhanced .article-share-btn:hover {
  background: linear-gradient(135deg, #0f2a47 0%, #006c79 100%);
}

.insights-enhanced .video-preview {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
}

.insights-cta {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  margin-top: 0.75rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--subpage-border);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(23, 58, 94, 0.96), rgba(0, 95, 106, 0.9)),
    url("netzhintergrund.png") center / cover no-repeat;
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 70px rgba(7, 28, 47, 0.25);
}

.insights-cta > * {
  position: relative;
  z-index: 1;
}

.insights-cta p {
  margin: 0 0 1.35rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1.03rem !important;
}

.insights-cta a {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(14px);
}

.insights-cta a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18) !important;
}

@media (hover: hover) and (pointer: fine) {
  .subpage-enhanced [data-tilt] {
    will-change: transform;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }
}

@media (max-width: 980px) {
  .subpage-enhanced .subpage-hero-inner {
    padding-right: 0;
  }

  .subpage-orbit,
  .subpage-hero-panel,
  .insights-enhanced .neural-sphere {
    opacity: 0.24;
    right: -4rem;
    width: 18rem;
  }

  .about-enhanced .about-layout,
  .about-enhanced .network-card--wide,
  .insights-enhanced .lab-content > .container {
    grid-template-columns: 1fr;
  }

  .about-enhanced .about-portrait {
    max-width: 18rem;
  }
}

@media (max-width: 640px) {
  .subpage-enhanced .container,
  .subpage-enhanced .subpage-hero-inner,
  .insights-enhanced .lab-content > .container {
    width: min(calc(100vw - 1.25rem), var(--container));
    max-width: calc(100vw - 1.25rem);
    min-width: 0;
  }

  .subpage-enhanced .about-copy,
  .subpage-enhanced .network-card,
  .subpage-enhanced .article-card,
  .subpage-enhanced .article-header,
  .subpage-enhanced .article-teaser-body,
  .subpage-enhanced .article-readmore {
    min-width: 0;
  }

  .subpage-enhanced .subpage-hero {
    min-height: auto;
    padding: 4.5rem 0 4rem;
  }

  .subpage-enhanced .about-page-hero h1,
  .subpage-enhanced .lab-hero h1 {
    max-width: min(100%, 9.5ch);
    font-size: clamp(2.35rem, 12.8vw, 3.15rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
  }

  .subpage-enhanced .subpage-hero-desc,
  .subpage-enhanced .lab-hero-desc {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .subpage-enhanced .article-title,
  .subpage-enhanced .about-copy p,
  .subpage-enhanced .network-card h3,
  .subpage-enhanced .network-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .subpage-orbit,
  .subpage-hero-panel,
  .insights-enhanced .neural-sphere {
    display: none;
  }

  .about-signal-strip {
    grid-template-columns: 1fr;
  }

  .about-enhanced .about-copy,
  .about-enhanced .network-card,
  .insights-enhanced .article-card,
  .insights-cta {
    border-radius: 0.95rem;
  }

  .insights-enhanced .article-card > img,
  .insights-enhanced .article-card > a:first-child > img {
    max-height: none;
  }
}

/* ── Print stylesheet ─────────────────────────────────────────────── */
@media print {
  @page {
    margin: 1.8cm 1.6cm;
  }

  html,
  body {
    background: #fff !important;
    color: #000 !important;
  }

  /* Hide chrome, navigation, decoration */
  .site-header,
  .site-footer,
  .skip-link,
  .menu-toggle,
  .header-controls,
  .hero-canvas,
  .hero-grid,
  .neural-sphere,
  .subpage-orbit,
  .subpage-hero-panel,
  .lab-hero,
  .article-back,
  .article-share,
  .article-readmore,
  .article-cta,
  .article-nav-footer,
  .insights-cta,
  #cursorDot,
  #cursorRing {
    display: none !important;
  }

  /* Reset card chrome */
  main,
  .lab-content,
  .article-page,
  .article-card,
  .container {
    background: #fff !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }

  .article-card {
    border: none !important;
    border-radius: 0 !important;
  }

  /* Force readable text colors */
  .article-title,
  .article-body,
  .article-body p,
  .article-body h2,
  .article-body h3,
  .article-body strong,
  .article-author,
  .article-author p,
  .article-card-meta,
  .article-date,
  .article-readtime {
    color: #000 !important;
  }

  .article-title {
    font-size: 1.35rem !important;
    margin: 0 0 0.75rem !important;
    page-break-after: avoid;
  }

  .article-card-meta {
    padding: 0 0 0.5rem !important;
    border-bottom: 1px solid #999;
    margin-bottom: 1rem;
    gap: 0.75rem;
  }

  .article-badge {
    background: none !important;
    border: 1px solid #000;
    color: #000 !important;
    padding: 0.15rem 0.55rem;
  }

  .article-header {
    border-bottom: 1px solid #999 !important;
    padding: 0 0 0.75rem !important;
    margin-bottom: 1rem;
  }

  .article-body {
    padding: 0 !important;
    font-size: 9.5pt !important;
  }

  .article-body p {
    line-height: 1.45 !important;
    margin: 0 0 0.5rem !important;
    font-size: 9.5pt !important;
    orphans: 3;
    widows: 3;
  }

  .article-body h2 {
    font-size: 11pt !important;
    margin: 0.9rem 0 0.3rem !important;
    page-break-after: avoid;
  }

  .article-body img {
    box-shadow: none !important;
    border: 1px solid #ddd;
    page-break-inside: avoid;
    max-height: 14cm;
    object-fit: contain;
    margin: 0.8rem 0 !important;
  }

  .article-author {
    border-top: 1px solid #999 !important;
    margin-top: 1.2rem !important;
    padding-top: 0.6rem !important;
    font-size: 8pt !important;
  }

  /* Print URL after external links in article body */
  .article-body a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555;
    word-break: break-all;
  }

  /* On the insights listing: show only the article that triggered print is hard,
     so we keep all cards but strip teaser-only UI to avoid bloat */
  .article-teaser-body {
    padding: 0 !important;
    margin-bottom: 1.5rem;
  }
  .article-card { page-break-inside: avoid; margin-bottom: 1rem !important; }
}

/* ═══════════════════════════════════════
   V2 LEISTUNGEN
═══════════════════════════════════════ */

/* Kern-Blöcke */
.v2-kern-section { display: flex; flex-direction: column; gap: 3.5rem; margin-bottom: 3rem; text-align: center; }
.v2-kern-block {
  background: rgba(18, 34, 54, 1);
  border: 1px solid rgba(143, 209, 255, 0.32);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 1.75rem;
}
.v2-kern-header { margin-bottom: 1.5rem; }
.v2-kern-header h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--deep);
  margin: 0.25rem 0 0.5rem;
}
.v2-kern-header > p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* 3-Spalten-Grid KI-Assistenten */
.v2-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.v2-sub-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.v2-sub-grid--two .v2-thumb-btn img {
  object-fit: contain;
  height: 180px;
  background: rgba(8, 18, 40, 0.85);
}
.v2-sub-card {
  background: var(--background-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.v2-sub-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
}
.v2-sub-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Screenshot-Button */
.v2-thumb-btn {
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.v2-thumb-btn img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.v2-thumb-btn:hover img { transform: scale(1.04); opacity: 0.88; }

/* KI-Agenten Body */
.v2-agent-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.v2-agent-body .v2-thumb-btn img { height: auto; }
.v2-agent-list { margin: 0; text-align: left; }

.v2-os-block {
  margin: 3.5rem 0 3.75rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
.v2-os-block .service-trigger-kicker {
  color: var(--muted);
  font-size: 0.95rem;
}
.v2-os-statement {
  max-width: 46rem;
  margin: 0.5rem auto 0;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--deep);
}
.v2-os-statement strong {
  color: var(--light);
}

/* Support-Accordion */
.v2-support-section { margin-bottom: 3rem; text-align: center; }
.v2-accordion { display: grid; grid-template-columns: 1fr 4rem 1fr; row-gap: 0.75rem; column-gap: 0; margin-top: 1rem; align-items: start; }
.v2-accordion-item:nth-child(odd)  { grid-column: 1; }
.v2-accordion-item:nth-child(even) { grid-column: 3; }
.v2-accordion-item {
  background: rgba(18, 34, 54, 1);
  border: 1px solid rgba(143, 209, 255, 0.32);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.v2-accordion-item[open] { border-color: rgba(143, 209, 255, 0.55); }
.v2-accordion-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
  text-align: left;
}
.v2-accordion-trigger::-webkit-details-marker { display: none; }
.v2-accordion-trigger strong {
  flex: 1;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}
.v2-accordion-trigger:hover strong { color: var(--primary); }
.v2-chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-right: 0.25rem;
}
.v2-accordion-item[open] .v2-chevron { transform: rotate(-135deg); }
.v2-accordion-content {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.v2-accordion-content p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Lightbox */
.v2-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.v2-lightbox.is-open { opacity: 1; pointer-events: auto; }
.v2-lightbox-frame {
  position: relative;
  padding: 0.75rem;
  border-radius: 1rem;
  background: #0d1e30;
  box-shadow:
    0 0 0 1px rgba(95,168,211,0.35),
    0 8px 24px rgba(0,0,0,0.4),
    0 32px 80px rgba(0,0,0,0.55);
}
.v2-lightbox-img {
  display: block;
  max-width: min(88vw, 1000px);
  max-height: 78vh;
  border-radius: 0.35rem;
  clip-path: inset(6px round 0.35rem);
  width: auto;
  height: auto;
}
.v2-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.v2-lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* Responsive */
@media (max-width: 900px) {
  .v2-sub-grid { grid-template-columns: 1fr; }
  .v2-agent-body { grid-template-columns: 1fr; }
  .v2-accordion { grid-template-columns: 1fr; }
  .v2-accordion-item:nth-child(odd), .v2-accordion-item:nth-child(even) { grid-column: 1; }
}

.vorgehen-heading { max-width: 68rem; }
.vorgehen-intro { max-width: none; white-space: nowrap; text-align: center; }
@media (max-width: 1100px) {
  .vorgehen-intro { white-space: normal; max-width: 43rem; text-align: left; margin-inline: auto; }
}
