/* ═══════════════════════════════════════════════════════════
   EDITH v5 — Dynamic Dark Premium
   Font: Outfit (tous les poids)
   Palette: #09090b / #8b5cf6 violet / #06b6d4 cyan / #fff
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #09090b;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: 'Outfit', sans-serif; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ─── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --v:      #8b5cf6;
  --vd:     #6d28d9;
  --va:     rgba(139,92,246,.15);
  --acc:    #06b6d4;
  --bg:     #09090b;
  --bg2:    #0d0d10;    /* sections légèrement plus claires */
  --bg3:    #111116;
  --s1:     #111113;
  --s2:     rgba(255,255,255,.04);
  --brd:    rgba(255,255,255,.08);
  --bh:     rgba(255,255,255,.2);
  --txt:    #fff;
  --muted:  rgba(255,255,255,.55);  /* ↑ plus lisible qu'avant */
  --sub:    rgba(255,255,255,.72);  /* ↑ idem */
  --r:      1rem;
  --rl:     1.5rem;
  --rxl:    2rem;
  --nav:    64px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
em { font-style: italic; font-weight: inherit; }
p  { line-height: 1.75; font-size: .95rem; color: var(--sub); }

/* ─── PAGE ROUTING ───────────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; animation: pageIn .35s cubic-bezier(.22,1,.36,1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-inner { padding-top: calc(var(--nav) + 3.5rem); padding-bottom: 7rem; }

/* ─── SECTION ALTERNATING BACKGROUNDS ───────────────────── */
/* Utilise .sec-alt sur les sections pour alterner les fonds */
.sec-alt   { background: var(--bg2); }
.sec-alt2  { background: var(--bg3); }
.sec-v     {
  background: linear-gradient(160deg,
    rgba(139,92,246,.07) 0%,
    rgba(9,9,11,1) 60%);
}

/* ─── REVEAL ON SCROLL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
              transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── CURSOR GLOW ────────────────────────────────────────── */
.cursor-glow {
  pointer-events: none; position: fixed; z-index: 0;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.07) 0%, transparent 65%);
  transform: translate(-50%,-50%);
  transition: left .1s ease, top .1s ease;
  will-change: left, top;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: 1120px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ─── DECORATIVE GRID OVERLAY ────────────────────────────── */
/* Optionnel : ajoute .has-grid sur une section pour un fond grille subtil */
.has-grid {
  position: relative;
}
.has-grid::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.has-grid > * { position: relative; z-index: 1; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2.1rem; border-radius: .75rem;
  background: #fff; color: #000;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .92rem;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  min-height: 48px; cursor: pointer; border: none; touch-action: manipulation;
}
.btn-primary:hover {
  opacity: .9; transform: scale(1.025);
  box-shadow: 0 0 30px rgba(255,255,255,.12);
}
.btn-primary:active { transform: scale(.97); }
.btn-xl { padding: 1.1rem 2.75rem; font-size: 1rem; border-radius: .875rem; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2.1rem; border-radius: .75rem;
  background: rgba(255,255,255,.05); color: #fff;
  border: 1px solid var(--brd);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .92rem;
  transition: background .2s, border-color .2s, transform .2s;
  min-height: 48px; cursor: pointer; touch-action: manipulation;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1); border-color: var(--bh);
  transform: scale(1.02);
}

/* ─── SHARED TEXT ELEMENTS ───────────────────────────────── */
.eyebrow {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--v);
  margin-bottom: .75rem; display: block;
}
.section-header { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.section-h2 {
  font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .75rem; color: #fff;
}
.section-h2 em { color: var(--v); }
.section-sub { font-size: .95rem; color: var(--muted); }

.inner-header {
  text-align: center; max-width: 640px; margin: 0 auto 4.5rem;
}
.inner-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.1rem; color: #fff; }
.inner-h1 em { color: var(--v); }
.inner-sub { font-size: 1.05rem; color: var(--muted); max-width: 500px; margin: 0 auto; }
.inner-cta-footer { text-align: center; margin-top: 3.5rem; }
.inner-cta-footer p { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav); display: flex; align-items: center;
  justify-content: space-between; padding: 0 clamp(1rem,3vw,2rem);
  background: rgba(9,9,11,.9); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--brd);
}
.nav-brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.25rem;
  letter-spacing: -.05em; color: #fff; background: none; border: none;
  cursor: pointer; min-height: 44px; display: flex; align-items: center;
}
.nav-center { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .4rem .9rem; border-radius: .5rem;
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: color .2s, background .2s; min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--v); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-cta {
  padding: .45rem 1.1rem; border-radius: .625rem;
  background: #fff; color: #000;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .8rem;
  transition: opacity .2s, transform .2s; min-height: 40px;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { opacity: .88; transform: scale(1.02); }

/* ─── BURGER ─────────────────────────────────────────────── */
.burger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 6px; width: 44px; height: 44px;
  border-radius: .5rem; background: rgba(255,255,255,.06);
  border: 1px solid var(--brd); transition: background .2s;
}
.burger:hover { background: rgba(255,255,255,.12); }
.burger span {
  display: block; width: 18px; height: 1.5px; background: #fff;
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
@media (max-width: 900px) {
  .nav-center, .nav-cta { display: none; }
  .burger { display: flex; }
  .navbar { padding: 0 1rem; }
}

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(9,9,11,.97); backdrop-filter: blur(28px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(.22,1,.36,1);
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
.mob-menu-inner {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  width: 100%; max-width: 360px; padding: 2rem;
  transform: translateY(20px);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.mob-menu.open .mob-menu-inner { transform: translateY(0); }
.mob-link {
  width: 100%; text-align: center; padding: .9rem;
  border-radius: var(--r); font-size: 1.15rem; font-weight: 600;
  color: var(--muted); transition: color .2s, background .2s;
  min-height: 52px; display: flex; align-items: center; justify-content: center;
}
.mob-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.mob-cta { margin-top: .75rem; width: 100%; min-height: 52px; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 300;
  display: flex; align-items: center; gap: .75rem; max-width: 320px;
  padding: .9rem 1.1rem; border-radius: var(--r);
  background: rgba(9,9,11,.97); border: 1px solid var(--brd);
  backdrop-filter: blur(20px); box-shadow: 0 16px 40px rgba(0,0,0,.5);
  font-size: .82rem; color: rgba(255,255,255,.9);
  transform: translateY(100px); opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
#toast-x { color: var(--muted); font-size: .9rem; opacity: .6; transition: opacity .2s; }
#toast-x:hover { opacity: 1; }
@media (max-width: 480px) { .toast { left: 1rem; right: 1rem; max-width: none; } }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: calc(var(--nav) + 5rem) clamp(1rem,4vw,2rem) 5rem;
  max-width: 1200px; margin: 0 auto;
}
.hero-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  background-size: 300px;
}
.hero-left { position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .25rem .9rem; border-radius: 999px;
  background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.25);
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--v); margin-bottom: 1.75rem;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--v); animation: blink 1.5s infinite; }
.hero-h1 {
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  line-height: .92; letter-spacing: -.04em; color: #fff; margin-bottom: 1.75rem;
}
.hero-h1 em { color: var(--v); }
.hero-sub {
  font-size: clamp(.92rem, 1.5vw, 1.05rem); color: var(--sub);
  max-width: 420px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust span { font-size: .82rem; color: var(--muted); }

.hero-right { position: relative; z-index: 2; }
.hero-video-wrap { position: relative; }
.hero-video-player {
  position: relative; aspect-ratio: 16/9; border-radius: var(--rl);
  overflow: hidden; background: #000; cursor: pointer;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-video-player:hover { transform: translateY(-4px); box-shadow: 0 56px 100px rgba(0,0,0,.7); }
.hvp-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(109,40,217,.75), rgba(9,9,11,.9) 55%, rgba(6,182,212,.35));
}
.hvp-play {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; z-index: 2;
}
.hvp-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px); transition: transform .2s, background .2s;
}
.hero-video-player:hover .hvp-circle { transform: scale(1.1); background: rgba(255,255,255,.2); }
.hvp-play span { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase; }
.hvp-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.6); border: 1px solid var(--brd);
  border-radius: .625rem; padding: .35rem .75rem;
  font-size: .72rem; font-weight: 600; backdrop-filter: blur(8px);
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; animation: blink 1.5s infinite; }
.hvp-bar { position: absolute; bottom: 0; inset-inline: 0; height: 3px; background: rgba(255,255,255,.06); z-index: 3; }
.hvp-bar-fill { height: 100%; width: 33%; background: linear-gradient(to right, var(--v), var(--acc)); border-radius: 999px; }
.hero-video-mirror {
  position: absolute; top: 100%; inset-inline: 0; height: 80px; overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent);
  transform: scaleY(-1); pointer-events: none;
}
.hvm-inner {
  height: 80px;
  background: linear-gradient(135deg, rgba(109,40,217,.5), rgba(9,9,11,.85), rgba(6,182,212,.2));
  border: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; gap: 3rem; padding-top: calc(var(--nav) + 3rem); }
  .hero-right { order: -1; }
}

