/* ===========================
       DESIGN TOKENS
    =========================== */
:root {
  --purple: #6432B4;
  --purple-dark: #4E24A0;
  --purple-light: #EDE8FF;
  --purple-bg: #F5F3FF;
  --dark: #0D0627;
  --dark-card: #130E2E;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E8E4FA;
  --gold: #F5A623;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(100, 50, 180, 0.10);
  --shadow-card: 0 2px 16px rgba(100, 50, 180, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
       RESET & BASE
    =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===========================
       UTILITIES
    =========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.section-title span {
  color: var(--purple);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 560px;
}

/* ── Base button ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: visible;
}

/* Blurred glow shadow beneath every button (glass-button-shadow) */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  transform: translateY(7px) scaleX(0.84);
  filter: blur(14px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 0.72;
  filter: blur(20px);
  transform: translateY(11px) scaleX(0.78);
}

/* Primary — purple glass */
.btn-primary {
  background: linear-gradient(155deg, rgba(120, 70, 200, 0.94) 0%, rgba(100, 50, 180, 0.90) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(100, 50, 180, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn-primary::before {
  background: rgba(100, 50, 180, 0.75);
}

.btn-primary:hover {
  background: linear-gradient(155deg, rgba(130, 90, 210, 0.97) 0%, rgba(110, 70, 195, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 6px 22px rgba(100, 50, 180, 0.34);
  transform: translateY(-2px);
}

/* Secondary — outline glass */
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1.5px solid rgba(100, 50, 180, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.btn-secondary::before {
  background: rgba(100, 50, 180, 0.18);
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(100, 50, 180, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 18px rgba(100, 50, 180, 0.18);
}

/* White (on dark bg) — translucent glass */
.btn-white {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn-white::before {
  background: rgba(255, 255, 255, 0.45);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.21);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04),
    0 6px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

/* ===========================
       NAVBAR
    =========================== */
.navbar {
  position: relative;
  z-index: 100;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  will-change: transform;
}

.navbar > .container {
  max-width: none;
  padding-left: clamp(22px, 2.8vw, 54px);
  padding-right: clamp(22px, 2.8vw, 54px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-left: -12px;
}

.nav-logo img {
  height: 40px;
  /* adjust as needed */
  width: auto;
  position: relative;
  /* left: -90px; */
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta .btn-primary {
  padding: 11px 22px;
  font-size: 13px;
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px 12px;
  background: var(--purple-bg);
  border-radius: 10px;
  border: 1.5px solid var(--purple-light);
}

.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--purple);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===========================
       HERO
    =========================== */
.hero-container {
  max-width: 1440px;
  width: 95%;
  margin: 0 auto;
  padding: 0 40px;
}

.hero {
  padding: 120px 0 80px;
  background-color: #FAFAFB;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-title span {
  color: var(--purple);
  font-style: italic;
  position: relative;
}

.hero-desc {
  font-size: 17px;
  color: #3d3d5c;
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-reassurance span {
  color: var(--purple);
  font-weight: 700;
}

.hero-reassurance::before {
  content: '✓';
  color: var(--purple);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ════════════════════════════════════════════════════════════
   HERO — Showcase vidéo "premium product demo"
   ════════════════════════════════════════════════════════════ */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-video-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  position: relative;
  z-index: 2;
}

.hero-video-label-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--purple);
  flex-shrink: 0;
  border-radius: 2px;
}

/* Halo violet derrière le cadre */
.hero-video-glow {
  position: absolute;
  top: -38%;
  left: -30%;
  right: -30%;
  bottom: -38%;
  z-index: 0;
  filter: blur(72px);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(130,65,240,0.78) 0%,
    rgba(108,50,220,0.60) 30%,
    rgba(90,30,200,0.32) 58%,
    transparent 75%
  );
  animation: heroGlowPulse 8s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.92; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}

/* ── Le cadre showcase (glassmorphisme) ────────────────────── */
.hero-showcase {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  padding: 10px;
  overflow: visible;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(255,255,255,0.06),
    0 24px 60px rgba(100,50,220,0.35),
    0 8px 24px rgba(0,0,0,0.12);
  transition: box-shadow 450ms ease, transform 450ms ease;
}

/* Reflet lumineux sur le bord haut de la vitre */
.hero-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.55);
  border-radius: 9999px;
  pointer-events: none;
  z-index: 4;
}

.hero-video-wrap:hover .hero-showcase {
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(255,255,255,0.08),
    0 32px 72px rgba(100,50,220,0.50),
    0 10px 28px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* ── Chrome navigateur (supprimé) ──────────────────────────── */
.hero-showcase-chrome {
  display: none;
}
.hero-showcase-chrome-hidden {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #ede8ff 0%, #e3dcff 100%);
  border-bottom: 1px solid rgba(100,50,180,0.10);
}
.chrome-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #d6cef0;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #ffbd2e; }
.chrome-dot:nth-child(3) { background: #28c941; }
.chrome-url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0.4rem;
  padding: 5px 12px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(100,50,180,0.10);
  border-radius: 8px;
  font-family: 'SF Mono','Monaco','Consolas',monospace;
  font-size: 11px;
  font-weight: 600;
  color: #6432B4;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chrome-url svg { color: #28c941; flex-shrink: 0; }
.chrome-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: linear-gradient(135deg, rgba(255,40,40,0.95), rgba(220,30,30,0.95));
  color: #fff;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px -2px rgba(255,40,40,0.5);
  flex-shrink: 0;
}
.chrome-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.8);
  animation: chromeLivePulse 1.4s ease-in-out infinite;
}
@keyframes chromeLivePulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255,255,255,0.8); transform: scale(1); }
  60%      { box-shadow: 0 0 0 5px rgba(255,255,255,0);   transform: scale(1.1); }
}

/* ── Écran vidéo ────────────────────────────────────────────── */
.hero-showcase-screen {
  position: relative;
  background: #0d0627;
  overflow: hidden;
  border-radius: 14px;
}
.hero-showcase-screen video.hero-video-element {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 30%;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
}

/* ── Sound nudge — glassmorphisme clair ────────────────────── */
.hero-sound-nudge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px 8px 10px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 9999px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 4px 16px rgba(0,0,0,0.12);
  transition: transform 240ms cubic-bezier(.2,.8,.2,1),
              box-shadow 240ms ease,
              opacity 240ms ease,
              background 240ms ease;
  animation: heroNudgeBob 2.6s ease-in-out infinite;
}
.hero-sound-nudge:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.30) inset;
}
.hero-sound-nudge.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}
.hero-sound-nudge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  transition: background 240ms, color 240ms;
}
.hero-sound-nudge:hover .hero-sound-nudge-icon {
  background: rgba(255,255,255,0.28);
}
.hero-sound-nudge.is-sound-on {
  background: rgba(100,50,180,0.48);
  border-color: rgba(255,255,255,0.38);
}
@keyframes heroNudgeBob {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-3px); }
}

