/* ==========================================================================
   Luzmo × Datalook — Monetizing Analytics Webinar Series
   Feuille de style principale (Vanilla CSS, 100% Google Fonts)
   ----------------------------------------------------------------------------
   Sommaire :
     1. Variables (:root) — palette Luzmo + tokens
     2. Reset et base
     3. Typographie
     4. Conteneurs et grilles
     5. Composants utilitaires (boutons, labels, badges, cards)
     6. Animations (reveal, pulse)
     7. Accessibilité et motion
     8. Responsive breakpoints
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES — Palette Luzmo (alignée prototype + site production)
   ========================================================================== */
:root {
  /* Fonds */
  --bg: #2A2A2A;
  /* Luzmo Black — fond homepage */
  --bg-2: #333333;
  /* Fond alternatif section */
  --bg-card: #3A3A3A;
  /* Fond carte */
  --bg-card-2: #404040;
  /* Fond carte hover */

  /* Jaune signature Luzmo (logo + CTAs) */
  --yellow: #EBFF00;
  --yellow-dim: rgba(235, 255, 0, 0.12);
  --yellow-glow: rgba(235, 255, 0, 0.25);
  --yellow-border: rgba(235, 255, 0, 0.30);

  /* Bleu vif brand guidelines */
  --blue: #4A53FF;
  --blue-dim: rgba(74, 83, 255, 0.12);
  --blue-border: rgba(74, 83, 255, 0.28);

  /* Bleu clair secondaire (Datalook) */
  --lblue: #7B9BD0;
  --lblue-dim: rgba(123, 155, 208, 0.12);
  --lblue-border: rgba(123, 155, 208, 0.28);

  /* Texte (opacités blanc sur fond sombre) */
  --white: #FFFFFF;
  --t80: rgba(255, 255, 255, 0.95);
  --t60: rgba(255, 255, 255, 0.85);
  --t40: rgba(255, 255, 255, 0.65);
  --t20: rgba(255, 255, 255, 0.40);
  --t10: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.10);

  /* Couleurs par session (3 webinaires) */
  --w1: #EBFF00;
  --w1fg: #2A2A2A;
  /* Session 1 — Milk the data cow (C-level) */
  --w2: #4A53FF;
  --w2fg: #FFFFFF;
  /* Session 2 — Behind the scenes (Product & Data) */
  --w3: #7B9BD0;
  --w3fg: #2A2A2A;
  /* Session 3 — Show me the money (GTM & Revenue) */

  /* Typographie */
  --font-body: 'Manrope', sans-serif;
  --font-display: 'PP Telegraf', 'Manrope', sans-serif;

  /* Espacements (rythme vertical) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 3rem;
  --nav-height: 62px;

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.4s;
  --dur-slow: 0.8s;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  /* Compense la nav fixe sur ancres */
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Scrollbar (webkit) — harmonisée avec palette dark */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--t20);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--t40);
}


/* ==========================================================================
   3. TYPOGRAPHIE
   ========================================================================== */
/* Titres — PP Telegraf Medium (500), conforme site production Luzmo */
h1,
h2,
h3,
h4,
h5,
h6,
.display,
.label,
.nav-logo,
.stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1,
.display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2,
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

h4 {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Labels / eyebrows — PP Telegraf Bold (700), petit caps, jaune Luzmo */
.label,
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-block;
  margin-bottom: 0.65rem;
}

p {
  font-family: var(--font-body);
  color: var(--t60);
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: var(--white);
}

/* Couleurs accent réutilisables */
.yellow {
  color: var(--yellow);
}

.accent-blue {
  color: var(--blue);
}

.accent-lblue {
  color: var(--lblue);
}


/* ==========================================================================
   4. CONTENEURS & GRILLES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section {
  padding-block: var(--space-7);
  position: relative;
}

.section-hdr {
  margin-bottom: var(--space-5);
}

/* Grille responsive générique (auto-fit) */
.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}


/* ==========================================================================
   5. COMPOSANTS UTILITAIRES
   ========================================================================== */

