@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400;1,9..144,700&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&display=swap');

/* ─── RÈGLE GLOBALE MINIATURES : cadrage automatique tous écrans ─── */
.alaune-card img,
.reel-card img,
.blog-card-thumb img,
.fmt-card-thumb img,
[class*="thumb"] img,
[class*="card"] img:not(.logo-img):not(.clem-photo) {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.alaune-card,
.reel-card,
.blog-card-thumb,
[class*="thumb"]:not(.clem-photo) {
  overflow: hidden;
}

:root {
  --bg: #F3F2EE;
  --white: #FFFFFF;
  --dark: #09090E;
  --dark-2: #12121A;
  --purple: #1901AC;
  --purple-light: #5B4EE8;
  --purple-dim: rgba(25,1,172,0.1);
  --coral: #E35336;
  --cream: #F5F5DC;
  --yellow: #FBBF24;
  --green: #10B981;
  --blue: #6366F1;
  --text: #18181B;
  --text-dim: #6B7280;
  --text-dimmer: #9CA3AF;
  --border: #E5E4E0;
  --border-strong: #D4D2CC;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1160px;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14), 0 6px 20px rgba(0,0,0,0.07);
  --shadow-purple: 0 8px 28px rgba(25,1,172,0.35), 0 2px 8px rgba(25,1,172,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  background: rgba(243,242,238,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(229,228,224,0.7);
  transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(243,242,238,0.96);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 16.5px;
  color: var(--dark);
  display: flex; align-items: center; gap: 9px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-dot {
  display: inline-block; width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--coral));
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(25,1,172,0.18);
}
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: 13.5px; font-weight: 500;
  color: var(--text-dim); padding: 7px 13px;
  border-radius: 980px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav a:hover { color: var(--dark); background: rgba(0,0,0,0.055); }
.nav a.active {
  color: var(--dark); font-weight: 600;
  background: rgba(0,0,0,0.07);
}
.header-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #6d28d9, #1901AC); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 980px;
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: -0.01em;
}
.header-cta:hover {
  background: var(--purple);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}
.header-cta svg { width: 14px; height: 14px; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex !important; align-items: center; gap: 4px;
}
.nav-dropdown-trigger svg {
  width: 10px; height: 10px; flex-shrink: 0; opacity: .6;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 14px; padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.07);
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  color: var(--dark); font-size: 13.5px; font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-dd-item:hover { background: var(--bg); color: var(--purple); }
.nav-dd-item .dd-icon { font-size: 16px; line-height: 1; }
.nav-dd-divider { height: 1px; background: var(--border); margin: 4px 2px; }
.nav-dd-all { color: var(--text-dim); font-size: 13px; justify-content: center; }
.nav-dd-all:hover { color: var(--purple); }

/* Mobile dropdown sub-items */
.mobile-nav-sub { display: flex; flex-direction: column; }
.mobile-nav-sub-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 36px;
  color: var(--text-dim); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.mobile-nav-sub-item:hover { background: var(--bg); color: var(--purple); }
.mobile-nav-sub-item .dd-icon { font-size: 15px; }

/* Hamburger */
.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  background: var(--white); border: 1.5px solid var(--border); cursor: pointer;
  border-radius: 12px; box-shadow: var(--shadow-xs);
  transition: background .2s, box-shadow .2s;
}
.menu-btn:hover { background: var(--bg); box-shadow: var(--shadow); }
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s, opacity .3s, width .3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(9,9,14,0.45); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s;
}
.mobile-nav-overlay.open { display: block; opacity: 1; }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(320px, 88vw);
  background: var(--white); box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 0 0 32px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  width: 36px; height: 36px; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--dark); transition: background .2s;
}
.mobile-nav-close:hover { background: var(--border); }
.mobile-nav-links {
  display: flex; flex-direction: column; padding: 16px 16px; gap: 4px; flex: 1;
}
.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
  padding: 14px 16px; border-radius: 14px;
  text-decoration: none; transition: background .18s, color .18s;
  letter-spacing: -.02em;
}
.mobile-nav-link:hover { background: var(--bg); color: var(--purple); }
.mobile-nav-insta {
  margin: 0 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 14px;
  background: linear-gradient(135deg, #ede0c0, #F5F5DC);
  color: #1901AC; font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.mobile-nav-insta:hover { opacity: .9; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #04030D 0%, #0D0880 45%, #080620 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.hero-blob-1 {
  width: 580px; height: 580px; top: -120px; left: -140px;
  background: radial-gradient(circle, rgba(25,1,172,0.70), transparent 65%);
  animation: blob-float 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 440px; height: 440px; bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(227,83,54,0.42), transparent 65%);
  animation: blob-float 11s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 320px; height: 320px; top: 35%; left: 50%;
  background: radial-gradient(circle, rgba(25,1,172,0.18), transparent 65%);
  animation: blob-float 13s ease-in-out infinite 2s;
}
.hero-blob-4 {
  width: 200px; height: 200px; top: 20%; right: 20%;
  background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 65%);
  animation: blob-float 7s ease-in-out infinite 1s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -32px) scale(1.06); }
  66% { transform: translate(-18px, 18px) scale(0.96); }
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 6px 14px 6px 10px; border-radius: 980px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700; line-height: 1.06;
  color: #fff; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--coral) 55%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-topics {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.60);
  max-width: 480px; line-height: 1.8; margin-bottom: 36px;
  letter-spacing: -0.005em;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #6d28d9 0%, #1901AC 100%);
  color: #fff; font-size: 14.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 980px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-purple);
  letter-spacing: -0.01em;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(25,1,172,0.5), 0 4px 12px rgba(25,1,172,0.3); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.82); font-size: 14.5px; font-weight: 500;
  padding: 13px 26px; border-radius: 980px;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); }

/* Hero photo */
.hero-photo-wrap { display: flex; justify-content: center; align-items: center; }
.hero-photo-frame {
  position: relative;
  width: 100%; max-width: 310px;
  margin-left: auto;
  padding: 3px;
  background: linear-gradient(145deg, #E35336 0%, #8B00FF 50%, #1901AC 100%);
  border-radius: 23px;
  box-shadow: 0 0 40px rgba(25,1,172,0.4), 0 24px 60px rgba(0,0,0,0.5);
}
.hero-photo {
  width: 100%; display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
}
.hero-logo-overlay {
  position: absolute;
  top: -135px;
  left: -80px;
  width: 88%;
  z-index: 4;
  mix-blend-mode: normal;
  pointer-events: none;
}

/* Hero cards */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px; padding: 20px 22px;
  backdrop-filter: blur(16px);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.18); }
