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

:root {
  --orange: #7C3AED;
  --orange-light: #9F67FF;
  --orange-pale: #F3EEFF;
  --navy: #191970;
  --navy-deep: #0f0f4a;
  --text: #1a1d2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f8f9fc;
  --bg-subtle: #f1f4f9;
  --border: #e5e9f0;
  --border-light: #eef1f6;
  --card-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --radius: 18px;
  --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(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== NAV ===== */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--border);
}
.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: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand-text span { color: var(--orange); }
.brand:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: #d1d5de;
  color: var(--text);
}

/* ===== PAGE HEADER ===== */
.page-head {
  position: relative;
  padding: 80px 0 50px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.page-head::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 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;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== CONTENT ===== */
main.content {
  padding: 30px 0 90px;
}
.content-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--card-shadow);
}
.content-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.content-card h2:first-of-type { margin-top: 0; }
.content-card p {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.content-card ul {
  color: var(--text-muted);
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.content-card ul li {
  margin-bottom: 6px;
}
.content-card strong { color: var(--text); font-weight: 600; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
  padding: 18px 22px;
  background: var(--orange-pale);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 14px;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.meta-row span strong { color: var(--text); font-weight: 600; }

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

/* ===== FOOTER ===== */
footer {
  background: var(--bg-soft);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer .brand { justify-content: center; margin-bottom: 14px; }
footer p { color: var(--text-muted); font-size: 14px; }
footer .links {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 18px 0;
  flex-wrap: wrap;
}
footer .links a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
footer .links a:hover { color: var(--orange); }
