/* ==========================================================================
   STARTKLAR – Webseite
   Ein einziges Stylesheet für alle Seiten. Keine Frameworks, keine externen
   Anfragen (Schriften liegen lokal unter assets/fonts/).

   Aufbau:
     1. Marken-Token
     2. Grundlagen / Reset
     3. Layout-Bausteine
     4. Kopfzeile & Navigation
     5. Buttons & Chips
     6. Abschnitte der Startseite
     7. Unterseiten (Betriebe, Rechtstexte)
     8. Fußzeile
     9. Bewegung & Barrierefreiheit
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Marken-Token
   Farbwerte exakt aus dem Markenblatt. Wer die Marke nachschärft, ändert
   ausschließlich hier – alles Weitere zieht nach.
   ------------------------------------------------------------------------- */
:root {
  /* Markenfarben */
  --lime: #d7ff00;          /* Neon-Lime      – Hauptakzent, Pfeil */
  --cyan: #00c8ff;          /* Electric Cyan  – Konturen, Highlights */
  --navy: #07152e;          /* Deep Navy      – dunkle Flächen/Kontur */
  --weiss: #ffffff;         /* Weiß           – Schrift/Highlights */
  --blau: #006eff;          /* Bright Blue    – zusätzliche Akzente */

  /* Abgeleitete Töne */
  --navy-hell: #0e2144;
  --navy-tief: #040d1e;
  --navy-linie: rgba(255, 255, 255, .12);
  --papier: #f6f8fb;
  --papier-tief: #e9eef6;
  --linie: #d8e0ec;

  /* Schrift auf dunklem Grund */
  --text-hell: #ffffff;
  --text-hell-weich: #b7c4da;

  /* Schrift auf hellem Grund */
  --text-dunkel: #07152e;
  --text-dunkel-weich: #4d5c76;

  /* Typografie */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Maße */
  --breite: 1160px;
  --breite-schmal: 760px;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --kopf-hoehe: 76px;
}

/* -------------------------------------------------------------------------
   2. Grundlagen / Reset
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--kopf-hoehe) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text-hell);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 7.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--lime); color: var(--navy); }

/* Sichtbarer, markenkonformer Fokusring – nie entfernen. */
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sprunglink für Tastatur- und Screenreader-Nutzung */
.sprung-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--lime);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  transition: top .18s ease;
}
.sprung-link:focus { top: 16px; }