.hero-card-top {
  display: flex; align-items: center; gap: 13px; margin-bottom: 15px;
}
.hero-card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0;
}
.icon-video { background: linear-gradient(135deg, var(--coral), #ff6a00); }
.icon-poll { background: linear-gradient(135deg, var(--green), var(--blue)); }
.hero-card-label { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-card-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); margin-top: 3px; line-height: 1.4; }
.hero-card-bar {
  height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.09);
  overflow: hidden; margin-top: 12px;
}
.hero-card-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  animation: fill-bar 3s ease-in-out infinite alternate;
}
@keyframes fill-bar { from { width: 30%; } to { width: 74%; } }
.hero-card-meta { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 9px; }

/* ─── SECTIONS PARTAGÉES ─── */
.section { padding: 96px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-white { background: var(--white); }
.section-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: inline-block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.08; margin-bottom: 14px;
  color: var(--dark);
}
.section-dark .section-title { color: #fff; }
.section-sub { font-size: 16px; color: var(--text-dim); max-width: 520px; line-height: 1.75; margin: 0 auto; text-align: center; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }
.section-header { margin-bottom: 52px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.link-all {
  font-size: 14px; font-weight: 600; color: var(--purple);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, opacity .2s;
  white-space: nowrap;
}
.link-all:hover { gap: 10px; }
.section-dark .link-all { color: var(--yellow); }

/* ─── TOPICS STRIP ─── */
.topics {
  padding: 24px 0;
  background: linear-gradient(90deg, var(--dark) 0%, #1a0840 50%, var(--dark) 100%);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topics::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to left, transparent, var(--dark));
  pointer-events: none; z-index: 1;
}
.topics::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent, var(--dark));
  pointer-events: none; z-index: 1;
}
.topics-track {
  display: flex; gap: 10px;
  animation: scroll-track 35s linear infinite;
  width: max-content;
  will-change: transform;
}
@keyframes scroll-track {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.topic-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 17px; border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: border-color .2s, color .2s;
  cursor: default;
}
.topic-pill:hover { border-color: rgba(25,1,172,0.5); color: rgba(255,255,255,0.9); }

/* ─── ÉPISODES ─── */
/* ─── REELS GRID ─── */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.reel-card {
  display: block; position: relative;
  border-radius: 20px; overflow: hidden;
  text-decoration: none; color: inherit;
  background: #111;
  aspect-ratio: 4/5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.reel-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 48px rgba(0,0,0,0.16); }
.reel-thumb {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
.reel-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.72) 100%);
}
.reel-num {
  position: relative; z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.9);
  letter-spacing: .08em;
  align-self: flex-start;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 11px; border-radius: 980px;
}
.reel-play-wrap {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.reel-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .2s;
}
.reel-card:hover .reel-play { transform: scale(1.12); background: #fff; }
.reel-play svg { width: 18px; height: 18px; fill: #111; margin-left: 3px; }
.reel-bottom {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.reel-tag {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7);
  letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.reel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 800; color: #fff;
  line-height: 1.3; letter-spacing: -.02em;
}
.reel-date { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.reel-footer { display: none; }
.reel-desc { display: none; }
.reel-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 7px 14px; border-radius: 980px;
  margin-top: 10px; align-self: flex-start;
  transition: background .2s, transform .2s;
}
.reel-card:hover .reel-cta { background: rgba(255,255,255,0.28); transform: translateX(2px); }

/* ─── À LA UNE CAROUSEL ─── */
.alaune-section {
  background: linear-gradient(180deg, #f7f6ff 0%, #fff 100%);
  padding: 60px 0 24px;
  border-top: 3px solid var(--purple);
}
.alaune-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 900;
  color: var(--dark); letter-spacing: -.03em;
  margin-bottom: 6px;
}
.alaune-heading span { color: var(--purple); }
.alaune-subheading {
  font-size: 14px; color: var(--text-dim); margin-bottom: 28px;
}
.alaune-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.alaune-tabs { display: flex; gap: 6px; }
.alaune-tab {
  background: transparent; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  color: rgba(0,0,0,0.4); padding: 8px 16px; border-radius: 980px;
  transition: all .2s;
}
.alaune-tab.active { background: rgba(0,0,0,0.12); color: #111; }
.alaune-tab:hover:not(.active) { color: rgba(0,0,0,0.75); }
.alaune-nav { display: flex; gap: 8px; }
.alaune-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.07); border: 1px solid rgba(0,0,0,0.12);
  color: #111; font-size: 20px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.alaune-arrow:hover { background: rgba(0,0,0,0.15); }
.alaune-grid-wrap { margin-bottom: 32px; }
.alaune-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.alaune-track::-webkit-scrollbar { display: none; }
.alaune-cta-wrap { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.alaune-insta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #E35336, #c13584);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 12px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.alaune-insta-btn:hover { opacity: .88; transform: translateY(-2px); }
.alaune-cta-btn {
  display: inline-block;
  background: var(--purple); color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 12px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.alaune-cta-btn:hover { opacity: .88; transform: translateY(-2px); }
.alaune-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 16px; overflow: hidden;
  position: relative; aspect-ratio: 9/16; min-height: 320px;
  text-decoration: none; display: block;
  background: #1a1a1a;
  background-size: cover !important;
  background-position: center !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: transform .2s;
}
.alaune-card:hover { transform: translateY(-4px); }
.alaune-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.alaune-card:hover .alaune-card-img { transform: scale(1.04); }
.alaune-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.alaune-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20,20,20,0.75); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 980px;
  display: flex; align-items: center; gap: 5px;
}
.alaune-card-badge::before { content: '✦'; font-size: 9px; color: #E84B2B; }
.alaune-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.alaune-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 800; color: #fff;
  line-height: 1.25; letter-spacing: -.02em;
  margin: 0 0 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.alaune-card-btn {
  display: inline-block;
  background: #fff; color: #111;
  font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 8px;
  transition: opacity .2s;
}
.alaune-card:hover .alaune-card-btn { opacity: 0.85; }
.alaune-dots {
  display: flex; gap: 6px; margin-top: 20px;
}
.alaune-dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0;
  transition: background .2s, width .2s;
}
.alaune-dot.active { background: #fff; width: 44px; }

/* ─── COMMUNAUTÉ (WhatsApp + Quiz) ─── */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.community-card {
  border-radius: 24px; padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.community-card-wa { background: #e8f9ef; border: 1px solid #b7e5c8; }
.community-card-quiz { background: #f0eeff; border: 1px solid #c9bfff; }
.community-card-icon { font-size: 36px; }
.community-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin: 0; }
.community-card-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; margin: 0; flex: 1; }
.community-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 22px; border-radius: 12px; border: none; cursor: pointer;
  text-decoration: none; align-self: flex-start; transition: opacity .2s, transform .2s;
}
.community-btn:hover { opacity: .88; transform: translateY(-1px); }
.community-btn-wa { background: #25D366; color: #fff; }
.community-btn-quiz { background: #3525D3; color: #fff; }
@media (max-width: 768px) { .community-grid { grid-template-columns: 1fr; } }

/* ─── QUIZ MODAL ─── */
.quiz-modal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.quiz-modal.open { opacity: 1; pointer-events: all; }
.quiz-box {
  background: #fff; border-radius: 24px; padding: 48px;
  max-width: 560px; width: 92%; position: relative;
  max-height: 88vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.quiz-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.quiz-progress { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 32px; }
.quiz-progress-bar { height: 100%; background: #3525D3; border-radius: 2px; transition: width .4s; }
.quiz-q-num { font-size: 12px; font-weight: 700; color: #3525D3; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.quiz-q-text { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin: 0 0 24px; line-height: 1.3; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  background: var(--bg); border: 2px solid var(--border);
  border-radius: 12px; padding: 14px 18px;
  font-size: 14px; font-weight: 600; color: var(--dark);
  cursor: pointer; text-align: left; transition: all .18s;
}
.quiz-opt:hover { border-color: #3525D3; background: #f0eeff; }
.quiz-opt.correct { border-color: #22c55e; background: #e8f9ef; color: #166534; }
.quiz-opt.wrong { border-color: #ef4444; background: #fef2f2; color: #991b1b; }
.quiz-expl { margin-top: 16px; padding: 14px 16px; background: #f8f8ff; border-radius: 10px; font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.quiz-next {
  margin-top: 20px; background: #3525D3; color: #fff;
  border: none; border-radius: 12px; padding: 13px 28px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; transition: opacity .2s;
}
.quiz-next:hover { opacity: .85; }
.quiz-result { text-align: center; padding: 20px 0; }
.quiz-result-score { font-family: 'Fraunces', serif; font-style: italic; font-size: 64px; font-weight: 900; color: #3525D3; }
.quiz-result-label { font-size: 18px; font-weight: 700; color: var(--dark); margin: 8px 0 4px; }
.quiz-result-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; }
.quiz-restart { background: #3525D3; color: #fff; border: none; border-radius: 12px; padding: 13px 28px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Space Grotesk', sans-serif; }

/* ─── PARTENARIAT ─── */
.partenariat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.partenariat-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .25s, transform .25s;
}
.partenariat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.partenariat-icon { font-size: 32px; }
.partenariat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin: 0;
}
.partenariat-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .partenariat-grid { grid-template-columns: 1fr; } }

/* ─── SONDAGE ─── */
.poll-section { background: var(--dark-2); }
#polls-container { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.poll-container {
  max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 0 0 1px rgba(25,1,172,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.poll-emoji { font-size: 24px; margin-bottom: 10px; }
.poll-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.poll-context { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.poll-options { display: flex; flex-direction: column; gap: 10px; }
.poll-option {
  position: relative; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px; cursor: pointer;
  transition: border-color .2s, transform .2s, background .2s;
  background: rgba(255,255,255,0.03);
}
.poll-option:hover {
  border-color: rgba(25,1,172,0.5);
  transform: translateX(5px);
  background: rgba(25,1,172,0.06);
}
.poll-option.voted { pointer-events: none; }
.poll-option-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 15px 20px; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative; z-index: 1;
}
.poll-option-text { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.88); }
.poll-option-pct {
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.65);
  min-width: 38px; text-align: right; display: none;
  font-family: 'Space Grotesk', sans-serif;
}
.poll-option.revealed .poll-option-pct { display: block; }
.poll-bar {
  position: absolute; inset: 0;
  border-radius: 12px; opacity: 0;
  transition: width .9s cubic-bezier(.16,1,.3,1), opacity .4s ease;
  width: 0%;
}
.poll-option.revealed .poll-bar { opacity: 1; }
.poll-bar-1 { background: linear-gradient(90deg, rgba(25,1,172,0.38), rgba(25,1,172,0.1)); }
.poll-bar-2 { background: linear-gradient(90deg, rgba(244,63,94,0.38), rgba(244,63,94,0.1)); }
.poll-bar-3 { background: linear-gradient(90deg, rgba(16,185,129,0.35), rgba(16,185,129,0.1)); }
.poll-option.is-winner { border-color: rgba(251,191,36,0.4); }
.poll-footer { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.poll-votes { font-size: 13px; color: rgba(255,255,255,0.35); }
.poll-share { font-size: 13px; font-weight: 600; color: var(--yellow); transition: opacity .2s; }
.poll-share:hover { opacity: 0.8; }
.poll-winner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.28);
  color: var(--yellow); font-size: 11.5px; font-weight: 700;
  padding: 4px 11px; border-radius: 980px; margin-left: 8px;
  display: none;
}
.poll-option.is-winner .poll-winner-badge { display: inline-flex; }

/* ─── BLOG ─── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Première carte = featured horizontale */
.blog-grid .blog-card:first-child {
  grid-column: span 3;
  flex-direction: row;
}
.blog-grid .blog-card:first-child .blog-card-thumb {
  aspect-ratio: unset;
  width: 320px; min-width: 320px;
  font-size: 80px;
  border-radius: 0;
}
.blog-grid .blog-card:first-child .blog-card-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.blog-grid .blog-card:first-child .blog-card-excerpt {
  font-size: 15.5px;
  line-height: 1.75;
}
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), border-color .2s;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-thumb {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  transition: filter .3s;
}
.blog-card:hover .blog-card-thumb { filter: brightness(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.blog-card-cat::before {
  content: ''; display: inline-block; width: 14px; height: 2px;
  background: var(--purple); border-radius: 2px; flex-shrink: 0;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; line-height: 1.3;
  color: var(--dark); margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--purple); }
.blog-card-excerpt { font-size: 14px; color: var(--text-dim); line-height: 1.7; flex: 1; }
.blog-card-footer {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.blog-card-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; color: #fff; font-weight: 700;
  box-shadow: 0 2px 6px rgba(25,1,172,0.3);
}
.author-name { font-size: 12.5px; font-weight: 600; color: var(--text-dim); }
.blog-card-date { font-size: 12px; color: var(--text-dimmer); }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--purple);
  margin-top: 14px;
  transition: gap .2s;
}
.blog-card-link:hover { gap: 10px; }

/* ─── INSTAGRAM CTA ─── */
.insta-band {
  padding: 90px 0;
  background: linear-gradient(135deg, #4c1d95 0%, var(--purple) 40%, var(--coral) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.insta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.insta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.insta-inner { position: relative; z-index: 1; }
.insta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; color: #fff; margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.insta-band p { font-size: 16.5px; color: rgba(255,255,255,0.72); margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.96); color: var(--purple);
  font-size: 15px; font-weight: 700;
  padding: 15px 32px; border-radius: 980px;
  transition: transform .25s, box-shadow .25s, background .2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  letter-spacing: -0.01em;
}
.btn-insta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
  background: #fff;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 60px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25,1,172,0.5), rgba(244,63,94,0.4), transparent);
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 13px;
  letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo::before {
  content: '';
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--coral));
  flex-shrink: 0;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 270px; }
.footer-col-title {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background .2s, border-color .2s, transform .2s;
  color: rgba(255,255,255,0.6);
}
.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── PAGE ARTICLE ─── */
.article-hero {
  padding: 130px 0 64px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #09090E 0%, #1c0840 100%);
}
.article-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(244,63,94,0.2), transparent 60%);
}
.article-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.article-cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.article-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700; line-height: 1.08;
  color: #fff; letter-spacing: -0.025em; margin-bottom: 24px;
}
.article-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.article-meta-item {
  font-size: 13.5px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 7px;
}
.article-body { padding: 68px 0 90px; }
.article-content { max-width: 780px; margin: 0 auto; }
.article-content p {
  font-size: 17.5px; line-height: 1.85; color: var(--text);
  margin-bottom: 24px; letter-spacing: -0.005em;
}
.article-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: var(--dark); margin: 44px 0 18px; line-height: 1.25;
  letter-spacing: -0.02em;
}
.article-content ul { margin: 0 0 24px 20px; }
.article-content ul li {
  font-size: 16.5px; line-height: 1.8; color: var(--text);
  margin-bottom: 7px;
}
.article-content ul li::marker { color: var(--purple); }
.article-content .highlight-box {
  background: rgba(25,1,172,0.07);
  border-left: 3px solid var(--purple);
  border-radius: 0 14px 14px 0;
  padding: 22px 28px; margin: 32px 0;
}
.article-content .highlight-box p {
  font-size: 17px; color: var(--dark); margin: 0;
  font-style: italic; font-family: 'Fraunces', serif;
  line-height: 1.7;
}
.article-content .note {
  background: rgba(251,191,36,0.09);
  border: 1px solid rgba(251,191,36,0.28);
  border-radius: 14px; padding: 18px 22px; margin: 24px 0;
}
.article-content .note p { font-size: 14.5px; color: #7A5C00; margin: 0; line-height: 1.7; }
.article-inline-poll {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px; margin: 44px 0;
  box-shadow: 0 0 0 1px rgba(25,1,172,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.article-inline-poll .poll-question { font-size: 21px; }

/* ─── PAGE BLOG ─── */
.blog-hero { padding: 130px 0 64px; background: var(--dark); position: relative; overflow: hidden; }
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #09090E 0%, #1c0840 60%, #09090E 100%);
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 980px;
  border: 1.5px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .25s; font-family: inherit;
  backdrop-filter: blur(8px);
}
.filter-btn:hover {
  border-color: rgba(25,1,172,0.5);
  color: rgba(255,255,255,0.9);
  background: rgba(25,1,172,0.1);
}
.filter-btn.active {
  background: var(--purple); border-color: var(--purple);
  color: #fff; box-shadow: 0 4px 14px rgba(25,1,172,0.35);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ─── HERO LOGO ─── */
.hero-notifs {
  display: flex; flex-direction: column; gap: 16px;
  width: 100%; max-width: 420px;
}
.hero-notif {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 20px;
  display: flex; gap: 16px; align-items: flex-start;
  animation: notif-float 6s ease-in-out infinite;
}
.hero-notif-2 { animation-delay: .8s; }
.hero-notif-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.hero-notif-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hero-notif-label {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.hero-notif-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3;
}
.hero-notif-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.hero-notif-progress { height: 100%; border-radius: 2px; }
.hero-notif-bars { display: flex; gap: 6px; }
.hero-notif-meta { font-size: 12px; color: rgba(255,255,255,0.4); }
@keyframes notif-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-phone-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 20px 60px;
}
.hero-phone {
  width: 210px; background: #111; border-radius: 36px; padding: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-phone-screen {
  border-radius: 28px; overflow: hidden;
  aspect-ratio: 9/16; position: relative; background: #1a1a1a;
}
.hero-phone-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-phone-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.82) 100%);
}
.hero-phone-top { position: absolute; top: 14px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.hero-phone-logo span {
  display: block; font-family: 'Fraunces', serif; font-style: italic;
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 3px; color: #fff;
}
.hero-phone-bottom {
  position: absolute; bottom: 14px; left: 12px; right: 12px; z-index: 2;
  display: flex; flex-direction: column; gap: 5px;
}
.hero-phone-tag { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .05em; }
.hero-phone-title { font-size: 12px; font-weight: 800; color: #fff; line-height: 1.3; }
.hero-phone-play { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.hero-phone-play-btn {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #111;
}
.hero-phone-play span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.85); }
.hero-phone-stat {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 12px 16px; text-align: center; box-shadow: var(--shadow-lg);
}
.hero-phone-stat-1 { top: 60px; right: -10px; }
.hero-phone-stat-2 { bottom: 80px; left: -10px; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: var(--white); border: none; cursor: pointer;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--dark);
  text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg); }
