/* ── Legal Pages (Terms / Privacy) ───────────────────────────────────────── */

.legal-page {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: var(--dark-bg, #060D1A);
}

.legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted, rgba(255,255,255,0.45));
  margin: 0;
}

.legal-body section {
  margin-bottom: 36px;
}

.legal-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.legal-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted, rgba(255,255,255,0.65));
  margin: 0;
}

.legal-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-footer-links a {
  font-size: 0.875rem;
  color: var(--brand-400, #4f74f9);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-footer-links a:hover {
  color: #fff;
}

/* RTL support */
[dir="rtl"] .legal-footer-links {
  flex-direction: row-reverse;
}