/* MARQUEE */
.marquee-strip {
  overflow: hidden; border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd);
  padding: .75rem 0; background: rgba(0,0,0,.35);
}
.marquee-inner { display: flex; gap: 2.5rem; white-space: nowrap; animation: mscroll 26s linear infinite; }
@keyframes mscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-inner span { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.18); flex-shrink: 0; }
.marquee-inner .sep { color: rgba(139,92,246,.3); }

/* ═══════════════════════════════════════
   AUTHORITY SECTION
═══════════════════════════════════════ */
.authority-section { padding: 8rem 0 5rem; }

.auth-intro { text-align: center; max-width: 600px; margin: 0 auto 4.5rem; }
.auth-h2 { font-size: clamp(2rem,4.5vw,3.25rem); color: #fff; margin-bottom: .5rem; }
.auth-h2 em { color: var(--v); }

/* Giant revenue number */
.auth-revenue {
  position: relative; text-align: center;
  padding: 4rem 2rem; margin: 0 auto 6rem;
  max-width: 660px; border-radius: 2rem;
  border: 1px solid rgba(139,92,246,.22);
  background: var(--bg2);
  overflow: hidden;
}
/* Subtle inner glow — pas de rotation */
.auth-revenue::before {
  content: '';
  position: absolute; inset: 0; border-radius: 2rem;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(139,92,246,.14) 0%, transparent 70%);
  pointer-events: none;
}
/* Coin accents — lignes statiques */
.auth-revenue::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(139,92,246,.5) 40%, rgba(6,182,212,.4) 60%, transparent);
}
.auth-rev-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 200px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,.18) 0%, transparent 65%);
  pointer-events: none;
  animation: revPulse 3.5s ease-in-out infinite;
}
@keyframes revPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: .6; }
  50%      { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}
.auth-revenue-inner { position: relative; z-index: 2; }
.auth-rev-label {
  display: block; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; color: var(--muted);
  margin-bottom: 1.1rem;
}
.auth-rev-number {
  display: flex; align-items: flex-start; justify-content: center;
  gap: .2rem; margin-bottom: .875rem; line-height: 1;
}
.auth-rev-currency {
  font-size: clamp(2rem,5vw,3.5rem); font-weight: 800;
  color: rgba(139,92,246,.65); margin-top: .5rem;
}
.auth-rev-amount {
  font-size: clamp(5.5rem,18vw,11rem); font-weight: 900;
  letter-spacing: -.05em; line-height: .9;
  background: linear-gradient(150deg, #fff 20%, rgba(139,92,246,.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px rgba(139,92,246,.3));
}
.auth-rev-sub {
  display: block; font-size: .82rem; color: var(--muted); letter-spacing: .03em;
}

/* 2-col grid */
.auth-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 860px) { .auth-grid { grid-template-columns: 1fr; gap: 3rem; } }

.auth-photo-wrap { display: flex; flex-direction: column; align-items: center; }
.auth-photo-frame { position: relative; width: 100%; max-width: 360px; }
.auth-photo-inner {
  aspect-ratio: 4/5; border-radius: var(--rl);
  background: linear-gradient(145deg, rgba(139,92,246,.18), rgba(6,182,212,.1));
  border: 1px solid rgba(139,92,246,.2);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.auth-photo-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .75rem; text-align: center; padding: 2rem;
}
.auth-age-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--v); color: #fff;
  font-weight: 700; font-size: .72rem;
  padding: .25rem .75rem; border-radius: 999px; letter-spacing: .04em;
}
.auth-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(139,92,246,.2); border: 2px solid rgba(139,92,246,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 900; color: var(--v);
}
.auth-photo-caption { font-size: .75rem; color: var(--muted); }
.auth-photo-decoration {
  position: absolute; bottom: -12px; right: -12px;
  width: 120px; height: 120px; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(6,182,212,.06));
  border: 1px solid rgba(139,92,246,.15); z-index: -1;
}

