/* =========================================================================
   PIXEL PROS — STYLE V3 « PASTEL LUDIQUE »
   Pastel pêche/menthe/lavande/jaune · cartes outlinées avec ombre décalée
   Gros titres Bricolage Grotesque, blobs colorés derrière les mots-clés
   3 thèmes : light (pêche crème) · dim (lavande tamisé) · dark (aubergine)
   ========================================================================= */

/* ============================== RESET ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================== TOKENS ============================== */
:root {
  --font-display: 'Bricolage Grotesque', 'Space Grotesk', system-ui, sans-serif;
  --font-sans:    'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* ALIAS pour les anciens noms encore utilisés par form.css / autres fichiers */
  --r-sm: var(--radius-sm);
  --r-md: var(--radius-md);
  --r-lg: var(--radius-lg);
}

/* === LIGHT — Pêche cream (défaut) === */
body[data-theme="light"], body:not([data-theme]) {
  --bg:        #fdf3ec;
  --bg-elev:   #fbe9de;
  --paper:     #ffffff;
  --ink:       #2a1832;
  --ink-soft:  #5e4a6b;
  --rule:      #e8d8d0;

  --coral:     #ff6b6b;
  --pink:      #ffb7c5;
  --mint:      #9fdec6;
  --lavender:  #d4baee;
  --peach:     #ffcfa3;
  --yellow:    #f4d35e;
  --sky:       #b8dbef;
  --plum:      #6b3e5a;

  /* ALIAS anciens noms → nouveaux tokens (pour form.css notamment) */
  --fg:         var(--ink);
  --fg-muted:   var(--ink-soft);
  --line:       var(--rule);
  --ink-shadow: var(--ink);
  --green:      var(--mint);
  --blue:       var(--coral);
  --red:        var(--coral);
  --halo-blue:  rgba(184, 219, 239, .35);
  --halo-yellow:rgba(244, 211, 94, .35);
}

/* === DIM — Lavande tamisé === */
body[data-theme="dim"] {
  --bg:        #5d4e6e;
  --bg-elev:   #6e5e80;
  --paper:     #f5ecf5;
  --ink:       #2a1832;
  --ink-soft:  #4a2f5a;
  --rule:      #806f93;

  --coral:     #ff7575;
  --pink:      #ffb7c5;
  --mint:      #9fdec6;
  --lavender:  #e0caf7;
  --peach:     #ffcfa3;
  --yellow:    #f4d35e;
  --sky:       #c6dff0;
  --plum:      #6b3e5a;

  --fg:         var(--paper);
  --fg-muted:   #d0c2e0;
  --line:       var(--rule);
  --ink-shadow: var(--ink);
  --green:      var(--mint);
  --blue:       var(--coral);
  --red:        var(--coral);
  --halo-blue:  rgba(198, 223, 240, .25);
  --halo-yellow:rgba(244, 211, 94, .25);
}
body[data-theme="dim"] .nav a,
body[data-theme="dim"] .logo-word,
body[data-theme="dim"] .footer-inner,
body[data-theme="dim"] .footer-inner a {
  color: var(--paper);
}
body[data-theme="dim"] .site-header {
  background: rgba(93, 78, 110, .92);
  border-bottom-color: var(--rule);
}
body[data-theme="dim"] .hero h1,
body[data-theme="dim"] .section-head h2,
body[data-theme="dim"] .lead,
body[data-theme="dim"] .trust,
body[data-theme="dim"] .section-head p,
body[data-theme="dim"] .manifest p,
body[data-theme="dim"] .manifest h2 { color: var(--paper); }
body[data-theme="dim"] .eyebrow,
body[data-theme="dim"] .section-eyebrow { color: var(--yellow); }
body[data-theme="dim"] .theme-btn { color: var(--paper); }
body[data-theme="dim"] .theme-btn[aria-pressed="true"] { background: var(--coral); color: var(--paper); }
body[data-theme="dim"] .theme-switch { border-color: var(--paper); background: rgba(0,0,0,.2); }