.faq-arrow {
  font-size: 18px; color: var(--purple);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-q { background: var(--bg); color: var(--purple); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
  font-size: 15px; color: var(--text-dim); line-height: 1.75;
  padding: 0 28px;
  background: var(--bg);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* ─── STATS ─── */
.stats-section {
  background: var(--dark);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  font-weight: 500; line-height: 1.4;
}
.stats-note {
  text-align: center; margin-top: 28px;
  font-size: 12.5px; color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ─── CLEM SECTION ─── */
.clem-section { background: #fff; }
.clem-inner {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 72px; align-items: center;
}
.clem-photo-wrap {
  position: relative;
  max-width: 320px;
}
.clem-photo {
  width: 100%; border-radius: 24px;
  object-fit: contain; aspect-ratio: auto;
  display: block;
  box-shadow: var(--shadow-lg);
}
.clem-badge {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.clem-badge-pill {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 8px 24px; border-radius: 980px;
  white-space: nowrap;
}
.clem-badge-cream { background: #F5EDD8; color: var(--dark); }
.clem-badge-orange { background: #E84B2B; color: #fff; }
.clem-badge-blue { background: #3525D3; color: #fff; }
.clem-desc {
  font-size: 16px; color: var(--text-dim);
  line-height: 1.8; margin-bottom: 16px;
}
.clem-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0;
}
.clem-tag {
  font-size: 13px; font-weight: 600;
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 980px;
  color: var(--text-dim);
}
.clem-contact {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 700;
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
  padding-bottom: 2px;
  transition: gap .2s, opacity .2s;
}
.clem-contact:hover { gap: 10px; opacity: .8; }
@media (max-width: 960px) {
  .clem-inner { grid-template-columns: 1fr; gap: 40px; }
  .clem-photo { aspect-ratio: 4/3; }
  .clem-photo-wrap { max-width: 75%; margin: 0 auto; }
  .clem-photo { object-fit: contain; aspect-ratio: auto; border-radius: 20px; width: 100%; }
}

/* ─── FORMATS ─── */
.formats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.format-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  position: relative;
  text-decoration: none; color: inherit; display: block; cursor: pointer;
}
.format-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.format-icon {
  font-size: 32px; margin-bottom: 14px;
}
.format-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.format-badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-dim);
  padding: 3px 10px; border-radius: 980px;
  margin-bottom: 12px;
}
.format-desc {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.65;
}

/* ─── MANIFESTE ─── */
.manifeste-section {
  background: var(--dark-2);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.manifeste-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(53,37,211,0.25), transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(232,75,43,0.18), transparent 60%);
  pointer-events: none;
}
.manifeste-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.manifeste-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.manifeste-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  border: none;
}
.manifeste-text {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.manifeste-author {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px; border-radius: 980px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-thumb { aspect-ratio: 9/12; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid .blog-card:first-child { grid-column: span 2; flex-direction: column; }
  .blog-grid .blog-card:first-child .blog-card-thumb { width: 100%; min-width: unset; aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav { display: none !important; }
  .menu-btn { display: flex !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .formats-grid { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: 1fr; }
  .reel-thumb { aspect-ratio: 16/9; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:first-child { grid-column: span 1; flex-direction: column; }
  .blog-grid .blog-card:first-child .blog-card-thumb { width: 100%; min-width: unset; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 64px; }
  .section { padding: 72px 0; }
  .poll-container { padding: 26px 20px; }
  .blog-card::before { display: none; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }

  /* ─── À LA UNE MOBILE ─── */
  .alaune-section { padding: 36px 0 28px; }
  .alaune-card { flex: 0 0 58%; }
  .alaune-card-title { font-size: 15px; margin-bottom: 10px; }
}

/* ─── INSTAGRAM BUTTON ─── */
.episode-insta-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.95);
  color: #E1306C;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 980px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform .18s, box-shadow .18s;
  z-index: 3;
}
.episode-insta-btn:hover { transform: translateX(-50%) scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* ─── VIDEO MODAL ─── */
#video-modal { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; }
#video-modal.is-open { display: flex; }
.vmodal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(6px); }
.vmodal-box { position: relative; z-index: 1; width: min(90vw, 900px); background: #111; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.vmodal-close { position: absolute; top: 12px; right: 14px; z-index: 2; background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 18px; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.vmodal-close:hover { background: rgba(255,255,255,.3); }
.vmodal-title { padding: 16px 52px 12px 20px; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.vmodal-video { width: 100%; display: block; max-height: 72vh; background: #000; }

/* ═══════════════════════════════════════════════
   GRANDES QUESTIONS
   ═══════════════════════════════════════════════ */
.gq-section { background: var(--white); padding: 80px 0 64px; }
.gq-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gq-card {
  grid-column: span 2;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-decoration: none; color: var(--dark);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.gq-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--purple);
}
.gq-card.gq-coral::before { background: var(--coral); }
.gq-card:nth-child(4), .gq-card:nth-child(5) { grid-column: span 3; }
.gq-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.gq-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 8px;
  display: inline-block; width: fit-content;
  background: var(--purple-dim); color: var(--purple);
}
.gq-card.gq-coral .gq-tag { background: rgba(227,83,54,0.1); color: var(--coral); }
.gq-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px; font-weight: 800; color: var(--dark); margin: 0; line-height: 1.2;
}
.gq-questions { font-size: 13.5px; color: var(--text-dim); line-height: 1.75; flex: 1; }
.gq-arrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--purple); margin-top: 4px;
}
.gq-card.gq-coral .gq-arrow { color: var(--coral); }

/* ═══════════════════════════════════════════════
   FORMATS REDESIGN (Bloc 3)
   ═══════════════════════════════════════════════ */
.fmts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fmt2-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-decoration: none; color: var(--dark);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.fmt2-card:nth-child(5) { grid-column: span 2; flex-direction: row; gap: 40px; align-items: center; }
.fmt2-card:nth-child(5) .fmt2-desc { max-width: 560px; }
.fmt2-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.fmt2-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 8px;
  display: inline-block; width: fit-content;
  background: var(--purple-dim); color: var(--purple);
}
.fmt2-card.fmt2-coral .fmt2-tag { background: rgba(227,83,54,0.1); color: var(--coral); }
.fmt2-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--dark); margin: 0; line-height: 1.3;
}
.fmt2-desc { font-size: 13.5px; color: var(--text-dim); line-height: 1.75; margin: 0; flex: 1; }
.fmt2-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--purple);
  text-decoration: none; margin-top: 6px;
}
.fmt2-card.fmt2-coral .fmt2-btn { color: var(--coral); }