/* ── Barre de contrôles vidéo — glassmorphisme ────────────── */
.hero-showcase-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.22);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.video-ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(100,50,180,0.25);
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 200ms;
  flex-shrink: 0;
}
.video-ctrl-btn:hover {
  background: #6432B4;
  color: #fff;
  transform: scale(1.06);
}
.video-ctrl-btn svg { width: 14px; height: 14px; }
.video-ctrl-btn-mute {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.12);
}
.video-ctrl-btn-mute.is-sound-on {
  background: rgba(100,50,180,0.55);
  color: #fff;
}
.video-ctrl-btn-mute:hover {
  background: rgba(100,50,180,0.65);
  color: #fff;
}

/* Progress */
.video-progress-wrap {
  position: relative;
  flex: 1;
  height: 18px;
  display: flex; align-items: center;
  cursor: pointer;
}
.video-progress-track {
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 9999px;
  overflow: hidden;
}
.video-progress-filled {
  height: 100%;
  width: 0%;
  background: var(--purple);
  border-radius: inherit;
  pointer-events: none;
  transition: width 100ms linear;
  position: relative;
}
.video-progress-filled::after {
  content: '';
  position: absolute; right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #6432B4;
  box-shadow: 0 2px 8px rgba(100,50,180,0.4);
  opacity: 0;
  transition: opacity 200ms;
}
.video-progress-wrap:hover .video-progress-filled::after { opacity: 1; }

.video-progress-bar {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: transparent;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}
.video-progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  background: transparent;
  cursor: pointer;
}
.video-progress-bar::-moz-range-thumb {
  width: 16px; height: 16px;
  background: transparent;
  cursor: pointer;
  border: none;
}

.video-time {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================
   HOMEPAGE HERO — mobile reference
   =========================== */
.hero {
  padding: 128px 0 68px;
  background:
    radial-gradient(circle at -14% 22%, rgba(122, 73, 226, 0.12) 0 13%, transparent 13.3%),
    radial-gradient(circle at 108% 33%, rgba(122, 73, 226, 0.11) 0 18%, transparent 18.3%),
    linear-gradient(180deg, #fff 0%, #fbf9ff 48%, #fff 100%);
  background-color: #fff;
  background-image:
    radial-gradient(circle at -14% 22%, rgba(122, 73, 226, 0.12) 0 13%, transparent 13.3%),
    radial-gradient(circle at 108% 33%, rgba(122, 73, 226, 0.11) 0 18%, transparent 18.3%),
    linear-gradient(180deg, #fff 0%, #fbf9ff 48%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border: 4px solid rgba(122, 73, 226, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  left: -260px;
  top: 118px;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -395px;
  top: 210px;
}

.hero-container {
  max-width: 1160px;
  width: 100%;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  margin: 0 0 26px;
  border-radius: 9999px;
  border: 1px solid rgba(122, 73, 226, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 28px rgba(122, 73, 226, 0.08);
  color: var(--purple);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-title {
  max-width: 940px;
  margin: 0 auto 26px;
  font-size: clamp(48px, 7.4vw, 88px);
  line-height: 1.18;
  letter-spacing: 0;
  color: #171730;
  font-weight: 800;
}

.hero-title span {
  color: var(--purple);
  font-style: normal;
  text-shadow: 0 12px 34px rgba(122, 73, 226, 0.22);
}

.hero-desc {
  max-width: 780px;
  margin: 0 auto 34px;
  color: #666987;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.52;
  font-weight: 600;
}

.hero-desc span {
  color: var(--purple);
  font-weight: 800;
}

.hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

.hero-ctas .btn-primary {
  min-height: 70px;
  padding: 0 48px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #7c36e7 0%, #642bd8 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 18px 44px rgba(100, 50, 180, 0.28);
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 700;
}

.hero-ctas .btn-primary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-ctas .btn-primary > .hero-cta-desktop,
.hero-ctas .btn-primary > .hero-cta-mobile {
  width: auto;
  height: auto;
  margin-left: 0;
  border-radius: 0;
  background: transparent;
}

.hero-ctas .btn-primary > .hero-cta-mobile > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-video-wrap {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 28px auto 0;
}

.hero-video-glow {
  inset: auto;
  left: 8%;
  right: 8%;
  bottom: -42px;
  height: 180px;
  opacity: 0.32;
  filter: blur(46px);
  background: radial-gradient(ellipse at 50% 50%, rgba(122, 73, 226, 0.42), transparent 68%);
}

.hero-showcase {
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(122, 73, 226, 0.52);
  background: #fff;
  box-shadow: 0 20px 54px rgba(122, 73, 226, 0.18);
}

.hero-showcase::before {
  display: none;
}

.hero-video-wrap:hover .hero-showcase {
  transform: none;
  box-shadow: 0 22px 60px rgba(122, 73, 226, 0.22);
}

.hero-showcase-screen {
  border-radius: 26px;
  background: #120a28;
}

.hero-showcase-screen::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 10, 20, 0.55) 52%, rgba(13, 10, 20, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-showcase-screen video.hero-video-element {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 22%;
}

.hero-sound-nudge {
  top: 28px;
  right: 28px;
  min-height: 54px;
  padding: 0 22px;
  gap: 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  color: #171730;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(23, 23, 48, 0.14);
  animation: none;
}

.hero-sound-nudge:hover {
  background: #fff;
}

.hero-sound-nudge-icon {
  width: 28px;
  height: 28px;
  background: transparent;
  color: #171730;
}

.video-fs-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease;
}
.video-fs-btn:hover {
  background: rgba(0,0,0,0.65);
  transform: scale(1.08);
}

.hero-play-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple);
  box-shadow: 0 18px 44px rgba(23, 23, 48, 0.18);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-play-orb:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 22px 54px rgba(23, 23, 48, 0.22);
}

.hero-testimonial {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  align-items: start;
  padding: 28px 32px 26px;
  border-radius: 22px;
  background: rgba(27, 27, 32, 0.64);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-quote-mark {
  color: var(--purple);
  font-size: 74px;
  line-height: 0.9;
  font-weight: 800;
}

.hero-testimonial p {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.56;
  font-weight: 500;
}

.hero-testimonial-progress {
  grid-column: 1 / -1;
  height: 4px;
  margin-top: 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.hero-testimonial-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--purple);
}

.hero-showcase-bar,
.video-progress-wrap,
.video-time {
  display: none;
}

.hero-metrics {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 12px;
}

.hero-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 2px 22px;
  color: #171730;
  text-align: left;
}

.hero-metric + .hero-metric {
  border-left: 1px solid rgba(23, 23, 48, 0.08);
}

.hero-metric-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex: 0 0 auto;
}

