/* ============================================================
   JURIDOCS — Landing Page  v3
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #090F1C;
  --navy-1:     #0D1829;
  --navy-2:     #122035;
  --navy-3:     #1A3050;
  --gold:       #C9A84C;
  --gold-lt:    #DDB95E;
  --gold-dim:   #A8893A;
  --gold-pale:  rgba(201,168,76,.1);
  --cream:      #F5F0EA;
  --cream-dk:   #ECE6DC;
  --white:      #FFFFFF;
  --muted:      rgba(255,255,255,.52);
  --dim:        #6E7A88;
  --border:     #DDD6CA;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --mono:       'SF Mono', 'Fira Mono', 'Consolas', monospace;
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(0,0,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scroll reveal ─────────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-aos].visible { opacity: 1; transform: none; }

/* ── Shared ────────────────────────────────────────────────── */
.section-inner { max-width: 1160px; margin: 0 auto; padding: 7rem 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 600; line-height: 1.18; letter-spacing: -.015em;
  color: var(--navy); margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-sub { font-size: .95rem; font-weight: 300; color: var(--dim); max-width: 520px; margin: 0 auto; line-height: 1.75; }
.section-sub--light { color: var(--muted); }
.overline {
  display: inline-block;
  font-size: .67rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: .85rem;
}
.overline--light { color: var(--gold-lt); }

/* ── Gold topline ──────────────────────────────────────────── */
.topline {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,.5) 25%, var(--gold) 50%, rgba(201,168,76,.5) 75%, transparent 100%);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 27px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--navy);
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; border-radius: 6px;
  box-shadow: 0 4px 24px rgba(201,168,76,.28), 0 1px 0 rgba(255,255,255,.2) inset;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), filter .22s var(--ease);
}
.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 36px rgba(201,168,76,.45);
  transform: translateY(-2px);
}
.btn-primary--lg { padding: 16px 36px; font-size: .86rem; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.scrolled {
  background: rgba(9,15,28,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 33px; height: 33px;
  background: var(--gold); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--navy-1);
}
.logo-text {
  font-family: var(--serif); font-weight: 600; font-size: 1.08rem;
  letter-spacing: .09em; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  color: rgba(255,255,255,.65); font-size: .82rem; font-weight: 500;
  letter-spacing: .03em; text-decoration: none;
  transition: color .18s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-cta {
  padding: 8px 18px;
  background: var(--gold); color: var(--navy-1);
  font-size: .74rem; font-weight: 700; letter-spacing: .07em;
  text-decoration: none; border-radius: 5px; text-transform: uppercase;
  flex-shrink: 0;
  transition: background .18s, box-shadow .18s;
}
.nav-cta:hover { background: var(--gold-lt); box-shadow: 0 4px 18px rgba(201,168,76,.35); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.burger span { display: block; width: 21px; height: 2px; background: white; border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  flex-direction: column;
  background: rgba(9,15,28,.97); backdrop-filter: blur(20px);
  padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,.05);
  transform: translateY(-6px); opacity: 0; pointer-events: none;
  transition: transform .2s, opacity .2s;
}
.mobile-menu.open { display: flex; transform: none; opacity: 1; pointer-events: all; }
.mobile-menu a { color: rgba(255,255,255,.72); padding: .78rem 0; font-size: .95rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu a:last-child { border: none; }
.mobile-cta { color: var(--gold) !important; font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .6;
  pointer-events: none;
}
.hero-glow--1 {
  width: 700px; height: 500px; top: -100px; left: -150px;
  background: radial-gradient(ellipse, rgba(30,48,80,.9) 0%, transparent 70%);
}
.hero-glow--2 {
  width: 500px; height: 400px; bottom: -80px; right: 5%;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, black 20%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  padding: 9rem 2rem 5rem;
  display: grid; grid-template-columns: 54fr 46fr;
  gap: 4rem; align-items: center;
  width: 100%;
}

/* Hero left */
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.75rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.82;
  color: rgba(255,255,255,.58); max-width: 490px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-note { font-size: .74rem; color: rgba(255,255,255,.33); font-weight: 400; }
.hero-badges {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.hero-badges span {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px; padding: 3px 10px;
  text-transform: uppercase;
}

/* ── Hero Visual : deux cartes ──────────────────────────── */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: -10%; z-index: 0;
  background: radial-gradient(ellipse 65% 60% at 55% 50%, rgba(201,168,76,.06) 0%, transparent 65%);
  pointer-events: none;
}

.card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-4px); }

/* Carte wizard (arrière, haut-gauche) */
.card--wizard {
  top: 20px; left: 0; z-index: 1;
  width: 262px;
  background: rgba(13,24,41,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 28px 70px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  padding: 20px;
  animation: fadeUp .8s .2s var(--ease-out) both;
}
.card-wiz-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.card-wiz-brand {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.card-wiz-logo {
  width: 20px; height: 20px;
  background: var(--gold); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--navy-1);
}
.card-wiz-step {
  font-size: .67rem; font-weight: 600; color: var(--gold);
  letter-spacing: .06em; text-transform: uppercase;
}
.card-progress-track {
  height: 3px; background: rgba(255,255,255,.08); border-radius: 3px; margin-bottom: 14px;
}
.card-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 3px;
}
.card-wiz-section {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 12px;
}
.card-field { margin-bottom: 10px; }
.card-field label {
  display: block; font-size: .67rem; font-weight: 500;
  color: rgba(255,255,255,.4); margin-bottom: 4px; letter-spacing: .04em;
}
.card-input {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 7px 10px;
  font-size: .78rem; color: rgba(255,255,255,.82); font-family: var(--mono);
}
.card-auto {
  display: flex; align-items: center; gap: 6px; margin-top: 12px;
  padding: 7px 10px;
  background: rgba(39,201,100,.08); border: 1px solid rgba(39,201,100,.18); border-radius: 6px;
  font-size: .67rem; font-weight: 600; color: rgba(100,220,140,.85);
  letter-spacing: .04em;
}
.card-auto svg { flex-shrink: 0; }

/* Carte document (avant, bas-droite) */
.card--doc {
  bottom: 0; right: 0; z-index: 2;
  width: 292px;
  background: #FFFEFB;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 28px 70px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,76,.12);
  padding: 22px 24px 18px;
  animation: fadeUp .8s .45s var(--ease-out) both;
}
.card-doc-brand {
  font-family: var(--serif); font-size: .95rem; font-weight: 700;
  color: var(--navy); letter-spacing: .01em;
}
.card-doc-infos {
  font-size: .68rem; color: #8A8D96; margin-top: 2px; line-height: 1.4;
}
.card-doc-rule {
  border: none; border-top: 1px solid #E8E4DD; margin: 10px 0;
}
.card-doc-title {
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  color: var(--navy-2); letter-spacing: .06em; text-align: center; line-height: 1.4;
  text-transform: uppercase; margin-bottom: 4px;
}
.card-doc-date { font-size: .68rem; color: #8A8D96; text-align: center; margin-bottom: 10px; }
.card-doc-reso {
  font-size: .68rem; font-weight: 700; color: var(--navy); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 6px;
}
.card-doc-text { font-size: .73rem; color: #4A5060; line-height: 1.6; margin-bottom: 10px; }
.card-doc-adopted {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); border-radius: 4px;
  font-size: .67rem; font-weight: 700; color: var(--gold-dim); letter-spacing: .05em;
  text-transform: uppercase;
}
.card-doc-badge {
  position: absolute; bottom: 14px; right: 16px;
  font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(0,0,0,.2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--navy-1);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  overflow: hidden;
  padding: .55rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.32); padding: 0 2.5rem;
}
.ticker-sep {
  font-size: .5rem; color: var(--gold); opacity: .45; flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats { background: var(--cream); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; padding: 4.5rem 2rem;
}
.stat { text-align: center; padding: .5rem 1.5rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1; letter-spacing: -.03em;
  color: var(--navy); margin-bottom: .55rem;
}
.stat-label {
  font-size: .72rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--dim); line-height: 1.55;
}
.stat-rule { width: 1px; height: 48px; background: var(--border); }

/* ══════════════════════════════════════════════════════════
   EXPERTISE — Lignes éditoriales
══════════════════════════════════════════════════════════ */
.expertise { background: var(--white); }
.expertise-lead { max-width: 560px; margin-bottom: 3rem; }
.expertise-lead .section-title { text-align: left; }
.expertise-intro { font-size: .92rem; font-weight: 300; color: var(--dim); line-height: 1.75; margin-top: .5rem; }

.feat-list { border-top: 1px solid var(--border); }
.feat-sep { border: none; border-top: 1px solid var(--border); margin: 0; }
.feat-row {
  display: grid; grid-template-columns: 60px 1fr 190px;
  gap: 3rem; padding: 2.75rem 0; align-items: start;
}
.feat-n {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: #D8D2C8; line-height: 1.4; padding-top: .15rem; letter-spacing: -.01em;
}
.feat-title {
  font-family: var(--serif); font-size: 1.18rem; font-weight: 600;
  color: var(--navy); margin-bottom: .65rem; line-height: 1.28;
}
.feat-text { font-size: .875rem; line-height: 1.88; color: #5A6272; }
.feat-text em { color: var(--dim); font-style: italic; }
.feat-tags { display: flex; flex-direction: column; gap: .4rem; padding-top: .15rem; }
.feat-tags span {
  display: block; font-size: .67rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--gold-dim);
  background: var(--gold-pale); padding: 4px 10px; border-radius: 3px; text-align: center;
}

/* ══════════════════════════════════════════════════════════
   APERÇU DOCUMENT
══════════════════════════════════════════════════════════ */
.apercu { background: var(--navy); position: relative; overflow: hidden; }
.apercu::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(30,48,80,.6) 0%, transparent 60%);
}
.apercu-inner {
  max-width: 900px; margin: 0 auto;
  padding: 7rem 2rem; position: relative; z-index: 1;
}
.apercu-header { text-align: center; margin-bottom: 3rem; }