.nur-screenreader {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------------------
   3. Layout-Bausteine
   ------------------------------------------------------------------------- */
.huelle {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: 24px;
}

.huelle--schmal { max-width: var(--breite-schmal); }

.block { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.block--eng { padding-block: clamp(52px, 7vw, 88px); }

/* Heller Abschnitt auf dunklem Grundgerüst */
.block--hell {
  background: var(--papier);
  color: var(--text-dunkel);
}
.block--hell h1,
.block--hell h2,
.block--hell h3 { color: var(--navy); }

/* Kopfbereich eines Abschnitts */
.marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.marker::before {
  content: '';
  width: 26px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.block--hell .marker { color: var(--blau); }

.block-kopf { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.block-kopf p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-hell-weich);
  margin-bottom: 0;
}
.block--hell .block-kopf p { color: var(--text-dunkel-weich); }

.gitter {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.gitter--drei { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.gitter--vier { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* Textauszeichnungen */
.lime { color: var(--lime); }
.cyan { color: var(--cyan); }

/* Marker-Unterstreichung im Graffiti-Stil */
.streich {
  position: relative;
  white-space: nowrap;
}
.streich::after {
  content: '';
  position: absolute;
  left: -.06em;
  right: -.06em;
  bottom: .04em;
  height: .34em;
  background: var(--lime);
  border-radius: 3px 12px 6px 14px;
  transform: rotate(-.8deg);
  z-index: -1;
}
.streich--cyan::after { background: var(--cyan); }

/* -------------------------------------------------------------------------
   4. Kopfzeile & Navigation
   ------------------------------------------------------------------------- */
.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--kopf-hoehe);
  display: flex;
  align-items: center;
  background: rgba(7, 21, 46, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.kopf.ist-gescrollt {
  border-bottom-color: var(--navy-linie);
  background: rgba(7, 21, 46, .95);
}

.kopf .huelle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.marke { display: flex; align-items: center; flex-shrink: 0; }

/* Die Logodatei bringt rundum transparenten Rand mit – die Grafik selbst füllt
   nur gut zwei Drittel der Bildhöhe. Die Box darf deshalb fast die ganze
   Leiste einnehmen; der Abstand nach oben und unten entsteht durch den
   Rand im Bild. Unten ist dieser Rand größer als oben, das translateY
   rückt die Grafik optisch wieder in die Mitte. */
.marke img {
  height: calc(var(--kopf-hoehe) - 8px);
  width: auto;
  transform: translateY(3px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-hell-weich);
  position: relative;
  padding-block: 6px;
  transition: color .18s ease;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover,
.nav a[aria-current='page'] { color: var(--weiss); }
.nav a:hover::after,
.nav a[aria-current='page']::after { transform: scaleX(1); }

/* Menü-Schalter für schmale Bildschirme */
.menue-schalter {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--navy-linie);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menue-schalter span {
  display: block;
  width: 20px; height: 2px;
  background: var(--weiss);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.menue-schalter[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menue-schalter[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menue-schalter[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .menue-schalter { display: flex; }

  .nav {
    position: fixed;
    inset: var(--kopf-hoehe) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-tief);
    border-bottom: 1px solid var(--navy-linie);
    padding: 12px 24px 26px;
    transform: translateY(-130%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    max-height: calc(100dvh - var(--kopf-hoehe));
    overflow-y: auto;
  }
  .nav.ist-offen { transform: translateY(0); }
  .nav a {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--navy-linie);
  }
  .nav a::after { display: none; }
  .nav .knopf { margin-top: 18px; justify-content: center; border-bottom: none; }
}

/* -------------------------------------------------------------------------
   5. Buttons & Chips
   ------------------------------------------------------------------------- */
.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 15px 30px;
  cursor: pointer;
  transition: transform .15s ease, background .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
  line-height: 1.2;
}
.knopf:hover { transform: translateY(-2px); }
.knopf:active { transform: translateY(0); }

/* Hauptaktion – Neon-Lime, wie der Pfeil im Logo */
.knopf--lime {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 8px 26px rgba(215, 255, 0, .26);
}
.knopf--lime:hover { box-shadow: 0 12px 34px rgba(215, 255, 0, .4); }

/* Zweite Aktion auf dunklem Grund */
.knopf--rand {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255, 255, 255, .28);
}
.knopf--rand:hover { border-color: var(--cyan); color: var(--cyan); }

/* Zweite Aktion auf hellem Grund */
.knopf--navy {
  background: var(--navy);
  color: var(--weiss);
}
.knopf--navy:hover { background: var(--blau); }

.knopf--klein { padding: 11px 22px; font-size: .92rem; }

.knopf .pfeil { transition: transform .2s ease; }
.knopf:hover .pfeil { transform: translateX(4px); }

.knopf-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Stillgelegte Ziele, solange die Anwendung noch nicht läuft.
   Diese Elemente haben serverseitig kein href – sie sind dadurch schon
   technisch tot. Hier bekommen sie zusätzlich das passende Aussehen, damit
   niemand vergeblich klickt. */
[aria-disabled='true'] {
  cursor: not-allowed;
  pointer-events: none;
}
.knopf[aria-disabled='true'] {
  opacity: .45;
  box-shadow: none;
  filter: grayscale(.35);
}
.knopf[aria-disabled='true']:hover { transform: none; }

/* In Listen (Fußzeile) reicht ein dezenter Hinweis */
.fuss-spalte a[aria-disabled='true'] { opacity: .45; }
.fuss-spalte a[aria-disabled='true']::after {
  content: ' · bald';
  font-size: .8em;
  color: var(--lime);
  opacity: .8;
}

/* Erklärender Satz unter einer stillgelegten Button-Reihe */
.bald {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 0 0;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--text-hell-weich);
  max-width: 44ch;
}
.bald::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--lime);
}
.block--hell .bald { color: var(--text-dunkel-weich); }
.abschluss .bald { justify-content: center; margin-inline: auto; }

/* Kleine Faktenmarken unter dem Hero */
.fakten {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}
.fakten li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-hell-weich);
}
.fakten li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   6. Abschnitte der Startseite
   ------------------------------------------------------------------------- */

/* --- 6.1 Hero --- */
.hero {
  position: relative;
  padding-block: clamp(70px, 11vw, 140px) clamp(60px, 9vw, 110px);
  overflow: hidden;
}

/* Farbige Lichtflächen im Hintergrund – reine Dekoration.
   Bewusst als radial-gradient statt als weichgezeichneter Kreis: filter:blur()
   wird von manchen Engines auf ein Rechteck begrenzt und bekommt dann sichtbare
   Kanten. Ein Verlauf sieht überall gleich aus und ist zudem günstiger. */
.hero {
  background:
    radial-gradient(58% 62% at 78% 8%,  rgba(0, 110, 255, .34), transparent 70%),
    radial-gradient(52% 55% at 4% 96%,  rgba(215, 255, 0, .12), transparent 70%);
}

.hero .huelle { position: relative; z-index: 1; }

.hero-inhalt { max-width: 900px; }

.hero h1 { margin-bottom: 24px; }

/* Die erzwungenen Zeilenumbrüche in der Hauptüberschrift setzen nur auf
   breiten Bildschirmen sinnvolle Zäsuren. Auf dem Handy entstehen daraus
   Stummel-Zeilen ("Nur,") – dort fließt der Text besser von allein. */
@media (max-width: 700px) {
  .hero h1 br { display: none; }
}

.hero-vorspann {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-hell-weich);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-vorspann strong { color: var(--weiss); font-weight: 600; }

/* Kleiner Aufkleber über der Überschrift */
.aufkleber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 200, 255, .1);
  border: 1px solid rgba(0, 200, 255, .35);
  color: var(--cyan);
  font-size: .84rem;
  font-weight: 600;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.aufkleber .punkt {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(215, 255, 0, .7);
  animation: puls 2.4s infinite;
}
@keyframes puls {
  0%   { box-shadow: 0 0 0 0 rgba(215, 255, 0, .6); }
  70%  { box-shadow: 0 0 0 10px rgba(215, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 255, 0, 0); }
}