/* ═══════════════════════════════════════════════
   PODCAST SECTION (Bloc 4)
   ═══════════════════════════════════════════════ */
/* ── PODCAST — redesign éditorial ── */
.podcast-section {
  background: #E35336;
  padding: 64px 0;
  border-radius: 24px;
  overflow: hidden;
}
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.podcast-label {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.podcast-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff; margin: 0 0 20px;
}
.podcast-desc {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.75; margin: 0 0 32px;
  max-width: 400px;
}
.podcast-actions { display: flex; align-items: center; gap: 24px; }
.btn-podcast-primary {
  background: #fff; color: #E35336;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 800;
  padding: 12px 24px; border-radius: 10px;
  text-decoration: none; display: inline-block;
  transition: transform .18s, box-shadow .18s;
}
.btn-podcast-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.podcast-link-all {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.podcast-link-all:hover { color: #fff; border-color: #fff; }

/* Côté droit — épisode */
.podcast-right {
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 40px;
}
.podcast-cover { display: none; }
.podcast-ep-info {}
.podcast-ep-label {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.podcast-ep-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2vw, 26px); font-weight: 900;
  color: #fff; line-height: 1.2; margin-bottom: 12px;
  letter-spacing: -.02em;
}
.podcast-ep-desc {
  font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   DÉCRYPTAGES (Bloc 5)
   ═══════════════════════════════════════════════ */
.decrypt-section { background: #fff; padding: 48px 0 40px; }
.decrypt-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.decrypt-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px); font-weight: 900;
  color: var(--dark); margin: 6px 0 0; line-height: 1.25;
  max-width: 520px;
}
.decrypt-cta-inline {
  font-size: 13px; font-weight: 800; color: var(--purple);
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid var(--purple); border-radius: 100px;
  padding: 8px 18px; transition: background .18s, color .18s;
  flex-shrink: 0;
}
.decrypt-cta-inline:hover { background: var(--purple); color: #fff; }
.decrypt-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.decrypt-pill {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 16px 18px;
  text-decoration: none; color: var(--dark);
  transition: transform .18s, box-shadow .18s;
}
.decrypt-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.decrypt-pill-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.decrypt-pill-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
.decrypt-pill-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* ─── RESPONSIVE NOUVELLES SECTIONS ─── */
@media (max-width: 768px) {
  .gq-grid { grid-template-columns: 1fr; }
  .gq-card, .gq-card:nth-child(4), .gq-card:nth-child(5) { grid-column: span 1; }
  .fmts-grid { grid-template-columns: 1fr; }
  .fmt2-card:nth-child(5) { grid-column: span 1; flex-direction: column; }
  .podcast-featured { flex-direction: column; text-align: center; }
  .decrypt-row { grid-template-columns: repeat(2, 1fr); }
  .decrypt-header { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   À PROPOS — BIO EXTENSIBLE
   ═══════════════════════════════════════════════ */
.clem-bio-full {
  display: none;
  margin-top: 20px;
  border-top: 1.5px solid var(--border);
  padding-top: 20px;
}
.clem-bio-full.open { display: block; }
.clem-bio-full p {
  font-size: 14.5px; color: var(--text-dim);
  line-height: 1.8; margin: 0 0 14px;
}
.clem-bio-full p:last-child { margin-bottom: 0; }
.clem-actions {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; margin-top: 20px;
}
.clem-btn-more {
  background: none; border: 1.5px solid var(--border);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--dark);
  padding: 10px 20px; border-radius: 10px;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.clem-btn-more:hover { background: var(--bg); border-color: var(--purple); color: var(--purple); }
.clem-btn-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0A66C2; color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
}
.clem-btn-linkedin:hover { opacity: .88; }

/* ═══════════════════════════════════════════════
   SHELF LAYOUT (Blocs 2 + 3)
   ═══════════════════════════════════════════════ */
.shelf-section { background: #fff; padding: 40px 0 64px; }
.shelf-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.shelf-row-sep {
  margin-top: 48px;
  padding-top: 48px;
  border-top: none;
}
.shelf-hdr {
  display: flex; flex-direction: column; gap: 10px;
  padding-right: 8px; padding-top: 4px;
}
.shelf-hdr-accent {
  width: 32px; height: 4px;
  background: var(--coral); border-radius: 2px;
}
.shelf-hdr-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 900; color: var(--dark);
  line-height: 1.1; text-transform: uppercase;
  letter-spacing: -.01em; margin: 0;
}
.shelf-hdr-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin: 0; max-width: 480px; }

/* Cards container */
.shelf-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.shelf-cards::-webkit-scrollbar { display: none; }
.shelf-gq-card { flex: 0 0 220px; scroll-snap-align: start; }
.shelf-fmt-card { flex: 0 0 280px; scroll-snap-align: start; }

/* GQ Cards */
.shelf-gq-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: var(--dark);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.shelf-gq-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--coral));
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.shelf-gq-card:hover::before { transform: scaleX(1); }
.shelf-gq-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(25,1,172,0.12); border-color: transparent; }
.shelf-gq-icon-wrap {
  width: 44px; height: 44px;
  background: var(--purple-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
}
.shelf-gq-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 900;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--dark); margin: 0;
}
.shelf-gq-desc { font-size: 12px; color: var(--text-dim); line-height: 1.65; flex: 1; margin: 0; }
.shelf-gq-link { font-size: 12px; font-weight: 700; color: var(--coral); }