/* === DARK — Aubergine profonde === */
body[data-theme="dark"] {
  --bg:        #1a0e25;
  --bg-elev:   #25143a;
  --paper:     #2e1d44;
  --ink:       #f5ecf5;
  --ink-soft:  #b89dc5;
  --rule:      #4a2e5e;

  --coral:     #ff8585;
  --pink:      #ff9ab0;
  --mint:      #8fd5b8;
  --lavender:  #c4a8e6;
  --peach:     #ffbf90;
  --yellow:    #f0c850;
  --sky:       #9ec6dc;
  --plum:      #c08aa6;

  --fg:         var(--ink);
  --fg-muted:   var(--ink-soft);
  --line:       var(--rule);
  --ink-shadow: #0a0411;
  --green:      var(--mint);
  --blue:       var(--coral);
  --red:        var(--coral);
  --halo-blue:  rgba(158, 198, 220, .18);
  --halo-yellow:rgba(240, 200, 80, .15);
}

/* ============================== BASE ============================== */
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  transition: background-color .25s ease, color .25s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
  line-height: 1.05;
  color: inherit;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
}
p { text-wrap: pretty; margin: 0 0 1em; }
::selection { background: var(--coral); color: var(--paper); }

/* ============================== SURFACES SOMBRES « FORCÉES » ==============================
   Les composants ci-dessous (bandeau bonus, combo, CTA final, recap form)
   restent toujours sur fond sombre, quel que soit le thème.
   Astuce : on redéfinit --ink et --paper localement → tous les enfants qui
   utilisent var(--ink) / var(--paper) héritent automatiquement des bonnes
   valeurs sans qu'on ait à les surcharger un par un.
   ========================================================================== */
.topbar-bonus,
.upsell-combo,
.cta-final,
.recap {
  --ink:   #1a0e25;
  --paper: #f8f1ea;
  --ink-soft: rgba(248, 241, 234, .65);
}

/* ============================== TOPBAR BONUS ============================== */
.topbar-bonus {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 5;
}
.topbar-bonus[hidden] { display: none !important; }
.topbar-bonus-link {
  display: block;
  padding: 11px 56px 11px 24px;
  overflow: hidden;
  text-decoration: none;
}
.topbar-bonus-marquee {
  overflow: hidden;
  width: 100%;
}
.topbar-bonus-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: bonus-marquee 28s linear infinite;
}
.topbar-bonus-link:hover .topbar-bonus-marquee-track { animation-play-state: paused; }
.topbar-bonus-chunk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 60px;
}
@keyframes bonus-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar-bonus-marquee-track { animation: none; }
  .topbar-bonus-link { padding: 11px 56px; }
  .topbar-bonus-marquee-track { justify-content: center; }
  .topbar-bonus-chunk + .topbar-bonus-chunk { display: none; }
}
.topbar-bonus-icon { font-size: 16px; }
.topbar-bonus-tag {
  font-family: var(--font-display);
  font-size: 12px;
  background: var(--yellow);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: .02em;
  margin-right: 6px;
}
.topbar-bonus-text strong { color: var(--yellow); font-weight: 700; }
/* La pastille "NOUVEAU" est aussi un <strong> mais doit rester sombre sur jaune */
.topbar-bonus-text .topbar-bonus-tag { color: var(--ink); }
.topbar-bonus-cta {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  font-size: 13px;
  white-space: nowrap;
}
.topbar-bonus-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1.5px solid var(--paper);
  color: var(--paper);
  font-size: 13px;
  line-height: 1;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.topbar-bonus-close:hover { background: var(--paper); color: var(--ink); }

/* ============================== HEADER ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--rule);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-img img {
  height: 38px;
  width: auto;
  display: block;
}

/* Logo « grille de pixels pastel » — 4 carrés arrondis + wordmark Bricolage Grotesque */
.logo-pp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logo-pp .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-pp .logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-pp .logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--ink);
  transition: color .15s;
}
.logo-pp:hover .logo-word { color: var(--coral); }