/* --- 6.2 Laufband mit Sprüchen --- */
.laufband {
  background: var(--lime);
  color: var(--navy);
  padding: 15px 0;
  overflow: hidden;
  border-block: 3px solid var(--navy);
  position: relative;
}
.laufband-spur {
  display: flex;
  width: max-content;
  animation: laufen 34s linear infinite;
}
.laufband:hover .laufband-spur { animation-play-state: paused; }
.laufband-gruppe {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.laufband-gruppe span:nth-child(even) { color: rgba(7, 21, 46, .45); }
@keyframes laufen {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- 6.3 „Kennst du das?“ – Zitatkarten --- */
.zitate {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 46px;
}
.zitat {
  background: var(--navy-hell);
  border: 1px solid var(--navy-linie);
  border-radius: var(--radius-m);
  padding: 26px 28px 28px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--weiss);
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.zitat:hover { transform: translateY(-4px); border-color: rgba(0, 200, 255, .45); }

/* Das Anführungszeichen steht bewusst im Textfluss statt absolut positioniert:
   „ ist ein TIEFES Zeichen und sitzt auf der Grundlinie, rutscht in seiner
   Zeilenbox also weit nach unten – absolut positioniert landete es dadurch
   mitten in der ersten Textzeile. Als eigener Block mit gekürzter
   Zeilenhöhe (die leere Oberlänge fällt weg) kann es nicht mehr überlappen. */
.zitat::before {
  content: '„';
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: .62;
  color: var(--lime);
  opacity: .75;
  margin-bottom: 14px;
}

.antwort-kasten {
  background: linear-gradient(135deg, var(--blau), #0043b8);
  border-radius: var(--radius-l);
  padding: clamp(32px, 4.5vw, 52px);
  max-width: 860px;
}
.antwort-kasten h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 14px;
  color: var(--weiss);
}
.antwort-kasten p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
  margin-bottom: 0;
}

/* --- 6.4 So läuft's – Schritte --- */
.schritte {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  counter-reset: schritt;
}
.schritt {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-m);
  padding: 34px 30px 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.schritt:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7, 21, 46, .1);
}
.schritt-nummer {
  counter-increment: schritt;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: 16px;
}
.schritt-nummer::before { content: counter(schritt, decimal-leading-zero); }
.schritt-nummer::after {
  content: '';
  display: block;
  width: 42px; height: 5px;
  background: var(--lime);
  border-radius: 3px;
  margin-top: 12px;
}
.schritt h3 { margin-bottom: 10px; }
.schritt p {
  color: var(--text-dunkel-weich);
  font-size: .99rem;
  margin-bottom: 0;
}
.schritt-dauer {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blau);
  background: rgba(0, 110, 255, .09);
  padding: 5px 11px;
  border-radius: 999px;
  margin-top: 18px;
}