/* Format Cards */
.shelf-fmt-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--dark);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.shelf-fmt-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.08); }
.shelf-fmt-top {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.shelf-fmt-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  color: var(--fmt-color, var(--purple));
}
.shelf-fmt-cat {
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fmt-color, var(--purple));
}
.shelf-fmt-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--dark);
  margin-bottom: 10px; line-height: 1.3;
}
.shelf-fmt-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; margin-bottom: 10px;
  background: var(--bg); display: block;
}
.shelf-fmt-desc { font-size: 12px; color: var(--text-dim); line-height: 1.65; flex: 1; margin: 0; }
.shelf-fmt-link {
  font-size: 12px; font-weight: 700; margin-top: 10px;
  color: var(--fmt-color, var(--purple));
}

/* Mobile */
@media (max-width: 768px) {
  .shelf-section > .container { grid-template-columns: 1fr; }
  .shelf-row-sep { padding-top: 0; border-top: 1px solid var(--border); padding-top: 40px; margin-top: 8px; }
  .shelf-row { flex-direction: column; gap: 16px; }
  .shelf-hdr { padding-right: 0; padding-bottom: 4px; }
  .shelf-cards {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 4px;
  }
  .shelf-cards::-webkit-scrollbar { display: none; }
  .shelf-gq-card { flex: 0 0 65%; scroll-snap-align: start; }
  .shelf-fmt-card { flex: 0 0 65%; scroll-snap-align: start; }
}