.nav {
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: nowrap;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  color: var(--ink);
  padding: 8px 11px;
  border-radius: var(--radius-pill);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav a:hover { background: var(--coral); color: var(--paper); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme switch (3 boutons clair/tamisé/sombre) */
.theme-switch {
  display: inline-flex;
  gap: 2px;
  border: 1.5px solid var(--ink);
  padding: 3px;
  background: var(--paper);
  border-radius: var(--radius-pill);
}
.theme-btn {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px;
  height: 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.theme-btn[aria-pressed="true"] { background: var(--coral); color: var(--paper); }
.theme-btn:hover:not([aria-pressed="true"]) { background: var(--bg-elev); }

/* On masque le brightness slider d'origine (remplacé par le theme switch) */
.brightness-wrap { display: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  background: var(--coral);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 0 var(--ink);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--ink);
  background: var(--ink);
}

/* ============================== HERO ============================== */
.hero {
  position: relative;
  padding: clamp(36px, 5vw, 70px) var(--gutter) clamp(28px, 4vw, 56px);
  text-align: center;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

/* Pixels décoratifs → pastilles colorées flottantes */
.deco-pixel {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  z-index: 0;
  animation: floatY 4s ease-in-out infinite;
  pointer-events: none;
}
.c-yellow { background: var(--yellow); }
.c-green  { background: var(--mint); }
.c-blue   { background: var(--sky); }
.c-red    { background: var(--coral); }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(8deg); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
  background: var(--paper);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--rule);
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 100px);
  line-height: .95;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.hero h1 .highlight {
  display: inline-block;
  position: relative;
  padding: 0 .15em;
  z-index: 1;
}
.hero h1 .highlight::before {
  content: '';
  position: absolute;
  inset: -.05em -.05em;
  background: var(--mint);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
  transform: rotate(-2deg);
}
.hero h1 .text-blue {
  display: inline-block;
  position: relative;
  padding: 0 .15em;
  z-index: 1;
  color: var(--ink);
}
.hero h1 .text-blue::before {
  content: '';
  position: absolute;
  inset: .04em -.05em;
  background: var(--yellow);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
  transform: rotate(-2deg);
}

.lead {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 18px;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.lead strong {
  background: var(--lavender);
  color: var(--ink);
  padding: 2px .25em;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.price-stamp {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.price-stamp .line { display: inline-block; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.005em;
  box-shadow: 0 4px 0 var(--ink);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 var(--ink);
}
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.btn-primary { background: var(--coral); color: var(--paper); }
.btn-secondary { background: var(--paper); color: var(--ink); }
.btn-secondary:hover { background: var(--mint); }
.btn-big { padding: 19px 36px; font-size: 17px; }

.trust {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 8px 0 0;
  position: relative;
  z-index: 2;
}
.trust strong { color: var(--coral); font-weight: 700; }

/* ============================== SECTIONS GÉNÉRIQUES ============================== */
.section {
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--paper);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--ink);
}
.section-head h2 {
  font-size: clamp(40px, 6.5vw, 90px);
  line-height: .95;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--ink);
}
.section-head h2 strong {
  font-weight: 800;
  background: var(--yellow);
  padding: 0 .2em;
  border-radius: .1em;
}
.section-head h2 .text-blue {
  display: inline-block;
  position: relative;
  padding: 0 .15em;
  z-index: 1;
}
.section-head h2 .text-blue::before {
  content: '';
  position: absolute;
  inset: .04em -.05em;
  background: var(--mint);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
  transform: rotate(-2deg);
}
.section-head p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 auto;
}

/* ============================== MANIFESTE ============================== */
.manifest {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  max-width: 740px;
  margin: 0 auto;
  color: #1a0e25;
}
body[data-theme="dim"] .manifest,
body[data-theme="dark"] .manifest { color: #f5ecf5; }
.manifest h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-align: center;
  color: var(--ink);
}
.manifest h2 strong {
  font-weight: 800;
  background: var(--yellow);
  padding: 0 .2em;
  border-radius: .1em;
}
.manifest p { margin: 0 0 1.1em; color: inherit; }
.manifest p strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
}