/* ----- Boutons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--bg);
  box-shadow: 0 2px 14px var(--yellow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 22px var(--yellow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 1.5px solid var(--yellow-border);
}

.btn-outline:hover {
  background: var(--yellow-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--t10);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--t20);
}

/* ----- Badges ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--yellow);
}

/* ----- Dots (indicateur statique + variante pulse) ----- */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.dot-pulse {
  position: relative;
  background: var(--yellow);
}

.dot-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.5;
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  70% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ----- Cards génériques ----- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: border-color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.card:hover {
  border-color: var(--t20);
  background: var(--bg-card-2);
}


/* ==========================================================================
   6. ANIMATIONS (scroll-reveal via IntersectionObserver)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   7. ACCESSIBILITÉ & REDUCED MOTION
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Skip link (a11y, masqué jusqu'au focus clavier) */
.skip-link {
  position: absolute;
  left: -9999px;
  padding: 0.5rem 1rem;
  background: var(--yellow);
  color: var(--bg);
  font-weight: 500;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
  top: 0;
}


/* ==========================================================================
   8. RESPONSIVE — Breakpoints
   ========================================================================== */
/* Tablette */
@media (max-width: 900px) {
  :root {
    --container-pad: 1.75rem;
    --space-7: 4rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --container-pad: 1.25rem;
    --space-7: 3rem;
    --space-6: 2.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.88rem;
  }
}


/* ==========================================================================
   9. LAYOUT SECTIONS
   ========================================================================== */

/* ----- 9.1 NAV ----- */
/* Sélecteur attribut pour ne cibler QUE la nav principale (pas le footer-links) */
nav[aria-label="Primary"] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2A2A2A;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .x {
  color: var(--t40);
  font-family: var(--font-body);
  font-weight: 300;
}

/* Logos inline (img) — alignement vertical dans les différents contextes */
/* Ratio Datalook/Luzmo = 13/11 appliqué partout */
.nav-logo-img {
  height: 11px;
  width: auto;
  vertical-align: middle;
}

.partner-logo-img {
  height: 13px;
  width: auto;
  vertical-align: middle;
}

.footer-brand-img {
  height: 11px;
  width: auto;
  vertical-align: middle;
}

.footer-partner-img {
  height: 13px;
  width: auto;
  vertical-align: middle;
}

.p-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.p-chip.luzmo img {
  height: 13px;
  width: auto;
}

.p-chip.datalook img {
  height: 15px;
  width: auto;
}

.pc-datalook .partner-logo img {
  height: 20px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--t60);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
}

.nav-links a:hover {
  color: var(--white);
  background: var(--t10);
}

/* Navigation active — soulignement jaune sur la section visible */
.nav-links a.nav-active {
  color: var(--white);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  box-shadow: inset 0 -2px 0 var(--yellow);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--bg) !important;
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--yellow) !important;
  filter: brightness(1.05);
}

/* Nav responsive — masquage ancres sur mobile (CTA Register conservé) */
@media (max-width: 780px) {
  .nav-links li:not(:last-child) {
    display: none;
  }
}

@media (max-width: 480px) {
  nav[aria-label="Primary"] {
    padding: 0 1.25rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .nav-logo .partner {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 0.55rem 0.85rem 0.45rem;
    font-size: 0.82rem;
  }
}


/* ----- 9.2 HERO ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-pad) var(--space-6);
  position: relative;
  overflow: hidden;
}

/* Auréoles radiales décoratives (jaune + bleu) */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -60px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 255, 0, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 5%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 83, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-inline: auto;
  width: 100%;
}

/* Live badge (clignotement subtil) */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  border-radius: 4px;
  padding: 0.3rem 0.9rem 0.3rem 0.55rem;
  margin-bottom: 2.5rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 2.5s var(--ease) infinite;
}

@keyframes blink {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--yellow-glow);
  }

  50% {
    box-shadow: 0 0 0 4px transparent;
  }
}

.live-badge span {
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--t60);
}

.live-badge strong {
  color: var(--white);
  font-weight: 600;
}

