/* ============ DESIGN SYSTEM ============ */
:root {
  --bg: #0a0714;
  --bg-elev: #130c22;
  --accent: #6c47ff;
  --accent-2: #9b7bff;
  --accent-soft: rgba(108, 71, 255, 0.16);
  --accent-border: rgba(124, 90, 255, 0.4);
  --fg: #f5f3ff;
  --muted: #b3aacb;
  --faint: #867e9f;
  --glass: rgba(139, 109, 255, 0.055);
  --glass-strong: rgba(139, 109, 255, 0.11);
  --border: rgba(151, 125, 255, 0.16);
  --green: #4ade80;
  --red: #f87171;
  /* 8pt scale */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s8: 64px; --s10: 80px; --s12: 96px;
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px;
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 70% 40% at 50% -10%, rgba(108, 71, 255, 0.12), transparent 60%),
    var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ============ TYPO ============ */
h1 { font-size: clamp(34px, 5.4vw, 64px); line-height: 1.07; font-weight: 600; letter-spacing: -0.035em; color: var(--fg); }
h2 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.14; font-weight: 600; letter-spacing: -0.03em; color: var(--fg); }
h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
h1, h2, h3, .brand, .eyebrow, .phase-tag, .tl-badge { font-family: var(--font-display); }

/* Eyebrow unifié (hero + sections) — repère de progression cohérent */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: var(--s2);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent-border); flex: none;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }
.lead { color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.6; max-width: 600px; }
.lead strong { color: var(--fg); font-weight: 700; }

/* ============ LAYOUT ============ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s3); }
@media (min-width: 768px) { .container { padding: 0 var(--s5); } }
section { padding: var(--s6) 0; }
@media (min-width: 768px) { section { padding: var(--s10) 0; } }
.section-head { max-width: 620px; margin: 0 auto var(--s5); text-align: center; }
@media (min-width: 768px) { .section-head { margin-bottom: var(--s6); } }
.section-head .lead { margin: 10px auto 0; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 7, 20, 0.7);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--s3);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
}
.brand {
  font-weight: 700; font-size: 18.5px; letter-spacing: -0.01em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.brand span { color: var(--accent-2); }
.header-nav { display: none; align-items: center; gap: var(--s3); }
.header-nav a {
  position: relative;
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--accent-2);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-nav a:hover { color: var(--fg); }
.header-nav a:hover::after { transform: scaleX(1); }
@media (min-width: 900px) { .header-nav { display: flex; } }
.header-actions { display: flex; align-items: center; gap: var(--s2); }

/* Hamburger (mobile) */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 11px;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--fg); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }
@media (max-width: 899px) { .header-actions .header-cta { display: none; } }

/* Panneau nav mobile */
.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--s2) var(--s3) var(--s3);
  border-top: 1px solid var(--border);
  background: rgba(10, 7, 20, 0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
}
.mobile-nav.open { max-height: 340px; opacity: 1; }
.mobile-nav a:not(.btn) {
  color: var(--fg); text-decoration: none; font-family: var(--font-display); font-weight: 500;
  font-size: 16px; padding: 12px 8px; border-radius: var(--r-sm);
}
.mobile-nav a:not(.btn):hover { background: var(--glass-strong); }
.mobile-nav .btn { margin-top: var(--s1); width: 100%; }
@media (min-width: 900px) { .mobile-nav { display: none; } }