.auth-body { font-size: 1rem; color: var(--sub); margin-bottom: 1.25rem; line-height: 1.8; }
.auth-body strong { color: #fff; font-weight: 700; }
.auth-body em { color: var(--v); font-style: normal; }

/* Flag pins — minimal row */
.flags-row {
  display: flex; align-items: flex-start; gap: 2rem;
  margin: 2rem 0 .75rem; flex-wrap: wrap;
}
.flag-pin {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; cursor: default; position: relative;
}
.fp-emoji {
  font-size: 3rem; line-height: 1;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.5));
  transition: transform .3s cubic-bezier(.22,1,.36,1), filter .3s;
  display: block;
}
.flag-pin:hover .fp-emoji {
  transform: translateY(-8px) scale(1.12);
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.6));
}
.fp-name {
  font-size: .88rem; font-weight: 800; color: #fff;
  transition: color .2s;
}
.flag-pin:hover .fp-name { color: var(--v); }
.fp-detail {
  font-size: .68rem; color: var(--muted); font-weight: 500;
}
/* Subtle connector line between flags */
.flag-pin:not(:last-child)::after {
  content: '';
  position: absolute; top: 1.5rem; left: calc(100% + .85rem);
  width: .3rem; height: 1px;
  background: rgba(255,255,255,.12);
}
.countries-caption {
  font-size: .82rem; color: var(--muted); font-style: italic;
  margin-bottom: 2rem;
}

/* Timeline */
.timeline-wrap {
  margin-top: 6rem;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.timeline-header { text-align: center; margin-bottom: 3rem; }
.timeline-title { font-size: clamp(1.3rem,3vw,1.75rem); font-weight: 800; color: #fff; }
.timeline { position: relative; display: flex; flex-direction: column; padding-left: 2.5rem; }
.tl-line {
  position: absolute; left: 9px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(139,92,246,.4) 10%, rgba(139,92,246,.4) 90%, transparent);
}
.tl-item { position: relative; padding-bottom: 2.5rem; cursor: pointer; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.1rem; top: .35rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.18);
  transition: transform .25s, background .25s, box-shadow .25s; z-index: 2;
}
.tl-dot-gold  { background: rgba(245,158,11,.3); border-color: #f59e0b; box-shadow: 0 0 14px rgba(245,158,11,.4); }
.tl-dot-violet{ background: rgba(139,92,246,.3); border-color: var(--v);  box-shadow: 0 0 14px rgba(139,92,246,.5); }
.tl-item:hover .tl-dot, .tl-item.tl-open .tl-dot {
  transform: scale(1.4); background: rgba(139,92,246,.5);
  border-color: var(--v); box-shadow: 0 0 20px rgba(139,92,246,.5);
}
.tl-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem; padding: 1.1rem 1.4rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.tl-item:hover .tl-card, .tl-item.tl-open .tl-card {
  border-color: rgba(139,92,246,.3); background: rgba(139,92,246,.05); transform: translateX(4px);
}
.tl-card-gold   { background: rgba(245,158,11,.06) !important; border-color: rgba(245,158,11,.25) !important; }
.tl-card-violet { background: rgba(139,92,246,.08) !important; border-color: rgba(139,92,246,.3)  !important; }
.tl-day   { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--v); margin-bottom: .3rem; }
.tl-event { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: .35rem; }
.tl-detail {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .3s;
  opacity: 0;
}
.tl-item.tl-open .tl-detail, .tl-item:hover .tl-detail { max-height: 120px; opacity: 1; }

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.portfolio-section { padding: 8rem 0; background: var(--bg2); }
.pf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 900px) { .pf-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pf-grid { grid-template-columns: 1fr; } }

.pf-card { cursor: pointer; transform-style: preserve-3d; }
.pf-card.tilt-reset { transition: transform .4s cubic-bezier(.22,1,.36,1); }