/* Dégradé bas du hero — indication visuelle de scroll */
.hero .scroll-hint {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.hero .scroll-hint .scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--t40);
  border-bottom: 2px solid var(--t40);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { translate: 0 0; opacity: 0.5; }
  50% { translate: 0 6px; opacity: 1; }
}


@media (prefers-reduced-motion: reduce) {
  .hero .scroll-hint .scroll-chevron { animation: none; opacity: 0.5; }
}

/* Headline Hero — override typo fondation */
.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--t60);
  max-width: 540px;
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

/* Retour à la ligne décoratif (desktop only, invisible pour le SEO) */
.break {
  display: block;
}

/* Stats row (séparateurs verticaux) */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  padding-right: 2.5rem;
  margin-right: 2.5rem;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.stat-n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.stat-l {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--t40);
  font-weight: 500;
}

@media (max-width: 780px) {
  .break {
    display: inline;
  }

  .break.mobile {
    display: block;
  }

  .hero {
    padding-inline: 1.75rem;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 3rem);
  }

  .hero h1 {
    font-size: clamp(2.3rem, 8vw, 3.6rem);
  }

  .hero-stats {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;          /* Firefox */
    margin-inline: 0;
    padding-inline: 0;
  }

  .hero-stats::-webkit-scrollbar {  /* Chrome / Safari */
    display: none;
  }

  .stat {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-inline: 1.25rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-stats {
    margin-inline: 0;
    padding-inline: 0;
  }

  .stat {
    padding-right: 1.25rem;
    margin-right: 1.25rem;
  }
}


/* ----- 9.3 SERIES ----- */
.series-section {
  padding-block: 100px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.series-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.series-section .section-title {
  margin-top: 0.55rem;
  margin-bottom: 1.4rem;
}

.series-intro {
  font-size: 0.9rem;
  color: var(--t60);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Steps (liste numérotée avec couleurs de session) */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-n {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.sn-y {
  background: var(--w1);
  color: var(--w1fg);
}

/* Session 1 — yellow */
.sn-b {
  background: var(--w2);
  color: var(--w2fg);
}

/* Session 2 — blue */
.sn-l {
  background: var(--w3);
  color: var(--w3fg);
}

/* Session 3 — light blue */

.step-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.step-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--t60);
  line-height: 1.6;
}

/* Promise card (encart droit avec citation + partenaires) */
.promise-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--w1), var(--w2), var(--w3));
}

.promise-lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.promise-q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--t80);
  line-height: 1.55;
  border-left: 3px solid var(--yellow);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.partner-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.p-chip.luzmo {
  color: var(--yellow);
  border-color: var(--yellow-border);
}

.p-chip.datalook {
  color: var(--white);
}

.px {
  font-family: var(--font-body);
  color: var(--t20);
  font-weight: 300;
}

.series-note {
  font-family: var(--font-body);
  margin-top: 1.5rem;
  font-size: 0.81rem;
  color: var(--t40);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .series-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .series-section {
    padding-block: 60px;
  }

  .promise-card {
    padding: 2rem;
  }
}


/* ----- 9.4 WEBINARS ----- */
.webinars-section {
  padding-block: 100px;
}

.section-hdr {
  margin-bottom: 3.5rem;
}

.w-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color var(--dur-fast) var(--ease);
}

.w-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.w-inner {
  display: grid;
  grid-template-columns: 310px 1fr;
}

/* Side panel (gauche) */
.w-side {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.w-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
}

.ws-y::before {
  background: var(--w1);
}

.ws-b::before {
  background: var(--w2);
}

.ws-l::before {
  background: var(--w3);
}

.w-num-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.w-num-txt {
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t20);
}

.w-chip {
  font-family: var(--font-display);
  padding: 0.18rem 0.6rem;
  border-radius: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-y {
  background: var(--yellow-dim);
  color: var(--yellow);
}

.chip-b {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid var(--blue-border);
}

.chip-l {
  background: var(--lblue-dim);
  color: var(--lblue);
}

.w-meta {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--t60);
}