/* ═══════════════════════════════════════════════
   FORMAT CARDS — PHOTO BACKGROUND
   ═══════════════════════════════════════════════ */
.shelf-fmt-card {
  background-size: cover !important;
  background-position: center !important;
  border: none !important;
  min-height: 300px;
  overflow: hidden;
  padding: 0;
}
.shelf-fmt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,3,13,0.88) 0%, rgba(4,3,13,0.45) 50%, rgba(4,3,13,0.05) 100%);
  transition: background .3s;
}
.shelf-fmt-card:hover .shelf-fmt-overlay {
  background: linear-gradient(to top, rgba(4,3,13,0.95) 0%, rgba(4,3,13,0.6) 55%, rgba(4,3,13,0.1) 100%);
}
.shelf-fmt-content {
  position: relative; z-index: 1;
  padding: 18px 16px;
  display: flex; flex-direction: column; height: 100%;
}
.shelf-fmt-card .shelf-fmt-icon { color: var(--fmt-color, var(--coral)); }
.shelf-fmt-card .shelf-fmt-cat { color: var(--fmt-color, var(--coral)); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.shelf-fmt-card .shelf-fmt-sub { color: #fff; font-size: 20px; font-weight: 900; line-height: 1.2; }
.shelf-fmt-card .shelf-fmt-desc { color: var(--bg); flex: 1; font-size: 13px; }
.shelf-fmt-card .shelf-fmt-link { color: var(--fmt-color, var(--coral)); margin-top: auto; padding-top: 16px; font-weight: 800; font-size: 13px; }

/* ═══════════════════════════════════════════════
   BLOC 7 — PARTENARIATS
   ═══════════════════════════════════════════════ */
.partenariat-section {
  background: linear-gradient(135deg, #0d0880 0%, #1901AC 50%, #2a0f8f 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.partenariat-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='3' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.partenariat-new-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partenariat-new-text .section-tag {
  background: rgba(227,83,54,0.2);
  color: var(--coral);
  border-color: rgba(227,83,54,0.4);
  margin-bottom: 20px;
}
.partenariat-new-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.partenariat-new-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 32px;
}
.partenariat-new-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.partenariat-new-pill {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}
.partenariat-new-pill {
  border-color: rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.85) !important;
  background: rgba(255,255,255,0.08) !important;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   BLOC 8 — NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, #0d0880 0%, #1901AC 50%, #2a0f8f 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='3' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.newsletter-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: transparent;
}
.newsletter-btn {
  padding: 16px 28px;
  background: var(--purple);
  color: #fff;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.newsletter-btn:hover { opacity: .88; }
.newsletter-legal {
  font-size: 12px;
  color: var(--text-dim);
  margin: 10px 0 0;
  opacity: .7;
}
.newsletter-success {
  display: none;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--purple);
  font-size: 15px;
  border: 1.5px solid var(--border);
}

/* ═══════════════════════════════════════════════
   BLOC 9 — RÉSEAUX SOCIAUX
   ═══════════════════════════════════════════════ */
.social-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #6d28d9 0%, #1901AC 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.social-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.social-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}
.social-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.social-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  margin: 0;
}
.social-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin: -16px 0 0;
}
.social-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s, border-color .2s;
}
.social-pill:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.social-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
.social-section .btn-hero-primary {
  background: rgba(255,255,255,0.96);
  color: var(--purple);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.social-section .btn-hero-primary:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════
   FOOTER NOUVEAU
   ═══════════════════════════════════════════════ */
.footer-new-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-new-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-new-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.footer-new-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}
.footer-new-cols {
  display: flex;
  gap: 56px;
}