.pf-thumb {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--brd);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.pf-card:hover .pf-thumb {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(139,92,246,.2);
}
.pf-t1 { background: linear-gradient(135deg,#1e1b4b,#312e81,#0f172a); }
.pf-t2 { background: linear-gradient(135deg,#4c1d95,#7c3aed,#06b6d4); }
.pf-t3 { background: linear-gradient(135deg,#7f1d1d,#dc2626,#f97316); }
.pf-t4 { background: linear-gradient(135deg,#0f172a,#0e7490,#7c3aed); }
.pf-t5 { background: linear-gradient(135deg,#14532d,#16a34a,#0891b2); }
.pf-t6 { background: linear-gradient(135deg,#1e293b,#475569,#0f172a); }
.pf-thumb::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 120px; opacity: .4; pointer-events: none;
}
.pf-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(9,9,11,.78); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; opacity: 0; transition: opacity .3s;
}
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-overlay-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px);
}
.pf-overlay span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.85); }
.pf-foot { display: flex; justify-content: space-between; padding: .6rem .25rem 0; }
.pf-label { font-size: .72rem; font-weight: 600; color: var(--muted); }
.pf-dur   { font-size: .68rem; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════
   CALCULATOR
═══════════════════════════════════════ */
.calc-section { padding: 8rem 0; }
.calc-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--rxl); overflow: hidden;
  border: 1px solid var(--brd); background: var(--s1);
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .calc-card { grid-template-columns: 1fr; } }
.calc-left { padding: 2.5rem; border-right: 1px solid var(--brd); }
@media (max-width: 700px) { .calc-left { border-right: none; border-bottom: 1px solid var(--brd); } }
.calc-slider-group { margin-bottom: 2.5rem; }
.calc-slider-group:last-child { margin-bottom: 0; }
.calc-slider-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: .875rem; }
.calc-slider-hd label { font-size: .9rem; font-weight: 500; color: var(--sub); }
.calc-val {
  font-size: 1rem; font-weight: 800; color: var(--v);
  background: var(--va); border: 1px solid rgba(139,92,246,.25);
  padding: .1rem .6rem; border-radius: .5rem; min-width: 60px; text-align: center;
}
.crange {
  -webkit-appearance: none; width: 100%; height: 5px; border-radius: 999px;
  background: rgba(255,255,255,.07); outline: none; cursor: pointer; touch-action: pan-x;
}
.crange::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--v); cursor: pointer; border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 0 12px rgba(139,92,246,.5); transition: transform .15s, box-shadow .15s;
}
.crange::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 0 20px rgba(139,92,246,.7); }
.crange::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--v); border: 2px solid rgba(255,255,255,.25); }
.crange-hints { display: flex; justify-content: space-between; font-size: .65rem; color: rgba(255,255,255,.2); margin-top: .35rem; }
.calc-right {
  padding: 2.5rem; display: flex; flex-direction: column;
  justify-content: space-between; gap: 1.5rem;
  background: linear-gradient(160deg, rgba(139,92,246,.07), transparent);
}
.kpi-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .4rem; font-weight: 600; }
.kpi-val {
  font-size: clamp(2.5rem,5vw,3.25rem); font-weight: 900;
  background: linear-gradient(135deg, var(--v), #a78bfa, var(--acc));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all .25s;
}
.calc-sub-kpis { display: flex; flex-direction: column; gap: .875rem; }
.sub-kpi { display: flex; justify-content: space-between; align-items: baseline; }
.skpi-l { font-size: .8rem; color: var(--muted); }
.skpi-v { font-size: 1rem; font-weight: 800; color: #fff; }
.skpi-v.green { color: #4ade80; }

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band {
  background: rgba(0,0,0,.45);
  border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); padding: 4rem 0;
}
.stats-row { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat-sep { color: var(--brd); font-size: 1.5rem; }
@media (max-width: 640px) { .stat-sep { display: none; } }
.stat-n {
  font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 900;
  background: linear-gradient(135deg, var(--v), var(--acc));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-size: .82rem; color: var(--muted); margin-top: .25rem; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section { padding: 8rem 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--brd);
  border-radius: var(--rl); padding: 1.75rem; display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s;
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--bh); }
.testi-stars { color: #f59e0b; font-size: .9rem; letter-spacing: .05em; margin-bottom: .875rem; }
.testi-card p { font-size: .92rem; color: var(--sub); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.testi-author strong { font-size: .88rem; font-weight: 700; color: #fff; }
.testi-author small { font-size: .72rem; color: var(--muted); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 8rem 0; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--s2); border: 1px solid var(--brd);
  border-radius: var(--r); overflow: hidden; transition: border-color .25s;
}
.faq-item.open { border-color: rgba(139,92,246,.3); background: rgba(139,92,246,.04); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; font-weight: 700; font-size: .95rem; color: #fff;
  text-align: left; cursor: pointer; transition: color .2s; min-height: 52px; background: none;
}
.faq-q:hover { color: var(--v); }
.faq-q span { font-size: 1.3rem; color: var(--v); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 1.5rem 1.25rem; font-size: .92rem; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta { padding: 9rem 0; }
.fcta-inner {
  position: relative; border-radius: var(--rxl); overflow: hidden;
  padding: clamp(3rem,6vw,5rem) clamp(2rem,4vw,4rem); text-align: center;
  background: var(--bg2);
  border: 1px solid rgba(139,92,246,.2);
}
/* Top accent line */
.fcta-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--v) 40%, var(--acc) 60%, transparent);
}
.fcta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,.12), transparent 60%);
  pointer-events: none;
}
.fcta-h2 { font-size: clamp(2rem,5vw,3.5rem); margin-bottom: .875rem; position: relative; color: #fff; }
.fcta-h2 em { color: var(--v); }
.fcta-sub { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; position: relative; }
.fcta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════
   FORMATION PAGE
═══════════════════════════════════════ */
.formation-card {
  position: relative; border-radius: var(--rxl); overflow: hidden;
  border: 1px solid rgba(139,92,246,.3);
  padding: clamp(2rem,4vw,3.5rem); text-align: center;
  max-width: 780px; margin: 0 auto 4rem;
  background: var(--bg2);
}
/* Remplacement du carré tournant :
   simple ligne du haut avec dégradé animé */
.fc-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--v) 25%,
    var(--acc) 50%,
    var(--v) 75%,
    transparent 100%);
  background-size: 200% 100%;
  animation: glowSlide 3s linear infinite;
  border-radius: var(--rxl) var(--rxl) 0 0;
}
@keyframes glowSlide {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Subtil glow intérieur fixe */
.formation-card::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,.1), transparent 70%);
}
.fc-inner { position: relative; z-index: 1; }

.fc-badge {
  display: inline-block; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  background: rgba(139,92,246,.12); color: var(--v);
  border: 1px solid rgba(139,92,246,.3); border-radius: 999px;
  padding: .25rem .875rem; margin-bottom: 1.5rem;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.8;transform:scale(1.03)} }

