/* ── CGU page ── */
.cgu-page {
  padding-top: 100px;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
}

.cgu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cgu-header .section-label {
  margin-bottom: 1rem;
}

.cgu-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cgu-header .cgu-version {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Content ── */
.cgu-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.cgu-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.cgu-content p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cgu-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.cgu-content a:hover {
  text-decoration: underline;
}

/* ── Intro block ── */
.cgu-intro {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.cgu-intro p {
  margin-bottom: 0.75rem;
}

.cgu-intro p:last-child {
  margin-bottom: 0;
}

/* ── Definitions list ── */
.cgu-content .def-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.cgu-content .def-list li {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cgu-content .def-list li:last-child {
  border-bottom: none;
}

.cgu-content .def-list li strong {
  color: var(--text);
}

/* ── Annexes ── */
.cgu-content .annexe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.cgu-content .annexe-card h3 {
  margin-top: 0;
}

.cgu-content .annexe-warning {
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cgu-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cgu-intro {
    padding: 1.25rem;
  }
}
