/* Gedeelde styling voor de juridische pagina's:
   - privacy.html
   - voorwaarden.html
   - verwerkersovereenkomst.html
   - beta-disclaimer.html */

:root {
  --navy: #191970;
  --navy-deep: #0f0f4a;
  --navy-light: #24249a;
  --orange: #F28C28;
  --orange-light: #FFA94D;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --max: 880px;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange-light); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }

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

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 15, 74, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
}
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand-text span { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.2s ease;
  border: none;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.page-head {
  position: relative;
  padding: 80px 0 50px;
  text-align: center;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,140,40,0.25) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main.content {
  padding: 30px 0 90px;
}
.content-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 56px);
  backdrop-filter: blur(8px);
}
.content-card h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--orange-light);
  letter-spacing: -0.01em;
}
.content-card h2:first-of-type { margin-top: 0; }
.content-card p {
  color: var(--muted);
  margin-bottom: 14px;
}
.content-card ul {
  color: var(--muted);
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.content-card ul li {
  margin-bottom: 6px;
}
.content-card strong { color: var(--white); font-weight: 600; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
  padding: 18px 22px;
  background: rgba(242,140,40,0.06);
  border: 1px solid rgba(242,140,40,0.18);
  border-radius: 14px;
  font-size: 0.93rem;
  color: var(--muted);
}
.meta-row span strong { color: var(--white); font-weight: 600; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  margin-top: 36px;
  font-weight: 500;
}
.back-link:hover { color: var(--orange); }
.back-link svg { width: 18px; height: 18px; }

footer {
  background: var(--navy-deep);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
footer .brand { justify-content: center; margin-bottom: 14px; }
footer p { color: var(--muted); font-size: 14px; }
footer .links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 18px 0;
  flex-wrap: wrap;
}
footer .links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
footer .links a:hover { color: var(--orange); }
