@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #060d1a;
  --bg-card:      #0c1a30;
  --bg-card-h:    #112240;
  --bg-nav:       rgba(6,13,26,.88);
  --gold:         #c9a227;
  --gold-l:       #e8bc3a;
  --gold-dim:     rgba(201,162,39,.14);
  --blue:         #2a6dd9;
  --success:      #27ae60;
  --error:        #e74c3c;
  --text:         #e8edf5;
  --text-muted:   #8a9bb0;
  --text-dim:     #3e4f6a;
  --border:       rgba(201,162,39,.22);
  --border-f:     rgba(255,255,255,.07);
  --shadow:       0 8px 32px rgba(0,0,0,.5);
  --shadow-gold:  0 0 48px rgba(201,162,39,.14);
  --ff-h: 'Playfair Display', serif;
  --ff-b: 'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--ff-b); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Age Gate ───────────────────────────────────────── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4,9,18,.97);
  backdrop-filter: blur(20px);
  padding: 24px;
}
#age-gate.hidden { display: none; }
.ag-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 48px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow), var(--shadow-gold);
  animation: scaleIn .4s cubic-bezier(.34,1.56,.64,1);
}
.ag-icon {
  width: 72px; height: 72px;
  background: var(--gold-dim); border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.ag-icon svg { width: 36px; height: 36px; color: var(--gold-l); }
.ag-logo { font-family: var(--ff-h); font-size: 1.1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.ag-logo span { color: var(--gold-l); }
.ag-title { font-family: var(--ff-h); font-size: 1.7rem; font-weight: 700; color: var(--gold-l); margin-bottom: 12px; }
.ag-text { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: 36px; }
.ag-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-ag-yes {
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #06100c; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,162,39,.3);
}
.btn-ag-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.5); }
.btn-ag-no { color: var(--text-dim); font-size: .88rem; padding: 10px; border-radius: 8px; transition: color .2s; }
.btn-ag-no:hover { color: var(--error); }
.ag-denied { text-align: center; animation: scaleIn .3s ease; }
.ag-denied svg { width: 56px; height: 56px; color: var(--error); margin: 0 auto 16px; }
.ag-denied h2 { font-family: var(--ff-h); font-size: 1.5rem; color: var(--error); margin-bottom: 12px; }
.ag-denied p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ── Cookie Banner ──────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 8000; width: calc(100% - 48px); max-width: 840px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 20px 28px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: var(--shadow);
  animation: slideUp .4s ease;
}
#cookie-banner.hidden { display: none; }
.cb-text { flex: 1; font-size: .86rem; color: var(--text-muted); line-height: 1.55; }
.cb-text a { color: var(--gold); text-decoration: underline; }
.cb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cb-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #06100c; font-weight: 600; font-size: .84rem;
  padding: 9px 20px; border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-cb-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,162,39,.4); }
.btn-cb-decline {
  border: 1px solid var(--border-f); color: var(--text-muted);
  font-size: .84rem; padding: 9px 16px; border-radius: 8px;
  transition: border-color .2s, color .2s;
}
.btn-cb-decline:hover { border-color: var(--border); color: var(--gold); }