/* ============================== INCLUS ============================== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.inc-card {
  padding: 26px 22px 28px;
  border-radius: var(--radius-md);
  position: relative;
  transition: transform .25s cubic-bezier(.3, 1.4, .5, 1), box-shadow .25s ease, rotate .25s ease;
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 230px;
  box-shadow: 0 5px 0 var(--ink);
  background: var(--paper);
}
.inc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 13px 0 var(--ink);
  rotate: -1.2deg;
  z-index: 2;
}
.inc-card:nth-child(even):hover { rotate: 1.2deg; }
.inc-card:nth-child(8n+1) { background: var(--mint); }
.inc-card:nth-child(8n+2) { background: var(--peach); }
.inc-card:nth-child(8n+3) { background: var(--lavender); }
.inc-card:nth-child(8n+4) { background: var(--yellow); }
.inc-card:nth-child(8n+5) { background: var(--sky); }
.inc-card:nth-child(8n+6) { background: var(--pink); }
.inc-card:nth-child(8n+7) { background: var(--peach); }
.inc-card:nth-child(8n+8) { background: var(--mint); }

.inc-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}
.inc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.inc-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--ink);
  opacity: .85;
}

/* ============================== ÉTAPES ============================== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--paper);
  padding: 28px 24px 32px;
  border-radius: var(--radius-md);
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  transition: transform .3s cubic-bezier(.3, 1.4, .5, 1), box-shadow .25s ease, rotate .3s ease;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 13px 0 var(--ink);
  rotate: -1.5deg;
  z-index: 2;
}
.step:nth-child(even):hover { rotate: 1.5deg; }
.step:hover .step-num {
  transform: scale(1.18) rotate(-8deg);
}
.step:nth-child(1) .step-num { background: var(--coral); color: var(--paper); }
.step:nth-child(2) .step-num { background: var(--yellow); }
.step:nth-child(3) .step-num { background: var(--mint); }
.step:nth-child(4) .step-num { background: var(--lavender); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
  border: 2px solid var(--ink);
  transition: transform .3s cubic-bezier(.3, 1.4, .5, 1);
  animation: step-num-bob 4s ease-in-out infinite;
}
.step:nth-child(1) .step-num { animation-delay: 0s;    }
.step:nth-child(2) .step-num { animation-delay: .35s;  }
.step:nth-child(3) .step-num { animation-delay: .7s;   }
.step:nth-child(4) .step-num { animation-delay: 1.05s; }
@keyframes step-num-bob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-4px) rotate(-3deg); }
}

/* Pulse continu sur les icônes des cartes Inclus */
.inc-card .inc-icon {
  transition: transform .3s cubic-bezier(.3, 1.4, .5, 1), background .2s, color .2s;
  animation: inc-icon-float 5s ease-in-out infinite;
}
.inc-card:nth-child(1)  .inc-icon { animation-delay: 0s;    }
.inc-card:nth-child(2)  .inc-icon { animation-delay: .25s;  }
.inc-card:nth-child(3)  .inc-icon { animation-delay: .5s;   }
.inc-card:nth-child(4)  .inc-icon { animation-delay: .75s;  }
.inc-card:nth-child(5)  .inc-icon { animation-delay: 1s;    }
.inc-card:nth-child(6)  .inc-icon { animation-delay: 1.25s; }
.inc-card:nth-child(7)  .inc-icon { animation-delay: 1.5s;  }
.inc-card:nth-child(8)  .inc-icon { animation-delay: 1.75s; }
.inc-card:hover .inc-icon {
  background: var(--coral);
  transform: scale(1.18) rotate(-12deg);
}
@keyframes inc-icon-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-5px) rotate(-4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .step-num, .inc-card .inc-icon { animation: none; }
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
}
.step p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-soft);
}

/* ============================== OPTIONS / UPSELLS ============================== */
.upsells {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.upsell {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
  background: var(--paper);
}
.upsell-domain { background: var(--sky); }
.upsell-seo    { background: var(--mint); }
.upsell-domain:hover, .upsell-seo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 0 var(--ink);
}
.upsell-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--ink);
  color: var(--paper);
  margin-bottom: 18px;
  align-self: flex-start;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.upsell h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.upsell-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--coral);
  letter-spacing: -0.035em;
}
.upsell-price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.upsell > p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: var(--ink);
}
.upsell code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--paper);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--ink);
}
.upsell ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
}
.upsell ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1.5px solid rgba(42, 24, 50, .15);
  opacity: .92;
}
.upsell ul li:last-child { border-bottom: none; }
.upsell ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 9px;
  width: 18px; height: 18px;
  background: var(--coral);
  color: var(--paper);
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.upsell ul strong { font-weight: 700; }