.hero-metric-icon svg {
  width: 48px;
  height: 48px;
}

.hero-metric strong {
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 700;
}

.hero-metric small {
  display: block;
  margin-top: 6px;
  color: #666987;
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.25;
  font-weight: 500;
}

.hero-method-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--purple);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-method-link span {
  font-size: 34px;
  line-height: 0.7;
}

.hero-play-orb #videoPauseIcon {
  display: none !important;
}

.hero-play-orb #videoPlayIcon {
  display: block !important;
}

/* ── Crochets décoratifs aux 4 coins du frame ──────────────── */
.hero-showcase-bracket {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
  z-index: 5;
}
.hero-showcase-bracket::before,
.hero-showcase-bracket::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, #6432B4, #F5A623);
  border-radius: 2px;
}
.hero-showcase-bracket::before { width: 2px;  height: 100%; }
.hero-showcase-bracket::after  { width: 100%; height: 2px;  }
.bracket-tl { top: -6px;    left: -6px; }
.bracket-tl::before { top: 0;    left: 0; }
.bracket-tl::after  { top: 0;    left: 0; }
.bracket-tr { top: -6px;    right: -6px; }
.bracket-tr::before { top: 0;    right: 0; }
.bracket-tr::after  { top: 0;    right: 0; }
.bracket-bl { bottom: -6px; left: -6px; }
.bracket-bl::before { bottom: 0; left: 0; }
.bracket-bl::after  { bottom: 0; left: 0; }
.bracket-br { bottom: -6px; right: -6px; }
.bracket-br::before { bottom: 0; right: 0; }
.bracket-br::after  { bottom: 0; right: 0; }

/* ── Pastilles flottantes (supprimées) ──────────────────────── */
.hero-showcase-tag {
  display: none;
}
.hero-showcase-tag-hidden {
  position: absolute;
  z-index: 6;
  display: flex; align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 14px 30px -10px rgba(80,40,150,0.35),
    0 4px 10px -4px rgba(0,0,0,0.08);
  animation: heroTagFloat 5s ease-in-out infinite;
}
@keyframes heroTagFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-showcase-tag-1 {
  top: 22%; left: -32px;
  animation-delay: 0.2s;
}
.hero-showcase-tag-2 {
  bottom: 18%; right: -32px;
  animation-delay: 1.4s;
}
.hero-showcase-tag-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ede7ff, #c0a4ff);
  color: #6432B4;
  flex-shrink: 0;
}
.hero-showcase-tag-icon-gold {
  background: linear-gradient(135deg, #fff3d6, #F5A623);
  color: #fff;
}
.hero-showcase-tag-icon svg { width: 18px; height: 18px; }
.hero-showcase-tag-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0D0627;
  line-height: 1;
}
.hero-showcase-tag-lbl {
  font-size: 0.7rem;
  color: #6B7280;
  margin-top: 3px;
}

