:root {
  --bg: #f4f5f7; --surface: #fff; --border: #d0d3de;
  --accent: #4a6ef0; --text: #1a1d2e; --muted: #6b7280;
  --font: system-ui, -apple-system, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body.legal-page {
  font-family: var(--font); background: var(--bg); color: var(--text);
  min-height: 100vh; display: flex; flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────────────────────────── */
.legal-header {
  background: #1a1d2e; padding: 14px 24px;
}
.legal-header__inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-header__brand {
  display: flex; align-items: center; gap: 8px;
  color: #e2e8f0; font-weight: 700; font-size: 1rem; text-decoration: none;
}
.legal-header__brand:hover { color: #fff; }
.legal-header__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}
.legal-header__back {
  color: #a0a8c0; font-size: .85rem; text-decoration: none;
}
.legal-header__back:hover { color: #fff; }

/* ── Main ────────────────────────────────────────────────────────────────────── */
.legal-main {
  flex: 1;
  max-width: 860px; width: 100%; margin: 0 auto;
  padding: 40px 24px 48px;
}
.legal-main__title {
  font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; color: var(--text);
}
.legal-main__subtitle {
  font-size: .82rem; color: var(--muted); margin-bottom: 36px; line-height: 1.5;
}

/* ── Sections & typography ───────────────────────────────────────────────────── */
.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-section h3 {
  font-size: .92rem; font-weight: 600; color: var(--text); margin: 16px 0 6px;
}
.legal-section p {
  font-size: .88rem; line-height: 1.7; color: var(--text); margin-bottom: 10px;
}
.legal-section ul {
  padding-left: 20px; margin-bottom: 10px;
}
.legal-section li {
  font-size: .88rem; line-height: 1.7; margin-bottom: 4px;
}
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* ── Table ───────────────────────────────────────────────────────────────────── */
.legal-table {
  width: 100%; border-collapse: collapse; font-size: .88rem;
}
.legal-table td {
  padding: 8px 12px; border: 1px solid var(--border); vertical-align: top;
  line-height: 1.5;
}
.legal-table tr td:first-child {
  font-weight: 600; white-space: nowrap; background: #f8f9fb;
  width: 220px; color: var(--muted);
}
.legal-table a { color: var(--accent); text-decoration: none; }
.legal-table a:hover { text-decoration: underline; }

/* ── Footer commun ───────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a1d2e; color: #a0a8c0;
  padding: 16px 24px; font-size: .78rem;
}
.site-footer__inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px; justify-content: space-between;
}
.site-footer__brand { color: #e2e8f0; font-weight: 600; }
.site-footer__nav {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.site-footer__nav a { color: #a0a8c0; text-decoration: none; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__cookie-btn {
  background: none; border: none; color: #a0a8c0;
  font-size: .78rem; font-family: inherit; cursor: pointer; padding: 0;
}
.site-footer__cookie-btn:hover { color: #fff; }