/* ── Navbar ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  padding: 0 32px; transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: var(--bg-nav); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-f);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-name { font-family: var(--ff-h); font-weight: 700; font-size: 1.1rem; color: var(--text); line-height: 1.1; }
.nav-logo-name span { color: var(--gold-l); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover { color: var(--gold-l); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-link {
  background: linear-gradient(135deg, var(--gold), var(--gold-l)) !important;
  color: #06100c !important; font-weight: 700 !important;
  padding: 8px 20px; border-radius: 8px;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta-link::after { display: none !important; }
.nav-cta-link:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 16px rgba(201,162,39,.4) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 15%, rgba(201,162,39,.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 45% at 80% 85%, rgba(42,109,217,.05) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hp { position: absolute; border-radius: 50%; background: var(--gold); opacity: .1; animation: floatP linear infinite; }
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px;
  font-size: .8rem; font-weight: 500; color: var(--gold-l);
  margin-bottom: 28px; animation: fadeUp .6s ease;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold-l); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 24px; animation: fadeUp .6s .1s ease both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 44px; line-height: 1.8; animation: fadeUp .6s .2s ease both; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #06100c; font-weight: 700; font-size: 1rem;
  padding: 15px 36px; border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(201,162,39,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,162,39,.5); }
.btn-primary svg { width: 18px; height: 18px; }
.hero-note { margin-top: 24px; font-size: .76rem; color: var(--text-dim); animation: fadeUp .6s .4s ease both; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-dim); font-size: .72rem; animation: bounce 2s infinite; z-index: 1; }
.hero-scroll svg { width: 16px; height: 16px; }

/* ── Section Commons ─────────────────────────────────── */
section { padding: 96px 24px; }
.s-inner { max-width: 1200px; margin: 0 auto; }
.s-head { text-align: center; margin-bottom: 64px; }
.s-label {
  display: inline-block;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: 50px; padding: 4px 14px;
  font-size: .78rem; font-weight: 600; color: var(--gold);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px;
}
.s-title { font-family: var(--ff-h); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.s-title em { font-style: normal; background: linear-gradient(135deg, var(--gold), var(--gold-l)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.s-desc { color: var(--text-muted); font-size: .97rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── Platform Cards ──────────────────────────────────── */
#platforms { background: linear-gradient(180deg, var(--bg) 0%, #09162a 100%); }
.plat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plat-card {
  background: var(--bg-card); border: 1px solid var(--border-f);
  border-radius: 24px; overflow: hidden; position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: var(--shadow);
}
.plat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow), var(--shadow-gold); border-color: var(--border); }
.plat-card.r1 { border-color: rgba(201,162,39,.35); box-shadow: var(--shadow), 0 0 40px rgba(201,162,39,.1); }
.plat-card.r1:hover { box-shadow: var(--shadow), 0 0 64px rgba(201,162,39,.22); }
.card-ribbon {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-weight: 700; font-size: .76rem; padding: 5px 14px 5px 10px;
  border-radius: 0 0 8px 0; letter-spacing: .05em; text-transform: uppercase;
}
.card-ribbon.r1 { background: linear-gradient(135deg, var(--gold), var(--gold-l)); color: #06100c; }
.card-ribbon.r2 { background: linear-gradient(135deg, #9ca3af, #d1d5db); color: #1a1a1a; }
.card-ribbon.r3 { background: linear-gradient(135deg, #b45309, #d97706); color: #fff; }
.card-img {
  width: 100%; height: 160px;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 16px;
}
.card-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.card-img-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dim); font-size: .78rem; z-index: 1; }
.card-img-ph svg { width: 32px; height: 32px; opacity: .35; }
.card-body { padding: 24px; }
.card-name { font-family: var(--ff-h); font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
.card-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.card-score { font-size: 1.5rem; font-weight: 700; color: var(--gold-l); font-family: var(--ff-h); }
.card-stars { display: flex; gap: 2px; }
.card-stars svg { width: 15px; height: 15px; fill: var(--gold); }
.card-bonus {
  background: rgba(201,162,39,.07); border: 1px solid rgba(201,162,39,.14);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 16px;
}
.card-bonus-label { font-size: .7rem; font-weight: 600; color: var(--gold); letter-spacing: .09em; text-transform: uppercase; margin-bottom: 5px; }
.card-bonus-val { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.45; }
.card-pay { margin-bottom: 20px; }
.card-pay-label { font-size: .72rem; color: var(--text-dim); margin-bottom: 8px; }
.pay-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.pbadge {
  display: inline-flex; align-items: center; height: 26px; padding: 0 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-f);
  border-radius: 6px; font-size: .7rem; font-weight: 700; white-space: nowrap;
}
.pbadge.visa { color: #4a90d9; border-color: rgba(74,144,217,.25); }
.pbadge.mc { color: #eb4d4b; border-color: rgba(235,77,75,.2); }
.pbadge.pp { color: #1992d4; border-color: rgba(25,146,212,.22); }
.pbadge.sk { color: #9b59b6; border-color: rgba(155,89,182,.22); }
.btn-cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #06100c; font-weight: 700; font-size: .94rem;
  padding: 13px; border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(201,162,39,.22);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.45); }
.card-fine { text-align: center; font-size: .7rem; color: var(--text-dim); margin-top: 8px; line-height: 1.4; }

/* ── Pourquoi ────────────────────────────────────────── */
#pourquoi { background: var(--bg-card); border-top: 1px solid var(--border-f); border-bottom: 1px solid var(--border-f); }
.pourquoi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pq-text .s-head { text-align: left; margin-bottom: 32px; }
.pq-text .s-desc { text-align: left; max-width: none; margin-bottom: 32px; }
.pq-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feat {  display: flex; gap: 16px; align-items: flex-start; }
.feat-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.feat-icon svg { width: 20px; height: 20px; color: var(--gold-l); }
.feat h4 { font-size: .93rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.feat p { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }
.pq-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-c {
  background: var(--bg); border: 1px solid var(--border-f);
  border-radius: 20px; padding: 32px 24px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.stat-c:hover { border-color: var(--border); transform: translateY(-4px); }
.stat-v { font-family: var(--ff-h); font-size: 2.2rem; font-weight: 700; color: var(--gold-l); line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

/* ── Responsible ─────────────────────────────────────── */
#responsible {
  background: linear-gradient(135deg, #160808 0%, #0c0505 100%);
  border-top: 1px solid rgba(231,76,60,.14); border-bottom: 1px solid rgba(231,76,60,.14);
  padding: 72px 24px;
}
.resp-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.resp-icon { width: 64px; height: 64px; background: rgba(231,76,60,.1); border: 2px solid rgba(231,76,60,.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.resp-icon svg { width: 30px; height: 30px; color: var(--error); }
.resp-title { font-family: var(--ff-h); font-size: 1.55rem; font-weight: 700; color: #f08080; margin-bottom: 16px; }
.resp-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; font-size: .93rem; }
.resp-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.resp-link { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(231,76,60,.22); border-radius: 50px; padding: 7px 18px; font-size: .82rem; color: #f08080; transition: background .2s, border-color .2s; }
.resp-link:hover { background: rgba(231,76,60,.08); border-color: rgba(231,76,60,.5); }
.resp-link svg { width: 12px; height: 12px; }

/* ── FAQ ─────────────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-f); border-radius: 14px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 22px 28px; text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: color .2s; gap: 16px;
}
.faq-q:hover { color: var(--gold-l); }
.faq-item.open .faq-q { color: var(--gold-l); }
.faq-ico { width: 28px; height: 28px; flex-shrink: 0; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s; }
.faq-ico svg { width: 13px; height: 13px; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-ico { background: var(--gold); }
.faq-item.open .faq-ico svg { color: #06100c; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(0,1,.5,1); }
.faq-a-inner { padding: 0 28px 22px; font-size: .88rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border-f); padding-top: 16px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Footer ──────────────────────────────────────────── */
#footer { background: #040a16; border-top: 1px solid var(--border-f); padding: 80px 24px 32px; }
.foot-inner { max-width: 1200px; margin: 0 auto; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--border-f); }
.foot-brand .nav-logo { margin-bottom: 20px; display: flex; }
.foot-about { font-size: .86rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; max-width: 360px; }
.foot-disc { background: rgba(231,76,60,.05); border: 1px solid rgba(231,76,60,.11); border-radius: 10px; padding: 10px 14px; font-size: .77rem; color: #f08080; line-height: 1.5; }
.foot-col h4 { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col ul a { font-size: .86rem; color: var(--text-dim); transition: color .2s; }
.foot-col ul a:hover { color: var(--gold-l); }
.foot-help-link { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--text-dim); transition: color .2s; margin-bottom: 8px; }
.foot-help-link:hover { color: #f08080; }
.foot-help-link svg { width: 11px; height: 11px; flex-shrink: 0; }
.foot-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-copy { font-size: .8rem; color: var(--text-dim); }
.foot-badges { display: flex; gap: 8px; }
.foot-badge { background: rgba(255,255,255,.04); border: 1px solid var(--border-f); border-radius: 6px; padding: 4px 10px; font-size: .74rem; font-weight: 600; color: var(--text-dim); }
.foot-badge.age { color: var(--error); border-color: rgba(231,76,60,.2); }

/* ── Subpages ─────────────────────────────────────────── */
.sub-hero { min-height: 260px; display: flex; align-items: flex-end; padding: 120px 24px 48px; background: linear-gradient(180deg, rgba(201,162,39,.04) 0%, transparent 100%), var(--bg); border-bottom: 1px solid var(--border-f); }
.sub-hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text-dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; }
.sub-title { font-family: var(--ff-h); font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 700; margin-bottom: 10px; }
.sub-meta { font-size: .83rem; color: var(--text-dim); }
.sub-content { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 8px; padding: 8px 18px; font-size: .87rem; font-weight: 500; color: var(--gold); transition: background .2s, transform .2s; margin-bottom: 48px; }
.back-btn:hover { background: rgba(201,162,39,.26); transform: translateX(-2px); }
.back-btn svg { width: 14px; height: 14px; }
.sub-content h2 { font-family: var(--ff-h); font-size: 1.3rem; font-weight: 700; color: var(--gold-l); margin: 40px 0 14px; }
.sub-content h2:first-of-type { margin-top: 0; }
.sub-content p { color: var(--text-muted); font-size: .92rem; line-height: 1.82; margin-bottom: 16px; }
.sub-content ul { list-style: disc; padding-left: 24px; color: var(--text-muted); font-size: .92rem; line-height: 1.8; margin-bottom: 16px; }
.sub-content ul li { margin-bottom: 6px; }
.sub-content a { color: var(--gold-l); text-decoration: underline; }
.info-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.warn-box { background: rgba(231,76,60,.06); border: 1px solid rgba(231,76,60,.16); border-radius: 12px; padding: 20px 24px; margin: 20px 0; color: #f08080; font-size: .88rem; line-height: 1.65; }

/* ── Reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; } .rd3 { transition-delay: .3s; }

/* ── Keyframes ────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes scaleIn { from { opacity:0; transform:scale(.9); } to { opacity:1; transform:scale(1); } }
@keyframes slideUp { from { opacity:0; transform:translateX(-50%) translateY(14px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
@keyframes floatP { 0% { transform:translateY(110vh) scale(0); opacity:0; } 8% { opacity:.1; } 92% { opacity:.1; } 100% { transform:translateY(-20vh) scale(1); opacity:0; } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.75); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(7px); } }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width:1024px) {
  .plat-grid { grid-template-columns:1fr 1fr; }
  .plat-grid .plat-card:nth-child(3) { grid-column:span 2; max-width:480px; margin:0 auto; width:100%; }
  .pourquoi-grid { grid-template-columns:1fr; }
  .pq-stats { grid-template-columns:repeat(4,1fr); }
  .foot-top { grid-template-columns:1fr 1fr; }
  .foot-top .foot-brand { grid-column:span 2; }
}
@media (max-width:768px) {
  section { padding:72px 20px; }
  .plat-grid { grid-template-columns:1fr; }
  .plat-grid .plat-card:nth-child(3) { grid-column:auto; max-width:100%; }
  .pq-features { grid-template-columns:1fr; }
  .pq-stats { grid-template-columns:1fr 1fr; }
  .foot-top { grid-template-columns:1fr; }
  .foot-top .foot-brand { grid-column:auto; }
  .foot-bottom { flex-direction:column; text-align:center; }
  .nav-links { display:none; flex-direction:column; align-items:center; position:fixed; inset:0; top:72px; background:var(--bg); padding:48px 24px; gap:32px; justify-content:flex-start; z-index:6900; }
  .nav-links.open { display:flex; }
  .nav-cta-link { display:none !important; }
  .nav-burger { display:flex; }
  #cookie-banner { flex-direction:column; gap:14px; bottom:0; border-radius:20px 20px 0 0; }
  .cb-actions { flex-direction:column; width:100%; }
  .cb-actions button { width:100%; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn-primary { justify-content:center; }
  .resp-links { flex-direction:column; align-items:center; }
}
@media (max-width:480px) {
  .ag-box { padding:40px 24px; }
  .pq-stats { grid-template-columns:1fr 1fr; }
}