/* ── Mobile / responsive ───────────────────────────────────── */
@media (max-width: 1023px) {
  .hero-showcase { transform: none; animation: none; }
  .hero-video-wrap:hover .hero-showcase { transform: translateY(-2px); }
  .hero-showcase-tag-1 { left: -16px; top: 14%; }
  .hero-showcase-tag-2 { right: -16px; bottom: 12%; }
}
@media (max-width: 640px) {
  .hero-video-wrap { max-width: 100%; margin: 0 auto; }
  .hero-showcase-tag { padding: 8px 12px 8px 8px; gap: 8px; }
  .hero-showcase-tag-icon { width: 30px; height: 30px; }
  .hero-showcase-tag-icon svg { width: 15px; height: 15px; }
  .hero-showcase-tag-num { font-size: 0.85rem; }
  .hero-showcase-tag-lbl { font-size: 0.65rem; }
  .hero-showcase-tag-1 { left: -8px; }
  .hero-showcase-tag-2 { right: -8px; }
  .chrome-live { font-size: 8.5px; padding: 3px 7px; }
  .chrome-url { font-size: 10px; }
  .video-time { display: none; }
  .hero-sound-nudge { font-size: 11px; padding: 6px 12px 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-glow,
  .hero-showcase,
  .hero-sound-nudge { animation: none !important; }
}

/* Floating Glassmorphism Badges */
.hero-float-glass {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 32px rgba(100, 50, 180, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: floatAnim 4s ease-in-out infinite;
}

.hero-float-glass .float-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.hero-float-glass .float-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-float-glass .float-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero-float-glass .float-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

.hero-float-glass.float-1 {
  /* 📖 — haut droite, mord le coin supérieur droit */
  top: -5%;
  left: 5%;
  animation-delay: 0s;
}

.hero-float-glass.float-2 {
  /* 🛡️ — bas gauche, mord le coin inférieur gauche */
  bottom: 10%;
  left: -7%;
  animation-delay: 1.5s;
}

.hero-float-glass.float-3 {
  /* ⭐ SKILL — milieu droit */
  top: 46%;
  right: -7%;
  animation-delay: 3s;
  font-size: 13px;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ===========================
       TICKER
    =========================== */
.ticker-section {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-logo {
  display: flex;
  align-items: center;
  height: 48px;
  filter: none;
  opacity: 0.9;
  transition: var(--transition);
}

.ticker-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.ticker-logo img {
  height: 36px;
  max-width: 150px;
  object-fit: contain;
}

.ticker-logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===========================
       STATS
    =========================== */
.stats-section {
  background: var(--white);
  padding: 56px 0;
}

.stats-section .container {
  max-width: 1280px;
}

.stats-card {
  background: #f0eefc url('bandeau.png') center / 100% 100% no-repeat;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(100, 50, 180, 0.10);
  transition: transform 0.35s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.35s ease;
  cursor: default;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(100, 50, 180, 0.20);
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 52px 80px;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.stat-icon-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #5B21D6 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(100, 50, 180, 0.14);
  justify-self: center;
}

/* ===========================
       APPROACH
    =========================== */
.approach-section {
  background: var(--purple-bg);
}

.approach-header {
  margin-bottom: 56px;
  text-align: center;
}

.approach-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.approach-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 0;
  border: none;
  transition: transform 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  will-change: transform;
}

/* hover géré par JS tilt */


.approach-card-visual {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* 3D Sphere CSS replacements */
.sphere {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
}

.sphere-1 {
  background: radial-gradient(circle at 35% 35%, #9B72D4, #6432B4 60%, #2D1B8C);
  box-shadow: -8px 8px 24px rgba(100, 50, 180, 0.5), inset -6px -6px 16px rgba(0, 0, 0, 0.2);
}

.sphere-2 {
  background: radial-gradient(circle at 35% 35%, #FCD34D, #F59E0B 60%, #92400E);
  box-shadow: -8px 8px 24px rgba(245, 158, 11, 0.5), inset -6px -6px 16px rgba(0, 0, 0, 0.2);
}

.sphere-3 {
  background: radial-gradient(circle at 35% 35%, #6EE7B7, #10B981 60%, #064E3B);
  box-shadow: -8px 8px 24px rgba(16, 185, 129, 0.5), inset -6px -6px 16px rgba(0, 0, 0, 0.2);
}

.approach-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.approach-card-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--purple);
}

.approach-card--2 .approach-card-title::after {
  background: #DB2777;
}

.approach-card--3 .approach-card-title::after {
  background: #059669;
}

.approach-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
       LOGOS GRID
    =========================== */
.logos-section {
  background: var(--purple-bg);
  padding: 72px 0;
}

.logos-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 48px;
}

.logos-title span {
  color: var(--purple);
}

.logos-title .logos-title-orange {
  color: #F59E0B;
}

.logos-ticker-wrapper {
  overflow: hidden;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logos-ticker-wrapper:last-child {
  margin-bottom: 0;
}

.logos-ticker-track {
  display: flex;
  gap: 20px;
  animation: logosTicker 35s linear infinite;
  white-space: nowrap;
}

.logos-ticker-track.reverse {
  animation-direction: reverse;
}

@keyframes logosTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-width: 160px;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-height: 60px;
}

.logo-item:hover {
  box-shadow: 0 4px 16px rgba(100, 50, 180, 0.12);
  transform: translateY(-2px);
}

.logo-item-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: -0.3px;
}

/* ===========================
       MÉTHODE ACTE
    =========================== */
.acte-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0 36px;
  background:
    radial-gradient(circle at 0% 100%, rgba(124, 58, 237, 0.22) 0, rgba(124, 58, 237, 0.08) 18%, transparent 38%),
    radial-gradient(circle at 100% 6%, rgba(124, 58, 237, 0.16) 0, rgba(124, 58, 237, 0.06) 20%, transparent 42%),
    linear-gradient(180deg, #F5F3FF 0%, #ffffff 46%, #F5F3FF 100%);
}

.acte-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.52) 34%, transparent 70%),
    linear-gradient(90deg, rgba(111, 63, 236, 0.08), transparent 18%, transparent 82%, rgba(111, 63, 236, 0.1));
}

.acte-section .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  padding: 0 48px;
}

.acte-header {
  text-align: center;
  margin-bottom: 34px;
}

.acte-header .section-tag {
  display: block;
  margin-bottom: 14px;
  color: #5b32d6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1;
}

.acte-header .section-subtitle {
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  color: #606985;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.acte-header .section-title {
  color: #090b21;
  font-size: clamp(34px, 3.1vw, 50px);
  font-weight: 800;
  letter-spacing: -1.15px;
  line-height: 1.06;
  text-shadow: 0 10px 32px rgba(13, 6, 39, 0.08);
}

