/* ══════════════════════════════════════════════════════
   DriVR v2 — Design System partagé
   Généré depuis les maquettes v2
══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --primary: #1370b5;
  --primary-dark: #0f588f;
  --primary-light: #e7f1f9;
  --accent: #2c1fa1;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-600: #1fa96c;
  --green-700: #178a56;

  --bg-base: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --line: #e2e8f0;
  --line-hover: #cbd5e1;

  --fg-1: #0f172a;
  --fg-2: #334155;
  --fg-3: #475569;
  --fg-4: #64748b;

  --accent-grad: linear-gradient(135deg, #1370b5 0%, #175394 100%);
  --green-grad: linear-gradient(135deg, #1fa96c 0%, #118a55 100%);
  --brand-mixed-grad: linear-gradient(135deg, #1370b5 0%, #1fa96c 100%);

  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ── BASE ── */
.v2-scope *, .v2-scope *::before, .v2-scope *::after { box-sizing: border-box; margin: 0; padding: 0; }
.v2-scope {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--fg-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
/* Neutralise les styles globaux hérités du body (#1a1a1a / color:white) */
.v2-scope a { color: inherit; }
.v2-scope h1, .v2-scope h2, .v2-scope h3,
.v2-scope h4, .v2-scope h5, .v2-scope h6 {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.v2-scope img { display: block; max-width: 100%; }

/* ── RAIL ── */
.v2-scope .rail { width: 100%; max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.v2-scope .site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.v2-scope .bar { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.v2-scope .logo img { height: 40px; width: auto; display: block; }
.v2-scope .nav { display: flex; align-items: center; gap: 32px; }
.v2-scope .nav > a {
  text-decoration: none; color: var(--fg-3); font-weight: 500; font-size: 15px;
  transition: color 0.2s ease; position: relative; padding: 8px 0;
}
.v2-scope .nav > a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.2s ease;
}
.v2-scope .nav > a:hover::after, .v2-scope .nav > a.active::after { width: 100%; }
.v2-scope .nav > a:hover, .v2-scope .nav > a.active { color: var(--primary); }

.v2-scope .has-menu { position: relative; }
.v2-scope .has-menu button {
  background: none; border: none; font-family: inherit; font-size: 15px;
  font-weight: 500; color: var(--fg-3); cursor: pointer;
  display: flex; align-items: center; gap: 6px; padding: 8px 0; transition: color 0.2s ease;
}
.v2-scope .has-menu button svg { width: 16px; height: 16px; transition: transform 0.2s ease; flex-shrink: 0; }
.v2-scope .has-menu:hover button { color: var(--primary); }
.v2-scope .has-menu:hover button svg { transform: rotate(180deg); }
.v2-scope .menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl); padding: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.v2-scope .has-menu:hover .menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.v2-scope .menu a {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  text-decoration: none; color: var(--fg-2); border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.v2-scope .menu a:hover { background: var(--surface-2); color: var(--primary); }
.v2-scope .menu a .mi {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.v2-scope .menu a .mi svg { width: 18px; height: 18px; }
.v2-scope .menu a .mt { font-size: 14px; font-weight: 600; }

.v2-scope .header-cta { display: flex; align-items: center; gap: 16px; }
.v2-scope .header-cta .login {
  text-decoration: none; color: var(--fg-3); font-weight: 500; font-size: 14px; transition: color 0.2s ease;
}
.v2-scope .header-cta .login:hover { color: var(--primary); }

/* Menu 2 colonnes */
.v2-scope .menu-2col {
  width: 540px !important; display: grid !important;
  grid-template-columns: 1fr 1fr !important; flex-direction: unset !important;
  gap: 0 !important; padding: 8px !important;
}
.v2-scope .menu-2col .menu-col { display: flex; flex-direction: column; padding: 4px; }
.v2-scope .menu-col-head {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-4); padding: 6px 10px 8px;
}
.v2-scope .menu-2col a { display: flex !important; align-items: center !important; gap: 10px !important; padding: 9px 10px !important; }
.v2-scope .menu-2col a .mi { width: 30px !important; height: 30px !important; border-radius: 7px !important; }
.v2-scope .menu-2col a .mi svg { width: 16px; height: 16px; display: block; }
.v2-scope .menu-2col a .mt { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; color: var(--fg-1); }
.v2-scope .menu-2col a .ms { font-size: 11px; color: var(--fg-4); display: block; margin-top: 1px; line-height: 1.3; }
.v2-scope .menu-2col a:hover .mt, .v2-scope .menu-2col a:hover .ms { color: var(--primary); }
.v2-scope .menu-active { background: var(--primary-light) !important; }
.v2-scope .menu-active .mt, .v2-scope .menu-active .ms { color: var(--primary) !important; }
.v2-scope .soon {
  font-size: 9px; font-weight: 700; padding: 2px 6px;
  background: var(--surface-2); color: var(--fg-4);
  border-radius: 10px; letter-spacing: .04em;
  text-transform: uppercase; border: 1px solid var(--line);
}
.v2-scope .mobile-nav-section {
  font-weight: 700; font-size: 12px; color: var(--fg-4);
  text-transform: uppercase; letter-spacing: .1em;
  padding: 10px 0 4px; margin-top: 8px; border-top: 1px solid var(--line);
}

/* Mobile burger */
.v2-scope .mobile-menu-toggle {
  display: none; background: none; border: none;
  color: var(--fg-1); cursor: pointer; padding: 8px;
}
.v2-scope .mobile-menu-toggle svg { width: 28px; height: 28px; }
.v2-scope .mobile-nav-container {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--surface); z-index: 99; padding: 24px; overflow-y: auto;
  border-top: 1px solid var(--line); flex-direction: column; gap: 24px;
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none;
}
.v2-scope .mobile-nav-container.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; }
.v2-scope .mobile-nav-links { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .mobile-nav-links a { text-decoration: none; color: var(--fg-1); font-weight: 600; font-size: 18px; }
.v2-scope .mobile-nav-dropdown {
  display: flex; flex-direction: column; gap: 12px;
  padding-left: 16px; border-left: 2px solid var(--line); margin-top: 8px;
}
.v2-scope .mobile-nav-dropdown a { font-size: 15px; color: var(--fg-3); font-weight: 500; }
.v2-scope .mobile-nav-cta { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ══════════════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════════════ */
.v2-scope .btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; border-radius: 40px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer; text-decoration: none; text-align: center;
}
.v2-scope .btn-primary {
  background: var(--accent-grad); color: #ffffff;
  box-shadow: 0 4px 14px rgba(19, 112, 181, 0.3); border: none;
}
.v2-scope .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(19, 112, 181, 0.4); }
.v2-scope .btn-ghost {
  background: var(--surface); color: var(--fg-1);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.v2-scope .btn-ghost:hover { background: var(--surface-2); border-color: var(--line-hover); color: var(--primary); transform: translateY(-2px); }
.v2-scope .btn-on-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.v2-scope .btn-on-dark:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.v2-scope .btn-on-dark-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.v2-scope .btn-on-dark-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); color: #fff; transform: translateY(-2px); }
.v2-scope .btn-sm { padding: 10px 20px; font-size: 13px; }
.v2-scope .btn-lg { padding: 16px 32px; font-size: 15px; }

/* ══════════════════════════════════════════════════════
   UTILITAIRES
══════════════════════════════════════════════════════ */
.v2-scope .eyebrow {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
}
.v2-scope .eyebrow::before { content: ''; display: inline-block; width: 12px; height: 2px; background: currentColor; }
.v2-scope .eyebrow.blue { color: var(--primary); }
.v2-scope .eyebrow.green { color: var(--green-600); }
.v2-scope .eyebrow.on-dark { color: rgba(255,255,255,.65); }
.v2-scope .eyebrow.on-dark::before { background: rgba(255,255,255,.4); }
.v2-scope .h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--fg-1); letter-spacing: -0.02em; }
.v2-scope .h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.25; color: var(--fg-1); margin-top: 12px; margin-bottom: 16px; letter-spacing: -0.01em; }
.v2-scope .h3 { font-size: 1.2rem; font-weight: 700; color: var(--fg-1); line-height: 1.35; }
.v2-scope .rule { width: 60px; height: 4px; background: var(--primary); border-radius: 2px; margin-bottom: 20px; }
.v2-scope .rule.green { background: var(--green-600); }
.v2-scope .rule.center { margin-left: auto; margin-right: auto; }
.v2-scope .lead { font-size: 1.1rem; color: var(--fg-3); line-height: 1.7; }
.v2-scope .section { padding-top: 100px; padding-bottom: 100px; }
.v2-scope .section-tight { padding-top: 64px; padding-bottom: 64px; }
.v2-scope .section-head { margin-bottom: 56px; max-width: 700px; }
.v2-scope .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.v2-scope .chip { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .chip.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .chip.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .chip.dark { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.v2-scope .chip svg { width: 24px; height: 24px; }
.v2-scope .card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.v2-scope .card.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-hover); }
.v2-scope .tlink { font-size: 14px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s ease; }
.v2-scope .tlink .arrow { transition: transform 0.2s ease; }
.v2-scope .tlink:hover .arrow { transform: translateX(4px); }
.v2-scope .arrow { display: inline-block; }