/* Barre de progression de lecture */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; }
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  will-change: transform;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s1);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: var(--r-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(180deg, #7d5cff, var(--accent));
  color: #fff;
  box-shadow: 0 6px 20px rgba(108, 71, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(108, 71, 255, 0.42); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
/* Libellé de bouton court en mobile, long à partir de 560px */
.btn .lbl-long { display: none; }
.btn .lbl-short { display: inline; }
@media (min-width: 560px) { .btn .lbl-long { display: inline; } .btn .lbl-short { display: none; } }
.btn-ghost {
  background: var(--glass); color: var(--fg);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--glass-strong); }

/* ============ HERO ============ */
.hero { position: relative; padding: var(--s5) 0 var(--s6); overflow: hidden; }
@media (min-width: 768px) { .hero { padding: var(--s8) 0 var(--s6); } }
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto;
  height: 130%;
  background:
    radial-gradient(ellipse 50% 40% at 28% 28%, rgba(108, 71, 255, 0.18), transparent 66%),
    radial-gradient(ellipse 38% 38% at 78% 12%, rgba(155, 123, 255, 0.1), transparent 62%);
  animation: hero-drift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-drift {
  from { transform: translate3d(-3%, 0, 0) scale(1); }
  to   { transform: translate3d(3%, 4%, 0) scale(1.06); }
}
.hero-grid {
  position: relative;
  display: grid; gap: var(--s6); align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero h1 em {
  font-style: normal;
  color: var(--accent-2);
}
.hero .lead { margin-top: var(--s3); }
.sub-promise {
  margin-top: var(--s3);
  font-size: 15px; color: var(--muted); line-height: 1.6;
  max-width: 560px;
  padding: var(--s2) var(--s3);
  border-left: 2px solid var(--accent-border);
  background: var(--glass);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.sub-promise em { font-style: normal; color: var(--accent-2); font-weight: 700; }
.hero-cta-row { margin-top: var(--s4); display: flex; flex-direction: column; align-items: flex-start; gap: var(--s2); }
.book-note { font-size: 13px; color: var(--faint); font-weight: 500; }
.hero-visual {
  position: relative;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: var(--s2);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}
.hero-visual img { border-radius: var(--r-md); }
.hero-visual-badge {
  position: absolute; top: calc(var(--s2) + 10px); left: calc(var(--s2) + 10px); z-index: 2;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  color: #fff; background: rgba(13, 8, 26, 0.82);
  border: 1px solid var(--accent-border); border-radius: 999px;
  padding: 7px 14px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ============ KPI BAR ============ */
.kpi-bar {
  margin-top: var(--s6);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 768px) { .kpi-bar { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  background: var(--bg-elev);
  padding: var(--s4) var(--s3);
  display: flex; flex-direction: column; gap: 6px;
}
.kpi strong {
  font-size: clamp(30px, 4.2vw, 46px); font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.kpi strong .plus { color: var(--accent-2); }
.kpi > span { font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ============ GLASS CARD ============ */
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s4);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  background: var(--glass-strong);
}

/* ============ DOULEUR ============ */
.pain-grid { display: grid; gap: var(--s2); }
@media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s3); } }
.pain-num {
  font-size: 13px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.12em; margin-bottom: var(--s2); display: block;
}
.pain-grid p { color: var(--muted); font-size: 15px; margin-top: var(--s1); }

/* ============ PHASES ============ */
.phase-grid { display: grid; gap: var(--s3); }
@media (min-width: 900px) { .phase-grid { grid-template-columns: repeat(3, 1fr); } }
.phase-letter {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent-border);
  margin-bottom: var(--s3);
}
.phase-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; display: block; }
.phase-grid p { color: var(--muted); font-size: 15px; margin-top: var(--s2); }

/* ============ PREUVES ============ */
.proof-grid { display: grid; gap: var(--s3); }
@media (min-width: 768px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
.proof-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.proof-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--border); }
.proof-body { padding: var(--s3); display: flex; flex-direction: column; gap: var(--s1); flex: 1; }
.proof-body h3 { font-size: 17px; }
.proof-body p { color: var(--muted); font-size: 15px; }
.proof-metrics { display: flex; gap: var(--s3); margin-top: auto; padding-top: var(--s2); }
.proof-metrics div { display: flex; flex-direction: column; }
.proof-metrics strong { color: var(--accent); font-size: 18px; font-weight: 700; }
.proof-metrics span { font-size: 12px; color: var(--faint); }
.proof-disclaimer { margin-top: var(--s3); font-size: 12px; color: var(--faint); }
.proof-disclaimer a { color: var(--muted); }
.dm-block { margin-top: var(--s5); }
.dm-title {
  text-align: center; font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 20px); font-weight: 600; color: var(--fg);
  margin-bottom: var(--s4);
}
.dm-grid { display: grid; gap: var(--s3); align-items: start; }
@media (min-width: 768px) { .dm-grid { grid-template-columns: repeat(3, 1fr); } }
.dm {
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-elev);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease;
}
.dm:hover { transform: translateY(-3px); border-color: var(--accent-border); }
.dm img { width: 100%; height: auto; display: block; }

