/* ==========================================================================
   Sichtmeister – gemeinsames Stylesheet für alle Seiten
   Farben laut Briefing: Navy #1e3a5f, Blau #3b82f6, Hintergrund #f8fafc
   Datenschutzfreundliche Systemschriften ohne externe Netzwerkverbindung
   ========================================================================== */

/* --- Design-Tokens (zentrale Farb- und Größenwerte) --- */
:root {
  --navy:        #1e3a5f;
  --navy-dark:   #16293f;
  --blue:        #3b82f6;
  --blue-dark:   #2563eb;
  --bg:          #f8fafc;
  --text:        #1e293b;
  --muted:       #64748b;
  --muted-light: #94a3b8;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --green-bg:    #dcfce7;
  --green-text:  #166534;
  --amber-bg:    #fef3c7;
  --amber-text:  #92400e;
  --red-bg:      #fef2f2;
  --red-text:    #dc2626;
  --shadow:      0 1px 4px rgba(15, 23, 42, .08);
  --shadow-lg:   0 14px 40px rgba(30, 58, 95, .14);
  --radius:      12px;
  --radius-sm:   8px;
  --maxw:        1100px;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --font-body:    "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

/* --- Grund-Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

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

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* --- Layout-Container --- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(59,130,246,.35); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--outline { background: #fff; color: var(--navy); border-color: var(--border); box-shadow: var(--shadow); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue-dark); }

.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--block { display: block; width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.nav__logo:hover { text-decoration: none; }
.nav__logo svg { width: 30px; height: 30px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
}
.nav__links a:hover { color: var(--navy); background: var(--bg); text-decoration: none; }
.nav__links a.is-active { color: var(--blue-dark); }
.nav__links .btn { padding: 11px 20px; }

/* Hamburger (nur mobil sichtbar) */
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span + span { margin-top: 6px; }

/* ==========================================================================
   Hero (Startseite)
   ========================================================================== */
.hero {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(59,130,246,.35), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.18rem;
  color: #cbd5e1;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note {
  margin-top: 22px;
  font-size: .9rem;
  color: #93c5fd;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__visual { display: flex; justify-content: center; }

/* Vertrauens-Leiste unter dem Hero */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  padding: 22px 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
}
.trustbar__item { display: flex; align-items: center; gap: 9px; }
.trustbar__item svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

/* ==========================================================================
   Karten-Raster (Probleme, Leistungen)
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Preis-Raster: 4 Karten als 2×2 (breit), auf Mobil 1-spaltig */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Leistungs-Kacheln (Startseite): 4-spaltig breit, dann 2-, dann 1-spaltig */
.grid-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* Icon-Kreis in Karten */
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--blue);
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--warn { background: #fef2f2; color: #dc2626; }

/* Leistungs-Kachel mit Status */
.tile-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tile-badge--soon { background: #fef3c7; color: #92400e; }
.tile-badge--live { background: var(--green-bg); color: var(--green-text); }

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--blue-dark);
}

/* ==========================================================================
   Komponenten-Bibliothek (03.07.2026, statisch — Referenz: design-system.html)
   Vanilla HTML/CSS, kein Build-Schritt. Aus Sichtmeister-Design-System-Handoff
   übernommen, an bestehende Tokens angepasst statt neue Werte einzuführen.
   ========================================================================== */

