/* ═══════════════════════════════════════════════════════════════════════
   Boutique Lexa Moon — design DARK premium « or / ambre »
   Palette : navy profond #050816 · cartes #0F172A · accent ambre #F59E0B
   Inspiration : Stripe · Linear · Vercel — dark, glow subtil, glassmorphism.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #050816;
  --bg-soft:   #0F172A;
  --bg-card:   rgba(255,255,255,.04);
  --bg-card-h: rgba(255,255,255,.07);
  --text:      #FFFFFF;
  --muted:     #94A3B8;
  --muted-2:   #64748B;
  --border:    rgba(255,255,255,.08);
  --border-2:  rgba(255,255,255,.05);

  --i1: #F59E0B;  /* amber 500  */
  --i2: #F97316;  /* orange 500 */
  --i3: #FB923C;  /* orange 400 */
  --i4: #FDBA74;  /* amber 300  */
  --brand: #FBBF24;

  --grad:      linear-gradient(98deg, #F59E0B 0%, #F97316 38%, #FB923C 68%, #FDBA74 100%);
  --grad-soft: linear-gradient(135deg, rgba(245,158,11,.12), rgba(251,146,60,.10) 55%, rgba(253,186,116,.10));

  --shadow-sm:    0 2px 8px rgba(0,0,0,.35), 0 1px 2px rgba(0,0,0,.2);
  --shadow-md:    0 14px 40px -18px rgba(0,0,0,.55);
  --shadow-lg:    0 30px 70px -28px rgba(0,0,0,.65);
  --shadow-brand: 0 24px 60px -22px rgba(245,158,11,.65);

  --r:    1.25rem;
  --r-lg: 1.75rem;
}

/* ── Reset (Tailwind n'est plus chargé sur cette page) ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button { font-family: inherit; }
.font-display { font-family: "Plus Jakarta Sans", Inter, sans-serif; }

/* Conteneur */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 640px) { .wrap { padding-left: 2rem; padding-right: 2rem; } }

