/* ═══════════════════════════════════════════════════
   CONCEPT — Legal Pages — Charte graphique identique
   Navy #001F3F · Electric #00BFFF · Barlow / Rajdhani
   ═══════════════════════════════════════════════════ */

.legal-page { padding-top: 74px; min-height: 100vh; background: var(--bg-0); }

/* ── Breadcrumb ── */
.lp-bc {
  background: rgba(0,14,32,.95);
  border-bottom: 1px solid rgba(0,191,255,.1);
  padding: 13px clamp(20px,5vw,68px);
}
.lp-bc-row {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
}
.lp-bc a { color: var(--elec); text-decoration: none; transition: color .2s; }
.lp-bc a:hover { color: var(--elec-2); }
.lp-bc .sep { color: rgba(255,255,255,.2); }
.lp-bc .cur { color: rgba(255,255,255,.45); }

/* ── Hero ── */
.lp-hero {
  background: linear-gradient(150deg, #000a14 0%, #001830 50%, #002448 100%);
  padding: clamp(52px,7vw,84px) clamp(20px,5vw,68px) clamp(44px,5vw,64px);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(0,191,255,.14);
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .045;
  background-image:
    linear-gradient(rgba(0,191,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,1) 1px, transparent 1px);
  background-size: 56px 56px;
}
.lp-hero-glow {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,191,255,.1) 0%, transparent 65%);
}
.lp-hero-body { position: relative; z-index: 1; }

.lp-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,191,255,.08); border: 1px solid rgba(0,191,255,.24);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10.5px; font-weight: 700;
  color: var(--elec); letter-spacing: 3px; text-transform: uppercase;
}
.lp-chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--elec); box-shadow: 0 0 6px var(--elec);
  animation: blink 2s ease infinite;
}
.lp-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 700; color: var(--white); line-height: 1.05;
  margin-bottom: 12px; letter-spacing: .5px;
}
.lp-hero h1 span { color: var(--elec); }
.lp-hero .lp-tagline {
  font-size: clamp(14.5px, 1.8vw, 16.5px);
  color: rgba(255,255,255,.45); line-height: 1.65;
  max-width: 580px; margin-bottom: 28px;
}
.lp-meta {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(0,191,255,.1);
}
.lp-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  color: rgba(255,255,255,.32); letter-spacing: 1.5px;
}
.lp-meta-item svg { width: 13px; height: 13px; color: var(--elec); flex-shrink: 0; }

/* ── Switch bar (Conf | CGU) ── */
.lp-switch {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(0,191,255,.1);
  padding: 0 clamp(20px,5vw,68px);
  display: flex; overflow-x: auto;
}
.lp-sw-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12.5px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--slate); background: transparent; border: none;
  border-bottom: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap;
}
.lp-sw-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.lp-sw-btn:hover { color: var(--lgray); }
.lp-sw-btn.on {
  color: var(--elec);
  border-bottom-color: var(--elec);
}

/* ── Article body ── */
.lp-content {
  background: var(--bg-1);
  padding: clamp(48px,6vw,76px) clamp(20px,5vw,68px);
}
.lp-wrap { max-width: 860px; }

/* Article section */
.lp-sec {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,191,255,.07);
}
.lp-sec:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.lp-sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.lp-num {
  width: 36px; height: 36px; min-width: 36px; border-radius: 9px;
  background: rgba(0,191,255,.09); border: 1px solid rgba(0,191,255,.24);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--elec); flex-shrink: 0;
}
.lp-sec h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700; color: var(--white); letter-spacing: .3px;
}
.lp-sec p {
  font-size: 15.5px; color: rgba(255,255,255,.6);
  line-height: 1.82; margin-bottom: 12px;
}
.lp-sec p:last-child { margin-bottom: 0; }
.lp-sec strong { color: var(--white); font-weight: 600; }

/* List */
.lp-list {
  list-style: none; padding: 0; margin: 12px 0 14px;
  background: rgba(0,10,28,.5);
  border: 1px solid rgba(0,191,255,.09);
  border-radius: var(--r-sm); overflow: hidden;
}
.lp-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; color: rgba(255,255,255,.6);
  line-height: 1.75; padding: 12px 20px;
  border-bottom: 1px solid rgba(0,191,255,.06);
}
.lp-list li:last-child { border-bottom: none; }
.lp-list li::before {
  content: '›'; color: var(--elec); font-size: 19px;
  font-weight: 700; line-height: 1.4; flex-shrink: 0; margin-top: -1px;
}

/* Highlight */
.lp-hl {
  background: rgba(0,191,255,.05);
  border-left: 3px solid var(--elec);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 15px 20px; margin: 14px 0;
}
.lp-hl p { font-size: 14.5px !important; color: rgba(255,255,255,.52) !important; margin: 0 !important; }

/* Contact box */
.lp-cbox {
  display: flex; align-items: center; gap: 14px;
  background: rgba(0,191,255,.06); border: 1px solid rgba(0,191,255,.18);
  border-radius: var(--r-sm); padding: 16px 20px; margin-top: 14px;
}
.lp-cbox-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 9px;
  background: rgba(0,191,255,.1); border: 1px solid rgba(0,191,255,.22);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.lp-cbox p { font-size: 15px; color: rgba(255,255,255,.65); margin: 0; }
.lp-cbox a { color: var(--elec); text-decoration: none; font-weight: 600; }
.lp-cbox a:hover { color: var(--elec-2); }

/* Back button */
.lp-back {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 48px;
  padding: 13px 28px; background: transparent;
  border: 1.5px solid rgba(0,191,255,.28); border-radius: 7px;
  color: var(--elec); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: all .22s var(--ease);
}
.lp-back svg { width: 14px; height: 14px; }
.lp-back:hover { background: var(--elec); color: var(--navy); border-color: var(--elec); }

/* ── Other doc + Contact bar ── */
.lp-other {
  background: var(--bg-2);
  border-top: 1px solid rgba(0,191,255,.1);
  padding: clamp(32px,4vw,48px) clamp(20px,5vw,68px);
}
.lp-other h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 19px;
  font-weight: 700; color: var(--white); margin-bottom: 18px;
}
.lp-other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-oc {
  background: rgba(0,14,34,.6); border: 1px solid var(--bdr);
  border-radius: var(--r-sm); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; transition: all .25s var(--ease);
}
.lp-oc:hover { border-color: var(--bdr-2); transform: translateY(-3px); background: rgba(0,20,50,.85); }
.lp-oc-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 9px;
  background: rgba(0,191,255,.1); border: 1px solid rgba(0,191,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.lp-oc strong { display: block; font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.lp-oc span { font-size: 12px; color: var(--slate); }

/* Responsive */
@media (max-width:767px) {
  .lp-switch { padding: 0 16px; }
  .lp-sw-btn { padding: 12px 18px; font-size: 11.5px; }
  .lp-sec p { font-size: 15px; }
  .lp-list li { font-size: 14.5px; padding: 11px 16px; }
  .lp-other-grid { grid-template-columns: 1fr; }
  .lp-meta { gap: 12px; }
}
@media (max-width:479px) {
  .lp-hero h1 { font-size: clamp(26px,8vw,40px); }
  .lp-num { width: 30px; height: 30px; font-size: 13px; }
  .lp-other-grid { grid-template-columns: 1fr; }
}
