/* Styles partagés par toutes les pages légales (mentions-legales, confidentialite, conditions, cookies) */
:root {
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-soft: #f6f7f9;
  --border: #e5e7eb;
  --text: #0a0a0a;
  --text-muted: #525866;
  --text-soft: #6b7280;
  --accent: #4f46e5;
  --accent-soft: #eef2ff;
  --radius: 10px;
  --radius-lg: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-subtle);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
  line-height: 1.6;
}
.legal-top {
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
  background: white;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
}
.legal-logo svg { width: 22px; height: 22px; }
.legal-top-right { font-size: 13px; color: var(--text-soft); }
.legal-top-right a { color: var(--accent); font-weight: 600; text-decoration: none; }

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.legal-h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.legal-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-container h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-container h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.legal-container p, .legal-container li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal-container ul, .legal-container ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-container li { margin-bottom: 6px; }
.legal-container a { color: var(--accent); text-decoration: underline; }
.legal-container strong { color: var(--text); font-weight: 600; }
.legal-container code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
}
.legal-placeholder {
  background: #fef3c7;
  color: #92400e;
  font-size: 13px;
  padding: 14px 16px;
  border-radius: 8px;
  margin: 16px 0;
  line-height: 1.5;
}
.legal-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
}
.legal-card-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.legal-card-body { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.legal-bottom {
  padding: 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: white;
  font-size: 13px;
  color: var(--text-soft);
}
.legal-bottom a { color: var(--text-muted); margin: 0 12px; text-decoration: none; }
.legal-bottom a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .legal-container { padding: 40px 18px 64px; }
  .legal-h1 { font-size: 28px; }
}