/* Badge — Status-Chip, gefüllt */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 9999px;
  background: var(--border);
  color: var(--text);
}
.badge--primary { background: var(--navy); color: #fff; }
.badge--accent  { background: var(--blue); color: #fff; }
.badge--success { background: var(--green-bg); color: var(--green-text); }
.badge--warning { background: var(--amber-bg); color: var(--amber-text); }
.badge--error   { background: var(--red-bg); color: var(--red-text); }
.badge--outline { background: transparent; color: var(--navy); border: 1px solid var(--border); }

/* Tag — wie Badge, aber eckiger und mit optionalem Remove-Button */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}
.tag--accent { background: #eff6ff; border-color: #bfdbfe; color: var(--blue-dark); }
.tag__remove { cursor: pointer; opacity: .5; font-weight: 700; }
.tag__remove:hover { opacity: 1; }

/* Alert — Hinweis-/Fehlerbox, kein einseitiger Farbbalken (impeccable: side-tab vermeiden) */
.alert {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .95rem;
}
.alert--success { background: var(--green-bg); border-color: #bbf7d0; color: var(--green-text); }
.alert--warning { background: var(--amber-bg); border-color: #fde68a; color: var(--amber-text); }
.alert--error   { background: var(--red-bg); border-color: #fecaca; color: var(--red-text); }
.alert strong { display: block; margin-bottom: 2px; }

/* Avatar — Initialen-Kreis, kein Foto nötig */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.avatar--sm { width: 28px; height: 28px; font-size: .72rem; }
.avatar--lg { width: 56px; height: 56px; font-size: 1.1rem; }

/* StatCard — Kennzahl-Kachel */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.stat-card--navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.stat-card__value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-card__label { color: var(--muted); font-size: .88rem; }
.stat-card--navy .stat-card__label { color: rgba(255,255,255,.7); }
.stat-card__trend { display: inline-block; margin-top: 8px; font-size: .82rem; font-weight: 700; }
.stat-card__trend--up { color: var(--green-text); }
.stat-card__trend--down { color: var(--red-text); }

/* Form-Felder — Input/Select, gemeinsamer Stil */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.field__hint { font-size: .8rem; color: var(--muted); }
.field--error input, .field--error select { border-color: var(--red-text); }
.field--error .field__hint { color: var(--red-text); }

/* ==========================================================================
   Lösungs-Block (zweispaltig mit Liste)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 18px; }
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist svg { width: 24px; height: 24px; color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.checklist strong { display: block; color: var(--navy); }
.checklist span { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Bänder / CTA-Abschnitt
   ========================================================================== */
.band {
  background:
    radial-gradient(700px 300px at 80% 120%, rgba(59,130,246,.35), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: 0;
}
.band__inner { text-align: center; padding: 72px 0; }
.band h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.band p { color: #cbd5e1; font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; }

/* Hellblaues Info-Band (z. B. Quickcheck-Einstieg) */
.callout {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 34px;
}
.callout h2 { color: var(--navy); margin-bottom: 10px; }
.callout p { color: #1e40af; }

/* ==========================================================================
   Preise (Leistungen-Seite)
   ========================================================================== */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card--featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.price-card__head { padding: 28px 30px 24px; border-bottom: 1px solid var(--border); }
.price-card__head h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.price-card__head .lead { color: var(--muted); font-size: .96rem; }
.price-card__body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }

/* Preiszeilen mit Pilotpreis (durchgestrichener Originalpreis) */
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row__label { color: var(--text); font-weight: 600; }
.price-row__label small { display: block; font-weight: 400; color: var(--muted-light); font-size: .8rem; }
.price-tag { text-align: right; white-space: nowrap; }
.price-tag .old { color: var(--muted-light); text-decoration: line-through; font-size: .95rem; margin-right: 8px; }
.price-tag .new { color: var(--navy); font-weight: 800; font-size: 1.4rem; }
.price-card--featured .price-tag .new { color: var(--blue-dark); }
.price-tag .per { color: var(--muted); font-size: .85rem; font-weight: 500; }

.pilot-badge {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-text);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.featured-flag {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px;
}

.feature-list { list-style: none; margin: 20px 0 26px; display: grid; gap: 11px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--text); }
.feature-list svg { width: 19px; height: 19px; color: #16a34a; flex-shrink: 0; margin-top: 3px; }

.price-card .btn { margin-top: auto; }

/* Kleiner Seitenkopf (für Unterseiten ohne großen Hero) */
.pagehead {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.pagehead h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.pagehead p { color: #cbd5e1; font-size: 1.12rem; max-width: 620px; margin: 0 auto; }

/* ==========================================================================
   Kontaktformular
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 44px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 7px; font-size: .95rem; }
.field .opt { color: var(--muted-light); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* Honeypot-Feld (Spam-Schutz) – für Menschen unsichtbar */
.hp-field { position: absolute; left: -5000px; }

/* Kontakt-Seitenleiste */
.contact-aside { display: grid; gap: 16px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.info-row span { color: var(--muted); font-size: .95rem; }
.info-row a { font-weight: 500; }

/* Danke-Seite */
.thanks { text-align: center; max-width: 560px; margin: 0 auto; padding: 90px 0; }
.thanks__icon {
  width: 84px; height: 84px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex; align-items: center; justify-content: center;
}
.thanks__icon svg { width: 44px; height: 44px; }
.thanks h1 { font-size: 2rem; color: var(--navy); margin-bottom: 14px; }
.thanks p { color: var(--muted); font-size: 1.08rem; margin-bottom: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 56px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer__brand svg { width: 28px; height: 28px; }
.footer p { font-size: .95rem; color: #94a3b8; max-width: 300px; }
.footer h4 { color: #fff; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: #cbd5e1; font-size: .95rem; }
.footer ul a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: .85rem;
  color: #94a3b8;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; padding: 64px 0 72px; }
  .hero__visual { order: -1; max-width: 360px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Navigation wird zum Klappmenü */
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px 24px 22px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 14px; }
  .nav__links .btn { margin-top: 6px; text-align: center; }

  .grid-3, .grid-2, .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .container { padding: 0 18px; }
}

/* Bewegungsreduktion respektieren */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ==========================================================================
   Rechtstexte (Impressum, Datenschutz)
   ========================================================================== */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.25rem; color: var(--navy); margin: 34px 0 10px; }
.legal h3 { font-size: 1.05rem; color: var(--navy); margin: 22px 0 8px; }
.legal p, .legal li { color: var(--text); margin-bottom: 12px; font-size: .98rem; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal address { font-style: normal; line-height: 1.9; margin-bottom: 12px; }
.legal .placeholder {
  background: #fef3c7; color: #92400e; padding: 1px 7px;
  border-radius: 4px; font-weight: 600; font-style: normal;
}
.legal .note-box {
  background: #eff6ff; border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 0 0 24px;
  font-size: .92rem; color: #1e40af;
}
.legal .stand { color: var(--muted-light); font-size: .9rem; margin-top: 36px; }

/* Footer-Rechtslinks lesbar auf dunklem Grund */
.footer__bottom a { color: #cbd5e1; }
.footer__bottom a:hover { color: #fff; }