/* ── Décor : blobs dégradés diffus ── */
.blobs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob-1 { top: -10rem; left: -8rem;  width: 34rem; height: 34rem; background: radial-gradient(circle, #4f46e5, transparent 70%); opacity: .6; }
.blob-2 { top: 4rem; right: -10rem;  width: 32rem; height: 32rem; background: radial-gradient(circle, #F97316, transparent 70%); opacity: .5; }
.blob-3 { bottom: -12rem; left: 30%;  width: 36rem; height: 36rem; background: radial-gradient(circle, #f59e0b, transparent 70%); opacity: .4; }

/* ═══════════════════════════════════════════ Texte / utilitaires ══════ */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-text-anim {
  background: linear-gradient(98deg, #F59E0B, #F97316, #FB923C, #FDBA74, #F59E0B);
  background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: grad-shift 7s ease infinite;
}
@keyframes grad-shift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--brand);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: .45rem .9rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--grad); }

.section-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* ═══════════════════════════════════════════ Boutons ══════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 700; font-size: .95rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: 999px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .25s, background .25s, color .2s;
}
.btn svg { transition: transform .25s; }
.btn-primary {
  color: #fff; background: var(--grad); background-size: 160% 100%;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 28px 65px -20px rgba(124,58,237,.7); background-position: 100% 0; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  color: var(--text); background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(255,255,255,.15); }
.btn-sm { padding: .7rem 1.15rem; font-size: .85rem; }

/* ═══════════════════════════════════════════ Header ═══════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,24,.85);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 1px 24px rgba(0,0,0,.3);
}
.site-header .bar { height: 4.25rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text); }
.brand-logo {
  width: 2.3rem; height: 2.3rem; border-radius: .8rem; flex-shrink: 0;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.15rem;
  box-shadow: var(--shadow-brand);
  transition: transform .25s;
}
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); }
.brand-name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: .92rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-desktop a:hover { color: var(--text); }
.header-cta-desktop { display: none; }
.header-mobile { display: flex; align-items: center; gap: .6rem; }
@media (min-width: 900px) { .nav-desktop { display: flex; } .header-cta-desktop { display: inline-flex; } .header-mobile { display: none; } }

/* ═══════════════════════════════════════════ Hero ═════════════════════ */
.hero { text-align: center; padding-top: 4.5rem; padding-bottom: 1rem; overflow-x: clip; }
@media (min-width:768px){ .hero { padding-top: 6rem; } }

/* Grid : 1 colonne mobile (texte puis visuel), 2 colonnes desktop */
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) {
  .hero { text-align: left; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
}
.hero-copy { animation: hero-rise .8s cubic-bezier(.16,1,.3,1) both; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  letter-spacing: -.03em; line-height: 1.04;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  margin-top: 1.5rem;
}
.hero p.lead {
  margin: 1.5rem auto 0; max-width: 38rem;
  font-size: clamp(1.02rem, 2.2vw, 1.22rem); line-height: 1.6; color: var(--muted);
}
@media (min-width: 960px) { .hero p.lead { margin-left: 0; margin-right: 0; } }
.hero-cta { margin-top: 2.25rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: center; }
@media (min-width:520px){ .hero-cta { flex-direction: row; } }
@media (min-width:960px){ .hero-cta { justify-content: flex-start; } }
.hero-trust { margin-top: 2rem; display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem .9rem; font-size: .88rem; color: var(--muted-2); }
@media (min-width:960px){ .hero-trust { justify-content: flex-start; } }

/* ── Mise en scène produit (mockup livre flottant) ── */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 22rem; animation: hero-rise 1s cubic-bezier(.16,1,.3,1) .12s both; }
.hero-stage { position: relative; width: min(20rem, 80vw); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; perspective: 1200px; }

.hero-book {
  position: relative; width: 13.5rem; height: 18rem;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(6deg) rotateZ(-1deg);
  animation: book-float 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(91,75,232,.35));
}
@keyframes book-float {
  0%, 100% { transform: rotateY(-22deg) rotateX(6deg) rotateZ(-1deg) translateY(0); }
  50%       { transform: rotateY(-17deg) rotateX(3deg) rotateZ(-1deg) translateY(-14px); }
}
.hero-book-spine {
  position: absolute; left: -0.7rem; top: 0; width: 0.8rem; height: 100%;
  background: linear-gradient(180deg, #4f46e5, #7c3aed);
  border-radius: .35rem 0 0 .35rem;
  transform: rotateY(72deg) translateZ(.1rem); transform-origin: right center;
  box-shadow: inset -3px 0 6px rgba(0,0,0,.25);
}
.hero-book-cover {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  border-radius: .35rem 1rem 1rem .35rem;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(255,255,255,.22), transparent 55%),
    var(--grad);
  background-size: 100% 100%, 180% 180%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), inset 8px 0 18px rgba(0,0,0,.18);
  padding: 1.6rem 1.4rem; color: #fff;
  display: flex; flex-direction: column;
}
.hero-book-badge {
  align-self: flex-start; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.95); color: var(--brand);
  padding: .3rem .6rem; border-radius: 999px; box-shadow: 0 6px 14px rgba(0,0,0,.18);
}
.hero-book-emoji { font-size: 3.2rem; line-height: 1; margin: 1.3rem 0 .9rem; filter: drop-shadow(0 8px 14px rgba(0,0,0,.25)); }
.hero-book-kicker { font-size: .6rem; font-weight: 700; letter-spacing: .16em; opacity: .85; }
.hero-book-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.35rem; line-height: 1.15; letter-spacing: -.01em; margin-top: .45rem; }
.hero-book-author { margin-top: auto; font-size: .78rem; font-weight: 600; opacity: .9; }
.hero-book-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.45) 50%, transparent 62%);
  transform: translateX(-120%); animation: book-shine 5.5s ease-in-out infinite;
}
@keyframes book-shine {
  0%, 62%, 100% { transform: translateX(-120%); }
  78%            { transform: translateX(120%); }
}