/* ══════════════════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════════════════ */
.v2-scope .hero { position: relative; overflow: hidden; background: var(--surface); border-bottom: 1px solid var(--line); }
.v2-scope .hero .rail {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 48px; padding-top: 80px; padding-bottom: 80px;
}
.v2-scope .hero-head { display: flex; flex-direction: column; gap: 28px; }
.v2-scope .hl-blue { color: var(--primary); font-weight: 600; }
.v2-scope .hl-green { color: var(--green-600); font-weight: 600; }
.v2-scope .hero-head .h1 { max-width: 1200px; }
.v2-scope .hero-banner { width: 100%; height: 420px; }
.v2-scope .hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.v2-scope .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 460px at 85% -10%, rgba(19,112,181,0.12), transparent 70%),
              radial-gradient(700px 380px at -10% 110%, rgba(31,169,108,0.08), transparent 60%);
}
.v2-scope .hero-copy { display: flex; flex-direction: column; gap: 28px; }
.v2-scope .hero-copy .h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--fg-1); letter-spacing: -0.02em; }
.v2-scope .hero-copy .h1 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .hero-copy .lead-container { display: flex; flex-direction: column; gap: 14px; color: var(--fg-3); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }
.v2-scope .hero-copy .lead-bold { font-weight: 600; color: var(--fg-2); }
.v2-scope .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 8px; }
.v2-scope .hero-trust { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); }
.v2-scope .hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-4); }
.v2-scope .hero-trust-item svg { width: 15px; height: 15px; color: var(--green-600); flex-shrink: 0; }
.v2-scope .hero-trust-item span { color: var(--fg-2); font-weight: 600; }
.v2-scope .hero-visual { position: relative; z-index: 2; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--line); height: 480px; }
.v2-scope .hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.v2-scope .hero-tagpill {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; gap: 14px; align-items: center;
}
.v2-scope .hero-tagpill .pi { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--green-100); color: var(--green-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .hero-tagpill .pt { font-size: 13.5px; line-height: 1.45; color: var(--fg-2); }
.v2-scope .hero-tagpill .pt b { color: var(--fg-1); font-weight: 700; }

/* ══════════════════════════════════════════════════════
   HOME — PHILOSOPHIE
══════════════════════════════════════════════════════ */
.v2-scope .philo-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.v2-scope .philo-copy { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .philo-copy .lead { font-size: 1.05rem; color: var(--fg-3); line-height: 1.75; }
.v2-scope .stat-block { margin-top: 8px; }
.v2-scope .stat-n { font-size: clamp(3rem, 5vw, 4.2rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .stat-lbl { font-size: 14px; color: var(--fg-3); margin-top: 8px; max-width: 280px; line-height: 1.5; }
.v2-scope .philo-steps { display: flex; flex-direction: column; gap: 0; }
.v2-scope .philo-step { display: flex; gap: 24px; align-items: flex-start; padding: 28px 32px; position: relative; }
.v2-scope .philo-step:not(:last-child) { border-bottom: 1px solid var(--line); }
.v2-scope .philo-step:hover { background: var(--surface-2); border-radius: var(--radius-sm); }
.v2-scope .step-num { font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-serif); background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex-shrink: 0; min-width: 48px; }
.v2-scope .step-body { display: flex; flex-direction: column; gap: 8px; }
.v2-scope .step-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--fg-1); }
.v2-scope .step-body p { font-size: 14.5px; color: var(--fg-3); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   HOME — SOLUTIONS GRID
══════════════════════════════════════════════════════ */
.v2-scope .sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.v2-scope .sol-grid.four { grid-template-columns: repeat(4, 1fr); }
.v2-scope .sol { padding: 36px 32px; display: flex; flex-direction: column; gap: 20px; text-decoration: none; border-radius: var(--radius-md); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.v2-scope .sol:hover { transform: translateY(-6px); }
.v2-scope .sol.standard { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.v2-scope .sol.standard:hover { box-shadow: var(--shadow-lg); border-color: var(--line-hover); }
.v2-scope .sol.featured { background: var(--fg-1); border: 1px solid transparent; box-shadow: var(--shadow-xl); }
.v2-scope .sol.featured:hover { box-shadow: 0 24px 48px rgba(15,23,42,0.35); }
.v2-scope .sol .top { display: flex; align-items: center; justify-content: space-between; }
.v2-scope .sol .num { font-size: 14px; color: var(--fg-4); font-weight: 700; letter-spacing: 0.1em; }
.v2-scope .sol .num.light { color: rgba(255,255,255,0.3); }
.v2-scope .sol h3 { font-size: 1.25rem; font-weight: 700; color: var(--fg-1); line-height: 1.3; }
.v2-scope .sol.featured h3 { color: #ffffff; }
.v2-scope .sol p { font-size: 14.5px; color: var(--fg-3); line-height: 1.65; flex: 1; }
.v2-scope .sol.featured p { color: rgba(255,255,255,0.6); }
.v2-scope .sol-formats { display: flex; flex-direction: column; gap: 7px; }
.v2-scope .sol-formats span { font-size: 13px; color: var(--fg-3); display: flex; align-items: center; gap: 8px; }
.v2-scope .sol-formats span::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.v2-scope .vr-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; background: rgba(19,112,181,0.18); color: #7cc3f5; border: 1px solid rgba(96,165,250,0.25); letter-spacing: 0.04em; text-transform: uppercase; width: fit-content; }
.v2-scope .sol-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; width: fit-content; }
.v2-scope .sol-tag.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .sol-tag.blue { background: var(--primary-light); color: var(--primary); }

/* ══════════════════════════════════════════════════════
   HOME — CAROUSEL CLIENTS
══════════════════════════════════════════════════════ */
@keyframes v2-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes v2-marquee-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.v2-scope .animate-marquee { animation: v2-marquee 40s linear infinite; }
.v2-scope .animate-marquee-reverse { animation: v2-marquee-reverse 40s linear infinite; }
.v2-scope .logo-track { display: flex; width: max-content; }
.v2-scope .logo-track:hover { animation-play-state: paused; }
.v2-scope .logo-card { width: 160px; height: 90px; background-color: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; padding: 16px; flex-shrink: 0; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--shadow-sm); }
.v2-scope .logo-card:hover { transform: scale(1.05); box-shadow: var(--shadow-md); border-color: var(--line-hover); }
.v2-scope .logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.v2-scope .logo-fade-mask {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 120px, black calc(100% - 120px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 120px, black calc(100% - 120px), transparent 100%);
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════
   HOME — LAB ÉDITORIAL
══════════════════════════════════════════════════════ */
.v2-scope .lab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.v2-scope .article { overflow: hidden; display: flex; flex-direction: column; text-decoration: none; background: var(--surface); }
.v2-scope .article .im { height: 200px; overflow: hidden; background: var(--surface-2); }
.v2-scope .article .im img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.v2-scope .article:hover .im img { transform: scale(1.04); }
.v2-scope .article .bd { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.v2-scope .article .meta { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-4); }
.v2-scope .article h3 { font-size: 1.15rem; line-height: 1.35; font-weight: 700; color: var(--fg-1); }
.v2-scope .article p { font-size: 14px; color: var(--fg-3); line-height: 1.6; flex: 1; }

/* ══════════════════════════════════════════════════════
   PAGE CONTACT
══════════════════════════════════════════════════════ */
.v2-scope .contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: start; }

/* ══════════════════════════════════════════════════════
   FORMULAIRE DE CONTACT
══════════════════════════════════════════════════════ */
.v2-scope .form-group { display: flex; flex-direction: column; gap: 6px; }
.v2-scope .form-label { font-size: 14px; font-weight: 500; color: var(--fg-2); }
.v2-scope .form-input {
  width: 100%; padding: 10px 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--fg-1);
  font-size: 14px; font-family: var(--font-sans); line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none; -webkit-appearance: none; appearance: none;
}
.v2-scope .form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(19,112,181,0.1); }
.v2-scope .form-input:disabled { opacity: 0.5; cursor: not-allowed; background: var(--surface-2); }
.v2-scope textarea.form-input { resize: vertical; min-height: 120px; }
.v2-scope .form-error { font-size: 12px; color: #ef4444; margin-top: 2px; }
@keyframes v2-spin { to { transform: rotate(360deg); } }
.v2-scope .spin { animation: v2-spin 0.8s linear infinite; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   HOME — CTA FINAL
══════════════════════════════════════════════════════ */
.v2-scope .cta { background: var(--surface-2); }
.v2-scope .cta .rail { padding-top: 80px; padding-bottom: 80px; }
.v2-scope .cta .wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: stretch; }
.v2-scope .cta .copy { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.v2-scope .cta h2 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .cta p { color: var(--fg-3); font-size: 1.1rem; margin: 20px 0 0; max-width: 520px; line-height: 1.65; }
.v2-scope .cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 32px; }
.v2-scope .cta-actions .fine { flex-basis: 100%; color: var(--fg-4); font-size: 13px; margin: 4px 0 0; }
.v2-scope .cta-checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.v2-scope .cta-check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-3); }
.v2-scope .cta-check-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-600); }
.v2-scope .cta .photo { position: relative; min-height: 400px; }
.v2-scope .cta .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   NOTRE APPROCHE — HERO DARK
══════════════════════════════════════════════════════ */
.v2-scope .phero { position: relative; overflow: hidden; background: var(--fg-1); padding-top: 80px; padding-bottom: 96px; }
.v2-scope .phero-bg { position: absolute; inset: 0; z-index: 0; }
.v2-scope .phero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.v2-scope .phero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,112,181,.65) 0%, rgba(15,23,42,.9) 60%); }
.v2-scope .phero .rail { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.v2-scope .phero-copy { display: flex; flex-direction: column; gap: 28px; }
.v2-scope .crumbs { font-size: 13px; color: rgba(255,255,255,.55); display: flex; gap: 8px; align-items: center; }
.v2-scope .crumbs a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.v2-scope .crumbs a:hover { color: #fff; }
.v2-scope .phero-copy .h1 { color: #fff; }
.v2-scope .phero-copy .lead { color: rgba(255,255,255,.75); max-width: 560px; }
.v2-scope .phero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.v2-scope .phero-signature { display: flex; flex-direction: column; gap: 16px; }
.v2-scope .sig-pill { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 20px 24px; backdrop-filter: blur(12px); display: flex; align-items: flex-start; gap: 16px; transition: background .2s ease; }
.v2-scope .sig-pill:hover { background: rgba(255,255,255,.12); }
.v2-scope .sig-pill .snum { font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-serif); background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex-shrink: 0; min-width: 48px; }
.v2-scope .sig-pill .stxt { display: flex; flex-direction: column; gap: 4px; }
.v2-scope .sig-pill .stxt strong { color: #fff; font-size: 15px; font-weight: 700; }
.v2-scope .sig-pill .stxt span { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   NOTRE APPROCHE — CONSTAT
══════════════════════════════════════════════════════ */
.v2-scope .constat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.v2-scope .constat-card { padding: 40px 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.v2-scope .constat-card .big-n { font-size: clamp(2.4rem,4vw,3.6rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .constat-card .big-n.green { background: var(--green-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .constat-card p { font-size: 15px; color: var(--fg-3); line-height: 1.6; }
.v2-scope .constat-card .source { font-size: 11px; color: var(--fg-4); margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); }
.v2-scope .insight-block { margin-top: 56px; background: var(--fg-1); border-radius: var(--radius-lg); padding: 56px 64px; position: relative; overflow: hidden; }
.v2-scope .insight-block::before { content: '"'; position: absolute; top: -20px; left: 40px; font-family: var(--font-serif); font-size: 200px; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }
.v2-scope .insight-block blockquote { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-style: italic; color: #fff; line-height: 1.55; max-width: 800px; position: relative; z-index: 1; }
.v2-scope .insight-block blockquote em { color: #1fa96c; font-style: normal; }
.v2-scope .insight-block .quote-attr { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.45); position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════
   NOTRE APPROCHE — WHY / DONUT
══════════════════════════════════════════════════════ */
.v2-scope .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 56px; }
.v2-scope .donut-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 48px 40px; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.v2-scope .donut-wrap h4 { font-size: 14px; text-align: center; color: var(--fg-4); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.v2-scope .donut-container { position: relative; width: 220px; height: 220px; }
.v2-scope .donut-container svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.v2-scope .donut-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.v2-scope .donut-label .pct { font-size: 2.6rem; font-weight: 800; line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .donut-label .pct-lbl { font-size: 12px; color: var(--fg-4); font-weight: 600; }
.v2-scope .donut-legend { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.v2-scope .legend-item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.v2-scope .legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.v2-scope .legend-item span { color: var(--fg-3); flex: 1; }
.v2-scope .legend-item strong { color: var(--fg-1); font-weight: 700; }
.v2-scope .why-copy { display: flex; flex-direction: column; gap: 24px; }
.v2-scope .why-copy p { font-size: 16px; color: var(--fg-3); line-height: 1.75; }
.v2-scope .callout { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; }
.v2-scope .callout p { font-size: 15px; color: var(--fg-2); font-weight: 500; margin: 0; }

/* ══════════════════════════════════════════════════════
   NOTRE APPROCHE — KOLB
══════════════════════════════════════════════════════ */
.v2-scope .kolb-section { background: var(--surface-2); }
.v2-scope .kolb-intro { max-width: 680px; margin: 0 auto; text-align: center; margin-bottom: 64px; }
.v2-scope .kolb-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.v2-scope .kolb-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--green-600) 100%); z-index: 0; }
.v2-scope .kolb-step { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 0 16px; position: relative; z-index: 1; text-align: center; }
.v2-scope .kolb-step .knum { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; font-family: var(--font-serif); color: #fff; flex-shrink: 0; box-shadow: var(--shadow-md); }
.v2-scope .kolb-step:nth-child(1) .knum { background: var(--accent-grad); }
.v2-scope .kolb-step:nth-child(2) .knum { background: linear-gradient(135deg, #175394 0%, #1a7ab8 100%); }
.v2-scope .kolb-step:nth-child(3) .knum { background: linear-gradient(135deg, #1a7ab8 0%, #1fa96c 100%); }
.v2-scope .kolb-step:nth-child(4) .knum { background: var(--green-grad); }
.v2-scope .kolb-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg-1); }
.v2-scope .kolb-step p { font-size: 14px; color: var(--fg-3); line-height: 1.6; }
.v2-scope .kolb-step .ktag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-4); }

/* ══════════════════════════════════════════════════════
   NOTRE APPROCHE — ÉQUIPE
══════════════════════════════════════════════════════ */
.v2-scope .team-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 56px; }
.v2-scope .team-story { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .team-story p { font-size: 16px; color: var(--fg-3); line-height: 1.75; }
.v2-scope .founded-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--primary-light); border: 1px solid rgba(19,112,181,.2); border-radius: var(--radius-md); padding: 16px 20px; }
.v2-scope .founded-badge .year { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: var(--font-serif); line-height: 1; }
.v2-scope .founded-badge .desc { font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.v2-scope .founded-badge .desc strong { display: block; color: var(--fg-1); font-size: 14px; margin-bottom: 2px; }
.v2-scope .team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.v2-scope .team-card { padding: 32px; display: flex; flex-direction: column; gap: 16px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: all .3s cubic-bezier(.16,1,.3,1); }
.v2-scope .team-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.v2-scope .team-card.blue::after { background: var(--accent-grad); }
.v2-scope .team-card.green::after { background: var(--green-grad); }
.v2-scope .team-card.mixed::after { background: var(--brand-mixed-grad); }
.v2-scope .team-card.slate::after { background: linear-gradient(135deg, #475569 0%, #334155 100%); }
.v2-scope .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.v2-scope .team-card .person-head { display: flex; align-items: center; gap: 14px; }
.v2-scope .team-card .avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.v2-scope .team-card .avatar.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .team-card .avatar.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .team-card .avatar.slate { background: var(--surface-2); color: var(--fg-3); }
.v2-scope .team-card .pname { font-size: 16px; font-weight: 700; color: var(--fg-1); }
.v2-scope .team-card .ptitle { font-size: 12px; color: var(--fg-4); line-height: 1.5; margin-top: 2px; }
.v2-scope .team-card p { font-size: 14px; color: var(--fg-3); line-height: 1.65; }
.v2-scope .expertise-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; background: var(--primary-light); color: var(--primary); width: fit-content; }
.v2-scope .expertise-tag.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .expertise-tag.slate { background: var(--surface-2); color: var(--fg-3); }

/* ══════════════════════════════════════════════════════
   NOTRE APPROCHE — CONTINUUM
══════════════════════════════════════════════════════ */
.v2-scope .continuum-section { background: var(--fg-1); padding-top: 100px; padding-bottom: 100px; }
.v2-scope .continuum-intro { max-width: 640px; margin-bottom: 64px; }
.v2-scope .continuum-intro .h2 { color: #fff; }
.v2-scope .continuum-intro .lead { color: rgba(255,255,255,.65); }
.v2-scope .continuum-intro .rule { background: var(--green-600); }
.v2-scope .continuum-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.v2-scope .continuum-track::before { content: ''; position: absolute; top: 48px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, #1370b5, #1fa96c); z-index: 0; }
.v2-scope .cont-item { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 0 24px; position: relative; z-index: 1; text-align: center; }
.v2-scope .cont-icon { width: 96px; height: 96px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); transition: all .3s ease; }
.v2-scope .cont-icon:hover { transform: scale(1.08); background: rgba(255,255,255,.12); }
.v2-scope .cont-icon svg { width: 36px; height: 36px; }
.v2-scope .cont-item:nth-child(1) .cont-icon { color: #60a5fa; border-color: rgba(96,165,250,.4); }
.v2-scope .cont-item:nth-child(2) .cont-icon { color: #34d399; border-color: rgba(52,211,153,.4); }
.v2-scope .cont-item:nth-child(3) .cont-icon { color: #a78bfa; border-color: rgba(167,139,250,.4); }
.v2-scope .cont-item h3 { color: #fff; font-size: 1.15rem; font-weight: 700; }
.v2-scope .cont-item p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; max-width: 280px; }
.v2-scope .cont-badge { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.5); }
.v2-scope .cont-item:nth-child(2) .cont-badge { border-color: rgba(52,211,153,.4); color: #34d399; }
.v2-scope .cont-link { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.55); display: inline-flex; align-items: center; gap: 6px; text-decoration: none; transition: color .2s; }
.v2-scope .cont-link:hover { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════════════════════
   CTA CENTRÉ (Notre Approche)
══════════════════════════════════════════════════════ */
.v2-scope .fcta { text-align: center; background: var(--surface-2); }
.v2-scope .fcta .inner { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 64px 48px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.v2-scope .fcta .h2 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .fcta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   FORMATIONS — PAGE HERO
══════════════════════════════════════════════════════ */
.v2-scope .page-hero { background: var(--fg-1); padding: 72px 0; position: relative; overflow: hidden; }
.v2-scope .page-hero::after { content:''; position:absolute; inset:0; background:radial-gradient(900px 400px at 80% -20%,rgba(19,112,181,.25),transparent 70%),radial-gradient(600px 350px at -10% 110%,rgba(31,169,108,.12),transparent 60%); pointer-events:none; }
.v2-scope .page-hero .rail { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.v2-scope .page-hero-copy { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .page-hero-copy .h1 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; line-height: 1.15; color: #fff; letter-spacing: -.02em; }
.v2-scope .page-hero-copy .lead { color: rgba(255,255,255,.7); max-width: 560px; }
.v2-scope .hero-counts { display: flex; gap: 32px; }
.v2-scope .hero-count { text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 20px 28px; }
.v2-scope .hero-count .n { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.v2-scope .hero-count .l { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   FORMATIONS — FILTRES
══════════════════════════════════════════════════════ */
.v2-scope .filter-bar { background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); position: sticky; top: 80px; z-index: 90; }
.v2-scope .filter-bar .rail { display: flex; flex-direction: column; }
/* selects row */
.v2-scope .filter-selects-row { display: flex; align-items: flex-end; gap: 16px; padding: 14px 0; flex-wrap: wrap; }
.v2-scope .filter-select-group { display: flex; flex-direction: column; gap: 5px; flex: 1 1 160px; min-width: 140px; }
.v2-scope .filter-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-4); }
.v2-scope .filter-select { appearance: none; -webkit-appearance: none; background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1px solid var(--line); color: var(--fg-2); font-size: 13px; font-weight: 500; font-family: inherit; padding: 8px 36px 8px 12px; border-radius: 8px; cursor: pointer; transition: border-color .2s, box-shadow .2s; width: 100%; }
.v2-scope .filter-select:hover { border-color: var(--primary); }
.v2-scope .filter-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(19,112,181,.15); }
/* pills (legacy, kept in case) */
.v2-scope .filter-row { display: flex; align-items: center; gap: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
.v2-scope .filter-row:last-child { border-bottom: none; }
.v2-scope .filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.v2-scope .fpill { background: none; border: 1px solid var(--line); color: var(--fg-3); font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 20px; cursor: pointer; transition: all .2s; font-family: inherit; }
.v2-scope .fpill:hover { border-color: var(--primary); color: var(--primary); }
.v2-scope .fpill.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
.v2-scope .fpill.active.green { background: var(--green-600); border-color: var(--green-600); }
.v2-scope .fpill-fmt { display: inline-flex; align-items: center; gap: 6px; }
.v2-scope .fpill-fmt svg { width: 13px; height: 13px; flex-shrink: 0; }
.v2-scope .results-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.v2-scope .results-count { font-size: 14px; color: var(--fg-4); }
.v2-scope .results-count strong { color: var(--fg-1); font-weight: 700; }
.v2-scope .reset-link { font-size: 13px; font-weight: 600; color: var(--fg-4); background: none; border: none; cursor: pointer; text-decoration: underline; font-family: inherit; }

/* ══════════════════════════════════════════════════════
   FORMATIONS — GRILLE MODULES
══════════════════════════════════════════════════════ */
.v2-scope .mod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.v2-scope .mod-card { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 280px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; display: block; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s; }
.v2-scope .mod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-hover); }
.v2-scope .mc-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform .5s cubic-bezier(.16,1,.3,1), filter .4s ease; }
.v2-scope .mod-card:hover .mc-img { transform: scale(1.06); filter: blur(2px) brightness(.4); }
.v2-scope .mc-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,30,.95) 0%, rgba(10,15,30,.7) 38%, rgba(10,15,30,.2) 62%, transparent 100%); transition: opacity .4s ease; }
.v2-scope .mod-card:hover .mc-grad { opacity: 0; }
.v2-scope .mc-rest { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 20px; gap: 8px; transition: opacity .3s ease; }
.v2-scope .mod-card:hover .mc-rest { opacity: 0; pointer-events: none; }
.v2-scope .mc-over { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 18px 20px; opacity: 0; background: rgba(10,15,30,.72); transition: opacity .35s ease; }
.v2-scope .mod-card:hover .mc-over { opacity: 1; }
.v2-scope .mc-badges { display: flex; gap: 5px; flex-wrap: wrap; }
.v2-scope .badge-vr { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; white-space: nowrap; letter-spacing: .04em; background: rgba(19,112,181,.9); color: #fff; }
.v2-scope .badge-vr svg { width: 10px; height: 10px; flex-shrink: 0; }
.v2-scope .vtag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; white-space: nowrap; letter-spacing: .04em; }
.v2-scope .vtag.vl { background: rgba(3,105,161,.9); color: #fff; }
.v2-scope .vtag.util { background: rgba(194,65,12,.9); color: #fff; }
.v2-scope .vtag.moto { background: rgba(126,34,206,.9); color: #fff; }
.v2-scope .vtag.md { background: rgba(31,169,108,.9); color: #fff; }
.v2-scope .vtag.tous { background: rgba(71,85,105,.9); color: #fff; }
.v2-scope .mod-grid .mc-rest h3 { font-size: .97rem; font-weight: 700; color: #fff; line-height: 1.3; text-shadow: 0 1px 8px rgba(0,0,0,.9), 0 2px 20px rgba(0,0,0,.7); }
.v2-scope .mc-over-top { display: flex; flex-direction: column; gap: 8px; }
.v2-scope .mod-grid .mc-over-top h3 { font-size: .97rem; font-weight: 700; color: #fff; line-height: 1.3; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.v2-scope .mod-grid .mc-over-top p { font-size: 12.5px; color: rgba(255,255,255,.88); line-height: 1.6; }
.v2-scope .mc-foot { display: flex; align-items: center; justify-content: space-between; }
.v2-scope .mc-fmts { display: flex; gap: 5px; }
.v2-scope .mc-fi { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center; }
.v2-scope .mc-fi svg { width: 13px; height: 13px; display: block; flex-shrink: 0; }
.v2-scope .mc-link { font-size: 13px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 4px; }
.v2-scope .mc-link svg { width: 13px; height: 13px; transition: transform .2s; flex-shrink: 0; }
.v2-scope .mod-card:hover .mc-link svg { transform: translateX(3px); }
.v2-scope .mc-img.cognitif { background-color: #312e81; }
.v2-scope .mc-img.substances { background-color: #431407; }
.v2-scope .mc-img.fatigue { background-color: #450a0a; }
.v2-scope .mc-img.visibilite { background-color: #042f2e; }
.v2-scope .mc-img.comportement { background-color: #052e16; }
.v2-scope .legend-bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--line); margin-top: 40px; }
.v2-scope .ldot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* CTA dark (Formations) */
.v2-scope .fcta-inner { background: var(--fg-1); border-radius: var(--radius-lg); padding: 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.v2-scope .fcta-copy { display: flex; flex-direction: column; gap: 16px; }
.v2-scope .fcta-copy .h2 { color: #fff; margin-top: 10px; }
.v2-scope .fcta-copy .h2 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .fcta-copy p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; max-width: 480px; }
.v2-scope .fcta-actions-row { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-scope .fcta-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   DÉCLIC — BLOG HERO
══════════════════════════════════════════════════════ */
.v2-scope .blog-hero { background: var(--fg-1); padding: 64px 0; position: relative; overflow: hidden; }
.v2-scope .blog-hero::after { content:''; position:absolute; inset:0; background:radial-gradient(800px 350px at 70% -10%,rgba(19,112,181,.2),transparent 65%),radial-gradient(500px 300px at -5% 110%,rgba(31,169,108,.1),transparent 60%); pointer-events:none; }
.v2-scope .blog-hero .rail { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.v2-scope .blog-hero-copy { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .blog-hero-copy .lead { color: rgba(255,255,255,.65); max-width: 580px; }
.v2-scope .blog-name { font-family: var(--font-serif); font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.02em; }
.v2-scope .blog-tagline { font-size: 14px; color: rgba(255,255,255,.45); font-style: italic; margin-top: -8px; }
.v2-scope .blog-stats { display: flex; gap: 32px; }
.v2-scope .bstat { text-align: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 20px 28px; }
.v2-scope .bstat .n { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.v2-scope .bstat .l { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* ══════════════════════════════════════════════════════
   DÉCLIC — GRILLE ARTICLES
══════════════════════════════════════════════════════ */
.v2-scope .articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.v2-scope .article-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: all .3s cubic-bezier(.16,1,.3,1); }
.v2-scope .article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-hover); }
.v2-scope .ac-img { height: 200px; overflow: hidden; background: var(--surface-2); position: relative; flex-shrink: 0; }
.v2-scope .ac-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.v2-scope .article-card:hover .ac-img img { transform: scale(1.04); }
.v2-scope .ac-cat { position: absolute; top: 14px; left: 14px; }
.v2-scope .cat-badge { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.v2-scope .cat-badge.neurosciences { background: rgba(139,92,246,.85); color: #fff; }
.v2-scope .cat-badge.pedagogie { background: rgba(19,112,181,.85); color: #fff; }
.v2-scope .cat-badge.terrain { background: rgba(31,169,108,.85); color: #fff; }
.v2-scope .cat-badge.actualite { background: rgba(245,158,11,.85); color: #fff; }
/* Index version of cat-badge */
.v2-scope .cat-badge-index { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; }
.v2-scope .cat-badge-index.pedagogie { background: var(--primary-light); color: var(--primary); }
.v2-scope .cat-badge-index.neurosciences { background: rgba(139,92,246,.12); color: #5b21b6; }
.v2-scope .cat-badge-index.terrain { background: var(--green-100); color: var(--green-700); }
.v2-scope .cat-badge-index.actualite { background: #fef3c7; color: #92400e; }
.v2-scope .ac-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.v2-scope .ac-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-4); }
.v2-scope .ac-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-hover); }
.v2-scope .ac-title { font-size: 1.05rem; font-weight: 700; color: var(--fg-1); line-height: 1.35; }
.v2-scope .ac-accroche { font-size: 13.5px; color: var(--fg-3); line-height: 1.6; flex: 1; }
.v2-scope .ac-author { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.v2-scope .ac-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .ac-avatar.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .ac-author-name { font-size: 12px; font-weight: 600; color: var(--fg-2); }
.v2-scope .ac-read { font-size: 11px; color: var(--fg-4); margin-left: auto; display: flex; align-items: center; gap: 4px; }

/* Newsletter */
.v2-scope .nl-strip { background: var(--fg-1); border-radius: var(--radius-lg); padding: 56px 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.v2-scope .nl-copy { display: flex; flex-direction: column; gap: 14px; }
.v2-scope .nl-copy .h2 { color: #fff; }
.v2-scope .nl-copy .h2 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .nl-copy p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.65; }
.v2-scope .nl-form { display: flex; flex-direction: column; gap: 10px; min-width: 320px; }
.v2-scope .nl-form input { padding: 14px 18px; border-radius: 40px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; }
.v2-scope .nl-form input::placeholder { color: rgba(255,255,255,.4); }
.v2-scope .nl-form input:focus { border-color: rgba(255,255,255,.4); }
.v2-scope .nl-note { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.v2-scope .site-footer { background: var(--fg-1); color: #ffffff; padding-top: 80px; padding-bottom: 40px; }
.v2-scope .foot-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 0.6fr); gap: 48px; margin-bottom: 60px; }
.v2-scope .foot-brand { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .foot-brand img { height: 44px; width: auto; align-self: flex-start; filter: brightness(0) invert(1); }
.v2-scope .foot-brand p { color: #94a3b8; font-size: 14px; line-height: 1.6; }
.v2-scope .foot-brand .addr { font-size: 13.5px; color: #cbd5e1; line-height: 1.5; }
.v2-scope .foot-brand .addr b { color: #ffffff; }
.v2-scope .site-footer h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #38bdf8; margin-bottom: 20px; }
.v2-scope .site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.v2-scope .site-footer ul a { color: #94a3b8; text-decoration: none; font-size: 14.5px; transition: color 0.2s ease; }
.v2-scope .site-footer ul a:hover { color: #ffffff; }
.v2-scope .foot-bottom { border-top: 1px solid #334155; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: #64748b; font-size: 13.5px; }
.v2-scope .foot-bottom em { color: #94a3b8; font-style: italic; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .v2-scope .hero .rail { gap: 28px; padding-top: 48px; padding-bottom: 64px; }
  .v2-scope .hero-head { max-width: 100%; }
  .v2-scope .hero-banner { height: 280px; }
  .v2-scope .philo-grid { grid-template-columns: 1fr; gap: 48px; }
  .v2-scope .sol-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .v2-scope .sol-grid.four { grid-template-columns: 1fr 1fr; }
  .v2-scope .lab-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .v2-scope .cta .wrap { grid-template-columns: 1fr; }
  .v2-scope .cta .photo { min-height: 280px; order: -1; }
  .v2-scope .cta .copy { padding: 40px; text-align: center; }
  .v2-scope .cta p { margin: 16px auto 0; }
  .v2-scope .cta-actions { justify-content: center; }
  .v2-scope .cta-checklist { align-items: center; }
  .v2-scope .phero .rail { grid-template-columns: 1fr; }
  .v2-scope .phero-signature { display: none; }
  .v2-scope .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .v2-scope .constat-grid { grid-template-columns: repeat(2,1fr); }
  .v2-scope .why-grid { grid-template-columns: 1fr; }
  .v2-scope .kolb-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .v2-scope .kolb-steps::before { display: none; }
  .v2-scope .team-intro-grid { grid-template-columns: 1fr; }
  .v2-scope .team-grid { grid-template-columns: 1fr; }
  .v2-scope .continuum-track { grid-template-columns: 1fr; gap: 48px; }
  .v2-scope .continuum-track::before { display: none; }
  .v2-scope .mod-grid { grid-template-columns: repeat(2,1fr); }
  .v2-scope .page-hero .rail { grid-template-columns: 1fr; }
  .v2-scope .hero-counts { display: none; }
  .v2-scope .fcta-inner { grid-template-columns: 1fr; gap: 32px; }
  .v2-scope .blog-hero .rail { grid-template-columns: 1fr; }
  .v2-scope .blog-stats { display: none; }
  .v2-scope .articles-grid { grid-template-columns: repeat(2,1fr); }
  .v2-scope .nl-strip { grid-template-columns: 1fr; gap: 32px; }
  .v2-scope .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .v2-scope .fcta .inner { padding: 48px 32px; }
}
@media (max-width: 820px) {
  .v2-scope .nav, .v2-scope .header-cta { display: none; }
  .v2-scope .mobile-menu-toggle { display: block; }
  .v2-scope .filter-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .v2-scope .filter-selects-row { flex-direction: column; gap: 12px; }
  .v2-scope .filter-select-group { flex: 1 1 auto; min-width: 0; width: 100%; }
  .v2-scope .foot-grid { grid-template-columns: 1fr; }
  .v2-scope .site-footer { padding-top: 60px; }
}
@media (max-width: 640px) {
  .v2-scope .sol-grid, .v2-scope .sol-grid.four, .v2-scope .lab-grid { grid-template-columns: 1fr; }
  .v2-scope .section { padding-top: 64px; padding-bottom: 64px; }
  .v2-scope .mod-grid { grid-template-columns: 1fr; }
  .v2-scope .articles-grid { grid-template-columns: 1fr; }
  .v2-scope .nl-strip { padding: 40px 28px; }
  .v2-scope .insight-block { padding: 40px 28px; }
  .v2-scope .kolb-steps { grid-template-columns: 1fr; }
  .v2-scope .constat-grid { grid-template-columns: 1fr; }
  .v2-scope .fcta-inner { padding: 40px 28px; }
  .v2-scope .fcta .inner { padding: 40px 24px; }
}

@media(prefers-reduced-motion:reduce) {
  .v2-scope .mc-img, .v2-scope .mc-rest, .v2-scope .mc-over { transition: none; }
  .v2-scope .mod-card:hover .mc-img { transform: none; filter: brightness(.28); }
}

/* ══════════════════════════════════════════════════════
   UTILITAIRES PARTAGÉS — PAGES INTÉRIEURES
══════════════════════════════════════════════════════ */
.v2-scope .section-tight { padding-top: 64px; padding-bottom: 64px; }
.v2-scope .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.v2-scope .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v2-scope .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.v2-scope .twocol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px; align-items: center; }

/* Texte sur fond sombre */
.v2-scope .on-dark .eyebrow { color: rgba(255,255,255,.65); }
.v2-scope .eyebrow.on-dark  { color: rgba(255,255,255,.65); }
.v2-scope .on-dark .h1      { color: #ffffff; }
.v2-scope .on-dark .lead    { color: rgba(255,255,255,.82); }
.v2-scope .on-dark .crumbs  { color: rgba(255,255,255,.5); }
.v2-scope .on-dark .crumbs a { color: rgba(255,255,255,.65); }
.v2-scope .on-dark .crumbs a:hover { color: #fff; }

/* Bouton fantôme sur fond sombre */
.v2-scope .btn-on-dark-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.v2-scope .btn-on-dark-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.v2-scope .btn-on-dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.v2-scope .btn-on-dark:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.v2-scope .btn-white { background: #fff; color: var(--primary); border: none; }
.v2-scope .btn-white:hover { background: var(--primary-light); transform: translateY(-1px); }
.v2-scope .btn-green { background: var(--green-grad); color: #fff; box-shadow: 0 4px 14px rgba(31,169,108,.3); border: none; }
.v2-scope .btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,169,108,.4); }

/* Liste cochée */
.v2-scope .check { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.v2-scope .check li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--fg-2); line-height: 1.5; }
.v2-scope .check li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--green-600); }

/* CTA final centré */
.v2-scope .fcta { text-align: center; }
.v2-scope .fcta .card { padding: 56px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: center; gap: 20px; }

/* ══════════════════════════════════════════════════════
   SAFETY DAY — STYLES SPÉCIFIQUES
══════════════════════════════════════════════════════ */
/* Concept 2 colonnes */
.v2-scope .concept { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.v2-scope .concept .body { display: flex; flex-direction: column; gap: 18px; }
.v2-scope .concept .body p { margin: 0; color: var(--fg-2); font-size: 16px; line-height: 1.7; }
.v2-scope .concept .body p strong { color: var(--fg-1); font-weight: 600; }

/* Schéma de flux */
.v2-scope .flow { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 30px; display: flex; flex-direction: column; gap: 0; }
.v2-scope .flow .step { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; position: relative; }
.v2-scope .flow .step .dot { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; font-size: 15px; color: #fff; z-index: 2; }
.v2-scope .flow .step:nth-child(odd) .dot { background: var(--primary); }
.v2-scope .flow .step:nth-child(even) .dot { background: var(--green-600); }
.v2-scope .flow .step::before { content: ""; position: absolute; left: 18px; top: 40px; bottom: -14px; width: 2px; background: var(--line); z-index: 1; }
.v2-scope .flow .step:last-child::before { display: none; }
.v2-scope .flow .step .tx b { display: block; color: var(--fg-1); font-weight: 600; font-size: 15px; }
.v2-scope .flow .step .tx span { font-size: 13px; color: var(--fg-3); }

/* Grille des ateliers */
.v2-scope .ate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v2-scope .ate { padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.v2-scope .ate .ah { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.v2-scope .ate .fmt { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); background: var(--primary-light); padding: 5px 11px; border-radius: 40px; white-space: nowrap; }
.v2-scope .ate h3 { font-size: 1.18rem; }
.v2-scope .ate p  { margin: 0; font-size: 14px; color: var(--fg-3); line-height: 1.55; }
.v2-scope .ate ul { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.v2-scope .ate ul li { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--fg-2); line-height: 1.4; }
.v2-scope .ate ul li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--green-600); }

/* Timeline déroulement */
.v2-scope .tl { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; }
.v2-scope .tl .row { display: grid; grid-template-columns: 84px 1fr; gap: 24px; }
.v2-scope .tl .hr { font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--fg-1); text-align: right; padding-top: 16px; }
.v2-scope .tl .ev { position: relative; padding: 16px 0 16px 28px; border-left: 2px solid var(--line); }
.v2-scope .tl .row:last-child .ev { border-left-color: transparent; }
.v2-scope .tl .ev::before { content: ""; position: absolute; left: -7px; top: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); border: 2px solid var(--surface); }
.v2-scope .tl .row:nth-child(even) .ev::before { background: var(--green-600); }
.v2-scope .tl .ev .card { padding: 16px 20px; }
.v2-scope .tl .ev h4 { margin: 0 0 3px; font-size: 15px; font-weight: 600; color: var(--fg-1); }
.v2-scope .tl .ev p  { margin: 0; font-size: 13px; color: var(--fg-3); }

/* Bénéfices 3 cartes */
.v2-scope .benf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Modalités / Pricing */
.v2-scope .pricing { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.v2-scope .price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.v2-scope .price-card .ph { background: var(--fg-1); color: #fff; padding: 26px 30px; }
.v2-scope .price-card .ph .k { font-size: 13px; color: rgba(255,255,255,.6); }
.v2-scope .price-card .ph .v { font-family: var(--font-serif); font-weight: 700; font-size: 2rem; margin-top: 4px; }
.v2-scope .price-card .ph .v small { font-family: var(--font-sans); font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.8); }
.v2-scope .price-card ul { list-style: none; margin: 0; padding: 24px 30px; display: flex; flex-direction: column; gap: 14px; }
.v2-scope .price-card ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--fg-2); }
.v2-scope .price-card ul li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--green-600); }
.v2-scope .price-card .pf { padding: 0 30px 28px; }
.v2-scope .price-card .pf .btn-ghost { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   ARTICLE DÉCLIC — STYLES SPÉCIFIQUES
══════════════════════════════════════════════════════ */
/* Fil d'Ariane */
.v2-scope .breadcrumb { background: var(--surface); border-bottom: 1px solid var(--line); padding: 14px 0; }
.v2-scope .crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-4); flex-wrap: wrap; }
.v2-scope .crumbs a { color: var(--fg-4); text-decoration: none; transition: color .2s; }
.v2-scope .crumbs a:hover { color: var(--primary); }
.v2-scope .crumbs .sep { color: var(--line-hover); }
.v2-scope .crumbs .current { color: var(--fg-2); font-weight: 500; }

/* Layout article */
.v2-scope .article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; padding-top: 56px; padding-bottom: 96px; }
.v2-scope .art-hero { margin-bottom: 48px; }
.v2-scope .art-cat-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.v2-scope .cat-badge.pedagogie { background: var(--primary-light); color: var(--primary); }
.v2-scope .art-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--fg-1); margin-bottom: 20px; letter-spacing: -.01em; }
.v2-scope .art-lead { font-size: 1.15rem; color: var(--fg-3); line-height: 1.75; border-left: 4px solid var(--primary); padding-left: 20px; margin-bottom: 32px; }
.v2-scope .art-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v2-scope .art-author { display: flex; align-items: center; gap: 10px; }
.v2-scope .art-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .art-author-info { display: flex; flex-direction: column; gap: 2px; }
.v2-scope .art-author-name { font-size: 14px; font-weight: 600; color: var(--fg-1); }
.v2-scope .art-author-title { font-size: 12px; color: var(--fg-4); }
.v2-scope .art-meta-sep { width: 1px; height: 24px; background: var(--line); }
.v2-scope .art-date { font-size: 13px; color: var(--fg-4); }
.v2-scope .art-read { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--fg-4); }
.v2-scope .art-cover { margin: 32px 0; border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.v2-scope .art-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Corps de l'article */
.v2-scope .art-body { display: flex; flex-direction: column; gap: 0; }
.v2-scope .art-body h2 { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; color: var(--fg-1); line-height: 1.3; margin: 40px 0 16px; }
.v2-scope .art-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--fg-1); line-height: 1.35; margin: 32px 0 12px; }
.v2-scope .art-body p { font-size: 1.05rem; color: var(--fg-2); line-height: 1.8; margin-bottom: 20px; }
.v2-scope .art-body p:last-child { margin-bottom: 0; }
.v2-scope .art-body strong { color: var(--fg-1); font-weight: 700; }
.v2-scope .art-body ul { margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; list-style: none; }
.v2-scope .art-body ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; color: var(--fg-2); line-height: 1.7; }
.v2-scope .art-body ul li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Citation mise en avant */
.v2-scope .art-quote { margin: 40px 0; padding: 32px 40px; background: var(--fg-1); border-radius: var(--radius-md); position: relative; }
.v2-scope .art-quote::before { content: '"'; position: absolute; top: -16px; left: 28px; font-family: var(--font-serif); font-size: 120px; color: rgba(255,255,255,.06); line-height: 1; }
.v2-scope .art-quote p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: #fff; line-height: 1.6; position: relative; z-index: 1; margin-bottom: 0; }
.v2-scope .art-quote p em { color: var(--green-600); font-style: normal; }

/* Encadré chiffre clé */
.v2-scope .art-stat { margin: 32px 0; display: flex; gap: 24px; align-items: center; background: var(--primary-light); border: 1px solid rgba(19,112,181,.15); border-radius: var(--radius-md); padding: 24px 28px; }
.v2-scope .art-stat .sn { font-size: 2.8rem; font-weight: 800; line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex-shrink: 0; }
.v2-scope .art-stat .st { font-size: 15px; color: var(--fg-2); line-height: 1.5; }
.v2-scope .art-stat .st small { display: block; font-size: 12px; color: var(--fg-4); margin-top: 4px; }

/* Note de bas d'article */
.v2-scope .art-note { margin-top: 48px; padding: 20px 24px; background: var(--surface-2); border-radius: var(--radius-sm); font-size: 13px; color: var(--fg-4); line-height: 1.6; border-left: 3px solid var(--line); }
.v2-scope .art-note a { color: var(--primary); }

/* Tags */
.v2-scope .art-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.v2-scope .art-tags span { font-size: 12px; font-weight: 600; color: var(--fg-4); }
.v2-scope .art-tag { font-size: 12px; padding: 4px 12px; border-radius: 20px; background: var(--surface-2); color: var(--fg-3); border: 1px solid var(--line); }

/* CTA en bas d'article */
.v2-scope .art-cta { margin-top: 48px; background: var(--fg-1); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.v2-scope .art-cta h3 { font-size: 1.2rem; font-weight: 700; color: #fff; }
.v2-scope .art-cta p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.v2-scope .art-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sidebar */
.v2-scope .art-sidebar { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 24px; }
.v2-scope .sidebar-author { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.v2-scope .sa-head { display: flex; align-items: center; gap: 12px; }
.v2-scope .sa-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .sa-name { font-size: 15px; font-weight: 700; color: var(--fg-1); }
.v2-scope .sa-title { font-size: 12px; color: var(--fg-4); margin-top: 2px; line-height: 1.4; }
.v2-scope .sa-bio { font-size: 13.5px; color: var(--fg-3); line-height: 1.65; }
.v2-scope .sa-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-4); }
.v2-scope .sidebar-related { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.v2-scope .sidebar-related-head { padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.v2-scope .sidebar-related-head h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-1); }
.v2-scope .rel-list { display: flex; flex-direction: column; }
.v2-scope .rel-item { display: flex; gap: 12px; padding: 14px 18px; text-decoration: none; color: inherit; border-bottom: 1px solid var(--line); transition: background .2s; align-items: flex-start; }
.v2-scope .rel-item:last-child { border-bottom: none; }
.v2-scope .rel-item:hover { background: var(--surface-2); }
.v2-scope .rel-img { width: 56px; height: 56px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--surface-2); }
.v2-scope .rel-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-scope .rel-body { display: flex; flex-direction: column; gap: 4px; }
.v2-scope .rel-cat { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); }
.v2-scope .rel-title { font-size: 13px; font-weight: 600; color: var(--fg-1); line-height: 1.35; }
.v2-scope .sidebar-nl { background: var(--primary); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.v2-scope .sidebar-nl h3 { font-size: 15px; font-weight: 700; color: #fff; }
.v2-scope .sidebar-nl p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.v2-scope .sidebar-nl input { padding: 10px 16px; border-radius: 40px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; font-size: 13px; font-family: inherit; outline: none; width: 100%; }
.v2-scope .sidebar-nl input::placeholder { color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════════
   RÉALITÉ VIRTUELLE — STYLES SPÉCIFIQUES
══════════════════════════════════════════════════════ */
.v2-scope .vr-offer { padding: 34px; display: flex; flex-direction: column; gap: 15px; }
.v2-scope .vr-offer .vh { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.v2-scope .vr-offer p   { margin: 0; color: var(--fg-3); font-size: 15px; line-height: 1.65; }
.v2-scope .tagp { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 40px; white-space: nowrap; }
.v2-scope .tagp.blue  { color: var(--primary); background: var(--primary-light); }
.v2-scope .tagp.green { color: var(--green-700); background: var(--green-50); }
.v2-scope .mat-visual { background: transparent; height: 360px; display: flex; align-items: center; justify-content: center; padding: 30px; }
.v2-scope .mat-visual img { max-height: 100%; width: auto; object-fit: contain; }
.v2-scope .specs { display: flex; flex-direction: column; gap: 18px; }
.v2-scope .spec  { display: flex; gap: 14px; align-items: center; }
.v2-scope .spec .chip { width: 40px; height: 40px; }
.v2-scope .spec .chip svg { width: 20px; height: 20px; }
.v2-scope .spec b    { display: block; color: var(--fg-1); font-size: 15px; font-weight: 600; }
.v2-scope .spec span { font-size: 13px; color: var(--fg-3); }
.v2-scope .vrsc { overflow: hidden; padding: 0; }
.v2-scope .vrsc .im { height: 180px; overflow: hidden; background: var(--surface-2); }
.v2-scope .vrsc .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.v2-scope .vrsc.lift:hover .im img { transform: scale(1.05); }
.v2-scope .vrsc .bd { padding: 22px; display: flex; flex-direction: column; gap: 9px; }
.v2-scope .vrsc .bd p { margin: 0; font-size: 14px; color: var(--fg-3); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   SUR MESURE — STYLES SPÉCIFIQUES
══════════════════════════════════════════════════════ */
/* Hero sur mesure */
.v2-scope .sm-hero { background: var(--fg-1); position: relative; overflow: hidden; }
.v2-scope .sm-hero-bg { position: absolute; inset: 0; z-index: 0; }
.v2-scope .sm-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.v2-scope .sm-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.92) 40%, rgba(19,112,181,.4) 100%); }
.v2-scope .sm-hero .rail { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-top: 80px; padding-bottom: 80px; }
.v2-scope .hero-copy { display: flex; flex-direction: column; gap: 28px; }
.v2-scope .hero-h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 800; line-height: 1.12; color: #fff; letter-spacing: -.02em; }
.v2-scope .hero-h1 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.75; max-width: 520px; }
.v2-scope .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-scope .hero-tag { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); }
/* Galerie hero */
.v2-scope .hero-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; }
.v2-scope .hg-img { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.v2-scope .hg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.v2-scope .hg-img:hover img { transform: scale(1.04); }
.v2-scope .hg-img:first-child { grid-row: 1/3; border-radius: var(--radius-lg); }
.v2-scope .hg-label { position: absolute; bottom: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px; background: rgba(15,23,42,.75); color: rgba(255,255,255,.9); backdrop-filter: blur(4px); letter-spacing: .04em; text-transform: uppercase; }
/* Studio */
.v2-scope .studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.v2-scope .studio-copy { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .studio-copy p { font-size: 1.05rem; color: var(--fg-3); line-height: 1.8; }
.v2-scope .studio-copy strong { color: var(--fg-1); }
.v2-scope .studio-stat { display: flex; gap: 32px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 8px 0; flex-wrap: wrap; }
.v2-scope .ss-item { display: flex; flex-direction: column; gap: 4px; }
.v2-scope .ss-val { font-size: 1.8rem; font-weight: 800; line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .ss-lbl { font-size: 12px; color: var(--fg-4); }
.v2-scope .studio-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 480px; box-shadow: var(--shadow-xl); }
.v2-scope .studio-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-scope .studio-img-badge { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-radius: var(--radius-md); padding: 16px 20px; display: flex; gap: 12px; align-items: center; }
.v2-scope .sib-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .sib-icon svg { width: 18px; height: 18px; }
.v2-scope .sib-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--fg-1); }
.v2-scope .sib-text span { font-size: 12px; color: var(--fg-4); }
/* Offres grid */
.v2-scope .offres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v2-scope .offre-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s cubic-bezier(.16,1,.3,1); }
.v2-scope .offre-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-hover); }
.v2-scope .offre-img { height: 180px; overflow: hidden; background: var(--fg-1); position: relative; }
.v2-scope .offre-img img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .5s; }
.v2-scope .offre-card:hover .offre-img img { transform: scale(1.04); }
.v2-scope .offre-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; }
.v2-scope .offre-badge.vr { background: rgba(19,112,181,.85); color: #fff; }
.v2-scope .offre-badge.content { background: rgba(31,169,108,.85); color: #fff; }
.v2-scope .offre-badge.full { background: var(--brand-mixed-grad); color: #fff; }
.v2-scope .offre-body { padding: 24px; }
.v2-scope .offre-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--fg-1); margin-bottom: 10px; }
.v2-scope .offre-body p { font-size: 14px; color: var(--fg-3); line-height: 1.65; margin-bottom: 16px; }
.v2-scope .offre-list { display: flex; flex-direction: column; gap: 6px; }
.v2-scope .offre-list li { font-size: 13px; color: var(--fg-3); display: flex; align-items: flex-start; gap: 8px; list-style: none; }
.v2-scope .offre-list li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
/* Section dark "jeu" */
.v2-scope .game-section { background: var(--fg-1); position: relative; overflow: hidden; }
.v2-scope .game-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 400px at 80% 50%, rgba(19,112,181,.2), transparent 65%); pointer-events: none; }
.v2-scope .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.v2-scope .game-copy { display: flex; flex-direction: column; gap: 24px; }
.v2-scope .game-copy .h2 { color: #fff; }
.v2-scope .game-copy .lead { color: rgba(255,255,255,.65); }
.v2-scope .game-pillars { display: flex; flex-direction: column; gap: 16px; }
.v2-scope .game-pillar { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.v2-scope .gp-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .gp-icon.blue { background: rgba(19,112,181,.3); color: #7cc3f5; }
.v2-scope .gp-icon.green { background: rgba(31,169,108,.25); color: #6ee7b7; }
.v2-scope .gp-icon.purple { background: rgba(139,92,246,.25); color: #c4b5fd; }
.v2-scope .gp-icon svg { width: 20px; height: 20px; }
.v2-scope .gp-text h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.v2-scope .gp-text p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; }
/* Experts métier */
.v2-scope .experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.v2-scope .expert-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px 20px; display: flex; flex-direction: column; gap: 14px; transition: all .25s; }
.v2-scope .expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.v2-scope .expert-card::before { content: ''; display: block; width: 36px; height: 4px; border-radius: 2px; }
.v2-scope .expert-card:nth-child(1)::before { background: var(--accent-grad); }
.v2-scope .expert-card:nth-child(2)::before { background: var(--brand-mixed-grad); }
.v2-scope .expert-card:nth-child(3)::before { background: var(--green-grad); }
.v2-scope .expert-card:nth-child(4)::before { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.v2-scope .expert-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.v2-scope .expert-icon svg { width: 22px; height: 22px; }
.v2-scope .expert-card h3 { font-size: 1rem; font-weight: 700; color: var(--fg-1); }
.v2-scope .expert-card p { font-size: 13.5px; color: var(--fg-3); line-height: 1.6; flex: 1; }
/* Processus */
.v2-scope .process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.v2-scope .process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--green-600)); z-index: 0; }
.v2-scope .ps-item { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.v2-scope .ps-dot { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; font-family: var(--font-serif); color: #fff; box-shadow: var(--shadow-md); }
.v2-scope .ps-item:nth-child(1) .ps-dot { background: var(--accent-grad); }
.v2-scope .ps-item:nth-child(2) .ps-dot { background: linear-gradient(135deg, #175394, #1565a8); }
.v2-scope .ps-item:nth-child(3) .ps-dot { background: linear-gradient(135deg, #1565a8, #177a90); }
.v2-scope .ps-item:nth-child(4) .ps-dot { background: linear-gradient(135deg, #177a90, #1a9a78); }
.v2-scope .ps-item:nth-child(5) .ps-dot { background: var(--green-grad); }
.v2-scope .ps-item h4 { font-size: 14px; font-weight: 700; color: var(--fg-1); }
.v2-scope .ps-item p { font-size: 12.5px; color: var(--fg-3); line-height: 1.5; }
/* CTA block */
.v2-scope .cta-block { background: var(--fg-1); border-radius: var(--radius-lg); padding: 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.v2-scope .cta-block .h2 { color: #fff; }
.v2-scope .cta-block .h2 em { font-style: normal; background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2-scope .cta-block p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.65; max-width: 480px; margin-top: 16px; }
.v2-scope .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.v2-scope .cta-note { font-size: 12px; color: rgba(255,255,255,.3); }
/* Cibles */
.v2-scope .targets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v2-scope .target-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; transition: all .25s; }
.v2-scope .target-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.v2-scope .target-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .target-icon.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .target-icon.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .target-icon.purple { background: #ede9fe; color: #7c3aed; }
.v2-scope .target-icon svg { width: 22px; height: 22px; }
.v2-scope .target-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg-1); }
.v2-scope .target-card p { font-size: 14px; color: var(--fg-3); line-height: 1.65; flex: 1; }
.v2-scope .target-list { display: flex; flex-direction: column; gap: 6px; }
.v2-scope .target-list li { font-size: 13px; color: var(--fg-3); display: flex; align-items: flex-start; gap: 8px; list-style: none; }
.v2-scope .target-list li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
/* Photo mosaic */
.v2-scope .photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.v2-scope .photo-copy { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .photo-copy p { font-size: 1.05rem; color: var(--fg-3); line-height: 1.8; }
.v2-scope .photo-steps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.v2-scope .ph-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.v2-scope .ph-step:last-child { border-bottom: none; }
.v2-scope .ph-num { font-size: 1.4rem; font-weight: 800; line-height: 1; font-family: var(--font-serif); background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex-shrink: 0; min-width: 36px; }
.v2-scope .ph-step h4 { font-size: 14.5px; font-weight: 700; color: var(--fg-1); margin-bottom: 3px; }
.v2-scope .ph-step p { font-size: 13.5px; color: var(--fg-3); line-height: 1.55; }
.v2-scope .photo-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v2-scope .pm-img { border-radius: var(--radius-md); overflow: hidden; }
.v2-scope .pm-img img { width: 100%; height: 160px; object-fit: cover; transition: transform .4s; }
.v2-scope .pm-img:hover img { transform: scale(1.05); }
.v2-scope .pm-img:first-child { grid-column: 1/-1; }
.v2-scope .pm-img:first-child img { height: 220px; }

/* ══════════════════════════════════════════════════════
   WEBINAIRES
══════════════════════════════════════════════════════ */

/* Hero gradient variant (no bg image) */
.v2-scope .phero.phero-grad::after { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 400px at 80% -20%, rgba(19,112,181,.25), transparent 70%), radial-gradient(600px 350px at -10% 110%, rgba(31,169,108,.12), transparent 60%); pointer-events: none; z-index: 1; }

/* Hero info strip */
.v2-scope .phero-strip { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; padding-top: 0; flex-wrap: wrap; }
.v2-scope .phero-strip-item { display: flex; align-items: center; gap: 10px; padding: 18px 24px 18px 0; margin-right: 24px; border-right: 1px solid rgba(255,255,255,.1); flex-shrink: 0; }
.v2-scope .phero-strip-item:last-child { border-right: none; }
.v2-scope .phero-strip-item strong { color: #fff; font-size: 14px; font-weight: 700; }
.v2-scope .phero-strip-item span { color: rgba(255,255,255,.55); font-size: 13px; }

/* Platform mockup */
.v2-scope .platform-mockup { background: var(--surface); border-radius: 16px 16px 0 0; overflow: hidden; box-shadow: 0 -8px 48px rgba(15,23,42,.4); border: 1px solid rgba(255,255,255,.1); border-bottom: none; }
.v2-scope .pm-bar { background: #f1f5f9; border-bottom: 1px solid var(--line); padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.v2-scope .pm-dots { display: flex; gap: 5px; }
.v2-scope .pm-dot { width: 10px; height: 10px; border-radius: 50%; }
.v2-scope .pm-url { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 4px 10px; font-size: 11px; color: var(--fg-4); }
.v2-scope .pm-live-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 700; color: #ef4444; flex-shrink: 0; }
.v2-scope .pm-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; animation: v2-pulse 1.5s ease-in-out infinite; }
@keyframes v2-pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.v2-scope .pm-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.v2-scope .pm-participant { padding: 18px; border-right: 1px solid var(--line); background: var(--surface); }
.v2-scope .pm-formateur { padding: 18px; background: #fafbfc; }
.v2-scope .pm-section-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 10px; }
.v2-scope .pm-video { background: var(--fg-1); border-radius: var(--radius-sm); height: 110px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; margin-bottom: 10px; }
.v2-scope .pm-video-img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.v2-scope .pm-video-overlay { position: absolute; bottom: 8px; left: 8px; right: 8px; background: rgba(15,23,42,.75); border-radius: 5px; padding: 6px 8px; display: flex; align-items: center; gap: 6px; }
.v2-scope .pm-video-overlay span { font-size: 10px; color: rgba(255,255,255,.9); font-weight: 600; }
.v2-scope .pm-question { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px; margin-bottom: 8px; }
.v2-scope .pm-question p { font-size: 10px; font-weight: 600; color: var(--fg-1); margin-bottom: 6px; line-height: 1.3; }
.v2-scope .pm-choices { display: flex; flex-direction: column; gap: 4px; }
.v2-scope .pm-choice { font-size: 9px; padding: 4px 8px; border-radius: 4px; border: 1px solid var(--line); color: var(--fg-3); background: var(--surface); }
.v2-scope .pm-choice.selected { background: var(--primary-light); border-color: var(--primary); color: var(--primary); font-weight: 600; }
.v2-scope .pm-results-title { font-size: 10px; font-weight: 700; color: var(--fg-1); margin-bottom: 10px; }
.v2-scope .pm-result-bar { margin-bottom: 8px; }
.v2-scope .pm-result-label { display: flex; justify-content: space-between; font-size: 9px; color: var(--fg-3); margin-bottom: 3px; }
.v2-scope .pm-result-label strong { color: var(--fg-1); }
.v2-scope .pm-bar-track { background: var(--line); border-radius: 3px; height: 6px; overflow: hidden; }
.v2-scope .pm-bar-fill { height: 100%; border-radius: 3px; }
.v2-scope .pm-participants { margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.v2-scope .pm-avatars { display: flex; }
.v2-scope .pm-av { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #fff; margin-left: -6px; font-size: 7px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.v2-scope .pm-av:first-child { margin-left: 0; }
.v2-scope .pm-participants-text { font-size: 9px; color: var(--fg-4); }

/* "Ce qui nous distingue" */
.v2-scope .diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.v2-scope .diff-copy { display: flex; flex-direction: column; gap: 32px; }
.v2-scope .diff-item { display: flex; gap: 20px; align-items: flex-start; }
.v2-scope .diff-num { font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-serif); background: var(--brand-mixed-grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex-shrink: 0; min-width: 44px; }
.v2-scope .diff-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg-1); margin-bottom: 6px; }
.v2-scope .diff-text p { font-size: 14.5px; color: var(--fg-3); line-height: 1.65; }
.v2-scope .diff-visual { display: flex; flex-direction: column; gap: 16px; }
.v2-scope .dv-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px 24px; display: flex; gap: 16px; align-items: center; box-shadow: var(--shadow-sm); transition: all .25s; }
.v2-scope .dv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.v2-scope .dv-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .dv-icon.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .dv-icon.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .dv-icon.purple { background: #ede9fe; color: #7c3aed; }
.v2-scope .dv-icon.orange { background: #fff7ed; color: #c2410c; }
.v2-scope .dv-icon svg { width: 20px; height: 20px; }
.v2-scope .dv-card h4 { font-size: 14px; font-weight: 700; color: var(--fg-1); margin-bottom: 3px; }
.v2-scope .dv-card p { font-size: 13px; color: var(--fg-3); line-height: 1.5; }

/* Webinaires timeline */
.v2-scope .wbn-timeline { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.v2-scope .tl-step { display: flex; gap: 0; }
.v2-scope .tl-left { display: flex; flex-direction: column; align-items: center; width: 56px; flex-shrink: 0; }
.v2-scope .tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid var(--primary-light); flex-shrink: 0; z-index: 1; }
.v2-scope .tl-dot-green { background: var(--green-600); border-color: var(--green-100); }
.v2-scope .tl-line { width: 2px; flex: 1; background: var(--line); min-height: 20px; }
.v2-scope .tl-step:last-child .tl-line { display: none; }
.v2-scope .tl-content { padding: 0 0 36px 16px; margin-top: -2px; }
.v2-scope .tl-time { font-size: 11px; font-weight: 700; color: var(--fg-4); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.v2-scope .tl-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg-1); margin-bottom: 8px; }
.v2-scope .tl-content p { font-size: 14.5px; color: var(--fg-3); line-height: 1.65; }
.v2-scope .tl-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 8px; width: fit-content; }
.v2-scope .tl-tag.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .tl-tag.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .tl-tag.dark { background: var(--surface-2); color: var(--fg-3); border: 1px solid var(--line); }

/* Modules grid */
.v2-scope .modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v2-scope .module-pill { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px 18px; display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; transition: all .2s; }
.v2-scope .module-pill:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); }
.v2-scope .module-pill:hover .mp-title { color: var(--primary); }
.v2-scope .mp-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .mp-icon.vl { background: #f0f9ff; color: #0369a1; }
.v2-scope .mp-icon.util { background: #fff7ed; color: #c2410c; }
.v2-scope .mp-icon.moto { background: #fdf4ff; color: #7e22ce; }
.v2-scope .mp-icon.md { background: var(--green-100); color: var(--green-700); }
.v2-scope .mp-icon.tous { background: var(--surface-2); color: var(--fg-4); }
.v2-scope .mp-icon svg { width: 18px; height: 18px; }
.v2-scope .mp-body { display: flex; flex-direction: column; gap: 2px; }
.v2-scope .mp-title { font-size: 13.5px; font-weight: 600; color: var(--fg-1); line-height: 1.3; }
.v2-scope .mp-tag { font-size: 10px; color: var(--fg-4); }

/* Pour qui */
.v2-scope .forqui-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v2-scope .fq-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: all .25s; }
.v2-scope .fq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.v2-scope .fq-card::before { content: ''; display: block; width: 40px; height: 4px; border-radius: 2px; }
.v2-scope .fq-card:nth-child(1)::before { background: var(--accent-grad); }
.v2-scope .fq-card:nth-child(2)::before { background: var(--brand-mixed-grad); }
.v2-scope .fq-card:nth-child(3)::before { background: var(--green-grad); }
.v2-scope .fq-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg-1); }
.v2-scope .fq-card p { font-size: 14px; color: var(--fg-3); line-height: 1.65; flex: 1; }
.v2-scope .fq-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; width: fit-content; }
.v2-scope .fq-tag.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .fq-tag.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .fq-tag.mixed { background: linear-gradient(135deg, var(--primary-light), var(--green-100)); color: var(--fg-2); }

/* CTA strip dark card */
.v2-scope .cta-strip { background: var(--fg-1); border-radius: var(--radius-lg); padding: 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.v2-scope .cta-strip .cta-copy { display: flex; flex-direction: column; gap: 16px; }
.v2-scope .cta-strip .cta-copy p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.65; max-width: 480px; }
.v2-scope .cta-actions-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.v2-scope .cta-note { font-size: 12px; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════
   FORMATION DISTRACTEURS
══════════════════════════════════════════════════════ */

/* Formation hero (dark, no bg img) */
.v2-scope .fhero { background: var(--fg-1); position: relative; overflow: hidden; padding: 64px 0 0; }
.v2-scope .fhero-bg { position: absolute; inset: 0; pointer-events: none; }
.v2-scope .fhero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(900px 400px at 80% -20%, rgba(19,112,181,.3), transparent 65%), radial-gradient(600px 350px at -10% 110%, rgba(31,169,108,.15), transparent 55%); }
.v2-scope .fhero .rail { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: end; }
.v2-scope .fhero-copy { display: flex; flex-direction: column; gap: 24px; padding-bottom: 56px; }
.v2-scope .fhero-copy .lead { color: rgba(255,255,255,.72); max-width: 540px; }
.v2-scope .fhero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Format pills in hero */
.v2-scope .fhero-formats { display: flex; flex-direction: column; gap: 10px; padding-bottom: 56px; }
.v2-scope .fmt-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 16px 20px; display: flex; align-items: center; gap: 14px; transition: background .2s; }
.v2-scope .fmt-pill:hover { background: rgba(255,255,255,.13); }
.v2-scope .fmt-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .fmt-icon.blue { background: rgba(19,112,181,.35); color: #7cc3f5; }
.v2-scope .fmt-icon.green { background: rgba(31,169,108,.3); color: #6ee7b7; }
.v2-scope .fmt-icon.purple { background: rgba(139,92,246,.25); color: #c4b5fd; }
.v2-scope .fmt-icon svg { width: 20px; height: 20px; }
.v2-scope .fmt-body strong { color: #fff; font-size: 14px; font-weight: 700; display: block; }
.v2-scope .fmt-body span { color: rgba(255,255,255,.55); font-size: 12px; }

/* Info strip */
.v2-scope .info-strip { background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.v2-scope .info-strip .rail { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.v2-scope .info-item { display: flex; align-items: center; gap: 12px; padding: 22px 32px; border-right: 1px solid var(--line); flex: 1; min-width: 160px; }
.v2-scope .info-item:last-child { border-right: none; }
.v2-scope .info-item svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.v2-scope .il { display: flex; flex-direction: column; gap: 2px; }
.v2-scope .il strong { font-size: 14px; font-weight: 700; color: var(--fg-1); }
.v2-scope .il span { font-size: 12px; color: var(--fg-4); }

/* Page layout (2 cols + sidebar) */
.v2-scope .page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding-top: 56px; padding-bottom: 80px; }
.v2-scope .main-content { display: flex; flex-direction: column; gap: 56px; }

/* Generic block */
.v2-scope .block { display: flex; flex-direction: column; gap: 20px; }
.v2-scope .block-title { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 2px solid var(--line); }
.v2-scope .block-title h2 { font-size: 1.35rem; font-weight: 800; color: var(--fg-1); }

/* Context stats */
.v2-scope .context-stats { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; display: flex; gap: 32px; flex-wrap: wrap; }
.v2-scope .cs-item { text-align: center; flex: 1; min-width: 120px; }
.v2-scope .cs-val { font-size: 2.4rem; font-weight: 800; line-height: 1; -webkit-background-clip: text; background-clip: text; }
.v2-scope .cs-lbl { font-size: 13px; color: var(--fg-3); margin-top: 6px; line-height: 1.4; }
.v2-scope .cs-src { font-size: 11px; color: var(--fg-4); margin-top: 4px; }

/* Objectives */
.v2-scope .objectives { display: flex; flex-direction: column; gap: 12px; }
.v2-scope .objective-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); transition: all .25s; }
.v2-scope .objective-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.v2-scope .obj-badge { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; color: #fff; }
.v2-scope .obj-badge.savoir { background: var(--accent-grad); }
.v2-scope .obj-badge.faire { background: var(--brand-mixed-grad); }
.v2-scope .obj-badge.etre { background: var(--green-grad); }
.v2-scope .obj-content { display: flex; flex-direction: column; gap: 4px; }
.v2-scope .obj-type { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-4); }
.v2-scope .obj-content p { font-size: 15px; font-weight: 600; color: var(--fg-1); line-height: 1.4; }

/* Programme (formation timeline) */
.v2-scope .programme { display: flex; flex-direction: column; gap: 0; }
.v2-scope .prog-step { display: flex; gap: 0; }
.v2-scope .prog-timeline { display: flex; flex-direction: column; align-items: center; gap: 0; flex-shrink: 0; width: 48px; }
.v2-scope .prog-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--primary); flex-shrink: 0; border: 3px solid var(--primary-light); z-index: 1; }
.v2-scope .prog-dot-green { background: var(--green-600); border-color: var(--green-100); }
.v2-scope .prog-line { width: 2px; flex: 1; background: var(--line); min-height: 24px; }
.v2-scope .prog-step:last-child .prog-line { display: none; }
.v2-scope .prog-content { padding: 0 0 32px 16px; display: flex; flex-direction: column; gap: 8px; margin-top: -2px; }
.v2-scope .prog-time { font-size: 11px; font-weight: 700; color: var(--fg-4); letter-spacing: .08em; text-transform: uppercase; }
.v2-scope .prog-content h3 { font-size: 1rem; font-weight: 700; color: var(--fg-1); }
.v2-scope .prog-content p { font-size: 14px; color: var(--fg-3); line-height: 1.6; }
.v2-scope .prog-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; width: fit-content; margin-top: 4px; }
.v2-scope .prog-tag.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .prog-tag.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .prog-tag.dark { background: var(--surface-2); color: var(--fg-3); border: 1px solid var(--line); }

/* Modalities */
.v2-scope .modalities { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-scope .mod-card { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; gap: 12px; transition: all .25s; }
.v2-scope .mod-card:hover { border-color: var(--line-hover); box-shadow: var(--shadow-md); }
.v2-scope .mod-card h3 { font-size: 15px; font-weight: 700; color: var(--fg-1); }
.v2-scope .mod-card p { font-size: 13.5px; color: var(--fg-3); line-height: 1.6; flex: 1; }
.v2-scope .mod-card-dark { background: var(--fg-1); border-color: transparent; }
.v2-scope .mod-card-dark h3 { color: #fff; }
.v2-scope .mod-card-dark p { color: rgba(255,255,255,.6); }

/* Evaluation */
.v2-scope .eval-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-scope .eval-card { padding: 20px; background: var(--surface-2); border-radius: var(--radius-md); border: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; }
.v2-scope .eval-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .eval-icon svg { width: 20px; height: 20px; }
.v2-scope .eval-icon.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .eval-body h4 { font-size: 14px; font-weight: 700; color: var(--fg-1); margin-bottom: 4px; }
.v2-scope .eval-body p { font-size: 13px; color: var(--fg-3); line-height: 1.5; }

/* Accessibility block */
.v2-scope .access-block { background: var(--primary-light); border: 1px solid rgba(19,112,181,.2); border-radius: var(--radius-md); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.v2-scope .access-block svg { width: 24px; height: 24px; color: var(--primary); }
.v2-scope .access-block p { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
.v2-scope .access-block a { color: var(--primary); font-weight: 600; }

/* Document row */
.v2-scope .doc-row { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.v2-scope .doc-row span { font-size: 14px; color: var(--fg-2); }

/* Sidebar */
.v2-scope .fd-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Order card */
.v2-scope .order-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.v2-scope .order-card-head { background: var(--fg-1); padding: 28px; }
.v2-scope .price-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.v2-scope .price { font-size: 1.6rem; font-weight: 800; color: #fff; }
.v2-scope .price-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
.v2-scope .order-card-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.v2-scope .order-specs { display: flex; flex-direction: column; gap: 10px; }
.v2-scope .order-spec { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.v2-scope .order-spec:last-child { border-bottom: none; }
.v2-scope .spec-label { color: var(--fg-4); display: flex; align-items: center; gap: 7px; }
.v2-scope .spec-label svg { width: 15px; height: 15px; color: var(--fg-4); }
.v2-scope .spec-value { font-weight: 600; color: var(--fg-1); text-align: right; font-size: 13px; }
.v2-scope .order-ctas { display: flex; flex-direction: column; gap: 10px; }
.v2-scope .order-note { font-size: 12px; color: var(--fg-4); text-align: center; }

/* Format / duration selectors in devis card */
.v2-scope .fmt-selector { display: flex; flex-direction: column; gap: 6px; }
.v2-scope .fmt-selector-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-4); }
.v2-scope .fmt-toggle { display: flex; gap: 0; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.v2-scope .fmtbtn { flex: 1; padding: 9px 12px; font-size: 13px; font-weight: 600; font-family: inherit; background: none; border: none; cursor: pointer; color: var(--fg-3); transition: background .18s, color .18s; }
.v2-scope .fmtbtn:hover { background: var(--line); color: var(--fg-1); }
.v2-scope .fmtbtn.active { background: var(--primary); color: #fff; }

/* Short format banner in programme section */
.v2-scope .fmt-court-banner { display: flex; align-items: flex-start; gap: 12px; background: rgba(19,112,181,.08); border: 1px solid rgba(19,112,181,.2); border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 4px; }
.v2-scope .fmt-court-banner svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.v2-scope .fmt-court-banner span { font-size: 14px; color: var(--fg-2); line-height: 1.6; }

/* Formats card (sidebar) */
.v2-scope .formats-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.v2-scope .formats-card-head { padding: 16px 20px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.v2-scope .formats-card-head h3 { font-size: 13px; font-weight: 700; color: var(--fg-1); text-transform: uppercase; letter-spacing: .08em; }
.v2-scope .formats-list { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.v2-scope .format-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm); transition: background .2s; }
.v2-scope .format-row:hover { background: var(--surface-2); }
.v2-scope .fr-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-scope .fr-icon.blue { background: var(--primary-light); color: var(--primary); }
.v2-scope .fr-icon.green { background: var(--green-100); color: var(--green-700); }
.v2-scope .fr-icon.purple { background: #ede9fe; color: #7c3aed; }
.v2-scope .fr-icon svg { width: 18px; height: 18px; }
.v2-scope .fr-body strong { font-size: 13.5px; font-weight: 700; color: var(--fg-1); display: block; }
.v2-scope .fr-body span { font-size: 12px; color: var(--fg-4); }

/* Related card (sidebar) */
.v2-scope .related-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.v2-scope .related-card-head { padding: 16px 20px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.v2-scope .related-card-head h3 { font-size: 13px; font-weight: 700; color: var(--fg-1); text-transform: uppercase; letter-spacing: .08em; }
.v2-scope .related-list { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.v2-scope .related-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); text-decoration: none; color: var(--fg-2); transition: background .2s; }
.v2-scope .related-item:hover { background: var(--surface-2); color: var(--primary); }
.v2-scope .related-item svg { width: 16px; height: 16px; color: var(--fg-4); flex-shrink: 0; }
.v2-scope .related-item:hover svg { color: var(--primary); }
.v2-scope .related-item span { font-size: 14px; }

/* Qualiopi strip */
.v2-scope .qualiopi-strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.v2-scope .qualiopi-strip .rail { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.v2-scope .qualiopi-badge { display: flex; align-items: center; gap: 14px; background: var(--primary-light); border: 1px solid rgba(19,112,181,.2); border-radius: var(--radius-md); padding: 14px 20px; flex-shrink: 0; }
.v2-scope .qualiopi-badge svg { width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }
.v2-scope .qualiopi-badge > div { display: flex; flex-direction: column; gap: 2px; }
.v2-scope .qualiopi-badge strong { font-size: 14px; font-weight: 700; color: var(--fg-1); }
.v2-scope .qualiopi-badge span { font-size: 12px; color: var(--fg-3); }
.v2-scope .qualiopi-text { font-size: 13px; color: var(--fg-3); line-height: 1.6; flex: 1; max-width: 700px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — PAGES INTÉRIEURES
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .v2-scope .diff-grid { grid-template-columns: 1fr; }
  .v2-scope .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-scope .forqui-grid { grid-template-columns: 1fr 1fr; }
  .v2-scope .cta-strip { grid-template-columns: 1fr; gap: 28px; padding: 40px; }
  .v2-scope .cta-actions-col { flex-direction: row; flex-wrap: wrap; }
  .v2-scope .fhero .rail { grid-template-columns: 1fr; }
  .v2-scope .fhero-formats { display: grid; grid-template-columns: 1fr 1fr; padding-bottom: 32px; }
  .v2-scope .page-layout { grid-template-columns: 1fr; }
  .v2-scope .fd-sidebar { position: static; }
  .v2-scope .modalities { grid-template-columns: 1fr; }
  .v2-scope .eval-grid { grid-template-columns: 1fr; }
  .v2-scope .phero-strip { flex-wrap: wrap; }
  .v2-scope .concept { grid-template-columns: 1fr; }
  .v2-scope .pricing { grid-template-columns: 1fr; }
  .v2-scope .ate-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-scope .benf { grid-template-columns: repeat(2, 1fr); }
  .v2-scope .article-layout { grid-template-columns: 1fr; }
  .v2-scope .art-sidebar { position: static; }
  .v2-scope .twocol { grid-template-columns: 1fr; gap: 40px; }
  .v2-scope .grid-2 { grid-template-columns: 1fr; }
  .v2-scope .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .v2-scope .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .v2-scope .studio-grid { grid-template-columns: 1fr; gap: 40px; }
  .v2-scope .game-grid { grid-template-columns: 1fr; gap: 40px; }
  .v2-scope .photo-grid { grid-template-columns: 1fr; gap: 40px; }
  .v2-scope .offres-grid { grid-template-columns: 1fr 1fr; }
  .v2-scope .experts-grid { grid-template-columns: 1fr 1fr; }
  .v2-scope .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .v2-scope .process-steps::before { display: none; }
  .v2-scope .targets-grid { grid-template-columns: 1fr 1fr; }
  .v2-scope .cta-block { grid-template-columns: 1fr; gap: 28px; padding: 40px; }
  .v2-scope .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .v2-scope .fcta .card { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .v2-scope .modules-grid { grid-template-columns: 1fr; }
  .v2-scope .forqui-grid { grid-template-columns: 1fr; }
  .v2-scope .fhero-formats { grid-template-columns: 1fr; }
  .v2-scope .pm-body { grid-template-columns: 1fr; }
  .v2-scope .context-stats { flex-direction: column; gap: 20px; }
  .v2-scope .qualiopi-strip .rail { flex-direction: column; }
  .v2-scope .ate-grid { grid-template-columns: 1fr; }
  .v2-scope .benf { grid-template-columns: 1fr; }
  .v2-scope .art-cover { height: 260px; }
  .v2-scope .art-quote { padding: 24px 28px; }
  .v2-scope .art-stat { flex-direction: column; gap: 12px; }
  .v2-scope .grid-3 { grid-template-columns: 1fr; }
  .v2-scope .offres-grid { grid-template-columns: 1fr; }
  .v2-scope .experts-grid { grid-template-columns: 1fr; }
  .v2-scope .process-steps { grid-template-columns: 1fr; }
  .v2-scope .targets-grid { grid-template-columns: 1fr; }
  .v2-scope .photo-mosaic { grid-template-columns: 1fr; }
  .v2-scope .tl .row { grid-template-columns: 60px 1fr; gap: 14px; }
  .v2-scope .fcta .card { padding: 40px 24px; }
}