/* ============================== UPSELL COMBO (pack pivot) ============================== */
.upsell-combo {
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(255, 107, 107, .35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212, 186, 238, .28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(244, 211, 94, .12), transparent 65%),
    #1a0a2e;
  color: var(--paper);
  border: 2px solid #0d0517;
  transform: translateY(-14px);
  box-shadow: 0 8px 0 var(--coral);
  z-index: 2;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.upsell-combo:hover {
  transform: translateY(-18px);
  box-shadow: 0 12px 0 var(--coral);
}
.combo-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--coral), var(--yellow), var(--mint));
  z-index: -1;
  opacity: .25;
  filter: blur(20px);
  pointer-events: none;
}
.combo-burst-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 14px;
}
.combo-countdown-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.combo-mini-label { color: var(--peach); }
.combo-mini-label strong { color: var(--paper); font-weight: 700; }
.combo-mini-time { color: var(--yellow); font-weight: 700; font-size: 13px; }

.upsell .combo-h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--paper);
}
.combo-name {
  display: inline-block;
  padding: 2px .25em;
  background: var(--coral);
  color: #1a0e25;
  border-radius: .15em;
  font-weight: 800;
  letter-spacing: -.005em;
}

.combo-price-box {
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.combo-price-old { font-family: var(--font-sans); font-size: 13px; margin-bottom: 4px; }
.combo-strike { text-decoration: line-through; opacity: .8; }
.combo-old-lbl { color: var(--peach); opacity: 1; }
.combo-price-new { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.combo-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.035em;
  color: var(--yellow);
}
.combo-unit { font-family: var(--font-sans); font-size: 13px; color: var(--peach); }
.combo-save-line { font-family: var(--font-sans); font-size: 12px; color: var(--mint); }
.combo-save-line strong { color: var(--yellow); font-weight: 700; }

.combo-includes-mini { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.combo-line-mini {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
}
.combo-line-mini strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--paper); }
.combo-line-mini em { font-style: normal; color: var(--peach); opacity: 1; }
.combo-val { color: var(--yellow); font-weight: 700; }
.combo-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--coral);
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}
.combo-check-bonus { background: var(--yellow); color: var(--ink); }
.combo-line-bonus { padding-top: 10px; border-top: 1px dashed rgba(255, 255, 255, .25); }
.combo-bonus-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  background: var(--yellow);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
  font-weight: 700;
}
.combo-bonus-free { color: var(--yellow); font-weight: 700; }

.combo-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  background: var(--coral);
  color: var(--paper);
  border: 2px solid var(--paper);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform .15s, background .15s;
  text-align: center;
}
.combo-cta-final:hover {
  transform: translateY(-3px);
  background: var(--yellow);
  color: var(--ink);
}
.upsell-combo .combo-tiny {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #ffffff !important;
  text-align: center;
  margin: 12px 0 0;
  opacity: .9;
}

