/* ============================================================
   9seventy – Legal Pages (Impressum, Datenschutz, AGB)
   Shared stylesheet, no changes to main site required.
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  background:#0e1012;color:#f0f4f8;
  min-height:100vh;display:flex;flex-direction:column;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* ── Header ─────────────────────────────────────────────── */
.legal-header{
  position:sticky;top:0;z-index:100;
  background:rgba(14,16,18,.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.07);
  padding-block:.875rem;
}
.legal-container{
  width:100%;max-width:960px;
  margin-inline:auto;
  padding-inline:1.5rem;
}
.legal-nav{
  display:flex;align-items:center;
  justify-content:space-between;gap:1rem;
}
.legal-logo img{height:26px;width:auto}
.legal-back{
  font-size:.875rem;font-weight:500;
  color:rgba(255,255,255,.45);
  display:flex;align-items:center;gap:.375rem;
  transition:color .2s ease;
}
.legal-back:hover{color:#f0f4f8}
.legal-back svg{flex-shrink:0}

/* ── Main ───────────────────────────────────────────────── */
.legal-main{flex:1;padding-block:3rem 5rem}
.legal-title{
  font-size:clamp(1.625rem,4vw,2.25rem);
  font-weight:800;letter-spacing:-.04em;
  margin-bottom:1.75rem;
}
.legal-title span{
  background:linear-gradient(135deg,#0084ff,#00c6ff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── Iframe card ─────────────────────────────────────────── */
.legal-iframe-wrap{
  background:#fff;
  border-radius:1.25rem;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 24px 60px rgba(0,0,0,.4);
}
.legal-iframe{
  display:block;
  width:100%;
  height:1400px;
  border:none;
}
@media(max-width:600px){.legal-iframe{height:1800px}}

/* ── Footer ─────────────────────────────────────────────── */
.legal-footer{
  border-top:1px solid rgba(255,255,255,.07);
  padding-block:1.5rem;
}
.legal-footer-inner{
  display:flex;flex-wrap:wrap;align-items:center;
  justify-content:space-between;gap:1rem;
}
.legal-copy{font-size:.8125rem;color:rgba(255,255,255,.3)}
.legal-footer-links{display:flex;flex-wrap:wrap;gap:1.25rem}
.legal-footer-links a{
  font-size:.8125rem;color:rgba(255,255,255,.35);
  transition:color .2s ease;
}
.legal-footer-links a:hover{color:#f0f4f8}