.meta-row svg {
  opacity: 0.45;
  flex-shrink: 0;
}

.meta-row strong {
  color: var(--white);
  font-weight: 600;
}

.w-aud {
  background: var(--t10);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.78rem 1rem;
}

.aud-lbl {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t20);
  margin-bottom: 0.3rem;
}

.aud-txt {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
}

/* Speakers block */
.spk-block {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.spk-lbl {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t20);
}

.spk-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Lien LinkedIn sur les speakers — reset visuel, curseur pointer uniquement */
a.spk-link {
  color: inherit;
  text-decoration: none;
}

.spk-av {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
}

.av-y {
  background: var(--yellow-dim);
  color: var(--yellow);
  border: 1px solid var(--yellow-border);
}

.av-b {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid var(--blue-border);
}

.av-l {
  background: var(--lblue-dim);
  color: var(--lblue);
  border: 1px solid var(--lblue-border);
}

.av-n {
  background: var(--t10);
  color: var(--t40);
  border: 1px solid var(--border);
}

.spk-name {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
}

.spk-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--t40);
}

/* Content panel (droit) */
.w-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.w-sess {
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ws-y-t {
  color: var(--yellow);
}

.ws-b-t {
  color: var(--blue);
}

.ws-l-t {
  color: var(--lblue);
}

.w-content h3 {
  font-weight: 700;
  font-size: 1.48rem;
  line-height: 1.22;
  letter-spacing: -0.018em;
  margin-top: 0.2rem;
}

.w-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--t60);
  line-height: 1.75;
}

.topics-hdr {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t20);
  margin-bottom: 0.72rem;
}

.topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.48rem;
}

.t-item {
  display: flex;
  gap: 0.52rem;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--t60);
  line-height: 1.45;
}

.t-dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-top: 7px;
}

.td-y {
  background: var(--yellow);
}

.td-b {
  background: var(--blue);
}

.td-l {
  background: var(--lblue);
}

/* After-session bar (CTA fin de card) */
.w-bar {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--t10);
}

.bar-lbl {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.bl-y {
  color: var(--yellow);
}

.bl-b {
  color: var(--blue);
}

.bl-l {
  color: var(--lblue);
}

.bar-txt {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--white);
}

.w-btn {
  font-family: var(--font-display);
  font-weight: 500;
  padding: 0.66rem 1.35rem;
  border-radius: 5px;
  font-size: 0.83rem;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
}

.wb-y {
  background: var(--yellow);
  color: var(--bg);
}

.wb-y:hover {
  background: #f5ff1a;
  transform: translateY(-1px);
}

.wb-b {
  background: var(--blue);
  color: var(--white);
}

.wb-b:hover {
  background: #5c64ff;
  transform: translateY(-1px);
}

.wb-l {
  background: var(--lblue);
  color: var(--bg);
}

.wb-l:hover {
  background: #8daee0;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .webinars-section {
    padding-block: 60px;
  }

  .w-inner {
    grid-template-columns: 1fr;
  }

  .w-side {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem;
  }

  .w-content {
    padding: 2rem;
  }

  .topics {
    grid-template-columns: 1fr;
  }

  .w-content h3 {
    font-size: 1.25rem;
  }
}


/* ----- 9.5 PARTNERS ----- */
.partners-section {
  padding-block: 100px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.pc-luzmo::before {
  background: var(--yellow);
}

.pc-datalook::before {
  background: var(--lblue);
}

.partner-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pc-luzmo .partner-logo img {
  height: 20px;
  width: auto;
}

.pc-datalook .partner-logo img {
  height: 24px;
  width: auto;
}

.pc-luzmo .partner-logo {
  color: var(--yellow);
}

.pc-datalook .partner-logo {
  color: var(--white);
}

.partner-logo .dot-glyph {
  font-size: 0.9rem;
  color: var(--lblue);
}

.partner-card p {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--t60);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.partner-card>a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.84rem;
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--dur-fast) var(--ease);
}