/* --- 6.5 Die 14 Stärken --- */
.staerken {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.staerke {
  background: var(--navy-hell);
  border: 1px solid var(--navy-linie);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  transition: transform .2s ease, border-left-color .2s ease, background .2s ease;
}
.staerke:hover {
  transform: translateX(5px);
  border-left-color: var(--lime);
  background: #12294f;
}
.staerke b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.staerke small {
  color: var(--text-hell-weich);
  font-size: .87rem;
  line-height: 1.5;
  display: block;
}

/* --- 6.6 Berufsfelder --- */
.felder {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
.feld {
  font-family: var(--font-text);
  font-size: .96rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--weiss);
  border: 2px solid var(--linie);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease,
              transform .16s ease, opacity .16s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feld:hover { border-color: var(--blau); transform: translateY(-2px); }
.feld[aria-pressed='true'] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--lime);
}
.feld[aria-pressed='true']::before { content: '✓'; font-weight: 700; }

.felder-hinweis {
  font-size: .95rem;
  color: var(--text-dunkel-weich);
  min-height: 1.6em;
  margin-bottom: 22px;
}
.felder-hinweis b { color: var(--navy); }

/* --- 6.7 Was STARTKLAR nicht ist --- */
.klarstellungen {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.klarstellung {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--navy-hell);
  border: 1px solid var(--navy-linie);
  border-radius: var(--radius-m);
  padding: 24px 26px;
}
.klarstellung .zeichen {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(215, 255, 0, .13);
  color: var(--lime);
}
.klarstellung b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  margin-bottom: 6px;
}
.klarstellung p {
  color: var(--text-hell-weich);
  font-size: .96rem;
  margin: 0;
}

/* --- 6.8 Datenschutz-Kurzfassung --- */
.daten-karte {
  background: var(--navy-hell);
  border: 1px solid rgba(0, 200, 255, .3);
  border-radius: var(--radius-l);
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}
.daten-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.daten-liste li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .99rem;
  color: var(--text-hell-weich);
}
.daten-liste li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}
.daten-liste li b { color: var(--weiss); font-weight: 600; }

/* Zugang zur Selbstauskunft: persönlichen Link einfügen */
.daten-zugang {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-linie);
}
.daten-zugang label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.daten-zugang .hilfe {
  color: var(--text-hell-weich);
  font-size: .93rem;
  margin-bottom: 14px;
}
.daten-zugang-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.daten-zugang input {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-text);
  font-size: .96rem;
  color: var(--weiss);
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid var(--navy-linie);
  border-radius: 999px;
  padding: 13px 20px;
  transition: border-color .18s ease, background .18s ease;
}
.daten-zugang input::placeholder { color: rgba(183, 196, 218, .55); }
.daten-zugang input:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, .1);
  outline: none;
}
.daten-zugang input:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.daten-zugang-meldung {
  font-size: .91rem;
  margin: 12px 0 0;
  min-height: 1.4em;
  color: var(--text-hell-weich);
}
.daten-zugang-meldung.fehler { color: var(--lime); font-weight: 600; }

/* --- 6.9 Fragen (Akkordeon) --- */
.fragen { display: grid; gap: 12px; max-width: 860px; }

.frage {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-s);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.frage[open] {
  border-color: var(--blau);
  box-shadow: 0 10px 30px rgba(7, 21, 46, .08);
}
.frage summary {
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  list-style: none;
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: '';
  position: absolute;
  right: 24px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--blau);
  border-bottom: 2.5px solid var(--blau);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s ease;
}
.frage[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.frage summary:hover { color: var(--blau); }
.frage-inhalt {
  padding: 0 24px 22px;
  color: var(--text-dunkel-weich);
  font-size: 1rem;
}
.frage-inhalt a { color: var(--blau); }

/* --- 6.10 Abschluss-Aufruf --- */
.abschluss {
  background:
    radial-gradient(circle at 20% 25%, rgba(0, 110, 255, .35), transparent 55%),
    radial-gradient(circle at 82% 75%, rgba(215, 255, 0, .16), transparent 55%),
    var(--navy-tief);
  text-align: center;
  border-top: 1px solid var(--navy-linie);
}
.abschluss h2 { margin-bottom: 18px; }
.abschluss p {
  color: var(--text-hell-weich);
  font-size: 1.12rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 34px;
}
.abschluss .knopf-reihe { justify-content: center; }
.abschluss .fakten { justify-content: center; }

/* -------------------------------------------------------------------------
   7. Unterseiten
   ------------------------------------------------------------------------- */

/* Kopfbereich der Unterseiten */
.seiten-hero {
  padding-block: clamp(56px, 7vw, 92px) clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--navy-linie);
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 90% at 82% 0%, rgba(0, 110, 255, .3), transparent 70%);
}
.seiten-hero .huelle { position: relative; z-index: 1; }
.seiten-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.seiten-hero p {
  color: var(--text-hell-weich);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 0;
}

