/* ─── LEGAL PAGES (Impressum & Datenschutz) ─── */
.legal-page {
  position: relative; z-index: 1;
  padding: 140px 6vw 80px;
  min-height: 100vh;
}
.legal-container {
  max-width: 820px; margin: 0 auto;
}
.legal-h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: .8rem;
  background: linear-gradient(90deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.legal-intro {
  font-size: 1rem; color: var(--text2);
  margin-bottom: 3rem; line-height: 1.6;
}
.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,246,255,.07);
}
.legal-block:last-of-type { border-bottom: none; }
.legal-block h2 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 1rem; color: #fff;
}
.legal-block p {
  font-size: .92rem; color: var(--text2);
  line-height: 1.8; margin-bottom: 1rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--cyan); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }
.legal-block ul {
  list-style: none; margin: 0 0 1rem 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.legal-block li {
  font-size: .92rem; color: var(--text2);
  line-height: 1.6; padding-left: 1.4rem; position: relative;
}
.legal-block li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--cyan);
}
.legal-note {
  display: inline-block; margin-top: .5rem;
  font-size: .78rem; color: var(--purple);
  font-style: italic;
}
.legal-updated {
  font-size: .82rem; color: var(--text2);
  margin: 2rem 0; font-style: italic;
}
.legal-back {
  display: inline-block;
  color: var(--cyan); text-decoration: none;
  font-size: .9rem; font-weight: 600;
  padding: .7rem 0; transition: gap .2s, transform .2s;
}
.legal-back:hover { transform: translateX(-4px); }