/* ============================== DEMO CAROUSEL ============================== */
.section-demo { background: var(--bg-elev); }
.demo-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.demo-promo-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 70px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.demo-promo-text h2 .text-blue {
  display: inline-block;
  position: relative;
  padding: 0 .15em;
  z-index: 1;
}
.demo-promo-text h2 .text-blue::before {
  content: '';
  position: absolute;
  inset: .04em -.05em;
  background: var(--mint);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
  transform: rotate(-2deg);
}
.demo-promo-text p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--ink);
}
.demo-promo-text p strong { color: var(--ink); }
.demo-promo-text .section-eyebrow { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.demo-promo-text .btn-row { justify-content: flex-start; margin-top: 20px; margin-bottom: 0; }

.demo-promo-preview {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 18px;
  box-shadow: 0 6px 0 var(--ink);
  min-height: 460px;
  overflow: visible;
}
.demo-preview-frame { overflow: hidden; border-radius: var(--radius-sm); }
.demo-carousel-track { position: relative; min-height: 380px; }
.demo-carousel-slide { display: none; text-decoration: none; color: inherit; }
.demo-carousel-slide.is-current { display: block; }
.demo-preview-frame {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
}
.demo-preview-dots {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1.5px solid var(--ink);
  background: var(--bg-elev);
}
.demo-preview-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(42, 24, 50, .3);
}
.demo-preview-body { display: flex; flex-direction: column; }
.demo-preview-hero { padding: 26px 20px; }
.demo-preview-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: 8px;
  opacity: .9;
}
.demo-preview-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.demo-preview-cta {
  display: inline-block;
  background: var(--cta-bg, var(--coral));
  color: var(--cta-fg, var(--paper));
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.demo-preview-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  background: var(--bg);
  border-bottom: 1.5px solid var(--ink);
  border-top: 1.5px solid var(--ink);
  color: var(--ink);
}
.demo-preview-trust strong {
  color: var(--num, var(--coral));
  font-weight: 700;
  display: block;
  font-size: 13px;
  font-family: var(--font-display);
}
.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 10px;
}
.demo-preview-grid > div {
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid var(--rule);
}
.demo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.demo-arrow-prev { left: -10px; }
.demo-arrow-next { right: -10px; }
.demo-arrow:hover { background: var(--coral); transform: translateY(-50%) scale(1.08); }
.demo-carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--rule);
  font-family: var(--font-sans);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.demo-carousel-count strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--coral);
}
.demo-carousel-trade {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.demo-carousel-explore { font-family: var(--font-display); font-weight: 700; color: var(--coral); }
.demo-carousel-explore:hover { color: var(--ink); }

/* ============================== FAQ ============================== */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: 0 4px 0 var(--ink);
  transition: box-shadow .2s, transform .2s;
}
.faq-item:hover { box-shadow: 0 6px 0 var(--ink); transform: translateY(-2px); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--coral);
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
  background: var(--ink);
}
.faq-item p {
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq-item code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-elev);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ============================== CTA FINAL ============================== */
.cta-final {
  padding: clamp(60px, 8vw, 110px) var(--gutter);
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.price-line {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  font-weight: 700;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 90px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--paper);
  text-wrap: balance;
}
.cta-final h2 .yellow {
  display: inline-block;
  position: relative;
  padding: 0 .15em;
  z-index: 1;
  color: var(--ink);
}
.cta-final h2 .yellow::before {
  content: '';
  position: absolute;
  inset: .04em -.05em;
  background: var(--yellow);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
  transform: rotate(-2deg);
}
.cta-final p {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  margin: 0 0 32px;
  color: var(--peach);
}
.cta-final .btn-primary {
  background: var(--coral);
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 4px 0 var(--paper);
}
.cta-final .btn-primary:hover {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 7px 0 var(--paper);
}

/* ============================== FOOTER ============================== */
.site-footer {
  background: var(--bg-elev);
  /* padding-left ~90px (lecteur musique fermé) ; padding-right ~90px (boutons sociaux).
     Le footer-inner gère le décalage supplémentaire quand le panneau Volume est ouvert. */
  padding: 30px max(var(--gutter), 90px);
  font-family: var(--font-sans);
  font-size: 14px;
  border-top: 1.5px solid var(--rule);
}
/* Si le panneau Volume du lecteur musique est ouvert, le footer recule encore à gauche
   pour ne pas être recouvert (le panneau ouvert fait ~280px de large). */
body:has(.fmusic.is-open) .site-footer { padding-left: 320px; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
}
.footer-inner a {
  color: var(--ink-soft);
  margin-left: 14px;
  transition: color .15s;
}
.footer-inner a:hover { color: var(--coral); }
.replay-intro {
  background: transparent;
  border: 1.5px solid var(--ink-soft);
  color: var(--ink-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  margin-left: 14px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.replay-intro:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--paper);
}

/* ============================== POLISH ============================== */
/* Texte sur blob coloré (jaune/menthe) : toujours sombre pour rester lisible
   même en thème dark où --ink devient clair. */
body[data-theme="dark"] .hero h1 .highlight,
body[data-theme="dark"] .hero h1 .text-blue,
body[data-theme="dark"] .section-head h2 .text-blue,
body[data-theme="dark"] .section-head h2 strong,
body[data-theme="dark"] .cta-final h2 .yellow,
body[data-theme="dark"] .manifest h2 strong,
body[data-theme="dark"] .demo-promo-text h2 .text-blue {
  color: #2a1832;
}

/* Eyebrow et section-eyebrow plus contrastés en thème tamisé */
body[data-theme="dim"] .eyebrow,
body[data-theme="dim"] .section-eyebrow {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}