.word-wrap { position: relative; }

/* Fenêtre Word simulée */
.word-doc {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(0,0,0,.65), 0 0 0 1px rgba(201,168,76,.1);
}
.word-bar {
  background: #F0EFEE;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #DDDCDA;
}
.word-dots { display: flex; gap: 6px; flex-shrink: 0; }
.wd-r,.wd-y,.wd-g { width: 12px; height: 12px; border-radius: 50%; }
.wd-r { background: #FF5F57; }
.wd-y { background: #FEBC2E; }
.wd-g { background: #28C840; }
.word-filename { flex: 1; text-align: center; font-size: .72rem; color: #8A8887; font-family: var(--mono); }
.word-formats { display: flex; gap: 4px; }
.wf {
  padding: 2px 6px; border-radius: 3px; font-size: .62rem; font-weight: 700;
  letter-spacing: .04em; font-family: var(--mono);
}
.wf--word { background: #2B579A; color: white; }
.wf--pdf   { background: #D93025; color: white; }

/* Corps du document */
.word-body { position: relative; max-height: 420px; overflow: hidden; }
.word-content {
  padding: 44px 64px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 13.5px; line-height: 1.85; color: #1A1A1A;
}
.wc-company {
  text-align: center; font-weight: 700; font-size: 15px;
  letter-spacing: .04em; margin-bottom: 4px;
}
.wc-infos {
  text-align: center; font-size: 12px; color: #555; margin-bottom: 14px; line-height: 1.6;
}
.wc-rule { border: none; border-top: 1px solid #CCC; margin: 12px 0; }
.wc-title {
  text-align: center; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.4; margin-bottom: 6px;
}
.wc-date { text-align: center; font-size: 12.5px; color: #555; margin-bottom: 14px; }
.wc-intro { text-indent: 2em; margin-bottom: 14px; font-size: 13px; }
.wc-reso-title {
  font-weight: 700; font-size: 12.5px; text-transform: uppercase;
  letter-spacing: .04em; text-align: center; margin: 18px 0 10px;
  text-decoration: underline; text-underline-offset: 3px;
}
.wc-para { text-indent: 2em; margin-bottom: 10px; font-size: 13px; }
.wc-adopted {
  font-style: italic; text-indent: 2em; margin-bottom: 18px; font-size: 13px; color: #333;
}
.wc-table {
  width: 85%; margin: 12px auto; border-collapse: collapse;
  font-size: 12.5px;
}
.wc-table td { padding: 5px 10px; }
.wc-table td:last-child { text-align: right; }
.wc-table tr:first-child td,
.wc-table tr:nth-child(2) td { border-bottom: 1px solid #DDD; }
.wc-table-sep { background: #F5F5F5; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #888; padding: 6px 10px !important; }
.wc-table tr:last-child td { border-top: 1.5px solid #333; font-weight: 700; }

.word-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.apercu-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 2rem;
  font-size: .82rem; font-weight: 600; color: var(--gold-lt);
  text-decoration: none; letter-spacing: .04em;
  transition: color .18s, gap .18s;
}
.apercu-cta:hover { color: var(--gold); gap: 12px; }

/* ══════════════════════════════════════════════════════════
   DOCUMENTS
══════════════════════════════════════════════════════════ */
.documents { background: var(--cream-dk); }
.docs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.doc-col {
  background: var(--white); border-radius: 10px;
  border: 1px solid #DDD6CA; overflow: hidden;
}
.doc-col--dark {
  background: var(--navy-2);
  border-color: rgba(201,168,76,.2);
}
.doc-col-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.4rem;
  background: var(--cream-dk); border-bottom: 1px solid #DDD6CA;
}
.doc-col--dark .doc-col-head { background: var(--navy-3); border-bottom-color: rgba(255,255,255,.06); }
.doc-forme { font-family: var(--serif); font-size: .92rem; font-weight: 600; color: var(--navy); }
.doc-col--dark .doc-forme { color: var(--gold-lt); }
.doc-badge {
  font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold-dim); background: var(--gold-pale); padding: 3px 9px; border-radius: 20px;
}
.doc-col--dark .doc-badge { color: var(--gold-lt); background: rgba(201,168,76,.1); }
.doc-list { list-style: none; padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .58rem; }
.doc-list li { display: flex; align-items: baseline; gap: 8px; font-size: .82rem; color: #4B5568; }
.doc-col--dark .doc-list li { color: rgba(255,255,255,.6); }
.ck { color: var(--gold); font-weight: 700; font-size: .76rem; flex-shrink: 0; }
.doc-list em { font-size: .72rem; color: #9CA3AF; font-style: italic; }
.doc-col--dark .doc-list em { color: rgba(255,255,255,.28); }

/* ══════════════════════════════════════════════════════════
   PROCESS — Timeline
══════════════════════════════════════════════════════════ */
.process { background: var(--navy-1); }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-title { text-align: center; }
.timeline { max-width: 660px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 52px 1fr; gap: 0 26px; }
.tl-left { display: flex; flex-direction: column; align-items: center; }
.tl-num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--gold-lt); flex-shrink: 0;
}
.tl-line {
  flex: 1; width: 1px; min-height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.22), rgba(201,168,76,.04));
  margin: 10px auto;
}
.tl-line--hidden { background: transparent; }
.tl-body { padding: 4px 0 48px; }
.tl-item--last .tl-body { padding-bottom: 0; }
.tl-body h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: white; margin-bottom: .6rem; }
.tl-body p { font-size: .875rem; line-height: 1.85; color: rgba(255,255,255,.46); }
.tl-badge {
  display: inline-block; margin-top: .85rem;
  font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid rgba(201,168,76,.2);
  padding: 3px 10px; border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.cta {
  background: var(--navy); position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.1);
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  padding: 8rem 2rem; text-align: center;
}
.cta-eyebrow {
  font-size: .67rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; display: block;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.18; color: white;
  margin-bottom: 1rem; letter-spacing: -.015em;
}
.cta-sub { font-size: .88rem; color: rgba(255,255,255,.36); margin-bottom: 2.75rem; font-weight: 300; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: var(--navy-1); border-top: 1px solid rgba(201,168,76,.09); }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 3rem;
  padding: 4.5rem 2rem 3rem;
}
.footer-brand { flex: 1; min-width: 240px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-desc { font-size: .78rem; line-height: 1.75; color: rgba(255,255,255,.32); max-width: 280px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 3rem; flex: 2; }
.footer-col { flex: 1; min-width: 200px; }
.footer-col-title {
  font-size: .65rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .52rem; }
.footer-col li { font-size: .77rem; color: rgba(255,255,255,.36); }
.footer-col a { color: rgba(255,255,255,.36); text-decoration: none; transition: color .18s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .7rem; color: rgba(255,255,255,.2);
}
.footer-disclaimer { font-style: italic; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 4rem; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.8rem, 8vw, 4rem); }
  .docs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 840px) {
  .feat-row { grid-template-columns: 52px 1fr; }
  .feat-tags { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 2rem; justify-items: center; }
  .stat-rule { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .docs-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-cols { flex-direction: column; gap: 1.5rem; }
  .word-content { padding: 32px 28px; }
}
@media (max-width: 580px) {
  .section-inner { padding: 5rem 1.5rem; }
  .feat-row { grid-template-columns: 1fr; gap: 1rem; }
  .feat-n { font-size: 1rem; }
  .hero-inner { padding: 8rem 1.5rem 3.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: repeat(2,1fr); padding: 3rem 1.5rem; }
  .apercu-inner { padding: 5rem 1.5rem; }
  .cta-inner { padding: 6rem 1.5rem; }
}
@media (max-width: 380px) {
  .stats-inner { grid-template-columns: 1fr; }
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials .section-inner { padding-top: 5rem; padding-bottom: 5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: box-shadow .25s var(--ease);
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(9,15,28,.07); }
.testi-quote {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: .6;
  color: var(--gold);
  opacity: .35;
  user-select: none;
}
.testi-text {
  font-size: .88rem;
  line-height: 1.72;
  color: var(--navy);
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dk);
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-2);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--dim); margin-top: .1rem; }

/* Trust rail */
.trust-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
  background: var(--navy-1);
  border-radius: 14px;
  padding: 1.4rem 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .01em;
  padding: 0 1.4rem;
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.12); }

