/* Gemeinsame Styles für Rechtstexte (Impressum / Datenschutz) — cookie-frei, Systemfonts */
:root {
  --green: #1e8fd0;
  --green-2: #0c2b4a;
  --aqua: #50ade6;
  --ink: #0c2238;
  --muted: #5a6b7d;
  --line: #dbe7f2;
  --soft: #eef6fc;
  --font:
    "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--green);
}
.container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-2);
}
.brand .mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  padding: 4px;
}
.brand .mark svg {
  width: 100%;
  height: 100%;
}
.brand small {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: -2px;
}
.back {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green);
  white-space: nowrap;
}
.back:hover {
  color: var(--green-2);
}

/* Legal content */
.legal {
  padding: 50px 0 70px;
}
.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--green-2);
  margin: 0 0 8px;
}
.legal .lead {
  color: var(--muted);
  margin: 0 0 36px;
}
.legal h2 {
  font-size: 1.25rem;
  color: var(--green-2);
  margin: 34px 0 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.legal h3 {
  font-size: 1.05rem;
  color: var(--green-2);
  margin: 22px 0 6px;
}
.legal p {
  margin: 0 0 14px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--ink);
}
.legal li {
  margin: 6px 0;
}
.legal .box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 16px;
}
.tbd {
  background: #fff7e6;
  border: 1px dashed #e6b800;
  border-radius: 6px;
  padding: 1px 6px;
  font-weight: 600;
  color: #7a5b00;
}

/* Footer (wie Hauptseite) */
footer {
  background: var(--green-2);
  color: #cfe0ee;
  padding: 44px 0 22px;
  font-size: 0.92rem;
}
footer .container {
  max-width: 1140px;
}
.foot-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 28px;
}
@media (min-width: 760px) {
  .foot-grid {
    grid-template-columns: 1.5fr 1fr 1.3fr;
  }
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot-brand .brand {
  color: #fff;
  align-items: flex-start;
}
.foot-brand .mark {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  width: 42px;
  height: 42px;
}
.foot-brand .mark svg {
  filter: brightness(0) invert(1);
}
.foot-tagline {
  margin: 0;
  color: #9fbdda;
  max-width: 34ch;
  line-height: 1.55;
}
.foot-col h4 {
  color: #fff;
  font-size: 0.98rem;
  margin: 0 0 14px;
}
.foot-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.foot-nav a,
.foot-contact a {
  color: #cfe0ee;
  text-decoration: none;
}
.foot-nav a:hover,
.foot-contact a:hover {
  color: #fff;
}
.foot-contact {
  display: grid;
  gap: 10px;
}
.foot-contact .fc {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cfe0ee;
  text-decoration: none;
}
.foot-contact a.fc:hover {
  color: #fff;
}
.foot-contact .fc--muted {
  color: #9fbdda;
}
.foot-contact .fc svg {
  width: 16px;
  height: 16px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  margin-top: 4px;
}
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  color: #8fb0cf;
  font-size: 0.82rem;
}
.foot-legal a {
  color: #cfe0ee;
  text-decoration: none;
  margin-left: 20px;
}
.foot-legal a:hover {
  color: #fff;
}
@media (max-width: 560px) {
  .foot-legal a {
    margin: 0 20px 0 0;
  }
}