.acte-header .section-title span {
  background: linear-gradient(135deg, #6b32dd 0%, #4932c8 54%, #7745f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.acte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.acte-card {
  min-height: 330px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(252, 251, 255, 0.74));
  border: 1px solid rgba(217, 213, 237, 0.9);
  border-radius: 16px;
  padding: 28px 30px 26px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 26px 54px rgba(69, 51, 112, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.acte-card::after {
  content: none;
}

.acte-card:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow:
    0 40px 72px rgba(100, 50, 180, 0.22),
    0 12px 24px rgba(100, 50, 180, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.acte-card:nth-child(2):hover {
  border-color: rgba(240, 77, 255, 0.38);
  box-shadow:
    0 40px 72px rgba(240, 77, 255, 0.2),
    0 12px 24px rgba(180, 50, 200, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.acte-card:nth-child(3):hover {
  border-color: rgba(91, 140, 255, 0.38);
  box-shadow:
    0 40px 72px rgba(91, 140, 255, 0.2),
    0 12px 24px rgba(50, 100, 220, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.acte-card:nth-child(4):hover {
  border-color: rgba(85, 200, 255, 0.38);
  box-shadow:
    0 40px 72px rgba(85, 200, 255, 0.2),
    0 12px 24px rgba(30, 160, 220, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.acte-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  z-index: 0;
}

.acte-card:nth-child(2)::before {
  background: linear-gradient(145deg, rgba(240, 77, 255, 0.07) 0%, transparent 55%);
}

.acte-card:nth-child(3)::before {
  background: linear-gradient(145deg, rgba(91, 140, 255, 0.07) 0%, transparent 55%);
}

.acte-card:nth-child(4)::before {
  background: linear-gradient(145deg, rgba(85, 200, 255, 0.07) 0%, transparent 55%);
}

.acte-card:hover::before {
  opacity: 1;
}

.acte-letter {
  font-size: 88px;
  font-weight: 900;
  line-height: 0.82;
  display: inline-block;
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 22px;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #5a28d7 0%, #7f4cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.acte-card:nth-child(2) .acte-letter {
  background: linear-gradient(135deg, #5d2ad8 0%, #a148ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.acte-card:nth-child(3) .acte-letter {
  background: linear-gradient(135deg, #5830c7 0%, #3d23b9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.acte-card:nth-child(4) .acte-letter {
  background: linear-gradient(135deg, #2d63ef 0%, #1265df 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.acte-card > * {
  position: relative;
  z-index: 1;
}

.acte-card:hover .acte-letter {
  transform: scale(1.08) translateY(-3px);
}

.acte-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5b32d6;
  margin-bottom: 14px;
  line-height: 1;
}

.acte-card-title {
  max-width: 230px;
  color: #07091e;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.45px;
  margin-bottom: 14px;
}

.acte-card-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 15px;
  border-radius: 999px;
  background: #6b32dd;
}

.acte-card-desc {
  max-width: 230px;
  font-size: 14px;
  color: #58617b;
  line-height: 1.58;
  font-weight: 500;
}

.acte-cta {
  text-align: center;
  margin-top: 32px;
}

.acte-cta-text {
  color: #5b32d6;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.acte-cta .btn {
  min-width: 360px;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(180deg, #6e42e9 0%, #4f25ca 100%);
  box-shadow:
    0 12px 26px rgba(88, 42, 210, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

/* ===========================
       GAMIFICATION DARK (replaces IA section)
    =========================== */
.gamif-dark {
  background: linear-gradient(180deg, #F5F3FF 0%, #ffffff 100%);
  padding: 72px 16px 40px;
  position: relative;
}

.gamif-dark .container {
  background: var(--dark);
  border-radius: 32px;
  padding: 80px 64px;
  max-width: 95%;
  position: relative;
  overflow: hidden;
}

.gamif-dark .container::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 50, 180, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

.gamif-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.gamif-dark-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.gamif-dark-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.gamif-dark-title span {
  color: #9B72D4;
}

.gamif-dark-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}

.gamif-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.gamif-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gamif-point-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c3aed 0%, #6432B4 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 28px rgba(100, 50, 180, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
}

.gamif-point-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gamif-point-icon--brain {
  background: linear-gradient(135deg, #d56bff 0%, #a855f7 52%, #7434d9 100%);
}

.gamif-point-icon--team {
  background: linear-gradient(135deg, #ff9b72 0%, #f9737f 48%, #8b5cf6 100%);
}

.gamif-point-icon--target {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 42%, #6d28d9 100%);
}

.gamif-point-content {}

.gamif-point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.gamif-point-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.gamif-visual {
  position: relative;
  overflow: hidden;
}

.gamif-dash-img {
  width: 110%;
  max-width: none;
  display: block;
  margin-left: -5%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%, black 85%, transparent 100%),
    linear-gradient(to top, transparent 0%, black 12%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 22%, black 85%, transparent 100%),
    linear-gradient(to top, transparent 0%, black 12%);
  mask-composite: intersect;
}

.gamif-dashboard {
  background: var(--dark-card);
  border: 1px solid rgba(100, 50, 180, 0.3);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.gamif-db-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.gamif-db-header-dots {
  display: flex;
  gap: 6px;
}

.gamif-db-header-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-r {
  background: #FF5F57;
}

.dot-y {
  background: #FEBC2E;
}

.dot-g {
  background: #28C840;
}

.gamif-db-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.gamif-db-content {}

.gamif-db-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.gamif-db-stat {
  flex: 1;
  background: rgba(100, 50, 180, 0.15);
  border: 1px solid rgba(100, 50, 180, 0.2);
  border-radius: 10px;
  padding: 14px;
}

.gamif-db-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.gamif-db-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.gamif-db-stat-sub {
  font-size: 10px;
  color: #22C55E;
}

.gamif-db-progress-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 12px 0 6px;
}

.gamif-db-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}

.gamif-db-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), #9B72D4);
  border-radius: 3px;
}

.gamif-db-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.gamif-db-badge {
  background: rgba(100, 50, 180, 0.2);
  border: 1px solid rgba(100, 50, 180, 0.3);
  color: #9B72D4;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Floating cards */
.gamif-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.gamif-float-1 {
  bottom: -16px;
  left: -20px;
}

.gamif-float-2 {
  top: -16px;
  right: -16px;
}

.gamif-float .gf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ===========================
       FORMATIONS CARDS
    =========================== */
.formations-section {
  background: var(--white);
  padding-top: 52px;
}

.formations-header {
  margin-bottom: 48px;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.formation-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  /* transform géré par Motion One spring */
}

.formation-card:hover {
  box-shadow: 0 24px 64px rgba(100, 50, 180, 0.16);
  border-color: var(--purple);
}


.formation-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.formation-card-1 .formation-card-img {
  background: #6B4FD8;
}

.formation-card-2 .formation-card-img {
  background: #12103A;
}

.fc-img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.formation-card-img-visual {
  display: none;
}

.formation-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
}

/* 3D floating illustration wrapper */
.formation-3d-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.3));
  animation: float3d 4s ease-in-out infinite;
}

.formation-card-2 .formation-3d-wrap {
  animation-delay: 1.2s;
}

@keyframes float3d {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.formation-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.formation-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.formation-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.formation-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.ftag {
  background: var(--purple-bg);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.formation-card-body .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  margin-top: auto;
}

/* ===========================
       GAMIFICATION IMPACT
    =========================== */
.gamif-impact {
  background: var(--purple-bg);
}

.gamif-impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}

.gamif-impact-visual {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 420px;
}

.gamif-impact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 28px;
}

/* Floating elements on image */
.gamif-impact-badge {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gamif-impact-badge-1 {
  bottom: 16px;
  left: 16px;
}

.gamif-impact-badge-2 {
  top: 16px;
  right: 16px;
}

.gamif-impact-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

.gamif-impact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gamif-impact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--purple);
  transition: var(--transition);
}

.gamif-impact-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.gamif-impact-check {
  width: 24px;
  height: 24px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gamif-impact-check svg {
  width: 12px;
  height: 12px;
  color: var(--purple);
}

.gamif-impact-item-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.gamif-impact-item-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.gamif-impact-item-stat {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
}

.gamif-impact-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===========================
       WHY TEATCH
    =========================== */
.why-section {
  background: var(--white);
}

.why-header {
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
}

.why-card:hover {
  border-color: var(--purple);
  box-shadow: 0 24px 64px rgba(100, 50, 180, 0.15);
  transform: translateY(-8px);
}

.why-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  transition: transform 0.35s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.why-card:hover .why-img-wrap {
  transform: translateY(-10px) scale(1.06);
}

.why-img-wrap img {
  width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
}

.why-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
       TESTIMONIALS
    =========================== */
.testi-section {
  background: var(--purple-bg);
}

.testi-header {
  margin-bottom: 48px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              opacity 0.3s ease;
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testi-card.active {
  transform: scale(1.35);
  box-shadow: 0 24px 72px rgba(0,0,0,0.16), 0 6px 28px rgba(107,79,224,0.18);
  border-color: var(--purple-light, #a78bfa);
  z-index: 5;
}

.testi-grid:has(.testi-card.active) .testi-card:not(.active) {
  opacity: 0.45;
  transform: scale(0.97);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}

.testi-quote-icon {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 36px;
  height: 36px;
  color: var(--purple-light);
  opacity: 0.8;
}

.testi-text {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================
       FAQ
    =========================== */
.faq-section {
  background: var(--white);
}

.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(100, 50, 180, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  user-select: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--purple);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--purple);
}

.faq-item.open .faq-icon svg {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
       NEWSLETTER
    =========================== */
.newsletter-section {
  background: #1E1550;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(100, 50, 180, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.newsletter-text {}

.newsletter-title {
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.newsletter-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 400px;
  min-width: 280px;
}

.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter-cta {
  background: linear-gradient(155deg, rgba(255, 178, 50, 0.94) 0%, rgba(245, 166, 35, 0.90) 100%);
  color: #1A1A2E;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: inherit;
  position: relative;
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 2px 8px rgba(245, 166, 35, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn-newsletter-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  transform: translateY(7px) scaleX(0.84);
  filter: blur(14px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  background: rgba(245, 166, 35, 0.75);
}

.btn-newsletter-cta:hover {
  background: linear-gradient(155deg, rgba(255, 188, 70, 0.97) 0%, rgba(255, 178, 50, 0.94) 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 6px 22px rgba(245, 166, 35, 0.36);
}

.btn-newsletter-cta:hover::before {
  opacity: 0.72;
  filter: blur(20px);
  transform: translateY(11px) scaleX(0.78);
}

/* ===========================
       CONTACT
    =========================== */
.contact-section {
  background: var(--purple-bg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse at top right, rgba(100, 50, 180, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.contact-info {}

.contact-info-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--purple);
}

.contact-detail-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 14px;
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(100, 50, 180, 0.10);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  color: var(--text);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(100, 50, 180, 0.08);
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px;
  border-radius: 50px;
}

/* ===========================
       FOOTER
    =========================== */
.footer {
  background: var(--dark);
  color: white;
  padding: 48px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-logo .nav-logo-dot {
  width: 8px;
  height: 8px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-qualiopi {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 50, 180, 0.2);
  border: 1px solid rgba(100, 50, 180, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #9B72D4;
}


.footer-coord {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.footer-coord a {
  color: rgba(255,255,255,0.55);
  transition: color 200ms;
}
.footer-coord a:hover { color: var(--gold); }
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.footer-newsletter-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #fff;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color 200ms;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus { border-color: var(--purple); }
.footer-newsletter-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 200ms, transform 150ms;
  width: 100%;
}
.footer-newsletter-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Footer 3-column layout ── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin: 0 0 0.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  transition: color 200ms;
}
.footer-links a:hover { color: var(--purple); }
.footer-socials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.9375rem;
  transition: color 200ms;
}
a.footer-social-row:hover { color: var(--purple); }
a.footer-social-row:hover .footer-social-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.footer-social-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 200ms, border-color 200ms, color 200ms;
}
.footer-social-icon svg { width: 15px; height: 15px; }
.footer-social-soon { opacity: 0.45; cursor: default; }
.footer-soon-badge {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ===========================
       SCROLL TO TOP
    =========================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(100, 50, 180, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--purple-dark);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  color: white;
}

/* ===========================
       MOBILE RESPONSIVE
    =========================== */
@media (max-width: 900px) {
  .section {
    padding: 64px 0;
  }

  .hero-container {
    padding: 0 20px;
    width: 100%;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-video-wrap {
    max-width: 100%;
  }

  /* ── Carousels mobile (scroll-snap) ── */
  .approach-grid,
  .acte-grid,
  .formations-grid,
  .why-grid,
  .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 4px 24px 20px;
    margin: 0 -24px;
    max-width: none;
  }

  .approach-grid::-webkit-scrollbar,
  .acte-grid::-webkit-scrollbar,
  .formations-grid::-webkit-scrollbar,
  .why-grid::-webkit-scrollbar,
  .testi-grid::-webkit-scrollbar {
    display: none;
  }

  .approach-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .acte-card {
    flex: 0 0 76%;
    scroll-snap-align: start;
    min-height: 300px;
    padding: 26px 28px;
  }

  .formation-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .why-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .testi-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .acte-section {
    padding: 48px 0 42px;
  }

  .acte-section .container {
    padding: 0 22px;
  }

  .acte-letter {
    font-size: 76px;
    margin-bottom: 20px;
  }

  .acte-cta .btn {
    min-width: 0;
    width: min(100%, 416px);
  }

  .gamif-dark .container {
    max-width: 100%;
    border-radius: 20px;
    padding: 60px 24px;
  }

  .gamif-dark-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gamif-impact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stats-inner {
    padding: 36px 32px;
  }
  .stat-icon-img {
    width: 56px;
    height: 56px;
  }
  .stat-item {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-logo {
    margin-left: 0;
  }

  .burger {
    display: flex;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .newsletter-section {
    padding: 34px 0;
  }

  .newsletter-title {
    font-size: 23px;
  }

  .newsletter-subtitle {
    font-size: 13px;
  }

  .newsletter-form {
    gap: 8px;
    min-width: 0;
  }

  .newsletter-input {
    min-width: 0;
    padding: 10px 14px;
    font-size: 13px;
  }

  .btn-newsletter-cta {
    padding: 10px 16px;
    font-size: 13px;
  }

  .acte-grid {
    gap: 14px;
  }

  .acte-header {
    margin-bottom: 36px;
  }

  .acte-header .section-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .acte-header .section-title {
    font-size: 31px;
    letter-spacing: -0.9px;
  }

  .acte-header .section-subtitle {
    font-size: 15px;
  }

  .acte-card {
    min-height: 270px;
    padding: 24px 24px;
  }

  .acte-letter {
    font-size: 68px;
  }

  .acte-card-title {
    font-size: 20px;
  }

  .acte-cta {
    margin-top: 30px;
  }

  .acte-cta-text {
    font-size: 14px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-float-glass {
    display: none;
  }

  .gamif-float {
    display: none;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .stats-inner {
    padding: 22px 12px;
    gap: 0;
  }
  .stat-icon-img {
    display: none;
  }
  .stat-item {
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
  }
  .stat-number {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .stat-label {
    font-size: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .stat-divider {
    height: 40px;
  }
}

/* Mobile nav dropdown */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  z-index: 200;
  padding: 24px 24px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover {
  background: var(--purple-bg);
  color: var(--purple);
}

.mobile-nav .btn-primary {
  margin-top: 12px;
  text-align: center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ===========================
   APPROACH CARDS — NEW VISUAL
   =========================== */

.ap-visual-new {
  width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.ap-card-body {
  padding: 24px 28px 32px;
}

.ap-img-real {
  width: auto;
  height: 185px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .08));
}

.ap-chip {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #1A1A2E;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  white-space: nowrap;
  top: 16px;
  right: 14px;
}

.ap-chip--bl {
  top: auto;
  bottom: 16px;
  left: 10px;
  right: auto;
}

.ap-chip--bc {
  top: auto;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

.ap-chip--pink {
  color: #DB2777;
}

.ap-chip--green {
  color: #059669;
}

.ap-label {
  display: block;
  width: 100%;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
  text-align: center;
}

.ap-label--1 {
  color: #6432B4;
}

.ap-label--2 {
  color: #DB2777;
}

.ap-label--3 {
  color: #059669;
}

/* ===========================
   FORMATION CARDS — NEW VISUAL
   =========================== */
.formation-card-img--new {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.fc-top-light {
  background: #EEEAFB;
}

.fc-top-dark {
  background: linear-gradient(135deg, #0D0B2B 0%, #1E1A55 60%, #2D267A 100%);
}

.fc-glass-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pills */
.fc-pill-top {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.fc-pill-top--right {
  left: auto;
  right: 16px;
}

.fc-pill-solid {
  background: #6432B4;
  color: #fff;
}

.fc-pill-gold {
  background: #F5A623;
  color: #1A1A2E;
}

.fc-pill-glass-light {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .9);
  color: #1A1A2E;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.fc-pill-glass-dark {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fc-pill-bottom {
  position: absolute;
  bottom: 18px;
  left: 16px;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

/* glass center card */
.fc-center-glass {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(100, 50, 180, .14);
  min-width: 165px;
  text-align: center;
  z-index: 1;
}

.fc-center-glass--dark {
  background: rgba(20, 16, 60, .72);
  border: 1.5px solid rgba(255, 255, 255, .12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.fc-glass-label {
  font-size: 10px;
  color: #6B7280;
  margin-bottom: 2px;
}

.fc-glass-title {
  font-size: 15px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.fc-glass-progress {
  height: 5px;
  background: #E8E4FA;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.fc-glass-fill {
  height: 100%;
  background: linear-gradient(90deg, #6432B4, #9B72D4);
  border-radius: 3px;
}

.fc-glass-avrow {
  display: flex;
  justify-content: center;
}

.fc-glass-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  margin-left: -6px;
}

.fc-glass-av:first-child {
  margin-left: 0;
}

/* biz bars */
.fc-biz-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-bottom: 10px;
}

.fc-biz-b {
  border-radius: 4px 4px 0 0;
  flex: 1;
}

.fc-biz-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-biz-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #1A1A2E;
  flex-shrink: 0;
}

.fc-biz-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.fc-biz-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, .4);
}

.fc-biz-pct {
  margin-left: auto;
  background: rgba(245, 166, 35, .2);
  color: #F5A623;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
}

/* rocket */
.fc-rocket-icon {
  position: absolute;
  top: 58px;
  left: 20px;
  z-index: 2;
}
/* ── Lien actif dans la navbar ──────────────────────────── */
.nav-links a.nav-active { color: var(--purple); }
.nav-links a.nav-active::after { width: 100%; }
.mobile-nav a.nav-active { color: var(--purple); }

.hero-title-mobile,
.hero-desc-mobile,
.hero-cta-mobile {
  display: none;
}

.hero-title-desktop,
.hero-desc-desktop,
.hero-cta-desktop {
  display: inline;
}

@media (min-width: 901px) {
  .hero {
    padding: 120px 0 80px;
    background-color: #FAFAFB;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-container {
    max-width: 1440px;
    width: 95%;
    margin: 0 auto;
    padding: 0 40px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
  }

  .hero-content {
    max-width: none;
    margin: 0;
  }

  .hero-badge {
    display: none;
  }

  .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.022em;
    margin: 0 0 24px;
    max-width: 520px;
    color: var(--text);
  }

  .hero-title > .hero-title-desktop {
    color: inherit;
    font-style: normal;
    text-shadow: none;
  }

  .hero-title > .hero-title-desktop > span {
    color: var(--purple);
    font-style: italic;
    position: relative;
    text-shadow: none;
  }

  .hero-desc {
    font-size: 17px;
    color: #3d3d5c;
    max-width: 420px;
    margin: 0 0 32px;
    line-height: 1.65;
    font-weight: 500;
  }

  .hero-desc span {
    color: inherit;
    font-weight: inherit;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .hero-ctas .btn-primary {
    min-height: auto;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    background: var(--purple);
    box-shadow: 0 10px 28px rgba(100, 50, 180, 0.24);
  }

  .hero-ctas .btn-primary span {
    display: inline;
    width: auto;
    height: auto;
    margin-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero-ctas .btn-primary .hero-cta-mobile {
    display: none;
  }

  .hero-ctas .btn-primary .hero-cta-desktop {
    display: inline;
  }

  .hero-reassurance {
    display: flex;
  }

  .hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 640px; 
    margin-left: auto;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-video-label {
    display: flex;
  }

  .hero-video-glow {
    position: absolute;
    top: -38%;
    left: -30%;
    right: -30%;
    bottom: -38%;
    height: auto;
    z-index: 0;
    filter: blur(72px);
    opacity: 0.92;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 50%, rgba(130,65,240,0.78) 0%, rgba(108,50,220,0.60) 30%, rgba(90,30,200,0.32) 58%, transparent 75%);
  }

  .hero-showcase {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    padding: 10px;
    overflow: visible;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow:
      inset 0 1.5px 0 rgba(255,255,255,0.28),
      inset 0 -1px 0 rgba(255,255,255,0.06),
      0 24px 60px rgba(100,50,220,0.35),
      0 8px 24px rgba(0,0,0,0.12);
  }

  .hero-showcase::before {
    display: block;
  }

  .hero-showcase-screen {
    position: relative;
    background: #0d0627;
    overflow: hidden;
    border-radius: 14px;
    min-height: 320px;
  }

  .hero-showcase-screen::after {
    display: none;
  }

  .hero-showcase-screen video.hero-video-element {
    width: 100%;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero-sound-nudge {
    top: 12px;
    right: 12px;
    min-height: auto;
    padding: 8px 16px 8px 10px;
    gap: 7px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
    font-size: 12px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 4px 16px rgba(0,0,0,0.12);
  }

  .hero-sound-nudge-icon {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.18);
    color: #fff;
  }

  .hero-showcase-bar {
    display: flex;
  }

  .video-progress-wrap {
    display: flex;
  }

  .video-time {
    display: inline;
  }

  .hero-play-orb,
  .hero-testimonial,
  .hero-metrics,
  .hero-method-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-title-desktop,
  .hero-desc-desktop,
  .hero-cta-desktop,
  .hero-reassurance,
  .hero-video-label {
    display: none;
  }

  .hero-title-mobile,
  .hero-desc-mobile,
  .hero-cta-mobile {
    display: inline;
  }

  .hero-title > .hero-title-mobile {
    color: #171730;
    text-shadow: none;
  }

  .hero-title > .hero-title-mobile > span {
    color: var(--purple);
    text-shadow: 0 12px 34px rgba(122, 73, 226, 0.22);
  }

  .hero-desc > .hero-desc-mobile {
    color: #666987;
    font-weight: 600;
  }

  .hero-desc > .hero-desc-mobile > span {
    color: var(--purple);
    font-weight: 800;
  }

  .hero-ctas .btn-primary .hero-cta-desktop {
    display: none;
  }

  .hero {
    padding: 160px 0 54px;
  }

  .hero::before {
    width: 260px;
    height: 260px;
    left: -214px;
    top: 104px;
  }

  .hero::after {
    width: 390px;
    height: 390px;
    right: -322px;
    top: 210px;
  }

  .hero-container {
    padding: 0 24px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-badge {
    min-height: 38px;
    margin-bottom: 24px;
    padding: 9px 18px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: clamp(43px, 12vw, 62px);
    line-height: 1.18;
    margin-bottom: 24px;
  }

  .hero-desc {
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.52;
    margin-bottom: 32px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-ctas .btn-primary {
    width: min(100%, 480px);
    min-height: 64px;
    padding: 0 26px;
    font-size: clamp(18px, 5.4vw, 25px);
  }

  .hero-video-wrap {
    margin-top: 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-showcase {
    border-radius: 22px;
  }

  .hero-showcase-screen {
    border-radius: 20px;
  }

  .hero-showcase-screen video.hero-video-element {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
  }

  .hero-sound-nudge {
    top: 16px;
    right: 16px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-play-orb {
    width: 86px;
    height: 86px;
    top: 49%;
  }

  .hero-testimonial {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    padding: 20px 20px 18px;
    border-radius: 18px;
  }

  .hero-quote-mark {
    font-size: 58px;
  }

  .hero-testimonial p {
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.5;
  }

  .hero-testimonial-progress {
    margin-top: 18px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 6px;
  }

  .hero-metric {
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
    text-align: center;
  }

  .hero-metric-icon {
    width: 44px;
    height: 44px;
  }

  .hero-metric-icon svg {
    width: 38px;
    height: 38px;
  }

  .hero-metric strong {
    font-size: clamp(19px, 5.4vw, 28px);
  }

  .hero-metric small {
    font-size: clamp(13px, 3.7vw, 18px);
  }

  .hero-method-link {
    display: inline-flex;
  }

  .hero-testimonial {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 150px 0 44px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(42px, 12.2vw, 52px);
  }

  .hero-desc {
    max-width: 350px;
  }

  .hero-ctas {
    align-items: center;
  }

  .hero-ctas .btn-primary {
    min-height: 58px;
    padding: 0 20px;
  }

  .hero-ctas .btn-primary span {
    width: 30px;
    height: 30px;
  }

  .hero-showcase-screen video.hero-video-element {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
  }

  .hero-sound-nudge {
    min-height: 42px;
    font-size: 13px;
  }

  .hero-play-orb {
    width: 78px;
    height: 78px;
  }

  .hero-testimonial {
    display: none;
  }

  .hero-quote-mark {
    font-size: 50px;
  }

  .hero-metric {
    padding: 0 7px;
  }

  .hero-metric-icon {
    width: 38px;
    height: 38px;
  }

  .hero-metric-icon svg {
    width: 34px;
    height: 34px;
  }
}

/* ── Barre de progression au scroll ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--purple);
  z-index: 9999;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ── Toast notification ────────────────────────────────── */
#teatch-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  min-width: 280px;
  max-width: 360px;
  transform: translateY(calc(100% + 2.5rem));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
#teatch-toast.toast-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex; align-items: center; justify-content: center;
}
.toast-icon svg { width: 18px; height: 18px; stroke: #16a34a; }
.toast-body { flex: 1; min-width: 0; }
.toast-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.toast-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}
.toast-close {
  flex-shrink: 0;
  background: none; border: none; cursor: pointer;
  color: #9ca3af; padding: 2px;
  line-height: 1;
  transition: color 0.15s;
}
.toast-close:hover { color: #374151; }
.toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, #5B21D6, #a78bfa);
  width: 100%;
  transform-origin: left;
  animation: toast-bar 5s linear forwards;
}
@keyframes toast-bar { to { transform: scaleX(0); } }

/* dark mode */
.dark #teatch-toast {
  background: #1e1538;
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.dark .toast-title { color: #f9fafb; }
.dark .toast-desc  { color: #9ca3af; }
.dark .toast-icon  { background: rgba(22,163,74,0.18); }

@media (max-width: 480px) {
  #teatch-toast { right: 1rem; left: 1rem; min-width: 0; max-width: none; }
}