/* Footer : empêcher les liens de passer sous les boutons sociaux flottants (à droite) */
.site-footer { padding-right: max(var(--gutter), 90px); }
.footer-inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  max-width: 100%;
}
.footer-inner > div:last-child a,
.footer-inner > div:last-child .replay-intro {
  margin-left: 0;
  white-space: nowrap;
}

/* Mini-vignette d'aperçu site client : look toujours clair, peu importe le thème
   (c'est une preview d'un vrai site, ça doit ressembler à un site sur fond clair) */
.demo-preview-frame {
  --ink:      #1a0e25;
  --ink-soft: #5e4a6b;
  --paper:    #ffffff;
  --bg:       #fdf3ec;
  --bg-elev:  #fbe9de;
  --rule:     #e8d8d0;
}

/* Cartes à fond pastel explicite : on force « surface claire » pour que le
   texte reste sombre et lisible quel que soit le thème. */
.inc-card,
.upsell-domain,
.upsell-seo,
.copy-promise,
.pro-card-inner,
.eyebrow,
.section-eyebrow,
.price-stamp {
  --ink:      #1a0e25;
  --ink-soft: #5e4a6b;
  --paper:    #ffffff;
  --rule:     #e8d8d0;
}

/* ============================== PAGE DÉMO — fixes ciblés ============================== */

/* 1. Bulle d'annotation : titre en coral, beaucoup plus lisible que --blue pâle */
.annot-bubble strong { color: var(--coral); }

/* 2. Carrousel d'avis : la flèche désactivée se cache à coup sûr */
.cust-reviews-arrow:disabled,
.cust-reviews-arrow[disabled] {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0;
}

/* 3. Section « TU AS VU ? » : surface toujours sombre + mots-clés avec blob jaune
      + bouton secondaire correctement lisible */
.demo-final {
  --ink:   #1a0e25;
  --paper: #ffffff;
}
.demo-final .btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 4px 0 var(--ink);
}
.demo-final .btn-secondary:hover {
  background: var(--mint);
  color: var(--ink);
}
.demo-final h2 .yellow {
  color: var(--yellow);
}
.demo-final h2 .yellow::before { content: none; }

/* Carrousel : flèches coral vif, bordure ink, centrées verticalement
   et débordant un peu de la vignette pour bien ressortir. */
.demo-arrow {
  top: 45%;
  background: var(--coral);
  color: #fff;
  border: 2.5px solid var(--ink);
  width: 44px;
  height: 44px;
  box-shadow: 0 3px 0 var(--ink);
}
.demo-arrow-prev { left: -14px; }
.demo-arrow-next { right: -14px; }
.demo-arrow:hover {
  background: var(--ink);
  color: var(--yellow);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 5px 0 var(--ink);
}

/* Empêcher la césure « 24,90€ / mois » sur deux lignes */
.hero h1 .price-nowrap { white-space: nowrap; }