.pc-luzmo>a {
  color: var(--yellow);
}

.pc-datalook>a {
  color: var(--lblue);
}

.partner-card>a:hover {
  color: var(--white);
}

.partner-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.pb-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.pb-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
}

.pbd-y {
  background: var(--yellow);
}

.pbd-l {
  background: var(--lblue);
}

.pb-body h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 0.18rem;
}

.pb-body p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--t60);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .partners-section {
    padding-block: 60px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    padding: 2rem;
  }
}


/* ----- 9.6 WHY ----- */
.why-section {
  padding-block: 100px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.why-card:hover {
  border-color: var(--yellow-border);
  transform: translateY(-3px);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.why-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--t60);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-section {
    padding-block: 60px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ----- 9.7 REGISTER ----- */
.register-section {
  padding-block: 100px;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

.reg-title {
  margin-top: 0.55rem;
  margin-bottom: 1.2rem;
}

.reg-info {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--t60);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Mini liste des 3 sessions */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sess-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.78rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  transition: border-color var(--dur-fast) var(--ease);
}

.sess-item:hover {
  border-color: var(--yellow-border);
}

.sess-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
}

.sn-by {
  background: var(--w1);
  color: var(--w1fg);
}

.sn-bb {
  background: var(--w2);
  color: var(--w2fg);
}

.sn-bl {
  background: var(--w3);
  color: var(--w3fg);
}

.sess-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
}

.sess-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--t40);
  margin-top: 1px;
}

/* Form card (HubSpot Form embed v2) */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--yellow-border);
  border-radius: 6px;
  padding: 2.5rem;
  position: sticky;
  top: 80px;
  min-height: 1023px !important;
}

.form-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}

.f-sub {
  font-family: var(--font-body);
  font-size: 0.81rem;
  color: var(--t60);
  margin-bottom: 1.75rem;
}

.f-note {
  font-family: var(--font-body);
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--t20);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .register-section {
    padding-block: 60px;
  }

  .reg-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-card {
    padding: 2rem;
    position: static;
  }
}

/* ----- 9.7b HERO FORM (desktop ≥ 1024px) ----- */
/* Le hero est toujours en 2 colonnes sur desktop : la colonne droite
   réserve l'espace du form-card AVANT la relocation JS, éliminant
   le CLS (0.437 mesuré par Lighthouse). Le JS ne fait que déplacer
   le contenu — le layout ne bouge plus.
   ROLLBACK : restaurer .hero-inner.has-hero-form comme sélecteur,
   remettre .hero-form-slot { display: none } par défaut. */

@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
  }

  .hero-inner > .hero-content {
    min-width: 0;
  }

  .hero-form-slot {
    display: block;
  }

  .hero-form-slot > .form-card {
    position: static;
    width: 100%;
  }

  @media (max-width: 1710px) {
    .hero-inner h1 {
      font-size: clamp(2.8rem, 5vw, 4.5rem);
    }
  }

}


/* ----- 9.8 FINAL CTA ----- */
.final-cta {
  padding-block: 110px;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(235, 255, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  position: relative;
}

.final-cta h2 .yellow {
  color: var(--yellow);
}

.final-cta p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--t60);
  max-width: 440px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  position: relative;
}

.final-btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 600px) {
  .final-cta {
    padding-block: 70px;
  }

  .final-btns .btn {
    flex: 1 1 100%;
  }
}


/* ----- 9.9 FOOTER ----- */
footer {
  padding: 1.75rem var(--container-pad);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brandline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--yellow);
}

.footer-sep {
  color: var(--t20);
  margin: 0 0.5rem;
}

.footer-partner {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--t40);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--t40);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--t40);
  transition: color var(--dur-fast) var(--ease);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--t10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t40);
  font-family: var(--font-body);
  font-size: 0.74rem;
  transition: color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}

.social-link:hover {
  color: var(--white);
  border-color: var(--t20);
}

footer small {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--t20);
}

@media (max-width: 780px) {
  footer {
    padding: 1.5rem var(--container-pad);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}