/* ============================================================
   Allo-SEO — Protection des données (RGPD)
   ============================================================ */

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

:root {
  --navy:       #0f1f3d;
  --navy-mid:   #162844;
  --navy-light: #1e3a5f;
  --gold:       #e8a020;
  --gold-dark:  #c8881a;
  --gold-light: #fdf3e3;
  --gold-muted: #f5e6c8;
  --white:      #ffffff;
  --text:       #0f172a;
  --muted:      rgba(15,23,42,.68);
  --line:       rgba(15,23,42,.10);
}

body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: #f6f8fc; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* ── HERO ── */
.rgpd-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 24px 56px;
}
.rgpd-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .rgpd-hero-inner { grid-template-columns: 1fr; gap: 32px; } }

.hero-eyebrow {
  display: inline-block;
  background: rgba(232,160,32,.15);
  color: var(--gold);
  border: 1px solid rgba(232,160,32,.30);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rgpd-hero h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.rgpd-hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-chip {
  display: inline-block;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  transition: background .15s;
}
.hero-chip:hover { background: rgba(255,255,255,.18); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.09);
  color: var(--white);
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }

/* Hero panel */
.hero-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 26px;
}
.hero-panel-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.hero-panel p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.hero-panel p:last-child { margin-bottom: 0; }
.hero-panel ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hero-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.80);
  font-size: 13.5px;
  line-height: 1.5;
}
.hero-panel ul li::before { content: "✓"; color: var(--gold); font-weight: 700; font-size: 12px; margin-top: 2px; flex-shrink: 0; }

.hero-kpis {
  display: flex;
  gap: 0;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero-kpi {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-kpi:last-child { border-right: none; }
.hero-kpi-val { display: block; font-size: 13px; font-weight: 700; color: var(--gold); line-height: 1.2; margin-bottom: 4px; }
.hero-kpi-lbl { font-size: 11px; color: rgba(255,255,255,.50); }

/* ── SECTION WRAPPERS ── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.section-header { margin-bottom: 32px; }
.section-num {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid var(--gold-muted);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.section-header p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 700px; }

/* ── WHITE BG ALTERNATING ── */
.bg-white { background: var(--white); }
.bg-gray  { background: #f6f8fc; }
.bg-navy  { background: var(--navy); }

/* ── CARDS ── */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .card-grid-2 { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.bg-navy .info-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}
.info-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.bg-navy .info-card h3 { color: var(--gold); }
.info-card p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.bg-navy .info-card p { color: rgba(255,255,255,.72); }

.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.info-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.info-card ul li::before { content: "→"; color: var(--gold); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.bg-navy .info-card ul li { color: rgba(255,255,255,.80); border-color: rgba(255,255,255,.08); }

/* Single wide card */
.info-card-wide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 24px;
}
.info-card-wide h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.info-card-wide ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-card-wide ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.info-card-wide ul li:last-child { border-bottom: none; padding-bottom: 0; }
.info-card-wide ul li::before { content: "→"; color: var(--gold); font-weight: 700; font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* Identité block */
.identity-block {
  background: var(--navy);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.identity-block p { color: rgba(255,255,255,.80); font-size: 14px; line-height: 1.7; }
.identity-block strong { color: var(--gold); }

/* Droits grid */
.droits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 680px) { .droits-grid { grid-template-columns: 1fr; } }

.droits-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.droits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-light);
  border: 1px solid var(--gold-muted);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.droits-list li::before { content: "✓"; color: var(--gold-dark); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  padding: 56px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 24px;
}
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .rgpd-hero { padding: 48px 18px 40px; }
  .section-wrap { padding: 44px 18px; }
  .cta-banner { padding: 44px 18px; }
}
