/* Gemeinsames Layout für Impressum, Datenschutz und Danke-Seite */
:root {
  --bg: #0e111b;
  --bg-deep: #0b0c0e;
  --card: #0d172b;
  --panel: #12244f;
  --border: #172540;
  --border-2: #24375a;
  --accent: #2862d7;
  --accent-soft: #85a6e9;
  --text: #ffffff;
  --muted: #abaebb;
  --muted-2: #8b90a3;
  --maxw: 820px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

::selection { background: rgba(40, 98, 215, 0.4); }

h1, h2, h3, .logo-word {
  font-family: 'Figtree', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

/* Kopfzeile */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(14, 17, 27, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .wrap { max-width: 1140px; }
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.logo-word { font-weight: 700; font-size: 1.22rem; }
.logo svg { display: block; }
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s ease;
}
.back-link:hover { color: var(--text); }

/* Inhalt */
main { flex: 1; padding: 72px 0 96px; }
.page-title { margin-bottom: 12px; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 600; }
.page-intro { color: var(--muted-2); font-size: 0.95rem; margin-bottom: 52px; }

h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 48px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
main > .wrap > h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
h3 { font-size: 1.05rem; font-weight: 600; margin: 28px 0 10px; }
p { margin-bottom: 16px; }
a { color: var(--accent-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--text); font-weight: 500; }

ul { margin: 0 0 18px 20px; }
li { margin-bottom: 8px; }
li::marker { color: var(--accent); }

.data-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 28px;
}
.data-block p:last-child { margin-bottom: 0; }
.data-block .label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.note {
  background: rgba(18, 36, 79, 0.35);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.92rem;
  margin: 24px 0;
}
.note p:last-child { margin-bottom: 0; }

/* Fußzeile */
footer { border-top: 1px solid var(--border); padding: 34px 0; background: var(--bg-deep); }
footer .wrap { max-width: 1140px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; }
.footer-links li { margin: 0; }
.footer-links a { color: var(--muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-copy { font-size: 0.85rem; color: var(--muted-2); }

@media (max-width: 640px) {
  main { padding: 48px 0 64px; }
  .data-block { padding: 22px 20px; }
  nav { height: 66px; }
}