/* Nutzen-Karten (Betriebsseite) */
.nutzen {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nutzen:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(7, 21, 46, .1); }
.nutzen .symbol {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--lime);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.nutzen h3 { margin-bottom: 8px; }
.nutzen p { color: var(--text-dunkel-weich); font-size: .99rem; margin-bottom: 0; }

/* Kennzahlen */
.zahlen {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--navy-linie);
  padding-top: 40px;
  margin-top: 48px;
}
.zahl b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 8px;
}
.zahl span { color: var(--text-hell-weich); font-size: .96rem; }

/* Fließtext für Rechtstexte */
.fliesstext { max-width: var(--breite-schmal); }
.fliesstext h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-top: 2.2em;
  padding-top: 1.4em;
  border-top: 1px solid var(--navy-linie);
}
.fliesstext h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.fliesstext h3 { font-size: 1.12rem; margin-top: 1.8em; }
.fliesstext p,
.fliesstext li { color: var(--text-hell-weich); font-size: 1.02rem; }
.fliesstext ul { padding-left: 1.2em; display: grid; gap: 8px; margin-bottom: 1.2em; }
.fliesstext a { color: var(--cyan); }
.fliesstext dl { display: grid; gap: 4px 20px; margin: 0 0 1.4em; }
.fliesstext dt { font-weight: 600; color: var(--weiss); }
.fliesstext dd { margin: 0 0 12px; color: var(--text-hell-weich); }

/* Hinweiskasten – markiert Stellen, die noch zu prüfen sind */
.pruefen {
  background: rgba(215, 255, 0, .08);
  border: 1px solid rgba(215, 255, 0, .38);
  border-left: 4px solid var(--lime);
  border-radius: var(--radius-s);
  padding: 20px 24px;
  margin-bottom: 30px;
}
/* Nur die Überschrift des Kastens ist ein Block – ein <b> mitten im Fließtext
   soll inline bleiben, sonst zerreißt es den Satz. */
.pruefen > b:first-child {
  color: var(--lime);
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.pruefen p { color: var(--text-hell-weich); font-size: .96rem; margin-bottom: 0; }

/* -------------------------------------------------------------------------
   8. Fußzeile
   ------------------------------------------------------------------------- */
.fuss {
  background: var(--navy-tief);
  border-top: 1px solid var(--navy-linie);
  padding-block: 60px 34px;
}
.fuss-oben {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-linie);
}
.fuss-marke img { height: 54px; width: auto; margin-bottom: 16px; }
.fuss-marke p {
  color: var(--text-hell-weich);
  font-size: .95rem;
  max-width: 320px;
  margin-bottom: 0;
}
.fuss-spalte h4 {
  font-size: .78rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.fuss-spalte ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.fuss-spalte a {
  text-decoration: none;
  color: var(--text-hell-weich);
  font-size: .95rem;
  transition: color .16s ease;
}
.fuss-spalte a:hover { color: var(--lime); }

.fuss-unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  padding-top: 26px;
  font-size: .87rem;
  color: rgba(183, 196, 218, .7);
}

/* Lotswerk-Signatur.
   Die Vorlage kam mit Inline-Styles und "LOTS" in #141c24 – das ist beinahe
   Schwarz und wäre auf unserem dunklen Fußzeilen-Grund (#040d1e) unsichtbar.
   Die Wortmarke behält ihre Zweifarbigkeit, "LOTS" steht hier in Weiß.
   Das Orange #ce7b47 ist unverändert. */
.fuss-umsetzung { display: inline-flex; align-items: center; gap: 8px; }
.lotswerk {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .5px;
  line-height: 1;
  transition: opacity .16s ease;
}
.lotswerk:hover { opacity: .75; }
.lotswerk .lots { color: var(--weiss); }
.lotswerk .werk { color: #ce7b47; }

/* Auf hellem Grund gilt die Originalfarbe der Wortmarke. */
.block--hell .lotswerk .lots { color: #141c24; }

/* -------------------------------------------------------------------------
   9. Bewegung & Barrierefreiheit
   ------------------------------------------------------------------------- */

/* Sanftes Einblenden beim Scrollen; per JS wird .sichtbar gesetzt.
   Ohne JS bleibt alles sichtbar (siehe <noscript>-Regel in den Seiten). */
.auftritt {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}
.auftritt.sichtbar { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .auftritt { opacity: 1; transform: none; }
  .laufband-spur { animation: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .huelle { padding-inline: 20px; }
  .knopf-reihe .knopf { width: 100%; }
  .fuss-oben { grid-template-columns: 1fr; gap: 32px; }
}
