/* Gemeinsame Gestaltung für Impressum und Datenschutzerklärung.
   Gleiche Marke, aber ohne die Verkaufsbausteine der Landingpage. */

:root {
  --navy: #122056; --navy-deep: #0B1440; --navy-line: #1F2D5F;
  --cyan: #009FE3; --cyan-light: #CCECF9; --violet: #5C2874; --violet-deep: #481D5C;
  --ground: #F7F4EF; --white: #FFFFFF;
  --ink: #122056; --ink-soft: #3D4468; --line: #E3DDD2; --line-strong: #D9D0C1;
  --font: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --r-s: 6px; --r-m: 12px; --wrap: 900px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font); font-size: 1.125rem; line-height: 1.65;
  color: var(--ink); background: var(--ground); -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--violet-deep); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.topbar { background: var(--navy); color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 40px; }
.topbar a { color: var(--white); text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--cyan-light); text-decoration: underline; }

.head { background: var(--white); border-bottom: 1px solid var(--line); }
.head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 92px; }
.head img { height: 52px; width: auto; }
.back {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  border: 2px solid var(--navy); border-radius: var(--r-s); color: var(--navy);
  font-weight: 700; font-size: 1rem; text-decoration: none; white-space: nowrap;
}
.back:hover { background: var(--navy); color: var(--white); }

main { padding: 64px 0 88px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--violet);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--cyan); flex: none; }

h1 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; color: var(--navy); }
h2 {
  font-size: 1.375rem; letter-spacing: -0.015em; color: var(--navy); font-weight: 700;
  margin: 48px 0 14px; padding-top: 24px; border-top: 1px solid var(--line);
}
h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
p { margin-bottom: 14px; max-width: 40em; }
.lead { font-size: 1.25rem; line-height: 1.55; color: var(--ink-soft); margin: 16px 0 8px; }
ul { margin: 0 0 16px 0; list-style: none; }
li { position: relative; padding-left: 26px; margin-bottom: 10px; max-width: 40em; }
li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px; border-radius: 50%; background: var(--navy); }

.notice {
  background: var(--cyan-light); border-left: 4px solid var(--navy);
  border-radius: 0 var(--r-m) var(--r-m) 0; padding: 18px 22px; margin: 24px 0;
  font-size: 1rem;
}
.notice p:last-child { margin-bottom: 0; }
.notice strong { font-weight: 700; }

.data { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.data th, .data td { text-align: left; vertical-align: top; padding: 14px 0; border-bottom: 1px solid var(--line); }
.data th { width: 250px; font-weight: 700; color: var(--navy); padding-right: 24px; }
.data td { color: var(--ink-soft); }

.stand { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.875rem; color: var(--ink-soft); }

.foot { background: var(--navy-deep); color: rgba(255,255,255,0.78); padding: 40px 0; font-size: 0.9375rem; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.foot a { color: rgba(255,255,255,0.85); }
.foot a:hover { color: var(--white); }
.foot img { height: 34px; width: auto; }

@media (max-width: 700px) {
  body { font-size: 1.0625rem; }
  .topbar .wrap { justify-content: center; }
  .topbar .claim { display: none; }
  .head .wrap { height: 76px; }
  .head img { height: 42px; }
  .back { padding: 9px 12px; font-size: 0.9375rem; }
  .data, .data tbody, .data tr, .data th, .data td { display: block; width: auto; }
  .data tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .data th, .data td { border-bottom: 0; padding: 0 0 4px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Sprunglink fuer Tastatur und Screenreader */
.skip-link {
  position: absolute; left: 16px; top: -120px; z-index: 200;
  background: var(--navy); color: var(--white); padding: 12px 18px;
  border-radius: var(--r-s); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--white); }
main:focus { outline: none; }