/* Mobile */
@media (max-width: 768px) {
  .partenariat-new-inner { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-form { flex-direction: column; border-radius: 14px; }
  .newsletter-btn { border-radius: 0 0 12px 12px; }
  .footer-new-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-new-cols { gap: 32px; }
}

/* Accents couleurs charte supplémentaires */
.newsletter-section .newsletter-title {
  position: relative;
  display: inline-block;
}
.newsletter-section .newsletter-title::after {
  content: '';
  display: block;
  width: 48px; height: 4px;
  background: var(--coral);
  border-radius: 2px;
  margin-top: 12px;
}
.newsletter-section .newsletter-btn {
  background: var(--purple);
}
.newsletter-section .newsletter-btn:hover {
  background: #1201c7;
}
.partenariat-new-pill:nth-child(1) { border-color: rgba(25,1,172,0.4); color: rgba(167,154,255,0.9); }
.partenariat-new-pill:nth-child(2) { border-color: rgba(227,83,54,0.4); color: rgba(255,160,140,0.9); }
.section-title { position: relative; }
.faq-item.open .faq-q { color: var(--purple); }
.faq-q:hover { color: var(--purple); }

/* ── SECTION YOUTUBE ── */
.yt-section {
  background: linear-gradient(160deg, #0a0010 0%, #04030D 50%, #100020 100%);
  padding: 80px 0;
}
.yt-hdr {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.yt-hdr-left { display: flex; flex-direction: column; gap: 20px; }
.yt-subscribe-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 10px; text-decoration: none;
  transition: opacity .2s, transform .2s; width: fit-content;
}
.yt-subscribe-btn:hover { opacity: .85; transform: translateY(-2px); }
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.yt-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.yt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.yt-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.yt-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.9);
  opacity: 0; transition: opacity .2s;
}
.yt-card:hover .yt-play { opacity: 1; }
.yt-card-body { padding: 12px 14px; }
.yt-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin: 0;
}
.yt-loading { color: rgba(255,255,255,0.4); font-size: 14px; padding: 20px 0; }
@media (max-width: 900px) {
  .yt-hdr { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .yt-grid { grid-template-columns: 1fr; }
}

/* ── ALAUNE YOUTUBE TAG ── */
.alaune-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,0,0,0.85); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 980px;
  margin-bottom: 10px;
}
.alaune-card-cta {
  display: inline-block;
  background: #fff; color: #111;
  font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 8px;
  transition: opacity .2s;
}
.alaune-card:hover .alaune-card-cta { opacity: 0.85; }

/* ── SECTION FORMATS NOUVELLE DISPOSITION ── */
.fmt-section-wrap {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.fmt-section-hdr {
  text-align: center;
  margin-bottom: 36px;
}
.fmt-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; color: var(--dark);
  line-height: 1.1; letter-spacing: -.03em;
  text-transform: uppercase; margin: 0 0 12px;
}
.fmt-section-sub {
  font-size: 15px; color: var(--text-dim);
  max-width: 520px; margin: 0 auto; line-height: 1.65;
}
.fmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fmt-grid .shelf-fmt-card {
  flex: none;
  min-height: 380px;
}
@media (max-width: 768px) {
  .fmt-grid { grid-template-columns: 1fr; gap: 14px; }
  .fmt-grid .shelf-fmt-card { min-height: 260px; }
}

/* ═══════════════════════════════════════════════
   FORMAT V2 — REDESIGN ÉDITORIAL
   ═══════════════════════════════════════════════ */
.fmtv2-section { padding: 60px 0 0; }
section#grandes-questions { background: #fff; }
.fmtv2-section { background: #F5F5DC; padding: 140px 0 48px; width: 100%; }
.fmtv2-hdr {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
  margin-bottom: 36px;
}
.fmtv2-tag {
  display: inline-block;
  background: var(--purple); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 100px;
}
.fmtv2-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.03em; color: var(--dark);
  margin: 0;
}
.fmtv2-sub {
  font-size: 15px; color: var(--text-dim);
  max-width: 480px; line-height: 1.65; margin: 0;
}

/* Grille 3+2 */
.fmtv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fmtv2-card--big  { grid-column: span 1; }
.fmtv2-stack      { display: contents; }
.fmtv2-card--wide { grid-column: span 1; }
.fmtv2-grid > .fmtv2-card--wide:first-of-type { grid-column: 1 / span 1; }
.fmtv2-grid > .fmtv2-card--wide:last-child     { grid-column: 2 / span 1; }

/* Carte de base */
.fmtv2-card {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  text-decoration: none; color: var(--dark);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.fmtv2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
/* Barre colorée en haut au hover */
.fmtv2-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--fc, var(--purple));
  opacity: 0; transition: opacity .22s;
  z-index: 2;
}
.fmtv2-card:hover::before { opacity: 1; }

