/* ============================================================
   ChatbotGPT — Page mentions légales
   ============================================================ */
:root {
  --lp-magenta: #D735C3;
  --lp-slate: #1e293b;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--lp-slate);
  line-height: 1.75;
  background: #ffffff;
}

.ml-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.ml-header {
  border-bottom: 1px solid var(--lp-border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.ml-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.ml-header__logo {
  display: inline-block;
  background: #f8fafc;
  border-radius: 12px;
  padding: 8px 12px;
}
.ml-header__logo img { display: block; height: 40px; width: auto; }
.ml-back {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--lp-magenta);
  text-decoration: none;
  white-space: nowrap;
}
.ml-back:hover { text-decoration: underline; }

/* Contenu */
.ml-main { padding: 48px 24px 64px; }
.ml-main h1 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.ml-main h2 {
  font-size: 1.22rem;
  font-weight: 800;
  margin: 2.4rem 0 0.8rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lp-border);
}
.ml-main p { margin: 0 0 14px; font-weight: 500; }
.ml-main a { color: #a21cae; }

.ml-note {
  background: #f8fafc;
  border: 1.5px solid var(--lp-border);
  border-left: 5px solid var(--lp-magenta);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.95rem;
  margin-top: 1.6rem;
}
.ml-note p:last-child { margin-bottom: 0; }

/* Footer (styles .lp-footer partagés avec landing.css, liée dans le HTML) */
.lp-footer { font-family: 'Quicksand', system-ui, sans-serif; }

@media (max-width: 640px) {
  .ml-header__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lp-footer__grid { grid-template-columns: 1fr; }
}
