/* ===== Pages légales FollowView3D — Style commun (V65)
   Mentions légales / Politique de confidentialité / CGV ===== */

:root {
  --cream: #F3F0E7;
  --cream-light: #F8F5EC;
  --white: #FFFFFF;
  --graphite: #2E3336;
  --graphite-deep: #1A1D1C;
  --graphite-soft: #4A5054;
  --metal: #8D9498;
  /* V79 : jaune signature aligné sur la teinte exacte du logo FollowView3D */
  --yellow: #E8AC37;
  --yellow-deep: #D59518;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--graphite-deep);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== Header simplifié ===== */
.legal-header {
  background: var(--white);
  border-bottom: 1px solid rgba(46, 51, 54, 0.08);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.legal-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--graphite-deep);
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

/* V70 : logo complet (image avec texte intégré) — la classe seule remplace icône+texte HTML */
.legal-logo-full {
  gap: 0;
}

.legal-logo-full img {
  width: auto;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--graphite-deep);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}

.legal-back:hover {
  background: var(--graphite);
  transform: translateY(-1px);
}

/* ===== Contenu principal ===== */
.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.legal-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 14px;
}

.legal-main h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--graphite-deep);
}

.legal-updated {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: var(--graphite-soft);
  margin-bottom: 50px;
  letter-spacing: 0.01em;
}

.legal-main h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--graphite-deep);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(46, 51, 54, 0.08);
}

.legal-main h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-main h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--graphite-deep);
  margin: 24px 0 10px;
}

.legal-main p,
.legal-main li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--graphite-soft);
  margin-bottom: 12px;
}

.legal-main strong {
  color: var(--graphite-deep);
  font-weight: 600;
}

.legal-main ul,
.legal-main ol {
  margin: 10px 0 18px 24px;
}

.legal-main li {
  margin-bottom: 6px;
}

.legal-main a {
  color: var(--yellow-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-main a:hover {
  color: var(--graphite-deep);
}

/* Encadré jaune pour info importante / placeholder à compléter */
.legal-callout {
  background: rgba(232, 172, 55, 0.1);
  border-left: 3px solid var(--yellow);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 14.5px;
}

.legal-callout strong { color: var(--yellow-deep); }

/* Placeholder à remplir (visuellement marqué) */
.legal-placeholder {
  background: rgba(232, 172, 55, 0.18);
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'Sora', sans-serif;
  font-size: 0.92em;
  font-weight: 600;
  color: var(--graphite-deep);
}

/* Bloc de contact en bas de page */
.legal-contact-block {
  background: var(--white);
  border: 1px solid rgba(46, 51, 54, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 40px;
}

.legal-contact-block p {
  margin-bottom: 6px;
}

/* ===== Footer simplifié ===== */
.legal-footer {
  background: var(--white);
  border-top: 1px solid rgba(46, 51, 54, 0.08);
  padding: 32px 0;
  text-align: center;
}

.legal-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.legal-footer-links a {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--graphite-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-footer-links a:hover { color: var(--graphite-deep); }

.legal-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--metal);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .legal-header .container { padding: 0 20px; }
  .legal-logo { font-size: 16px; }
  .legal-logo img { width: 32px; height: 32px; }
  .legal-logo-full img { width: auto; height: 36px; }
  .legal-back { padding: 8px 14px; font-size: 13px; }
  .legal-main { padding: 40px 22px 80px; }
  .legal-main h2 { margin: 36px 0 14px; padding-top: 20px; }
  .legal-contact-block { padding: 20px 22px; }
}