/* ============================== REVEAL ON SCROLL ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================== ARRIVÉE SUR LE FORMULAIRE ============================== */
/* Overlay visible dès le chargement de la page, se dissipe en ~700ms pour révéler le form */
.pp-arrival {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: pp-arrival-out .45s cubic-bezier(.4,0,.2,1) .45s forwards;
}
.pp-arrival-grid {
  position: relative;
  width: 84px;
  height: 84px;
  animation: pp-arrival-scale .9s cubic-bezier(.2,.8,.3,1) forwards;
}
.pp-arrival-grid span {
  position: absolute;
  width: calc(50% - 5px);
  height: calc(50% - 5px);
  border-radius: 10px;
  animation: pp-arrival-pulse 1s ease-in-out infinite;
}
.pp-arrival-grid span:nth-child(1) { top: 0; left: 0;     background: #ff6b6b; animation-delay: 0s;   }
.pp-arrival-grid span:nth-child(2) { top: 0; right: 0;    background: #9fdec6; animation-delay: .12s; }
.pp-arrival-grid span:nth-child(3) { bottom: 0; left: 0;  background: #f4d35e; animation-delay: .24s; }
.pp-arrival-grid span:nth-child(4) { bottom: 0; right: 0; background: #d4baee; animation-delay: .36s; }
@keyframes pp-arrival-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(.72); opacity: .55; }
}
@keyframes pp-arrival-scale {
  0%   { transform: scale(.7); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}
@keyframes pp-arrival-out {
  to { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .pp-arrival { display: none; }
}

/* ============================== TRANSITION VERS FORMULAIRE ============================== */
.pp-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: pp-trans-in .25s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes pp-trans-in {
  to { opacity: 1; }
}
.pp-transition-grid {
  position: relative;
  width: 96px;
  height: 96px;
}
.pp-transition-sq {
  position: absolute;
  width: calc(50% - 5px);
  height: calc(50% - 5px);
  border-radius: 10px;
  animation: pp-trans-pulse 1s ease-in-out infinite;
}
.pp-transition-sq:nth-child(1) { top: 0; left: 0;       background: #ff6b6b; animation-delay: 0s;   }
.pp-transition-sq:nth-child(2) { top: 0; right: 0;      background: #9fdec6; animation-delay: .12s; }
.pp-transition-sq:nth-child(3) { bottom: 0; left: 0;    background: #f4d35e; animation-delay: .24s; }
.pp-transition-sq:nth-child(4) { bottom: 0; right: 0;   background: #d4baee; animation-delay: .36s; }
@keyframes pp-trans-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(.72); opacity: .55; }
}

/* ============================== LECTEUR MUSIQUE FLOTTANT ============================== */
/* Bouton rond en bas à gauche + panneau volume qui s'étend à droite */
.fmusic {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.fmusic-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, box-shadow .15s, background .15s;
  padding: 0;
  flex-shrink: 0;
}
.fmusic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--ink);
  background: var(--ink);
  color: var(--yellow);
}
.fmusic-btn:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--ink); }
.fmusic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.fmusic-icon-pause { display: none; }
.fmusic.is-playing .fmusic-icon-play { display: none; }
.fmusic.is-playing .fmusic-icon-pause { display: inline-flex; }

/* Cercles d'onde quand la musique joue */
.fmusic-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  opacity: 0;
  pointer-events: none;
}
.fmusic.is-playing .fmusic-pulse {
  animation: fmusic-pulse 1.6s ease-out infinite;
}
@keyframes fmusic-pulse {
  0%   { opacity: .55; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.4); }
}

/* Panneau volume (visible quand .is-open) — surface toujours claire pour
   rester lisible peu importe le thème de la page */
.fmusic-panel {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 2px solid #1a0e25;
  border-radius: var(--radius-pill);
  padding: 7px 8px 7px 14px;
  box-shadow: 0 3px 0 #1a0e25;
  font-size: 12px;
  color: #1a0e25;
}
.fmusic.is-open .fmusic-panel { display: inline-flex; }
.fmusic-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #1a0e25;
  letter-spacing: .02em;
}
.fmusic-vol {
  width: 110px;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-elev);
  border-radius: var(--radius-pill);
  outline: 0;
  cursor: pointer;
}
.fmusic-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
}
.fmusic-vol::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
}
.fmusic-close {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .15s, color .15s;
}
.fmusic-close:hover { background: var(--coral); color: var(--paper); }
.fmusic.is-error .fmusic-btn { background: var(--ink); opacity: .5; cursor: not-allowed; }

/* Bouton "?" du lecteur (pages démo) : ouvre l'explication, comme les réseaux */
.fmusic-info {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.fmusic-info:hover { background: var(--coral); color: var(--paper); transform: translateY(-2px); }

@media (max-width: 720px) {
  .fmusic { left: 12px; bottom: 12px; }
  .fmusic-vol { width: 80px; }
}

/* Theme switch : icônes plus contrastées et bien centrées */
.theme-btn {
  font-size: 14px;
  line-height: 1;
}
.theme-btn[data-theme-btn="light"] { font-size: 13px; }
.theme-btn[data-theme-btn="dim"]   { font-size: 14px; }
.theme-btn[data-theme-btn="dark"]  { font-size: 13px; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .upsells { grid-template-columns: 1fr; }
  .upsell-combo { transform: none; order: -1; }
  .upsell-combo:hover { transform: translateY(-4px); }
  .demo-promo { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .header-inner { grid-template-columns: auto auto; gap: 14px; }
  .nav { display: none; }
  .topbar-bonus-link { flex-direction: column; text-align: center; padding: 11px 44px; gap: 6px; }
  .included-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .demo-preview-trust { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-inner > div:last-child { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer-inner a, .replay-intro { margin-left: 0; }
}