/* ── Legal pages ───────────────────────────────────────────── */
.legal-content { background: var(--cream); padding: 3rem 0 6rem; }
.legal-inner { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
.legal-section { margin-bottom: 3rem; }
.legal-section h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--cream-dk);
}
.legal-section h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.2rem 0 .5rem;
}
.legal-section p { font-size: .92rem; color: #3a4455; line-height: 1.75; margin-bottom: .75rem; }
.legal-section ul { padding-left: 1.4rem; margin-bottom: .75rem; }
.legal-section ul li { font-size: .92rem; color: #3a4455; line-height: 1.75; margin-bottom: .3rem; }
.legal-section a { color: var(--gold-dim); text-decoration: underline; }
.legal-date { font-size: .8rem; color: var(--dim); margin-top: 1.5rem; }
.legal-warning {
  background: rgba(201,168,76,.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin: 1rem 0;
}
.legal-warning p { margin: 0; font-size: .88rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .88rem; }
.legal-table th { background: var(--navy-1); color: var(--cream); padding: .6rem 1rem; text-align: left; }
.legal-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--cream-dk); color: #3a4455; }

/* Footer legal links */
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-legal-links a {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--gold-lt); }

/* ── Glossaire ─────────────────────────────────────────────── */
.glossaire-section { background: var(--cream); }
.glossaire-inner { max-width: 980px; margin: 0 auto; padding: 3rem 2rem 6rem; }
.glossaire-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 3rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.glossaire-nav a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: .25rem .6rem;
  border-radius: 5px;
  transition: background .18s, color .18s;
}
.glossaire-nav a:hover { background: var(--gold-pale); color: var(--gold-dim); }
.glossaire-grid { display: flex; flex-direction: column; gap: .5rem; }
.glossaire-letter {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 2rem 0 .5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold-pale);
}
.glossaire-term {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem;
  margin-bottom: .5rem;
}
.term-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .7rem;
}
.term-def { font-size: .88rem; color: #3a4455; line-height: 1.75; margin-bottom: .5rem; }
.term-see, .term-ref { font-size: .8rem; color: var(--dim); }
.term-see a, .term-ref a { color: var(--gold-dim); text-decoration: none; }
.term-see a:hover, .term-ref a:hover { text-decoration: underline; }
.glossaire-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: var(--navy-1);
  border-radius: 16px;
}
.glossaire-cta p { color: var(--muted); margin-bottom: 1.2rem; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-rail { gap: .75rem 0; }
  .trust-sep { display: none; }
  .trust-badge { padding: 0 .75rem; }
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .footer-legal-links { flex-wrap: wrap; gap: .75rem; }
}