/* ============ ICP ============ */
.icp-grid { display: grid; gap: var(--s3); }
@media (min-width: 768px) { .icp-grid { grid-template-columns: 1fr 1fr; } }
.icp-col h3 { margin-bottom: var(--s3); display: flex; align-items: center; gap: var(--s1); }
.icp-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.icp-yes .icp-dot { background: var(--green); }
.icp-no .icp-dot { background: var(--red); }
.icp-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s2); }
.icp-col li { padding-left: var(--s3); position: relative; color: var(--muted); font-size: 15px; }
.icp-yes li::before { content: "→"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.icp-no li::before { content: "→"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============ ROADMAP 45 JOURS ============ */
.roadmap { list-style: none; display: grid; gap: var(--s3); }
@media (min-width: 768px) { .roadmap { grid-template-columns: repeat(3, 1fr); gap: var(--s4); } }
.rm-step {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--glass); padding: var(--s4);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease;
}
.rm-step:hover { transform: translateY(-3px); border-color: var(--accent-border); }
.rm-num {
  position: absolute; top: -14px; right: 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 96px; line-height: 1;
  color: var(--accent); opacity: 0.1; pointer-events: none;
}
.rm-days {
  display: inline-block;
  font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--accent-2); background: var(--accent-soft);
  border: 1px solid var(--accent-border); border-radius: 999px; padding: 5px 13px;
  font-variant-numeric: tabular-nums; margin-bottom: var(--s3);
}
.rm-step h3 { font-size: 20px; margin-bottom: 6px; }
.rm-step p { color: var(--muted); font-size: 15px; position: relative; }

/* ============ CARROUSELS MOBILE (moins de scroll vertical) ============ */
@media (max-width: 767px) {
  .pain-grid, .oldway-grid, .phase-grid, .proof-grid, .dm-grid, .roadmap {
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: var(--s2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * var(--s3));
    padding: 4px var(--s3) var(--s3);
    scrollbar-width: none;
  }
  .pain-grid::-webkit-scrollbar, .oldway-grid::-webkit-scrollbar, .phase-grid::-webkit-scrollbar,
  .proof-grid::-webkit-scrollbar, .dm-grid::-webkit-scrollbar, .roadmap::-webkit-scrollbar { display: none; }
  .pain-grid > *, .oldway-grid > *, .phase-grid > *, .proof-grid > *, .dm-grid > *, .roadmap > * {
    scroll-snap-align: start;
  }
  .dm { align-self: start; }
}

/* ============ FAQ ============ */
.faq { max-width: 760px; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--glass); margin-bottom: var(--s2);
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--accent-border); }
.faq summary {
  cursor: pointer; padding: var(--s3);
  font-weight: 600; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--accent); transition: transform 0.2s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 var(--s3) var(--s3); color: var(--muted); font-size: 15px; }

/* ============ WIDGET DE RÉSERVATION (custom) ============ */
.book-card {
  display: flex; flex-direction: column; gap: var(--s4);
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  background:
    radial-gradient(ellipse 80% 120% at 0% 0%, rgba(108, 71, 255, 0.18), transparent 65%),
    var(--glass-strong);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}
@media (min-width: 760px) {
  .book-card { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--s6); padding: var(--s6); }
}
.book-card-badge {
  display: inline-block;
  font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent-2); background: var(--accent-soft);
  border: 1px solid var(--accent-border); border-radius: 999px; padding: 6px 13px;
  margin-bottom: var(--s3);
}
.book-card-title { font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; line-height: 1.3; color: var(--fg); max-width: 460px; }
.book-card-points { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3); margin-top: var(--s3); }
.book-card-points li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14.5px; }
.book-card-points li::before {
  content: ""; position: absolute; left: 4px; top: 5px;
  width: 5px; height: 9px; border-right: 2px solid var(--accent-2); border-bottom: 2px solid var(--accent-2);
  transform: rotate(40deg);
}
.book-card-action { display: flex; flex-direction: column; gap: var(--s1); flex: none; align-items: flex-start; }
@media (min-width: 760px) { .book-card-action { align-items: center; } }
.book-card-action .btn { white-space: nowrap; }

