/* ── Pages légales ── */
.legal-main {
  padding-top: 64px; /* hauteur de la nav fixe */
  min-height: 100vh;
}

.legal-container {
  max-width: 780px;
  padding: 4rem 1.5rem 5rem;
}

/* En-tête de page */
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: .5rem;
  line-height: 1.1;
}
.legal-updated {
  font-family: var(--font-m);
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .05em;
}

/* Sections */
.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(59,130,246,.08);
}
.legal-section:last-of-type {
  border-bottom: none;
}
.legal-section h2 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--blue);
}
.legal-section h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-l);
  margin: 1.75rem 0 .75rem;
}
.legal-section p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}
.legal-section p strong {
  color: var(--offwhite);
  font-weight: 500;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.legal-section ul li {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
  font-weight: 300;
}
.legal-section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 1rem;
}
.legal-section ul li strong {
  color: var(--offwhite);
  font-weight: 500;
}
.legal-section a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--blue-l); }

/* Section mise en avant (sécurité) */
.legal-section--highlight {
  background: rgba(59,130,246,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  border-bottom: none;
}
.legal-section--highlight h2 {
  border-left-color: var(--blue);
}

/* Tableau cookies */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  font-family: var(--font-m);
}
.cookie-table thead {
  background: var(--night2);
}
.cookie-table th {
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 500;
  color: var(--offwhite);
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.cookie-table td {
  padding: 1rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(59,130,246,.06);
  vertical-align: top;
  font-family: var(--font-b);
  font-weight: 300;
}
.cookie-table td:first-child {
  font-family: var(--font-m);
  color: var(--blue-l);
  white-space: nowrap;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code {
  font-family: var(--font-m);
  font-size: .82rem;
  color: var(--blue-l);
  background: rgba(59,130,246,.08);
  padding: .1rem .4rem;
  border-radius: 4px;
}

/* Liens de navigation entre pages légales */
.legal-footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .legal-container { padding: 2.5rem 1rem 4rem; }
  .legal-section--highlight { padding: 1.25rem; }
  .legal-footer-nav { flex-direction: column; }
  .legal-footer-nav .btn { width: 100%; justify-content: center; }
}