.fc-title { font-size: clamp(1.75rem,4vw,2.5rem); color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.fc-title em { color: var(--v); }
.fc-desc { font-size: .98rem; color: var(--muted); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }

.fc-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .fc-includes { grid-template-columns: 1fr; } }
.fc-inc-item {
  display: flex; align-items: flex-start; gap: .875rem; padding: 1rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r);
}
.fci-icon { font-size: 1.25rem; flex-shrink: 0; }
.fc-inc-item strong { font-size: .9rem; font-weight: 700; display: block; margin-bottom: .25rem; color: #fff; }
.fc-inc-item p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

.fc-countdown {
  display: inline-flex; align-items: center; gap: .875rem;
  background: rgba(0,0,0,.4); border: 1px solid var(--brd);
  border-radius: var(--r); padding: .6rem 1.5rem; margin-bottom: 1.75rem;
  flex-wrap: wrap; justify-content: center;
}
.fc-cd-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.fc-timer { display: flex; align-items: center; gap: .2rem; font-family: monospace; font-size: 1.3rem; font-weight: 900; }
.cd-seg { background: rgba(255,255,255,.1); border-radius: .375rem; padding: .2rem .5rem; min-width: 38px; text-align: center; }
.cd-sep { color: var(--v); }

.fc-price-row { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.fc-old { text-decoration: line-through; color: var(--muted); font-size: 1.1rem; }
.fc-new { font-size: clamp(2.5rem,6vw,3.5rem); font-weight: 900; color: #fff; }
.fc-badge-price {
  background: rgba(34,197,94,.15); color: #4ade80;
  border: 1px solid rgba(34,197,94,.3); border-radius: 999px;
  font-size: .72rem; font-weight: 800; padding: .2rem .65rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.fc-note { font-size: .78rem; color: var(--muted); margin-top: 1rem; }

/* Modules preview */
.modules-preview {
  max-width: 780px; margin: 0 auto;
  background: var(--s2); border: 1px solid var(--brd);
  border-radius: var(--rxl); padding: clamp(1.5rem,3vw,2.5rem);
}
.mp-title { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 1.75rem; text-align: center; }
.mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .mp-grid { grid-template-columns: 1fr; } }
.mp-item {
  display: flex; gap: 1rem; padding: 1rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: var(--r);
}
.mp-num { font-size: 1.3rem; font-weight: 900; color: rgba(139,92,246,.35); flex-shrink: 0; line-height: 1; }
.mp-text { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.mp-text strong { color: #fff; font-weight: 700; font-size: .9rem; display: block; margin-bottom: .2rem; }

/* ═══════════════════════════════════════
   ASSETS PAGE
═══════════════════════════════════════ */
.asset-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.af-btn {
  padding: .35rem 1rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  background: transparent; border: 1px solid var(--brd); color: var(--muted);
  cursor: pointer; transition: all .2s; min-height: 44px; touch-action: manipulation;
}
.af-btn:hover { border-color: var(--bh); color: #fff; }
.af-btn.active { background: #fff; color: #000; border-color: #fff; }

.assets-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .assets-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .assets-grid { grid-template-columns: 1fr; } }
.flip-card { height: 260px; perspective: 1000px; }
.flip-inner {
  width: 100%; height: 100%; position: relative;
  transform-style: preserve-3d; transition: transform .55s cubic-bezier(.23,1,.32,1);
}
.flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0; border-radius: var(--rl);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border: 1px solid var(--brd); overflow: hidden;
}
.flip-front {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .75rem; padding: 1.5rem;
}
.ff-icon { font-size: 2rem; }
.ff-title { font-size: 1rem; font-weight: 800; text-align: center; color: #fff; }
.ff-items { font-size: .72rem; color: rgba(255,255,255,.55); }
.ff-price { position: absolute; bottom: 1rem; right: 1rem; font-size: 1.4rem; font-weight: 900; color: #fff; }
.ff-hint { position: absolute; top: .75rem; right: .75rem; font-size: .62rem; color: rgba(255,255,255,.25); animation: blink 2s infinite; }
.flip-back {
  background: rgba(9,9,11,.97); transform: rotateY(180deg);
  display: flex; flex-direction: column; padding: 1.5rem;
  justify-content: space-between; border-color: rgba(139,92,246,.25);
}
.fb-title { font-size: .95rem; font-weight: 800; margin-bottom: .4rem; color: #fff; }
.fb-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; flex: 1; }
.fb-tags { display: flex; gap: .4rem; margin: .6rem 0; flex-wrap: wrap; }
.fb-tag { font-size: .62rem; padding: .15rem .45rem; border-radius: 999px; background: var(--va); color: var(--v); border: 1px solid rgba(139,92,246,.2); }
.fb-footer { display: flex; align-items: center; justify-content: space-between; }
.fb-price { font-size: 1.3rem; font-weight: 900; color: #fff; }
.btn-add {
  padding: .45rem 1rem; border-radius: .5rem; font-size: .8rem; font-weight: 700;
  background: var(--v); color: #fff; cursor: pointer; transition: all .2s;
  min-height: 42px; touch-action: manipulation; border: none;
}
.btn-add:hover { background: var(--vd); transform: scale(1.05); }
.btn-add.in-cart { background: rgba(255,255,255,.06); color: var(--muted); cursor: default; }

/* Cart */
.cart-btn {
  position: fixed; top: calc(var(--nav) + .75rem); right: 1rem; z-index: 150;
  display: flex; align-items: center; gap: .5rem; padding: .55rem 1rem;
  border-radius: .75rem; background: rgba(255,255,255,.07); border: 1px solid var(--brd);
  color: #fff; font-size: .82rem; font-weight: 600; backdrop-filter: blur(12px);
  transition: background .2s; min-height: 48px; cursor: pointer; touch-action: manipulation;
}
.cart-btn:hover { background: rgba(255,255,255,.13); }
.cart-badge {
  position: absolute; top: -7px; right: -7px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--v); color: #fff;
  font-size: .6rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.cart-panel {
  position: fixed; top: calc(var(--nav) + .75rem); right: 1rem; z-index: 160;
  width: 290px; display: none; background: rgba(9,9,11,.98); border: 1px solid var(--brd);
  border-radius: var(--rl); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.8);
  backdrop-filter: blur(20px); animation: cpIn .2s ease;
}
@keyframes cpIn { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
.cart-panel.open { display: block; }
.cp-head { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--brd); font-weight: 700; }
#cart-close { color: var(--muted); font-size: 1.1rem; transition: color .2s; }
#cart-close:hover { color: #fff; }
.cp-empty { padding: 2rem; text-align: center; font-size: .85rem; color: var(--muted); }
.cp-list { max-height: 240px; overflow-y: auto; }
.cp-item { display: flex; align-items: center; gap: .75rem; padding: .7rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.cp-item-name { flex: 1; font-size: .82rem; font-weight: 600; color: #fff; }
.cp-item-price { font-size: .82rem; font-weight: 800; color: var(--v); }
.cp-item-rm { color: var(--muted); font-size: .85rem; transition: color .2s; }
.cp-item-rm:hover { color: #f87171; }
.cp-foot { padding: 1rem 1.25rem; }
.cp-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: .75rem; color: #fff; }

.assets-bundle {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 3rem;
  background: linear-gradient(90deg, rgba(139,92,246,.07), rgba(6,182,212,.05));
  border: 1px solid rgba(139,92,246,.18); border-radius: var(--rl); padding: 2rem;
}
.assets-bundle .eyebrow { margin-bottom: .5rem; }
.assets-bundle h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.assets-bundle p { font-size: .85rem; color: var(--muted); }
.ab-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.ab-old { color: var(--muted); text-decoration: line-through; font-size: .9rem; }
.ab-new { font-size: 1.75rem; font-weight: 900; color: #fff; }

/* ═══════════════════════════════════════
   COACHING PAGE
═══════════════════════════════════════ */
.scarcity-bar {
  max-width: 480px; margin: 0 auto 3rem;
  background: rgba(0,0,0,.4); border: 1px solid var(--brd); border-radius: var(--r); padding: 1.25rem;
}
.sc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.sc-label { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 700; color: #ef4444; }
.sc-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: blink 1.5s infinite; }
.sc-count { font-size: .82rem; color: var(--muted); }
.sc-count strong { color: #fff; }
.sc-track { height: 6px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden; margin-bottom: .5rem; }
.sc-fill { height: 100%; background: linear-gradient(to right, rgba(239,68,68,.5), #ef4444); border-radius: 999px; transition: width 1.2s ease; }
.sc-warn { font-size: .75rem; color: #f87171; margin-top: .35rem; }

.mentoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 3rem; }
@media (max-width: 640px) { .mentoring-grid { grid-template-columns: 1fr; } }
.m-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem;
  background: var(--s2); border: 1px solid var(--brd); border-radius: var(--r);
  transition: border-color .2s;
}
.m-item:hover { border-color: rgba(139,92,246,.3); }
.m-icon { font-size: 1.4rem; flex-shrink: 0; }
.m-item strong { font-size: .92rem; font-weight: 700; display: block; margin-bottom: .25rem; color: #fff; }
.m-item p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

.coaching-price-card {
  position: relative; border-radius: var(--rxl); overflow: hidden;
  padding: clamp(2rem,4vw,3.5rem) clamp(1.5rem,3vw,2.5rem);
  text-align: center; margin-bottom: 3rem;
  background: var(--bg2); border: 1px solid rgba(139,92,246,.3);
}
.coaching-price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--v) 40%, var(--acc) 60%, transparent);
  animation: glowSlide 3s linear infinite;
}
.cpc-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.1), transparent 60%); pointer-events: none;
}
.cpc-badge {
  display: inline-block; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: #f59e0b; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.3);
  border-radius: 999px; padding: .25rem .875rem; margin-bottom: 1.5rem;
}
.cpc-emoji { font-size: 2.5rem; margin-bottom: .75rem; }
.cpc-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; color: #fff; }
.cpc-price {
  font-size: clamp(2.5rem,6vw,4rem); font-weight: 900; color: #fff;
  margin-bottom: .25rem;
}
.cpc-price span { font-size: .5em; color: var(--muted); font-weight: 400; }
.cpc-note { font-size: .82rem; color: var(--muted); max-width: 420px; margin: .75rem auto 2rem; }
.cpc-features {
  list-style: none; max-width: 360px; margin: 0 auto 2.5rem;
  display: flex; flex-direction: column; gap: .6rem; text-align: left;
}
.cpc-features li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--sub); }
.cpc-features li span { color: var(--v); }

/* Booking form */
.booking-card {
  background: rgba(0,0,0,.45); border: 1px solid var(--brd);
  border-radius: var(--rxl); padding: clamp(1.5rem,4vw,3rem); overflow: hidden;
}
.bform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 740px) { .bform-grid { grid-template-columns: 1fr; gap: 2rem; } }
.bform-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.bform-note { font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; }
.slot-day { margin-bottom: 1.25rem; }
.slot-day-label { font-size: .78rem; color: var(--muted); margin-bottom: .6rem; }
.slot-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.slot-btn {
  padding: .45rem .9rem; border-radius: .5rem; font-size: .82rem; font-weight: 700;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
  color: #fff; cursor: pointer; transition: all .2s; min-height: 48px; touch-action: manipulation;
}
.slot-btn:hover { background: rgba(255,255,255,.1); }
.slot-btn.sel { background: var(--v); border-color: var(--v); box-shadow: 0 0 18px rgba(139,92,246,.4); }
.bf-group { margin-bottom: 1rem; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .bf-row { grid-template-columns: 1fr; } }
.bf-group label { display: block; font-size: .78rem; color: var(--muted); margin-bottom: .35rem; }
.bf-group input, .bf-group select, .bf-group textarea {
  width: 100%; padding: .65rem .875rem; border-radius: .625rem;
  background: rgba(0,0,0,.5); border: 1px solid var(--brd); color: #fff;
  font-size: .9rem; font-family: 'Outfit', sans-serif; outline: none;
  transition: border-color .2s; min-height: 48px;
}
.bf-group input:focus, .bf-group select:focus, .bf-group textarea:focus { border-color: var(--v); }
.bf-group textarea { min-height: 90px; resize: vertical; }
.bf-group select option { background: #1a1a1a; }
.slot-error { font-size: .75rem; color: #f87171; margin-top: .5rem; display: none; text-align: center; }
.slot-error.show { display: block; }
.bform-success { text-align: center; padding: 3rem 1rem; }
.bs-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(34,197,94,.12); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1.5rem; color: #4ade80;
}
.bform-success h2 { font-size: 1.75rem; margin-bottom: .75rem; color: #fff; }
.bform-success p { color: var(--muted); max-width: 400px; margin: 0 auto 2rem; }

/* ═══════════════════════════════════════
   COMMUNAUTÉ
═══════════════════════════════════════ */
.discord {
  max-width: 760px; margin: 0 auto 3rem;
  border-radius: var(--rl); overflow: hidden;
  border: 1px solid var(--brd); background: #1e1f22;
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
}
.dc-topbar {
  background: #313338; padding: .6rem 1rem; display: flex; align-items: center; gap: .6rem;
  border-bottom: 1px solid rgba(0,0,0,.4);
}
.dc-dots span { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 4px; }
.dc-title { flex: 1; text-align: center; font-size: .72rem; color: rgba(255,255,255,.22); }
.dc-body { display: flex; height: 360px; }
@media (max-width: 560px) { .dc-sidebar { display: none !important; } .dc-body { height: 280px; } }
.dc-sidebar { width: 188px; background: #2b2d31; flex-shrink: 0; display: flex; flex-direction: column; }
.dc-srv-name { padding: .75rem .875rem; border-bottom: 1px solid rgba(0,0,0,.3); font-size: .8rem; font-weight: 800; color: rgba(255,255,255,.85); }
.dc-channels { flex: 1; overflow-y: auto; padding: .5rem .25rem; }
.dc-ch-label { padding: .4rem .5rem; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.25); }
.dc-ch {
  width: 100%; display: flex; align-items: center; gap: .5rem; padding: .4rem .6rem;
  border-radius: .375rem; margin-bottom: 1px; background: none; border: none;
  color: rgba(255,255,255,.4); font-size: .76rem; font-weight: 600;
  cursor: pointer; text-align: left; transition: background .15s, color .15s; min-height: 32px;
}
.dc-ch:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.75); }
.dc-ch-active { background: rgba(255,255,255,.1) !important; color: #fff !important; }
.dc-ch-locked { opacity: .4; cursor: default; }
.dc-unread {
  margin-left: auto; background: #ed4245; color: #fff;
  font-size: .58rem; font-weight: 900; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dc-online { border-top: 1px solid rgba(0,0,0,.3); padding: .4rem .5rem; }
.dc-online-label { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.22); margin-bottom: .4rem; }
.dc-member { display: flex; align-items: center; gap: .4rem; padding: .2rem 0; font-size: .7rem; color: rgba(255,255,255,.4); }
.dc-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ba55c; flex-shrink: 0; }
.dc-msgs-wrap { flex: 1; background: #313338; display: flex; flex-direction: column; }
.dc-msgs-header { padding: .65rem 1rem; border-bottom: 1px solid rgba(0,0,0,.3); display: flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.75); }
.dc-msgs { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .875rem; }
.dc-msg { display: flex; align-items: flex-start; gap: .75rem; opacity: 0; animation: dcmsg .3s ease forwards; }
@keyframes dcmsg { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }
.dc-av { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .82rem; color: #fff; flex-shrink: 0; }
.dc-uname { font-size: .78rem; font-weight: 800; }
.dc-time { font-size: .62rem; color: rgba(255,255,255,.18); margin-left: .4rem; }
.dc-star { font-size: .68rem; color: #f59e0b; }
.dc-text { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-top: .15rem; }
.dc-locked { padding: .7rem 1rem; background: #383a40; font-size: .72rem; color: rgba(255,255,255,.28); border-top: 1px solid rgba(0,0,0,.3); font-style: italic; }
.dc-typing { display: flex; gap: 4px; align-items: center; padding: 0 1rem .5rem; }
.dc-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.18); animation: dct 1s infinite; }
.dc-typing span:nth-child(2){animation-delay:.2s} .dc-typing span:nth-child(3){animation-delay:.4s}
@keyframes dct { 0%,80%,100%{opacity:.3;transform:scale(.8)} 40%{opacity:1;transform:scale(1)} }

.comm-badges { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 3.5rem; }
@media (max-width: 860px) { .comm-badges { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .comm-badges { grid-template-columns: 1fr; } }
.comm-badge {
  background: var(--s2); border: 1px solid var(--brd); border-radius: var(--rl); padding: 1.5rem;
  transition: transform .25s, border-color .25s;
}
.comm-badge:hover { transform: translateY(-5px); border-color: var(--bh); }
.cb-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.comm-badge h4 { font-size: .92rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.comm-badge p { font-size: .84rem; color: var(--muted); line-height: 1.65; }
.comm-cta {
  max-width: 580px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(88,101,242,.1), rgba(139,92,246,.06));
  border: 1px solid rgba(88,101,242,.25); border-radius: var(--rxl); padding: 3rem 2rem;
}
.comm-cta h2 { font-size: 1.5rem; color: #fff; margin-bottom: .75rem; }
.comm-cta p { font-size: .92rem; color: var(--muted); max-width: 360px; margin: 0 auto; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--brd); padding: 3rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
  background: var(--bg2);
}
.foot-brand { font-size: 1.25rem; font-weight: 900; letter-spacing: -.05em; color: #fff; }
.foot-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.foot-nav a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.foot-nav a:hover { color: var(--v); }
.foot-legal { font-size: .72rem; color: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════════════════════════
   EDITH v7 — BUNDLE STORE + PAYMENT BUTTONS
   ═══════════════════════════════════════════════════════════ */

/* ─── PAYMENT BUTTON — ultra-visible ────────────────────── */
.btn-pay {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(139,92,246,.3),
              0 8px 32px rgba(139,92,246,.4);
  position: relative; overflow: hidden;
}
.btn-pay::before {
  content: '';
  position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,.18);
  transform: skewX(-20deg);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
.btn-pay:hover {
  box-shadow: 0 0 0 2px rgba(139,92,246,.5),
              0 12px 40px rgba(139,92,246,.55) !important;
  transform: scale(1.03) !important;
}

/* ─── BUNDLES GRID ────────────────────────────────────────── */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .bundles-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bundles-grid { grid-template-columns: 1fr; } }

/* ─── BUNDLE CARD ─────────────────────────────────────────── */
.bundle-card-wrap { perspective: 1000px; }
.bundle-card {
  background: #0d0d12;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.22,1,.36,1),
              border-color .3s, box-shadow .3s;
}
.bundle-card::before {
  /* accent glow top */
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.bundle-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(var(--accent), .3);
  box-shadow: 0 24px 60px rgba(0,0,0,.5),
              0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}
.bc-bestseller {
  position: absolute; top: .75rem; right: .75rem;
  background: #f59e0b; color: #000;
  font-size: .58rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
  padding: .2rem .6rem; border-radius: 999px;
}

/* ─── 3D BOX MOCKUP (catalogue) ──────────────────────────── */
.bc-mockup {
  position: relative;
  width: 100px; height: 110px;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-24deg);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  margin: .5rem 0 .25rem;
}
.bundle-card:hover .bc-mockup {
  transform: rotateX(4deg) rotateY(-18deg) scale(1.06);
}
.bc-box-face {
  position: absolute;
  border-radius: 4px;
}
.bc-face-front {
  width: 100px; height: 110px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 40%, #111) 0%, #111 100%);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .35rem;
  transform: translateZ(12px);
}
.bc-face-top {
  width: 100px; height: 24px;
  background: color-mix(in srgb, var(--accent) 25%, #1a1a1a);
  border: 1px solid rgba(255,255,255,.1);
  transform-origin: bottom center;
  transform: rotateX(90deg) translateZ(0) translateY(-12px);
}
.bc-face-side {
  width: 24px; height: 110px;
  background: color-mix(in srgb, var(--accent) 15%, #0a0a0a);
  border: 1px solid rgba(255,255,255,.07);
  transform-origin: left center;
  transform: rotateY(-90deg) translateX(-12px);
}
.bc-box-icon { font-size: 1.75rem; }
.bc-box-name { font-size: .62rem; font-weight: 800; color: #fff; text-align: center; line-height: 1.2; }
.bc-box-items { font-size: .52rem; color: rgba(255,255,255,.4); }

/* ─── BUNDLE CARD INFO ────────────────────────────────────── */
.bc-info { width: 100%; text-align: center; }
.bc-cat { margin-bottom: .4rem; }
.bc-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.bc-tags { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; margin-bottom: .875rem; }
.bc-price-row {
  display: flex; align-items: baseline; gap: .6rem;
  justify-content: center; margin-bottom: 1rem;
}
.bc-old { font-size: .88rem; text-decoration: line-through; color: var(--muted); }
.bc-new { font-size: 1.5rem; font-weight: 900; color: #fff; }
.bc-btn {
  width: 100%; padding: .7rem 1rem; border-radius: .75rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: background .2s, border-color .2s;
  min-height: 44px; touch-action: manipulation;
}
.bc-btn:hover {
  background: color-mix(in srgb, var(--accent) 15%, rgba(255,255,255,.06));
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

/* ─── MASTER BUNDLE STRIP ─────────────────────────────────── */
.master-bundle {
  display: flex; gap: 3rem; align-items: center;
  background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(6,182,212,.06));
  border: 1px solid rgba(139,92,246,.25); border-radius: 1.5rem;
  padding: 2.5rem 2.5rem;
  margin-top: 1rem; flex-wrap: wrap;
}
@media (max-width: 640px) { .master-bundle { flex-direction: column; gap: 2rem; padding: 2rem 1.5rem; } }
.mb-left { flex-shrink: 0; }
.mb-box-stack { position: relative; width: 80px; height: 90px; }
.mb-box {
  position: absolute; border-radius: 6px;
  width: 72px; height: 82px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
}
.mb-box-3 {
  background: #1a1a2e; top: 8px; left: 8px;
  transform: rotate(-6deg);
}
.mb-box-2 {
  background: #16213e; top: 4px; left: 4px;
  transform: rotate(-3deg);
}
.mb-box-1 {
  background: linear-gradient(135deg, rgba(139,92,246,.3), rgba(6,182,212,.2));
  top: 0; left: 0; transform: rotate(0deg);
  gap: .3rem;
}
.mb-box-icon { font-size: 1.5rem; }
.mb-box-label { font-size: .48rem; font-weight: 900; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
.mb-right { flex: 1; }
.mb-title { font-size: 1.3rem; font-weight: 900; color: #fff; margin: .4rem 0 .6rem; }
.mb-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.65; }
.mb-features {
  display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.mb-features span { font-size: .8rem; color: rgba(255,255,255,.7); }
.mb-price-row {
  display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.5rem;
}
.mb-old { text-decoration: line-through; color: var(--muted); font-size: 1rem; }
.mb-new { font-size: 2rem; font-weight: 900; color: #fff; }
.mb-saving {
  background: rgba(34,197,94,.15); color: #4ade80;
  border: 1px solid rgba(34,197,94,.3); border-radius: 999px;
  font-size: .72rem; font-weight: 800; padding: .2rem .65rem;
}

/* ─── DETAIL VIEW ─────────────────────────────────────────── */
.detail-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700; color: var(--muted);
  cursor: pointer; background: none; border: none;
  margin-bottom: 2.5rem; padding: .5rem 0;
  transition: color .2s;
}
.detail-back:hover { color: #fff; }

.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Left — big mockup */
.detail-mockup { margin-bottom: 1.5rem; }
.detail-box {
  position: relative; width: 200px; height: 220px;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-20deg);
  margin: 0 auto 2rem;
  animation: detailFloat 4s ease-in-out infinite;
}
@keyframes detailFloat {
  0%,100% { transform: rotateX(8deg) rotateY(-20deg) translateY(0); }
  50%      { transform: rotateX(6deg) rotateY(-18deg) translateY(-8px); }
}
.db-face {
  position: absolute; border-radius: 6px;
}
.db-front {
  width: 200px; height: 220px;
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--accent) 50%, #111) 0%, #111 100%);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  transform: translateZ(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.db-top {
  width: 200px; height: 44px;
  background: color-mix(in srgb, var(--accent) 30%, #1a1a1a);
  border: 1px solid rgba(255,255,255,.12);
  transform-origin: bottom; transform: rotateX(90deg) translateY(-22px);
}
.db-side {
  width: 44px; height: 220px;
  background: color-mix(in srgb, var(--accent) 15%, #0a0a0a);
  border: 1px solid rgba(255,255,255,.07);
  transform-origin: left; transform: rotateY(-90deg) translateX(-22px);
}
.db-icon { font-size: 3.5rem; }
.db-name { font-size: .95rem; font-weight: 900; color: #fff; text-align: center; }
.db-sub  { font-size: .7rem; color: rgba(255,255,255,.5); }

/* Previews grid */
.detail-previews {
  display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem;
}
.dp-cell {
  aspect-ratio: 16/9; border-radius: .75rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.dp-cell:hover { transform: scale(1.04); box-shadow: 0 12px 30px rgba(0,0,0,.5); }
.dp-play {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.dp-cell:hover .dp-play { background: rgba(255,255,255,.25); transform: scale(1.1); }
.dp-label {
  font-size: .62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.7);
}

/* Right — purchase panel */
.detail-title {
  font-size: clamp(1.75rem,3.5vw,2.5rem); color: #fff;
  margin: .5rem 0 1.25rem; line-height: 1.05;
}
.detail-specs {
  list-style: none; display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2rem;
}
.detail-specs li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--sub);
}
.detail-specs li::before { content: '✓'; color: var(--v); flex-shrink: 0; font-weight: 800; }
.detail-price-row {
  display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.75rem;
}
.detail-old { text-decoration: line-through; color: var(--muted); font-size: 1.1rem; }
.detail-new { font-size: 2.5rem; font-weight: 900; color: #fff; }
.detail-buy-btn { width: 100%; justify-content: center; margin-bottom: 1.25rem; }
.detail-guarantees {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: .75rem; color: var(--muted);
}

/* ─── v8 — Photo profil + country cards images ──────────── */
.pp {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--rl);
}

.countries-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: .75rem; margin: 1.75rem 0 .75rem;
}
@media (max-width: 480px) { .countries-grid { grid-template-columns: repeat(2,1fr); } }

.country-card {
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem; padding: 1.1rem .5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  transition: transform .25s, border-color .25s, background .25s;
}
.country-card:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(139,92,246,.4);
  background: rgba(139,92,246,.08);
}
.country-card .fp-emoji {
  width: 48px; height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
  transition: transform .25s;
  position: static; /* override .pp absolute */
  border-radius: 0;
}
.country-card:hover .fp-emoji { transform: scale(1.15) rotate(-4deg); }
.cc-name { font-size: .9rem; font-weight: 800; color: #fff; }
.cc-city { font-size: .68rem; color: var(--muted); }
.countries-caption {
  font-size: .82rem; color: var(--muted);
  font-style: italic; margin-bottom: 2rem;
}