/* Pills flottantes en verre */
.hero-pill {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .78rem; color: var(--text);
  background: rgba(13,16,35,.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  padding: .55rem .8rem; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  white-space: nowrap;
}
.hero-pill .hp-ico { width: 1.1rem; height: 1.1rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; color: #fff; }
.hp-amber { background: linear-gradient(135deg,#F59E0B,#FDBA74); }
.hp-emerald { background: linear-gradient(135deg,#10B981,#2DD4BF); }
.hero-pill .hp-stars { color: #F59E0B; letter-spacing: 1px; font-size: .85rem; }
.hero-pill-price { flex-direction: column; align-items: flex-start; gap: 0; padding: .55rem .9rem; }
.hp-price { font-size: 1.1rem; font-weight: 800; }
.hp-note { font-size: .58rem; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }

.hero-pill-1 { top: 6%;  left: -6%;  animation: pill-float 5s ease-in-out infinite; }
.hero-pill-2 { top: 2%;  right: -2%; animation: pill-float 6.5s ease-in-out .4s infinite; }
.hero-pill-3 { bottom: 16%; left: -10%; animation: pill-float 5.8s ease-in-out .9s infinite; }
.hero-pill-price { bottom: 6%; right: -6%; animation: pill-float 6s ease-in-out .2s infinite; }
@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@media (max-width: 600px) {
  .hero-pill-1 { left: 2%; }  .hero-pill-3 { left: 0; }
  .hero-pill-2 { right: 2%; } .hero-pill-price { right: 0; }
}
.hero-trust .stars { color: #F59E0B; letter-spacing: 1px; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: #cbd2e0; }

/* avatars empilés */
.avatars { display: inline-flex; }
.avatars span {
  width: 1.9rem; height: 1.9rem; border-radius: 50%; margin-left: -.5rem;
  border: 2px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #fff; box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }

/* ── Bandeau preuve sociale ── */
.proof { margin-top: 3.5rem; }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .6rem; max-width: 46rem; margin: 0 auto; }
@media (min-width:640px){ .proof-grid { gap: 1.25rem; } }
.proof-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.1rem .5rem; text-align: center; box-shadow: var(--shadow-sm); min-width: 0;
}
@media (min-width:640px){ .proof-card { padding: 1.4rem 1rem; } }
.proof-num { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(1.05rem,5vw,2rem); line-height: 1.1; }
.proof-label { margin-top: .25rem; font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; }

/* ═══════════════════════════════════════════ Sections ═════════════════ */
.section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
@media (min-width:768px){ .section { padding-top: 6rem; padding-bottom: 6rem; } }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800;
  font-size: clamp(1.9rem,5vw,3rem); letter-spacing: -.02em; margin-top: .75rem;
}
.section-head h2::after {
  content: ''; display: block; width: 3.5rem; height: 4px; margin: 1rem auto 0;
  border-radius: 999px; background: var(--grad);
  transform: scaleX(.3); opacity: 0; transform-origin: center;
  transition: transform .6s cubic-bezier(.16,1,.3,1) .15s, opacity .5s .15s;
}
.section-head.is-visible h2::after { transform: scaleX(1); opacity: 1; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

/* ═══════════════════════════════════════════ Cartes produit ═══════════ */
.products-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }

/* 1 seul produit : carte centrée et plus grande */
.products-grid.count-1 { max-width: 30rem; margin-left: auto; margin-right: auto; }

/* 2 produits : moitié-moitié côte à côte (desktop), bloc centré */
@media (min-width:700px){
  .products-grid.count-2 { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 60rem; margin-left: auto; margin-right: auto; }
}

/* 3 produits et plus : 2 par ligne (tablette) puis 3 max (desktop) */
@media (min-width:640px){ .products-grid.count-3plus { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width:980px){ .products-grid.count-3plus { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.product-card {
  position: relative; display: flex; flex-direction: column;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s, background .35s;
}
.product-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(245,158,11,.3);
  transform: translateY(-8px);
}

.product-cover {
  position: relative; height: 9.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--cover, var(--grad-soft));
  border-bottom: 1px solid var(--border-2);
  overflow: hidden;
}
.product-cover-symbol { font-size: 3.4rem; line-height: 1; filter: drop-shadow(0 10px 20px rgba(15,23,42,.18)); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.product-card:hover .product-cover-symbol { transform: translateY(-4px) scale(1.06); }

.product-badge {
  position: absolute; top: .9rem; left: .9rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: .55rem;
  background: rgba(8,11,24,.8); color: var(--text);
  border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(4px);
}
.product-highlight {
  position: absolute; top: .9rem; right: .9rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .03em;
  padding: .34rem .65rem; border-radius: .55rem;
  background: var(--grad); color: #fff; box-shadow: var(--shadow-brand);
}
.product-highlight.is-soon {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(251,146,60,.12));
  color: var(--brand); border: 1px solid rgba(245,158,11,.28);
  box-shadow: var(--shadow-sm); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.product-highlight.is-soon::before {
  content: ''; width: .45rem; height: .45rem; border-radius: 50%; flex-shrink: 0;
  background: var(--grad);
  animation: soon-pulse 1.8s ease-out infinite;
}
@keyframes soon-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,.55); }
  70%  { box-shadow: 0 0 0 5px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.product-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-rating { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--muted-2); margin-bottom: .6rem; }
.product-rating .stars { color: #F59E0B; letter-spacing: .5px; }
.product-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.2rem; line-height: 1.25; letter-spacing: -.01em; }
.product-tagline { margin-top: .35rem; font-size: .85rem; color: var(--brand); font-weight: 600; }
.product-desc { margin-top: .85rem; font-size: .9rem; line-height: 1.55; color: var(--muted); }

.product-features { margin-top: 1.1rem; display: grid; gap: .5rem; }
.product-feature { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text); font-weight: 500; }
.product-feature .check {
  flex-shrink: 0; width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--grad-soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.product-feature .check svg { width: .7rem; height: .7rem; }

.product-foot { margin-top: 1.4rem; padding-top: 1.25rem; border-top: 1px solid var(--border-2); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.product-price-wrap { display: flex; flex-direction: column; gap: .15rem; }
.product-price-row { display: flex; align-items: baseline; gap: .5rem; }
.product-price { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.5rem; }
.product-oldprice { font-size: .95rem; color: var(--muted-2); text-decoration: line-through; }
.product-price-note { font-size: .72rem; color: var(--muted-2); }
.product-price-soon { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1rem; color: var(--muted-2); }

.product-cta {
  display: inline-flex; align-items: center; gap: .4rem; flex-shrink: 0;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .85rem; white-space: nowrap;
  padding: .7rem 1.1rem; border-radius: 999px; text-decoration: none;
  background: var(--grad); color: #fff; box-shadow: var(--shadow-brand);
  transition: transform .2s, box-shadow .25s;
}
.product-cta svg { transition: transform .25s; }
.product-card:hover .product-cta { transform: translateY(-1px); }
.product-card:hover .product-cta svg { transform: translateX(3px); }
.product-cta.is-disabled { background: var(--bg-card); color: var(--muted-2); border: 1px solid var(--border); box-shadow: none; cursor: default; }

.product-card.is-soon { opacity: .9; }
.product-link-cover { position: absolute; inset: 0; z-index: 1; }
.product-foot, .product-features, .product-rating { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════ Réassurance ══════════════ */
.trust-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width:560px){ .trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:920px){ .trust-grid { grid-template-columns: repeat(4,1fr); } }
.trust-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon { width: 3rem; height: 3rem; border-radius: .9rem; background: var(--grad-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.trust-icon svg { width: 1.5rem; height: 1.5rem; }
.trust-card h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.05rem; }
.trust-card p { margin-top: .45rem; font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════ Témoignages ═════════════ */
.tm-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width:720px){ .tm-grid { grid-template-columns: repeat(3,1fr); } }
.tm-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tm-stars { color: #F59E0B; letter-spacing: 1px; font-size: .95rem; }
.tm-quote { margin-top: 1rem; font-size: .98rem; line-height: 1.6; color: var(--text); flex: 1; }
.tm-author { margin-top: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.tm-avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-family: "Plus Jakarta Sans", sans-serif; flex-shrink: 0; }
.tm-name { font-weight: 700; font-size: .92rem; }
.tm-role { font-size: .78rem; color: var(--muted-2); }

/* ═══════════════════════════════════════════ FAQ ═════════════════════ */
.faq-list { max-width: 46rem; margin: 0 auto; display: flex; flex-direction: column; gap: .85rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.4rem; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 1rem; color: var(--text);
}
.faq-icon { flex-shrink: 0; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--grad-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ═══════════════════════════════════════════ Newsletter ══════════════ */
.newsletter { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 3rem 1.5rem; text-align: center; background: var(--grad); box-shadow: var(--shadow-brand); }
@media (min-width:768px){ .newsletter { padding: 4rem; } }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,.25), transparent 70%); pointer-events: none; }
.newsletter h2 { position: relative; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; color: #fff; font-size: clamp(1.7rem,4.5vw,2.5rem); letter-spacing: -.02em; }
.newsletter p { position: relative; margin: .9rem auto 0; max-width: 34rem; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.newsletter-form { position: relative; margin: 2rem auto 0; max-width: 30rem; display: flex; flex-direction: column; gap: .6rem; }
@media (min-width:520px){ .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; padding: .95rem 1.25rem; border-radius: 999px; border: 0; font-size: .95rem; background: rgba(255,255,255,.15); color: var(--text); box-shadow: var(--shadow-sm); }
.newsletter-input::placeholder { color: rgba(255,255,255,.7); }
.newsletter-input:focus { outline: 2px solid rgba(255,255,255,.7); outline-offset: 2px; }
.newsletter-btn { padding: .95rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .95rem; background: #050816; color: #fff; transition: transform .2s, background .2s; }
.newsletter-btn:hover { transform: translateY(-2px); background: #0F172A; }
.newsletter-note { position: relative; margin-top: 1rem; font-size: .8rem; color: rgba(255,255,255,.8); }
.newsletter-success { position: relative; margin-top: 1.5rem; display: none; align-items: center; justify-content: center; gap: .5rem; color: #fff; font-weight: 600; }
.newsletter.done .newsletter-form { display: none; }
.newsletter.done .newsletter-success { display: inline-flex; }

/* ═══════════════════════════════════════════ Footer ══════════════════ */
.site-footer { border-top: 1px solid rgba(255,255,255,.06); background: var(--bg-soft); }
.footer-top { display: flex; flex-direction: column; gap: 2rem; padding: 3.5rem 0; }
@media (min-width:760px){ .footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-tagline { margin-top: .9rem; max-width: 24rem; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.socials { display: flex; gap: .6rem; }
.social {
  width: 2.6rem; height: 2.6rem; border-radius: .8rem; display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--muted); box-shadow: var(--shadow-sm);
  transition: transform .2s, color .2s, border-color .2s;
}
.social:hover { transform: translateY(-3px); }
.social.yt:hover { color: #FF0000; border-color: #fecaca; }
.social.x:hover  { color: #FFFFFF; border-color: rgba(255,255,255,.3); }
.footer-bottom { border-top: 1px solid var(--border-2); padding: 1.5rem 0; font-size: .82rem; color: var(--muted-2); display: flex; flex-direction: column; gap: .6rem; }
@media (min-width:600px){ .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ═══════════════════════════════════════════ Burger / menu mobile ════ */
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; padding: 0; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); cursor: pointer; flex-shrink: 0;
}
.nav-burger-bar { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s, width .2s; transform-origin: center; }
.nav-burger.is-open .nav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .nav-burger-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.is-open .nav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { position: fixed; inset: 0; z-index: 9500; display: flex; justify-content: flex-end; }
.nav-mobile[hidden] { display: none !important; }
.nav-mobile-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.4); backdrop-filter: blur(3px); animation: nm-fade .22s ease both; }
@keyframes nm-fade { from{opacity:0} to{opacity:1} }
.nav-mobile-panel {
  position: relative; z-index: 1; width: min(310px, 84vw); height: 100%; background: var(--bg-soft);
  border-left: 1px solid var(--border); display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: -20px 0 60px -12px rgba(0,0,0,.5); animation: nm-slide .3s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes nm-slide { from{transform:translateX(100%);opacity:.6} to{transform:translateX(0);opacity:1} }
.nav-mobile-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.1rem; border-bottom: 1px solid var(--border-2); }
.nav-mobile-close { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.nav-mobile-close:hover { background: var(--bg-card-h); color: var(--text); }
.nav-mobile-links { padding: .5rem 0; }
.nav-mobile-link { display: flex; align-items: center; gap: .8rem; padding: .9rem 1.2rem; font-weight: 600; font-size: .98rem; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border-2); transition: background .15s; }
.nav-mobile-link:hover { background: var(--bg-card); }
.nav-mobile-link .ico { font-size: 1.05rem; }
.nav-mobile-foot { margin-top: auto; padding: 1.1rem; border-top: 1px solid var(--border-2); }
.nav-mobile-foot .btn { width: 100%; }

/* ═══════════════════════════════════════════ Footer link bouton ═════ */
.footer-bottom-right { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1.1rem; }
.footer-link-btn { background: none; border: 0; padding: 0; cursor: pointer; color: var(--muted-2); font: inherit; font-size: .82rem; text-decoration: underline; text-underline-offset: 2px; }
.footer-link-btn:hover { color: var(--brand); }

/* ═══════════════════════════════════════════ Consentement cookies ════ */
.cmp-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9800;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  animation: cmp-up .35s cubic-bezier(.16,1,.3,1) both;
}
.cmp-banner[hidden] { display: none; }
@keyframes cmp-up { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cmp-banner-inner { display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; }
.cmp-emoji { font-size: 1.6rem; line-height: 1; }
.cmp-heading { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1rem; }
.cmp-body { margin-top: .3rem; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.cmp-link { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cmp-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cmp-btn { flex: 1; min-width: 8rem; padding: .7rem 1rem; border-radius: 999px; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .85rem; cursor: pointer; border: 0; transition: transform .15s, box-shadow .2s, background .2s, color .2s; }
.cmp-btn-primary { color: #fff; background: var(--grad); box-shadow: var(--shadow-brand); }
.cmp-btn-primary:hover { transform: translateY(-1px); }
.cmp-btn-outline { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.cmp-btn-outline:hover { background: var(--bg-card-h); }
.cmp-btn-ghost { background: none; color: var(--muted); }
.cmp-btn-ghost:hover { color: var(--text); }
@media (min-width: 760px) {
  .cmp-banner { left: 50%; right: auto; transform: translateX(-50%); max-width: 60rem; width: calc(100% - 2rem); }
  @keyframes cmp-up { from { transform: translateX(-50%) translateY(20px); opacity: 0; } to { transform: translateX(-50%); opacity: 1; } }
  .cmp-banner-inner { flex-direction: row; align-items: center; gap: 1.25rem; padding: 1.1rem 1.4rem; }
  .cmp-emoji { font-size: 2rem; }
  .cmp-text { flex: 1; }
  .cmp-actions { flex: 0 0 auto; }
  .cmp-btn { flex: 0 0 auto; min-width: 0; }
}

/* Modale préférences */
.cmp-overlay { position: fixed; inset: 0; z-index: 9900; display: flex; align-items: center; justify-content: center; padding: 1rem; background: rgba(15,23,42,.45); backdrop-filter: blur(3px); animation: nm-fade .2s ease both; }
.cmp-overlay[hidden] { display: none; }
.cmp-modal { width: 100%; max-width: 30rem; max-height: 90vh; overflow-y: auto; background: var(--bg-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); animation: cmp-pop .3s cubic-bezier(.16,1,.3,1) both; }
@keyframes cmp-pop { from { transform: scale(.96) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.cmp-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.4rem; border-bottom: 1px solid var(--border-2); }
.cmp-modal-title { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.05rem; }
.cmp-modal-close { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cmp-modal-close:hover { background: var(--bg-card-h); color: var(--text); }
.cmp-modal-body { padding: 1.25rem 1.4rem; }
.cmp-modal-intro { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.cmp-cat { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--border-2); }
.cmp-cat-name { font-weight: 700; font-size: .92rem; }
.cmp-cat-desc { margin-top: .2rem; font-size: .8rem; color: var(--muted-2); line-height: 1.45; }
.cmp-always { flex-shrink: 0; font-size: .72rem; font-weight: 700; color: var(--brand); background: var(--grad-soft); padding: .3rem .6rem; border-radius: 999px; }
.cmp-modal-foot { display: flex; gap: .6rem; padding: 1.1rem 1.4rem; border-top: 1px solid var(--border-2); }
.cmp-modal-foot .cmp-btn { flex: 1; min-width: 0; }

/* Interrupteur */
.cmp-switch { flex-shrink: 0; cursor: pointer; }
.cmp-switch-input { position: absolute; opacity: 0; width: 0; height: 0; }
.cmp-switch-track { display: block; width: 44px; height: 26px; border-radius: 999px; background: #cbd2e0; transition: background .2s; position: relative; }
.cmp-switch-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s; }
.cmp-switch-input:checked + .cmp-switch-track { background: var(--brand); }
.cmp-switch-input:checked + .cmp-switch-track .cmp-switch-thumb { transform: translateX(18px); }
.cmp-switch-input:focus-visible + .cmp-switch-track { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Bouton flottant */
.cmp-float { position: fixed; left: 1rem; bottom: 1rem; z-index: 9700; width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted); box-shadow: var(--shadow-md); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .2s, color .2s; }
.cmp-float[hidden] { display: none; }
.cmp-float:hover { transform: translateY(-2px); color: var(--brand); }

/* ═══════════════════════════════════════════ Reveal au scroll ════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════ Reduced motion ══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grad-text-anim { animation: none !important; }
  .nav-mobile-panel, .nav-mobile-backdrop { animation: none !important; }
  .cmp-banner, .cmp-overlay, .cmp-modal { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product-card, .product-cover-symbol, .product-cta svg, .btn, .btn svg, .faq-a { transition: none !important; }
}

/* ═══════════════════════════════════════════ Améliorations v2 ════════ */

/* ─── Scroll progress bar ─── */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 3px; background: linear-gradient(90deg, #F59E0B, #F97316, #F59E0B);
  transform-origin: left center; transform: scaleX(0);
  will-change: transform; pointer-events: none;
}

/* ─── Blob float animations ─── */
@keyframes blob-drift-1 {
  0%,  100% { transform: translate(0, 0) scale(1); }
  25%        { transform: translate(24px, -18px) scale(1.04); }
  50%        { transform: translate(-12px, 22px) scale(.97); }
  75%        { transform: translate(16px, 8px) scale(1.02); }
}
@keyframes blob-drift-2 {
  0%,  100% { transform: translate(0, 0) scale(1); }
  30%        { transform: translate(-28px, 18px) scale(1.05); }
  65%        { transform: translate(14px, -22px) scale(.96); }
}
@keyframes blob-drift-3 {
  0%,  100% { transform: translate(0, 0) scale(1); }
  40%        { transform: translate(-18px, -14px) scale(1.03); }
  75%        { transform: translate(22px, 18px) scale(.98); }
}
.blob-1 { animation: blob-drift-1 22s ease-in-out infinite; }
.blob-2 { animation: blob-drift-2 27s ease-in-out infinite; }
.blob-3 { animation: blob-drift-3 19s ease-in-out infinite; }

/* ─── Eyebrow dot pulse ─── */
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.65); }
  70%       { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}
.eyebrow .dot { animation: dot-pulse 2.8s ease-out infinite; }

/* ─── Hero glow ─── */
.hero { position: relative; }
.hero-glow {
  position: absolute; top: 25%; left: 50%; z-index: -1;
  width: min(700px, 95vw); height: 380px;
  background: radial-gradient(ellipse, rgba(245,158,11,.17) 0%, rgba(251,146,60,.11) 42%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: hero-glow-breathe 8s ease-in-out infinite;
}
@keyframes hero-glow-breathe {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.12); }
}

/* ─── Product card shimmer ─── */
.product-card::before {
  content: ''; position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(108deg, transparent 34%, rgba(255,255,255,.08) 50%, transparent 66%);
  transform: translateX(-120%);
  pointer-events: none; border-radius: var(--r-lg);
}
.product-card:hover::before {
  transform: translateX(120%);
  transition: transform .68s cubic-bezier(.16,1,.3,1);
}

/* ─── Featured card — pulsing gradient shadow ─── */
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(245,158,11,.28), var(--shadow-sm); }
  50%       { box-shadow: 0 0 0 2px rgba(249,115,22,.55), var(--shadow-brand); }
}
.product-card.is-featured { animation: featured-glow 4s ease-in-out infinite; }
.product-card.is-featured:hover { animation: none; }

/* ─── Count-up landing micro-bounce ─── */
@keyframes count-land {
  from { opacity: .45; transform: scale(1.2) translateY(-5px); }
  to   { opacity: 1;   transform: scale(1)   translateY(0); }
}
.proof-num.count-done { animation: count-land .48s cubic-bezier(.16,1,.3,1) both; }

/* ─── Proof card hover ─── */
.proof-card {
  cursor: default;
  transition: transform .32s cubic-bezier(.16,1,.3,1), box-shadow .32s;
}
.proof-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ─── Reveal variants (directional) ─── */
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .65s ease, transform .65s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .65s ease, transform .65s cubic-bezier(.16,1,.3,1); }
.reveal-scale { opacity: 0; transform: scale(.88);         transition: opacity .65s ease, transform .65s cubic-bezier(.16,1,.3,1); }
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* ─── Trust icon animate ─── */
.trust-icon { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.trust-card:hover .trust-icon { transform: scale(1.12) rotate(-5deg); }

/* ─── Trust cards : numéro dégradé + barre supérieure animée ─── */
.trust-grid { counter-reset: trust; }
.trust-card { position: relative; overflow: hidden; }
.trust-card::before {
  counter-increment: trust; content: counter(trust, decimal-leading-zero);
  position: absolute; top: .9rem; right: 1.1rem;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.5rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; opacity: .28;
  transition: opacity .3s, transform .3s cubic-bezier(.16,1,.3,1);
}
.trust-card:hover::before { opacity: .6; transform: scale(1.08); }
.trust-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.trust-card:hover::after { transform: scaleX(1); }

/* ─── Testimonial card : grande guillemet dégradée + hover ─── */
.tm-card { position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.tm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tm-card::before {
  content: '\201C'; position: absolute; top: -1.2rem; right: .6rem;
  font-family: Georgia, "Times New Roman", serif; font-size: 7rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; opacity: .14;
  pointer-events: none; transition: opacity .3s, transform .4s cubic-bezier(.16,1,.3,1);
}
.tm-card:hover::before { opacity: .26; transform: translateY(3px) rotate(-4deg); }
.tm-stars, .tm-quote, .tm-author { position: relative; z-index: 1; }

/* ─── Newsletter animated shimmer ─── */
.newsletter::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(118deg, transparent 28%, rgba(255,255,255,.09) 50%, transparent 72%);
  background-size: 300% 100%;
  animation: nl-shimmer 7s ease-in-out infinite;
  pointer-events: none; border-radius: var(--r-lg);
}
@keyframes nl-shimmer {
  0%   { background-position: 110% 50%; }
  50%  { background-position: -10% 50%; }
  100% { background-position: 110% 50%; }
}
.newsletter > * { position: relative; z-index: 1; }

/* ─── FAQ open/hover accent ─── */
.faq-item { transition: border-color .2s; }
.faq-item:not(.open):hover { border-color: rgba(255,255,255,.15); }
.faq-item.open { border-color: var(--brand); }

/* ─── Mobile nav icon fix ─── */
.nav-mobile-link .ico {
  display: flex; align-items: center; justify-content: center;
  width: 1.4rem; flex-shrink: 0; color: var(--brand);
}

/* ─── Auréole conique rotative derrière le livre ─── */
@property --spin { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.hero-stage::before {
  content: ''; position: absolute; top: 50%; left: 50%; z-index: -1;
  width: 17rem; height: 17rem; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from var(--spin),
    rgba(245,158,11,0) 0%, rgba(249,115,22,.45) 22%, rgba(245,158,11,0) 40%,
    rgba(253,186,116,.42) 65%, rgba(251,146,60,0) 82%, rgba(245,158,11,0) 100%);
  filter: blur(42px); opacity: .9;
  animation: spin-glow 9s linear infinite;
}
@keyframes spin-glow { to { --spin: 360deg; } }

/* Parallaxe : réactivité douce pendant le suivi souris */
.hero-book, .hero-pill { will-change: transform; }

/* ─── Bandeau crypto défilant ─── */
.marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(8,11,24,.6); backdrop-filter: blur(6px);
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee-scroll 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; letter-spacing: -.01em;
  font-size: clamp(1.1rem, 3vw, 1.7rem); white-space: nowrap;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; opacity: .42;
  transition: opacity .25s;
}
.marquee-item.alt { -webkit-text-fill-color: var(--muted-2); color: var(--muted-2); opacity: .5; background: none; }
.marquee-dot { width: .45rem; height: .45rem; border-radius: 50%; background: var(--grad); flex-shrink: 0; opacity: .5; }

/* ─── Tilt 3D des cartes (suivi curseur) ─── */
.product-card, .trust-card { transform-style: preserve-3d; }
.product-card.tilting, .trust-card.tilting { transition: transform .12s ease-out, box-shadow .35s !important; }
.product-card.tilting .product-cover-symbol,
.product-card.tilting .product-badge,
.product-card.tilting .product-highlight { transform: translateZ(38px); }

/* ─── Boutons magnétiques ─── */
.btn-primary { will-change: transform; }

/* ─── Cartes produit : couverture enrichie ─── */
.product-cover { height: 11rem; }
.product-cover-glow {
  position: absolute; width: 9rem; height: 9rem; border-radius: 50%; z-index: 0;
  background: var(--grad); filter: blur(40px); opacity: .38;
  transition: opacity .4s, transform .5s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-cover-glow { opacity: .55; transform: scale(1.18); }
.product-cover-ghost {
  position: absolute; bottom: -1.6rem; right: -.6rem; z-index: 0;
  font-size: 7rem; line-height: 1; opacity: .13;
  transform: rotate(-8deg); pointer-events: none; user-select: none;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-cover-ghost { transform: rotate(-4deg) scale(1.08); }
.product-cover-symbol { position: relative; z-index: 1; }

/* Prix dégradé + badge d'économie */
.product-price.grad-text { font-size: 1.6rem; }
.product-save {
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: .68rem;
  color: #fff; background: linear-gradient(135deg,#10B981,#2DD4BF);
  padding: .22rem .45rem; border-radius: .45rem; letter-spacing: .02em; align-self: center;
  box-shadow: 0 6px 14px -4px rgba(16,185,129,.5);
}

/* Réassurance sous le CTA */
.product-assure {
  margin-top: 1.1rem; padding-top: .95rem; border-top: 1px dashed var(--border);
  display: flex; flex-wrap: wrap; gap: .45rem 1.1rem; position: relative; z-index: 2;
}
.pa-item { display: inline-flex; align-items: center; gap: .38rem; font-size: .72rem; font-weight: 600; color: var(--muted-2); }
.pa-ico { width: 1rem; height: 1rem; color: var(--brand); flex-shrink: 0; display: inline-flex; }
.pa-ico svg { width: 100%; height: 100%; }

/* Carte phare : halo plus présent + barre dégradée en tête */
.product-card.is-featured .product-cover-glow { opacity: .52; }
.product-card.is-featured .product-cover { background: var(--grad-soft), var(--cover); }

/* ─── Reduced motion overrides (v2) ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-stage::before { animation: none !important; }
  .marquee-track      { animation: none !important; }
  .blob-1, .blob-2, .blob-3   { animation: none !important; }
  .hero-glow                  { animation: none !important; }
  .eyebrow .dot               { animation: none !important; }
  .product-card.is-featured   { animation: none !important; }
  .newsletter::after          { animation: none !important; }
  .scroll-progress-bar        { display: none; }
  .product-highlight.is-soon::before { animation: none !important; }
  .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-copy, .hero-visual    { animation: none !important; }
  .hero-book                  { animation: none !important; transform: rotateY(-18deg) rotateX(4deg); }
  .hero-book-shine, .hero-pill { animation: none !important; }
}

/* ─── Sélection text ─── */
::selection { background: rgba(245,158,11,.35); color: #fff; }

/* ─── Scrollbar custom ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.18); }