/* Modale de réservation (calendrier iClosed) */
.book-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s2);
}
.book-modal[hidden] { display: none; }
.book-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 2, 10, 0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: modal-fade 0.2s ease;
}
.book-modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 640px; max-height: 92vh;
  display: flex; flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: modal-pop 0.24s ease;
}
.book-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  padding: 14px var(--s3); border-bottom: 1px solid var(--border);
}
.book-modal-title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg); }
.book-modal-close {
  width: 34px; height: 34px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; color: var(--muted);
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; transition: color 0.2s, background 0.2s;
}
.book-modal-close:hover { color: var(--fg); background: var(--glass-strong); }
.book-modal-frame { flex: 1; min-height: 0; background: #fff; }
.book-modal-frame iframe { width: 100%; height: 76vh; max-height: 720px; min-height: 520px; border: none; display: block; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
body.no-scroll { overflow: hidden; }

/* ============ STICKY CTA (mobile permanent + desktop après scroll) ============ */
.sticky-cta {
  position: fixed; left: var(--s2); right: var(--s2); bottom: var(--s2); z-index: 90;
  transform: translateY(160%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-cta-inner {
  display: flex; align-items: center; gap: var(--s2);
  background: rgba(13, 8, 26, 0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  padding: 10px 10px 10px var(--s3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}
.sticky-cta-text {
  display: none;
  font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--muted);
}
.sticky-cta .btn { flex: 1; box-shadow: 0 8px 24px rgba(108, 71, 255, 0.4); }
/* Mobile : barre pleine largeur, permanente une fois passé le hero */
@media (max-width: 899px) {
  .sticky-cta-inner { padding: 0; background: none; border: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .sticky-cta .btn { width: 100%; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 8px 28px rgba(108, 71, 255, 0.4); }
}
/* Desktop : pilule flottante en bas à droite, après le premier scroll */
@media (min-width: 900px) {
  .sticky-cta { left: auto; right: var(--s4); bottom: var(--s4); }
  .sticky-cta-text { display: block; }
  .sticky-cta .btn { flex: none; }
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--s6) 0 var(--s4);
  background: var(--bg-elev);
}
.footer-grid { display: grid; gap: var(--s4); padding-bottom: var(--s4); border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-tagline { color: var(--muted); font-size: 13.5px; margin: var(--s2) 0; max-width: 300px; }
.footer-legal-id { color: var(--faint); font-size: 12px; line-height: 1.9; }
.footer-title { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent-2); margin-bottom: var(--s2); font-weight: 700; font-family: var(--font-display); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { padding-top: var(--s3); display: flex; flex-direction: column; gap: var(--s1); }
.footer-bottom p { font-size: 12px; color: var(--faint); line-height: 1.7; }
.footer-bottom a { color: var(--muted); }
.footer-cookie-btn { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 14px; padding: 0; text-align: left; font-family: var(--font-body); transition: color 0.2s; }
.footer-cookie-btn:hover { color: var(--fg); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: var(--s2); left: var(--s2); right: var(--s2);
  max-width: 620px; z-index: 200;
  background: rgba(19, 13, 34, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s3);
  display: none; flex-direction: column; gap: var(--s2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 13px; color: var(--muted); }
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: var(--s1); flex-wrap: wrap; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ A11Y ============ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--accent); color: #fff; padding: var(--s1) var(--s2);
  border-radius: 0 0 var(--r-sm) 0; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ CE QUI NE MARCHE PLUS ============ */
.oldway-grid { display: grid; gap: var(--s2); }
@media (min-width: 768px) { .oldway-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s3); } }
.oldway { position: relative; opacity: 0.94; }
.oldway::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.05), transparent 55%);
  pointer-events: none;
}
.oldway-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: var(--s2); display: block;
}
.oldway h3 { text-decoration: line-through; text-decoration-color: rgba(248, 113, 113, 0.5); text-decoration-thickness: 2px; }
.oldway p { color: var(--muted); font-size: 15px; margin-top: var(--s1); }