/* Zone photo */
.fmtv2-photo {
  width: 100%;
  background-size: cover; background-position: center;
  position: relative; flex-shrink: 0;
}
.fmtv2-card--big  .fmtv2-photo { height: 200px; }
.fmtv2-card--sm   .fmtv2-photo { height: 200px; }
.fmtv2-card--wide .fmtv2-photo { height: 200px; }

/* Badge catégorie sur la photo */
.fmtv2-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--fc, var(--purple)); color: #fff;
  font-size: 8px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 8px;
  border-radius: 100px; white-space: nowrap;
  line-height: 1;
}

/* Corps texte */
.fmtv2-body {
  padding: 20px; display: flex; flex-direction: column;
  gap: 8px; flex: 1;
}
.fmtv2-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 900; letter-spacing: .12em;
  color: var(--fc, var(--purple)); opacity: .5;
}
.fmtv2-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 900;
  line-height: 1.15; letter-spacing: -.02em;
  color: var(--dark); margin: 0;
}
.fmtv2-card--sm .fmtv2-name { font-size: 20px; }
.fmtv2-desc {
  font-size: 13px; color: var(--text-dim);
  line-height: 1.6; margin: 0;
}
.fmtv2-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 800;
  color: var(--fc, var(--purple));
  margin-top: 4px;
}
.fmtv2-cta span { transition: transform .2s; }
.fmtv2-card:hover .fmtv2-cta span { transform: translateX(4px); }

@media (max-width: 900px) {
  .fmtv2-grid {
    grid-template-columns: 1fr;
  }
  .fmtv2-card--big, .fmtv2-stack,
  .fmtv2-card--wide { grid-column: 1 !important; grid-row: auto !important; }
  .fmtv2-card--big .fmtv2-photo { height: 200px; }
  .fmtv2-card--sm  .fmtv2-photo { height: 140px; }
  .fmtv2-card--wide .fmtv2-photo { height: 160px; }
}

/* ── FORMAT BRAND CARDS ── */
.fmt-brand-card {
  border-radius: 20px; overflow: hidden;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: #fff;
  min-height: 380px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.fmt-brand-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
.fmt-brand-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.4), rgba(255,255,255,0.15));
}
.fmt-brand-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.fmt-brand-tag {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.fmt-brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 900; color: #fff;
  line-height: 1.2; letter-spacing: -.02em; margin: 0;
}
.fmt-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.65; flex: 1; margin: 0;
}
.fmt-brand-link {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: auto;
}
@media (max-width: 768px) {
  .fmt-brand-card { min-height: 240px; padding: 24px 20px; }
  .fmt-brand-title { font-size: 18px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE MOBILE — GLOBAL (≤ 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Conteneur global : pleine largeur sur mobile */
  .container { max-width: 100%; padding: 0 16px; }
  html, body { overflow-x: hidden; width: 100%; }

  /* ─ HERO ─ */
  .hero { padding: 80px 0 48px; min-height: 100svh; overflow-x: hidden; display: flex; align-items: center; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
    max-width: 100%;
  }
  .hero-left { min-width: 0; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(26px, 7vw, 40px); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; max-width: 100%; }
  .hero-topics { font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; box-sizing: border-box; justify-content: center; font-size: 14px; padding: 13px 20px; }

  /* ─ TOPICS SCROLL ─ */
  .topics-track { gap: 8px; }
  .topic-pill { font-size: 12px; padding: 6px 12px; }

  /* ─ NOS FORMATS (fmtv2) ─ */
  .fmtv2-section { padding: 48px 0 32px; }
  .fmtv2-hdr { margin-bottom: 24px; }
  .fmtv2-title { font-size: clamp(26px, 7vw, 38px); }
  .fmtv2-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .fmtv2-card--big, .fmtv2-stack,
  .fmtv2-card--wide, .fmtv2-card--sm {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .fmtv2-card--big .fmtv2-photo,
  .fmtv2-card--sm  .fmtv2-photo,
  .fmtv2-card--wide .fmtv2-photo { height: 160px; }
  .fmtv2-name { font-size: 17px; }

  /* ─ GRANDES QUESTIONS ─ */
  .shelf-section { padding: 80px 0 32px; }
  .shelf-row { grid-template-columns: 1fr; gap: 20px; }
  .shelf-row[style*="border-radius"] { border-radius: 0 !important; margin-left: 0 !important; margin-right: 0 !important; border-top: none !important; }
  .gq-grid { grid-template-columns: 1fr; }
  .gq-card, .gq-card:nth-child(4), .gq-card:nth-child(5) { grid-column: span 1; }

  /* ─ DÉCRYPTAGES ─ */
  .decrypt-section { padding: 52px 0 28px; }
  .decrypt-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .decrypt-main-title { font-size: 17px; }
  .decrypt-cta-inline { width: 100%; text-align: center; box-sizing: border-box; }
  .decrypt-row { grid-template-columns: 1fr; gap: 10px; }
  .decrypt-pill { padding: 14px 16px; }
  .decrypt-pill-title { font-size: 14px; }

  /* ─ PODCAST ─ */
  .podcast-wrap { padding: 0 !important; }
  .podcast-wrap { padding: 0 16px !important; }
  .podcast-section { margin: 0; border-radius: 20px; padding: 40px 0; }
  .podcast-inner { grid-template-columns: 1fr; gap: 24px; }
  .podcast-label { display: block; }
  .podcast-title { font-size: 28px; }
  .podcast-desc { max-width: 100%; line-height: 1.55; }
  .podcast-right { border-left: none; border-top: 1.5px solid rgba(255,255,255,0.2); padding-left: 0; padding-top: 24px; }
  .podcast-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-podcast-primary { width: 100%; text-align: center; padding: 14px; }
  .podcast-link-all { text-align: center; border-bottom: none; padding-bottom: 0; }
  .podcast-ep-title { font-size: 20px; }

  /* ─ QUI SUIS-JE ─ */
  .clem-inner { grid-template-columns: 1fr; gap: 32px; }
  .clem-photo-wrap { max-width: 60%; margin: 0 auto; }

  /* ─ YOUTUBE ─ */
  .yt-hdr { grid-template-columns: 1fr; gap: 24px; }
  .yt-grid { grid-template-columns: 1fr; gap: 12px; }

  /* ─ FAQ ─ */
  .faq-q { font-size: 15px; }

  /* ─ NEWSLETTER ─ */
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-form { flex-direction: column; border-radius: 14px; }
  .newsletter-btn { border-radius: 0 0 12px 12px; width: 100%; }

  /* ─ FOOTER ─ */
  .footer-new-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-new-cols { flex-direction: column; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  /* ─ SECTION TITLES ─ */
  .section-title { font-size: clamp(24px, 6vw, 34px); }
  .section-sub { font-size: 14px; }
}
