/* ═══════════════════════════════════════════════════════
   LE LABO IA — Design System V4 (Fashion Brutalist Refined)
   Source unique de vérité pour tout le site.
   Direction : Cabinet Grotesk + Boska + Gold Champagne #E8C872
   Showcase : _design-system/index.html
   Documentation : .dev/docs/design-system.md

   ⚠ Fonts 100 % self-hosted dans /assets/fonts/ (Cabinet Grotesk + Boska).
   Aucune dépendance externe : l'@import fontshare a été supprimé
   le 19 avril 2026 car il bloquait le rendu ~1300 ms sur mobile
   (requêtes bloquantes + chaîne critique api.fontshare.com puis cdn.fontshare.com).
   Satoshi n'était référencé nulle part dans la prod, supprimé au passage.
   ═══════════════════════════════════════════════════════ */

/* ── 0a. CABINET GROTESK SELF-HOSTED (@font-face) ──
   4 poids utilisés : 400 (body), 500 (medium), 700 (bold), 800 (extrabold).
   Téléchargés depuis cdn.fontshare.com le 19 avril 2026.
   format('woff2') seul (tous les navigateurs modernes depuis 2020). */
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("./assets/fonts/cabinet-grotesk/CabinetGrotesk-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("./assets/fonts/cabinet-grotesk/CabinetGrotesk-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("./assets/fonts/cabinet-grotesk/CabinetGrotesk-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("./assets/fonts/cabinet-grotesk/CabinetGrotesk-Extrabold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── 0b. BOSKA SELF-HOSTED (@font-face) ──
   Chargé depuis /assets/fonts/boska/ pour contourner le bug API Fontshare.
   format('woff2') seul (tous les navigateurs modernes depuis 2020). */
@font-face {
  font-family: "Boska";
  src: url("./assets/fonts/boska/Boska-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Boska";
  src: url("./assets/fonts/boska/Boska-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Boska";
  src: url("./assets/fonts/boska/Boska-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Boska";
  src: url("./assets/fonts/boska/Boska-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Boska";
  src: url("./assets/fonts/boska/Boska-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Boska";
  src: url("./assets/fonts/boska/Boska-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── 1. CSS VARIABLES ── */
:root {
  /* Backgrounds */
  --bg-body: #030712;
  --bg-dark: rgba(4, 8, 16, 0.88);
  --bg-elevated: rgba(12, 20, 40, 0.88);
  --bg-card: rgba(14, 22, 48, 0.6);
  --bg-card-solid: #0e1630;

  /* Primary scale */
  --primary: #7084ff;
  --primary-soft: #8b9cff;
  --primary-hover: #5a6bf0;
  --primary-700: #4a56d4;

  /* Semantic */
  --success: #68b08a;
  --error: #c4544f;
  --warning: #d4b05c;
  --info: #38bdf8;

  /* Text */
  --text-primary: #f4f5fb;
  --text-secondary: rgba(244, 245, 251, 0.72);
  --text-tertiary: rgba(244, 245, 251, 0.48);
  --text-muted: rgba(244, 245, 251, 0.32);
  --body-text: #b0b8cc;

  /* Borders */
  --border-card: rgba(112, 132, 255, 0.12);
  --border-card-hover: rgba(112, 132, 255, 0.25);
  --border-success: rgba(104, 176, 138, 0.2);
  --border-error: rgba(196, 84, 79, 0.2);

  /* Fonts V4 · Fashion Brutalist Refined */
  --font-sans:
    "Cabinet Grotesk", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Boska", "Cabinet Grotesk", "Manrope", serif;
  --font-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;

  /* Gold Signature · #E8C872 (Champagne) */
  --gold: #e8c872;
  --gold-soft: #efd48d;
  --gold-deep: #d4b05c;
  --gold-dim: rgba(232, 200, 114, 0.12);
  --gold-border: rgba(232, 200, 114, 0.28);
  --gold-glow: rgba(232, 200, 114, 0.35);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Transitions */
  --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;

  /* Surface (legacy compat) */
  --deep: #030712;
  --base: #070d1f;
  --elevated: #0c1429;
  --surface: #111b36;
  --overlay: #182344;
  --card-bg: rgba(16, 24, 42, 0.92);
  --card-border: rgba(112, 132, 255, 0.12);
  --grid-line: rgba(112, 132, 255, 0.08);

  /* ── Legacy --ds-* aliases (backward compat) ── */
  --ds-bg-deepest: #030712;
  --ds-bg-dark: #070d1f;
  --ds-bg-elevated: #0c1429;
  --ds-bg-surface: #111b36;
  --ds-bg-overlay: #182344;
  --ds-text-primary: #f4f5fb;
  --ds-text-secondary: rgba(244, 245, 251, 0.72);
  --ds-text-tertiary: rgba(244, 245, 251, 0.48);
  --ds-text-muted: rgba(244, 245, 251, 0.32);
  --ds-text-faint: rgba(244, 245, 251, 0.14);
  --ds-primary: #7084ff;
  --ds-primary-soft: #8b9cff;
  --ds-primary-hover: #5a6bf0;
  --ds-primary-deep: #4a56d4;
  --ds-primary-dim: rgba(112, 132, 255, 0.15);
  --ds-primary-ultra: rgba(112, 132, 255, 0.08);
  --ds-success: #68b08a;
  --ds-warning: #d4b05c;
  --ds-error: #c4544f;
  --ds-info: #38bdf8;
  --ds-stroke: rgba(244, 245, 251, 0.04);
  --ds-stroke-hover: rgba(244, 245, 251, 0.06);
  --ds-stroke-primary: rgba(112, 132, 255, 0.16);
  --ds-font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --ds-font-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  --ds-radius-sm: 8px;
  --ds-radius-md: 12px;
  --ds-radius-lg: 16px;
  --ds-radius-full: 50%;
  --ds-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --ds-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --ds-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --ds-shadow-glow: 0 0 30px rgba(112, 132, 255, 0.2);
  --ds-transition-fast: 0.2s ease;
  --ds-transition-base: 0.3s ease;
  --ds-transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. BASE RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Block horizontal touch scroll on iOS Safari */
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}
::selection {
  background: rgba(112, 132, 255, 0.3);
  color: #fff;
}

/* ── 3. SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 3px;
}

/* ── 4. BACKGROUND LAYER (contains dot pattern + orbs) ── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dot-bg,
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(112, 132, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

/* ── 5. GRADIENT ORBS ── */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  /* Clamp orbs to viewport — prevents Safari horizontal scroll */
  max-width: 100%;
  max-height: 100%;
}

/* ── 6. SECTION BACKGROUNDS ── */
.section-dark,
.bg-dark {
  background: var(--bg-dark);
}
.section-elevated,
.bg-elevated {
  background: var(--bg-elevated);
}
.section-gradient,
.bg-gradient {
  background: linear-gradient(
    180deg,
    var(--bg-elevated) 0%,
    rgba(16, 28, 52, 0.88) 100%
  );
}
.section-hero,
.bg-hero {
  background: var(--bg-dark);
  background-image: radial-gradient(
    ellipse 60% 50% at 50% 30%,
    rgba(112, 132, 255, 0.08) 0%,
    transparent 70%
  );
}

/* ── 7. TYPOGRAPHY ── */
.font-mono {
  font-family: var(--font-mono);
}
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label,
.section-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── 8. CARD — Liseré Style ── */
.card,
.left-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: none;
  transition: all var(--duration-normal) var(--ease-premium);
}
.card:hover,
.left-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-card-hover);
  box-shadow: none;
}

/* Card variants */
.card--success {
  border-color: var(--border-success);
  background: rgba(104, 176, 138, 0.04);
}
.card--error {
  border-color: var(--border-error);
  background: rgba(196, 84, 79, 0.04);
}
.card--solid {
  background: var(--bg-card-solid);
}
.card--flush {
  padding: 0;
  overflow: hidden;
}

/* ── 9. BUTTON — Premium CTA ── */
.btn-primary,
.glass-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7084ff 0%, #5a6bf0 50%, #4a56d4 100%);
  border: 1px solid rgba(139, 156, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: var(--radius-md);
  box-shadow:
    0 0 20px rgba(112, 132, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-premium);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-primary:hover,
.glass-cta:hover {
  background: linear-gradient(135deg, #8b9cff 0%, #7084ff 50%, #5a6bf0 100%);
  border-color: rgba(139, 156, 255, 0.5);
  box-shadow:
    0 0 30px rgba(112, 132, 255, 0.3),
    0 0 60px rgba(112, 132, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.btn-primary--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}
.btn-primary--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── 10. BADGE ── */
.badge,
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: rgba(112, 132, 255, 0.08);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--primary-soft);
}

/* ── 11. FAQ ── */
.faq-item {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-premium);
  background: var(--bg-card);
  box-shadow: none;
}
.faq-item:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
}
.faq-question:hover {
  background: rgba(112, 132, 255, 0.04);
}
.faq-icon {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 28px;
  background: rgba(7, 13, 31, 0.4);
  color: var(--body-text);
  line-height: 1.75;
  font-size: 1rem;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease,
    opacity 0.2s ease;
}
.faq-item.open .faq-answer {
  opacity: 1;
  max-height: 400px;
  padding: 4px 28px 18px;
}
.faq-answer > *:first-child {
  margin-top: 0;
}
.faq-answer > *:last-child {
  margin-bottom: 0;
}

/* ── 12. WATERMARK ── */
.watermark {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(112, 132, 255, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── 13. CAROUSEL ── */
.carousel-track {
  display: flex;
  gap: 16px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
.carousel-track-reverse {
  display: flex;
  gap: 16px;
  animation: scroll-right 45s linear infinite;
  width: max-content;
}
.carousel-track:hover,
.carousel-track-reverse:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.carousel-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  flex-shrink: 0;
}
.carousel-img:hover {
  transform: scale(1.03);
  border-color: var(--border-card-hover);
}

/* ── 13b. MASONRY GALLERY (Wall of Wins) ── */
.masonry-gallery {
  columns: 4;
  column-gap: 12px;
  max-width: 1152px;
  margin: 0 auto;
}
.masonry-gallery .masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  cursor: pointer;
  transition:
    all 0.3s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}
.masonry-gallery .masonry-item.visible {
  opacity: 1;
  transform: scale(1);
}
.masonry-gallery .masonry-item:hover {
  border-color: var(--border-card-hover);
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}
.masonry-gallery .masonry-item img {
  display: block;
  width: 100%;
  height: auto;
}
.masonry-gallery .masonry-item.masonry-hidden {
  display: none;
}
.masonry-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2.5rem auto 0;
  padding: 14px 32px;
  width: fit-content;
  background: rgba(232, 200, 114, 0.06);
  border: 1px solid rgba(232, 200, 114, 0.28);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.masonry-show-more:hover {
  background: rgba(232, 200, 114, 0.12);
  border-color: rgba(232, 200, 114, 0.48);
  transform: translateY(-2px);
}

/* Appear animation for progressively loaded masonry items */
@keyframes masonry-fade-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.masonry-gallery .masonry-item.masonry-appear {
  animation: masonry-fade-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@media (max-width: 1024px) {
  .masonry-gallery {
    columns: 3;
  }
}
@media (max-width: 768px) {
  .masonry-gallery {
    columns: 2;
    column-gap: 8px;
  }
  .masonry-gallery .masonry-item {
    margin-bottom: 8px;
  }
}

/* ── 14. LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 7, 18, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid var(--border-card);
}

/* ── 15. NAV ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(8, 12, 24, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-card);
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: color var(--duration-fast);
}
.nav-link:hover {
  color: var(--text-primary);
}

/* ── 16. MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.mobile-menu a:hover {
  color: var(--primary-soft);
}
/* Préserver la couleur sombre du CTA gold dans le menu mobile (override de .mobile-menu a blanc). */
.mobile-menu a.btn-gold,
.mobile-menu a.btn-gold:hover {
  color: #1a1408;
}

/* ── YT FACADE ── Lazy-loaded YouTube embed (bypass bot-check + perf) ── */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  cursor: pointer;
  overflow: hidden;
  border: 0;
  display: block;
}
.yt-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
.yt-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.yt-facade__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(15, 15, 15, 0.78);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.yt-facade__btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin: 0 auto;
  transform: translateX(2px);
}
.yt-facade:hover .yt-facade__btn,
.yt-facade:focus-within .yt-facade__btn {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.08);
}
.yt-facade--active {
  cursor: default;
}
.yt-facade--active::after,
.yt-facade--active .yt-facade__btn,
.yt-facade--active .yt-facade__thumb {
  display: none;
}
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-facade__fallback {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
}
.yt-facade__fallback:hover {
  background: #ff0000;
}
/* Lien YouTube permanent (coin haut droite) pour les cas bot-check navigation privée */
.yt-facade__external {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.yt-facade__external:hover {
  background: #ff0000;
  transform: scale(1.05);
}
.yt-facade--active .yt-facade__external {
  display: none;
}

/* ── 17. CHECKLIST ── */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-item i {
  color: var(--success);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── 18. METRIC ── */
.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

/* ── 19. RESPONSIVE ── */
@media (max-width: 768px) {
  .metric-value {
    font-size: 2rem;
  }
  .carousel-img {
    width: 260px;
    height: 160px;
  }
  .watermark {
    font-size: 5rem;
  }
  .card,
  .left-card {
    padding: 1.5rem;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-item.open .faq-answer {
    padding: 4px 20px 20px;
  }
}

@media (max-width: 480px) {
  .carousel-img {
    width: 220px;
    height: 140px;
  }
  .watermark {
    font-size: 3.5rem;
  }
  .metric-value {
    font-size: 1.75rem;
  }
  .card,
  .left-card {
    padding: 1.25rem;
  }
}

/* ── 20. ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── 21. SHARED COMPONENTS ── */

/* Section title: H2 gradient used in every section */
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Section spacing: responsive vertical padding */
.section-spacing {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.section-spacing--sm {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Icon box: 40px square with colored bg/border */
.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-box--danger {
  background: rgba(196, 84, 79, 0.1);
  border: 1px solid rgba(196, 84, 79, 0.2);
}
.icon-box--primary {
  background: rgba(112, 132, 255, 0.1);
  border: 1px solid rgba(112, 132, 255, 0.2);
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* Section separator */
.separator {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(112, 132, 255, 0.16),
    transparent
  );
}

/* ── 22. RESPONSIVE — SHARED MOBILE ── */
@media (max-width: 768px) {
  .section-spacing {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .section-spacing--sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .demo-carousel-row img,
  .demo-carousel-row-reverse img {
    min-width: 260px;
    height: 10rem;
  }

  /* Footer mobile: centered layout */
  footer .grid {
    gap: 2rem;
    text-align: center;
  }
  footer .grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .grid > div p {
    margin-left: auto;
    margin-right: auto;
  }
  footer .grid a {
    justify-content: center;
  }
  footer .mb-12 {
    margin-bottom: 2rem;
  }

  /* Hide decorative bg-orbs on mobile (perf) */
  .bg-orb {
    display: none;
  }

  /* Simplify carousel on mobile: single row, smaller */
  .demo-carousel-row-reverse {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   Tailwind Utilities — Static replacement for @tailwindcss/browser@4
   Generated from 730 HTML files scan — 249 unique utilities
   ═══════════════════════════════════════════════════════ */

/* ── Theme Color Tokens (from @theme blocks in offre pages) ── */
:root {
  --color-bg-darkest: #030712;
  --color-bg-dark: #070d1f;
  --color-bg-medium: #0c1429;
  --color-bg-card: #0c1429;
  --color-bg-surface: #111b36;
  --color-bg-overlay: #182344;
  --color-primary: #7084ff;
  --color-primary-soft: #8b9cff;
  --color-primary-600: #5a6bf0;
  --color-primary-dim: rgba(112, 132, 255, 0.12);
  --color-primary-glow: rgba(112, 132, 255, 0.25);
  --color-primary-ultra: rgba(112, 132, 255, 0.04);
  --color-text-50: #f4f5fb;
  --color-text-100: rgba(244, 245, 251, 0.72);
  --color-text-200: rgba(244, 245, 251, 0.72);
  --color-text-400: rgba(244, 245, 251, 0.48);
  --color-text-600: rgba(244, 245, 251, 0.32);
  --color-text-800: rgba(244, 245, 251, 0.14);
  --color-stroke: rgba(244, 245, 251, 0.04);
  --color-stroke-hover: rgba(244, 245, 251, 0.06);
  --color-stroke-primary: rgba(112, 132, 255, 0.16);
  --color-stroke-primary-hover: rgba(112, 132, 255, 0.32);
  --color-success: #68b08a;
  --color-success-dim: rgba(104, 176, 138, 0.12);
  --color-success-border: rgba(104, 176, 138, 0.2);
  --color-danger: #c4544f;
  --color-danger-dim: rgba(196, 84, 79, 0.12);
  --color-danger-border: rgba(196, 84, 79, 0.2);
  --color-warning: #d4b05c;
  --color-warning-dim: rgba(212, 176, 92, 0.12);
  --color-warning-border: rgba(212, 176, 92, 0.2);
  --color-highlight: #8b9cff;
  --color-trustpilot: #00b67a;
}

/* ── 1. DISPLAY ── */
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}

/* ── 2. FLEXBOX ── */
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink-0 {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-stretch {
  align-items: stretch;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

/* ── 3. GRID ── */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.col-span-2 {
  grid-column: span 2 / span 2;
}

/* ── 4. GAP ── */
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 2.5rem;
}

/* ── 5. SPACE-Y ── */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-2\.5 > * + * {
  margin-top: 0.625rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}

/* ── 5b. TRANSFORMS ── */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}

/* ── 5c. NEGATIVE VALUES ── */
.-top-10 {
  top: -2.5rem;
}

/* ── 6. POSITIONING ── */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.inset-0 {
  inset: 0;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.top-0 {
  top: 0;
}
.top-1\/2 {
  top: 50%;
}
.top-4 {
  top: 1rem;
}
.top-6 {
  top: 1.5rem;
}
.top-8 {
  top: 2rem;
}
.left-0 {
  left: 0;
}
.left-1\/2 {
  left: 50%;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0;
}
.right-4 {
  right: 1rem;
}
.right-6 {
  right: 1.5rem;
}
.bottom-0 {
  bottom: 0;
}

/* ── 7. Z-INDEX ── */
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.z-\[950\] {
  z-index: 950;
}
.z-\[1000\] {
  z-index: 1000;
}
.z-\[9999\] {
  z-index: 9999;
}
.z-\[10001\] {
  z-index: 10001;
}

.z-\[10000\] {
  z-index: 10000;
}

/* ── 8. WIDTH ── */
.w-9 {
  width: 2.25rem;
}
.w-10 {
  width: 2.5rem;
}
.w-11 {
  width: 2.75rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}

/* ── 9. HEIGHT ── */
.h-0 {
  height: 0;
}
.h-4 {
  height: 1rem;
}
.h-9 {
  height: 2.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-64 {
  height: 16rem;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}

/* ── 10. MIN/MAX SIZING ── */
.min-h-\[250px\] {
  min-height: 250px;
}
.min-h-\[600px\] {
  min-height: 600px;
}
.min-h-screen {
  min-height: 100vh;
}
.max-h-\[85vh\] {
  max-height: 85vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[600px\] {
  max-width: 600px;
}
.max-w-\[640px\] {
  max-width: 640px;
}
.max-w-\[700px\] {
  max-width: 700px;
}
.max-w-\[768px\] {
  max-width: 768px;
}
.max-w-\[800px\] {
  max-width: 800px;
}
.max-w-\[900px\] {
  max-width: 900px;
}
.max-w-\[90vw\] {
  max-width: 90vw;
}
.max-w-\[1024px\] {
  max-width: 1024px;
}
.max-w-\[1152px\] {
  max-width: 1152px;
}

/* ── 11. MARGIN ── */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}

/* ── 12. PADDING ── */
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-\[56\.25\%\] {
  padding-bottom: 56.25%;
}
.pb-\[60px\] {
  padding-bottom: 60px;
}
.pt-\[120px\] {
  padding-top: 120px;
}

/* ── 13. BACKGROUND COLORS ── */
.bg-transparent {
  background-color: transparent;
}
.bg-black\/90 {
  background-color: rgba(0, 0, 0, 0.9);
}
.bg-\[rgba\(3\,7\,18\,0\.85\)\] {
  background-color: rgba(3, 7, 18, 0.85);
}
.bg-\[var\(--primary\)\] {
  background-color: var(--primary);
}
.bg-bg-darkest {
  background-color: var(--color-bg-darkest);
}
.bg-bg-surface {
  background-color: var(--color-bg-surface);
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-primary-dim {
  background-color: var(--color-primary-dim);
}
.bg-primary-ultra {
  background-color: var(--color-primary-ultra);
}
.bg-stroke {
  background-color: var(--color-stroke);
}
.bg-stroke-primary {
  background-color: var(--color-stroke-primary);
}
.bg-success-dim {
  background-color: var(--color-success-dim);
}
.bg-danger-dim {
  background-color: var(--color-danger-dim);
}
.bg-warning-dim {
  background-color: var(--color-warning-dim);
}

/* ── 14. GRADIENTS ── */
.bg-gradient-to-r {
  --tw-gradient-from: transparent;
  --tw-gradient-to: transparent;
  --tw-gradient-via: transparent;
  background-image: linear-gradient(
    to right,
    var(--tw-gradient-from),
    var(--tw-gradient-via),
    var(--tw-gradient-to)
  );
}
.from-transparent {
  --tw-gradient-from: transparent;
}
.to-transparent {
  --tw-gradient-to: transparent;
}
.via-stroke-primary-hover {
  --tw-gradient-via: var(--color-stroke-primary-hover);
}

/* ── 15. TEXT COLORS ── */
.text-white {
  color: #fff;
}
.text-primary {
  color: var(--color-primary);
}
.text-primary-soft {
  color: var(--color-primary-soft);
}
.text-success {
  color: var(--color-success);
}
.text-danger {
  color: var(--color-danger);
}
.text-warning {
  color: var(--color-warning);
}
.text-trustpilot {
  color: var(--color-trustpilot);
}
.text-text-50 {
  color: var(--color-text-50);
}
.text-text-100 {
  color: var(--color-text-100);
}
.text-text-200 {
  color: var(--color-text-200);
}
.text-text-400 {
  color: var(--color-text-400);
}
.text-text-600 {
  color: var(--color-text-600);
}
.text-bg-card {
  color: var(--color-bg-card);
}

/* ── 16. TEXT SIZE ── */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[9px\] {
  font-size: 9px;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[15px\] {
  font-size: 15px;
}
.text-\[28px\] {
  font-size: 28px;
}
.text-\[0\.9rem\] {
  font-size: 0.9rem;
}
.text-\[clamp\(1\.75rem\,4vw\,2\.5rem\)\] {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* ── 17. TEXT ALIGNMENT ── */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

/* ── 18. TYPOGRAPHY ── */
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-sans {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}
.font-mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.no-underline {
  text-decoration: none;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-\[1\.08\] {
  line-height: 1.08;
}
.leading-\[1\.7\] {
  line-height: 1.7;
}
.tracking-\[-0\.04em\] {
  letter-spacing: -0.04em;
}
.tracking-\[1px\] {
  letter-spacing: 1px;
}
.tracking-\[2px\] {
  letter-spacing: 2px;
}
.tracking-\[3px\] {
  letter-spacing: 3px;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 19. BORDER ── */
.border {
  border: 1px solid;
}
.border-2 {
  border-width: 2px;
  border-style: solid;
}
.border-b {
  border-bottom: 1px solid;
}
.border-t {
  border-top: 1px solid;
}
.border-none {
  border: none;
}
.border-collapse {
  border-collapse: collapse;
}
.border-\[1\.5px\] {
  border-width: 1.5px;
  border-style: solid;
}
.border-\[var\(--border-card\)\] {
  border-color: var(--border-card);
}
.border-primary {
  border-color: var(--color-primary);
}
.border-stroke {
  border-color: var(--color-stroke);
}
.border-stroke-primary {
  border-color: var(--color-stroke-primary);
}
.border-success-border {
  border-color: var(--color-success-border);
}
.border-danger-border {
  border-color: var(--color-danger-border);
}
.border-warning {
  border-color: var(--color-warning);
}
.border-warning-border {
  border-color: var(--color-warning-border);
}

/* ── 20. BORDER RADIUS ── */
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-br {
  border-bottom-right-radius: 0.25rem;
}
.rounded-\[6px\] {
  border-radius: 6px;
}
.rounded-\[9px\] {
  border-radius: 9px;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[14px\] {
  border-radius: 14px;
}
.rounded-b-\[12px\] {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* ── 21. SHADOWS ── */
.shadow-md {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.shadow-\[0_0_30px_rgba\(112\,132\,255\,0\.08\)\] {
  box-shadow: 0 0 30px rgba(112, 132, 255, 0.08);
}

/* ── 22. OVERFLOW ── */
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}

/* ── 23. OBJECT FIT ── */
.object-contain {
  object-fit: contain;
}
.object-cover {
  object-fit: cover;
}

/* ── 24. CURSOR ── */
.cursor-pointer {
  cursor: pointer;
}

/* ── 25. LIST ── */
.list-none {
  list-style: none;
}

/* ── 26. TRANSITIONS ── */
.transition-all {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-colors {
  transition:
    color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-transform {
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-\[350ms\] {
  transition-duration: 350ms;
}

/* ── 27. BACKDROP ── */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.backdrop-blur-\[20px\] {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── 28. ACCESSIBILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── 29. ANIMATIONS ── */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 25px rgba(112, 132, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 40px rgba(112, 132, 255, 0.5);
  }
  100% {
    box-shadow: 0 4px 25px rgba(112, 132, 255, 0.3);
  }
}
@keyframes slideVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-pulse-glow {
  animation: pulse-glow 2.5s infinite ease-in-out;
}
.animate-\[fadeUp_0\.65s_cubic-bezier\(0\.16\,1\,0\.3\,1\)_both\] {
  animation: fadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── 30. HOVER STATES ── */
.hover\:bg-primary-dim:hover {
  background-color: var(--color-primary-dim);
}
.hover\:bg-warning-dim:hover {
  background-color: var(--color-warning-dim);
}
.hover\:border-stroke-primary:hover {
  border-color: var(--color-stroke-primary);
}
.hover\:text-primary:hover {
  color: var(--color-primary);
}
.hover\:text-text-200:hover {
  color: var(--color-text-200);
}
.hover\:underline:hover {
  text-decoration: underline;
}
.hover\:shadow-\[0_12px_32px_rgba\(0\,0\,0\,0\.4\)\,0_0_0_3px_rgba\(112\,132\,255\,0\.15\)\]:hover {
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(112, 132, 255, 0.15);
}

/* ── 31. FOCUS STATES (skip-to-content pattern) ── */
.focus\:bg-primary:focus {
  background-color: var(--color-primary);
}
.focus\:fixed:focus {
  position: fixed;
}
.focus\:left-4:focus {
  left: 1rem;
}
.focus\:no-underline:focus {
  text-decoration: none;
}
.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.focus\:px-4:focus {
  padding-left: 1rem;
  padding-right: 1rem;
}
.focus\:py-2:focus {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.focus\:rounded-lg:focus {
  border-radius: 0.5rem;
}
.focus\:text-bg-card:focus {
  color: var(--color-bg-card);
}
.focus\:text-sm:focus {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.focus\:top-0:focus {
  top: 0;
}
.focus\:top-4:focus {
  top: 1rem;
}
.focus\:z-\[10000\]:focus {
  z-index: 10000;
}

/* ── 32. RESPONSIVE: xs (480px) ── */
@media (min-width: 480px) {
  .xs\:p-12 {
    padding: 3rem;
  }
  .xs\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .xs\:py-\[18px\] {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .xs\:text-\[15px\] {
    font-size: 15px;
  }
}

/* ── 33. RESPONSIVE: sm (640px) ── */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:h-20 {
    height: 5rem;
  }
  .sm\:w-20 {
    width: 5rem;
  }
  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .sm\:text-\[36px\] {
    font-size: 36px;
  }
}

/* ── 34. RESPONSIVE: md (768px) ── */
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:border-r {
    border-right: 1px solid;
  }
  .md\:h-80 {
    height: 20rem;
  }
  .md\:min-h-\[400px\] {
    min-height: 400px;
  }
  .md\:p-6 {
    padding: 1.5rem;
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:rounded-bl-none {
    border-bottom-left-radius: 0;
  }
  .md\:rounded-r-\[12px\] {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}

/* ── 35. RESPONSIVE: lg (1024px) ── */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ──────────────────────────────────────────────────────────────
   36. LANDING V5 — COMPOSANTS CANONIQUES
   Référence de cohérence pour toute page (homepage, offres, futures).
   Documentation : .dev/docs/design-system.md § Landing V5
   ────────────────────────────────────────────────────────────── */

/* Typographie landing */
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.section-h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.section-sub {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.5;
}
.card-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}
.body-md {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
}
.body-lg {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--body-text);
}
.annot {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-tertiary);
}

/* Layout sections */
.sec {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .sec {
    padding: 112px 1.5rem;
  }
}
.sec-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.sec-narrow {
  max-width: 880px;
  margin: 0 auto;
}
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head .section-h2 {
  margin-top: 16px;
  margin-bottom: 12px;
}

/* Pills (badges sémantiques) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill-primary {
  background: rgba(112, 132, 255, 0.12);
  color: #7084ff;
  border: 1px solid rgba(112, 132, 255, 0.28);
}
.pill-danger {
  background: rgba(196, 84, 79, 0.12);
  color: #c4544f;
  border: 1px solid rgba(196, 84, 79, 0.28);
}
.pill-success {
  background: rgba(104, 176, 138, 0.12);
  color: #68b08a;
  border: 1px solid rgba(104, 176, 138, 0.28);
}
.pill-warn {
  background: rgba(212, 176, 92, 0.1);
  color: #d4b05c;
  border: 1px solid rgba(212, 176, 92, 0.25);
}

/* Ui-card (card canonique landing) */
.ui-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
@media (min-width: 768px) {
  .ui-card {
    padding: 32px;
  }
}
.ui-card--hover:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}
.ui-card--danger {
  border-color: rgba(196, 84, 79, 0.2);
}
.ui-card--success {
  border-color: rgba(104, 176, 138, 0.28);
}

/* Micro-preuve inline (témoignage avec border-left verte). */
.mp {
  border-left: 3px solid var(--success);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 1rem;
  font-style: italic;
  color: var(--body-text);
  background: rgba(104, 176, 138, 0.04);
  border-radius: 0 8px 8px 0;
}
/* Si .mp est le dernier enfant d'une card V4 (flex-column), la pousser
   en bas pour aligner toutes les micro-preuves dans une grille stretchée. */
.card-v4 > .mp:last-child {
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 18px;
}
/* Gap visuel entre le texte descriptif et la micro-preuve (Section Résultats). */
.card-v4 > p + .mp {
  margin-top: 22px;
}
.mp i {
  color: var(--success);
  margin-right: 6px;
  font-size: 0.8em;
}
/* Variante gold pour parcours/offres premium (cohérence featured). */
.mp--gold {
  border-left-color: var(--gold);
  background: rgba(232, 200, 114, 0.05);
}
.mp--gold i {
  color: var(--gold);
}

/* Grande lettre de parcours (A / B) alignée avec le tag */
.parcours-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  border: 1px solid var(--border-card);
  color: var(--primary-soft);
  background: rgba(112, 132, 255, 0.05);
  flex-shrink: 0;
}
.parcours-letter--gold {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(232, 200, 114, 0.06);
}

/* Responsive override pour la grille SYSTÈME (2-col desktop, 1-col mobile). */
@media (max-width: 767px) {
  .systeme-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ─── Section 4b "Ce que LE LABO IA n'est pas" · cartes anti-promesse ─── */
.not-for-card {
  position: relative;
  padding: 28px 28px 28px 72px;
  background: rgba(255, 68, 102, 0.02);
  border: 1px solid rgba(255, 68, 102, 0.12);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.not-for-card:hover {
  border-color: rgba(255, 68, 102, 0.28);
  background: rgba(255, 68, 102, 0.035);
}
.not-for-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 68, 102, 0.12);
  border: 1px solid rgba(255, 68, 102, 0.32);
}
.not-for-card::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 28px;
  left: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--error);
  font-size: 0.78rem;
}
.not-for-card .tag {
  color: var(--error);
  border-color: rgba(255, 68, 102, 0.28);
  background: transparent;
}
.not-for-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 10px 0 8px;
}
.not-for-card p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0;
}
@media (max-width: 767px) {
  .not-for-card {
    padding: 24px 20px 24px 64px;
  }
  .not-for-card::before,
  .not-for-card::after {
    left: 18px;
    top: 24px;
  }
}

/* ─── Section 8 · Grid 12 modules · version premium ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}
.module-card {
  position: relative;
  padding: 22px 22px 22px 76px;
  background: rgba(112, 132, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 6px;
  transition: all 0.2s ease;
  min-height: 112px;
}
.module-card:hover {
  border-color: var(--border-card-hover);
  background: rgba(112, 132, 255, 0.055);
  transform: translateY(-2px);
}
.module-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gold);
  background: rgba(232, 200, 114, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.module-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.module-card__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.55;
  margin: 0;
}
.module-card--elite {
  background: linear-gradient(
    180deg,
    rgba(232, 200, 114, 0.06) 0%,
    rgba(232, 200, 114, 0.02) 100%
  );
  border-color: var(--gold-border);
}
.module-card--elite:hover {
  border-color: var(--gold-glow);
  background: linear-gradient(
    180deg,
    rgba(232, 200, 114, 0.09) 0%,
    rgba(232, 200, 114, 0.03) 100%
  );
}
.module-card--elite .module-card__num {
  color: #1a1408;
  background: var(--gold);
  border-color: var(--gold);
}
.module-card--elite .module-card__title .tag {
  font-size: 0.68rem;
  padding: 3px 8px;
}

/* ─── Section 18 · Card SYSTÈME DFY · layout premium ─── */
.dfy-card {
  position: relative;
  padding: 48px;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  background:
    radial-gradient(
      80% 50% at 0% 0%,
      rgba(232, 200, 114, 0.07) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, rgba(232, 200, 114, 0.03) 0%, transparent 100%);
  overflow: hidden;
}
.dfy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 60%,
    rgba(232, 200, 114, 0.04) 100%
  );
  pointer-events: none;
}
.dfy-grid {
  display: grid;
  grid-template-columns: 1.15fr 1px 1fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
}
.dfy-divider {
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--gold-border) 20%,
    var(--gold-border) 80%,
    transparent 100%
  );
  width: 1px;
}
.dfy-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dfy-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dfy-ticket-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0;
}
.dfy-ticket-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 4px 0 6px;
}
.dfy-ticket-sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin: 0;
}
.dfy-livrable {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-dim);
}
.dfy-livrable:last-child {
  border-bottom: none;
}
.dfy-livrable__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(232, 200, 114, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.78rem;
}
.dfy-livrable__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dfy-livrable__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.dfy-livrable__desc {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .dfy-card {
    padding: 32px 24px;
  }
  .dfy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dfy-divider {
    display: none;
  }
}

/* ─── Titre interne "Comparaison détaillée" · h3 lisible centré ─── */
.cmp-heading {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: center;
  margin: 64px 0 6px;
}
.cmp-heading + .cmp-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-tertiary);
  text-align: center;
  margin: 0 auto 28px;
  max-width: 520px;
}

/* Timeline dot (J7, J30, J60…) */
.tl-dot {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
}
.tl-dot--ok {
  background: rgba(104, 176, 138, 0.12);
  color: var(--success);
  border: 1px solid rgba(104, 176, 138, 0.28);
}
.tl-dot--pri {
  background: rgba(112, 132, 255, 0.12);
  color: var(--primary);
  border: 1px solid rgba(112, 132, 255, 0.28);
}
/* Variante gold : jalon signature (J30 couvert par la garantie, ou accent premium) */
.tl-dot--gold {
  background: rgba(232, 200, 114, 0.12);
  color: var(--gold);
  border: 1px solid rgba(232, 200, 114, 0.32);
}

/* Step number (cercle numéroté pour étapes solution) */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(112, 132, 255, 0.12);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  border: 1px solid rgba(112, 132, 255, 0.28);
}

/* Check list (listes avec coches vertes) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}
.check-list li i {
  color: var(--success);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Comparison table (tableau comparatif PREMIUM/ELITE) */
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 32px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-card);
}
.cmp-table th,
.cmp-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-card);
  font-size: 1rem;
  vertical-align: middle;
}
.cmp-table thead th {
  font-weight: 800;
  color: var(--text-primary);
  background: rgba(112, 132, 255, 0.08);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-top: 18px;
  padding-bottom: 18px;
}
.cmp-table thead th:nth-child(3) {
  color: var(--gold);
  background: rgba(232, 200, 114, 0.1);
}
.cmp-table td {
  color: var(--body-text);
}
.cmp-table tbody tr:nth-child(even) td {
  background: rgba(112, 132, 255, 0.02);
}
.cmp-table td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}
.cmp-table tbody tr:last-child td {
  border-bottom: 0;
}
.cmp-table td.cmp-yes,
.cmp-table td.cmp-no {
  font-size: 0;
  padding: 12px 18px;
}
.cmp-table td.cmp-yes::before,
.cmp-table td.cmp-no::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.cmp-table td.cmp-yes::before {
  background-color: rgba(104, 176, 138, 0.14);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2368b08a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  border: 1px solid rgba(104, 176, 138, 0.3);
}
.cmp-table td.cmp-no::before {
  background-color: rgba(255, 255, 255, 0.03);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cmp-table td.cmp-yes i,
.cmp-table td.cmp-no i {
  display: none;
}
.cmp-table td:nth-child(3).cmp-yes {
  background: rgba(232, 200, 114, 0.04);
}
.cmp-table tbody tr:hover td {
  background: rgba(112, 132, 255, 0.04);
}

/* Grilles utilitaires */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* Method grid : 3 cards row 1, 2 cards row 2 centrées (évite le trou).
   Collapse single column sous 768px pour mobile. */
/* Footer V4 · 4-column grid desktop, responsive breakdown */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 767px) {
  .method-grid {
    grid-template-columns: 1fr !important;
  }
  .method-grid > * {
    grid-column: 1 !important;
  }
  /* Footer mobile : 2 colonnes compactes + tout centré (labels + liens + description) */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 20px !important;
    text-align: center;
  }
  .footer-grid > div {
    text-align: center;
  }
  .footer-grid > div > a,
  .footer-grid > div > p {
    text-align: center;
  }
  /* Description du premier bloc : centrer via margin auto (elle a max-width) */
  .footer-grid > div > p[style*="max-width"] {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* Bloc "LE LABO IA + description" s'étale sur toute la largeur */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 479px) {
  /* Sur très petits écrans (< 480px), revenir à 1 colonne pour lisibilité */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}

/* Séparateur */
.separator {
  height: 1px;
  background: var(--border-card);
  max-width: 1120px;
  margin: 0 auto;
  opacity: 0.6;
}

/* Responsive mobile (landing V5) */
@media (max-width: 640px) {
  .sec {
    padding: 64px 1.25rem;
  }
  .sec-head {
    margin-bottom: 40px;
  }
  .section-h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .section-sub {
    font-size: 1rem;
  }
  .ui-card {
    padding: 20px;
  }
  .card-h3 {
    font-size: 1.125rem;
  }
  .body-md,
  .body-lg {
    font-size: 1rem;
    line-height: 1.6;
  }
  .cmp-table th,
  .cmp-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   37. TYPOGRAPHIE FLUIDE — Tokens --fs-* et classes .fs-*
   Source unique de vérité pour toutes les tailles de texte.
   Utilise clamp() : min (mobile 375px) → max (desktop 1200px+).
   Plus besoin de text-3xl md:text-4xl. Responsive automatique.

   Règle : sur toute nouvelle page, préférer .fs-h1, .fs-body-md
   plutôt que hardcoder font-size. Voir _design-system/README.md.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* ── Tailles fluides ── */
  /* H1 (Hero) : 32px mobile → 56px desktop */
  --fs-h1: clamp(2rem, 1.25rem + 3.25vw, 3.5rem);
  /* H2 (Section) : 28px mobile → 40px desktop */
  --fs-h2: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  /* H3 (Card) : 20px mobile → 24px desktop */
  --fs-h3: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  /* H4 (Sub-card) : 18px mobile → 20px desktop */
  --fs-h4: clamp(1.125rem, 1.075rem + 0.25vw, 1.25rem);
  /* H5 (micro-heading) : 16px mobile → 18px desktop */
  --fs-h5: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  /* H6 (uppercase tag) : 14px mobile → 15px desktop */
  --fs-h6: clamp(0.875rem, 0.865rem + 0.05vw, 0.9375rem);

  /* Body text */
  --fs-body-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); /* 16 → 18 */
  --fs-body-md: clamp(0.9375rem, 0.915rem + 0.125vw, 1rem); /* 15 → 16 */
  --fs-body-sm: clamp(0.875rem, 0.865rem + 0.05vw, 0.9375rem); /* 14 → 15 */

  /* Labels / annotations / legal */
  --fs-label: 0.875rem; /* 14px — constant, labels/tags/badges */
  --fs-annot: 0.8125rem; /* 13px — annotations italiques */
  --fs-legal: 0.75rem; /* 12px — copyright, mentions légales */

  /* Metric display (grandes statistiques) */
  --fs-metric: clamp(2rem, 1.5rem + 2.5vw, 3rem); /* 32 → 48 */
  --fs-metric-xl: clamp(2.5rem, 1.75rem + 3.75vw, 4.5rem); /* 40 → 72 */

  /* ── Line-heights sémantiques ── */
  --lh-tight: 1.1; /* headings display */
  --lh-heading: 1.2; /* H1-H3 */
  --lh-snug: 1.35; /* H4-H6, card titles */
  --lh-body: 1.6; /* body paragraphs */
  --lh-relaxed: 1.75; /* long-form reading, FAQ answers */

  /* ── Letter-spacing ── */
  --tracking-tight: -0.02em; /* headings large */
  --tracking-heading: -0.01em; /* H2 default */
  --tracking-normal: 0;
  --tracking-wide: 0.04em; /* pills, uppercase labels */
  --tracking-wider: 0.08em; /* eyebrows, section labels */
}

/* ── Classes utilitaires .fs-* ──
   À utiliser sur toute nouvelle page au lieu de hardcoder font-size.
   Elles héritent de color via le contexte (.text-primary, .body-text, etc.). */
.fs-h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 500;
  font-style: italic;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}
.fs-h1--upright {
  /* Variante non-italique pour contextes où l'italique n'est pas souhaitée */
  font-style: normal;
  font-weight: 600;
}
.fs-h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--text-primary);
}
.fs-h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--text-primary);
}
.fs-h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--text-primary);
}
.fs-h5 {
  font-size: var(--fs-h5);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--text-primary);
}
.fs-h6 {
  font-size: var(--fs-h6);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}
.fs-body-lg {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--body-text);
}
.fs-body-md {
  font-size: var(--fs-body-md);
  line-height: var(--lh-body);
  color: var(--body-text);
}
.fs-body-sm {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: var(--body-text);
}
.fs-label {
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--text-secondary);
}
.fs-annot {
  font-size: var(--fs-annot);
  font-style: italic;
  color: var(--text-tertiary);
}
.fs-legal {
  font-size: var(--fs-legal);
  color: var(--text-muted);
}
.fs-metric {
  font-size: var(--fs-metric);
  font-weight: 800;
  line-height: 1;
}
.fs-metric-xl {
  font-size: var(--fs-metric-xl);
  font-weight: 800;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   38. DIRECTION C · FASHION BRUTALIST REFINED (avril 2026)
   Validée : V1 Boska italique (H1) + Cabinet Grotesk (UI/body)
   + Gold Champagne #E8C872 (signature secondaire)
   Radius mixte : 4px cards, 999px CTA, 12px sections
   Showcase : _design-system/index.html
   ══════════════════════════════════════════════════════════════ */

/* Base body : Cabinet Grotesk prend le relais de Manrope */
body {
  font-family: var(--font-sans);
}

/* ─── Eyebrow brutaliste (remplace .section-label en landing V5) ─── */
.eyebrow-brut {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-card);
  border-radius: 2px;
  color: var(--primary);
}
.eyebrow-brut--gold {
  color: var(--gold);
  border-color: var(--gold-border);
}

/* ─── Tag brutaliste (remplace .badge en card header) ─── */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-card);
  border-radius: 2px;
  color: var(--primary-soft);
}
.tag--gold {
  color: var(--gold);
  border-color: var(--gold-border);
}
.tag--success {
  color: var(--success);
  border-color: var(--border-success);
}
.tag--danger {
  color: var(--error);
  border-color: var(--border-error);
}

/* ─── Bouton CTA principal · pill gold ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--gold);
  color: #1a1408;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-gold:hover {
  background: var(--gold-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 0 3px var(--gold-dim);
}
.btn-gold--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-gold--lg,
.btn-ghost--lg {
  padding: 0 32px;
  min-height: 56px;
  line-height: 1;
  font-size: 1.05rem;
}

/* ─── Bouton secondaire · ghost gold ─── */
.btn-gold-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-gold-ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold-glow);
}

/* ─── Bouton ghost neutre (alt) ─── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-card);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-ghost:hover {
  border-color: var(--border-card-hover);
  background: rgba(112, 132, 255, 0.04);
}

/* ─── Card V4 · radius 4px (brutaliste discipliné) ─── */
.card-v4 {
  padding: 1.5rem;
  background: rgba(112, 132, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  transition: all 0.15s ease;
  /* flex column permet margin-top: auto sur le dernier élément pour l'aligner en bas dans une grille stretchée. */
  display: flex;
  flex-direction: column;
}
/* Sur les cards centrées (text-center), les enfants comme buttons
   doivent se dimensionner à leur contenu, pas stretch à 100%. */
.card-v4.text-center {
  align-items: center;
}
.card-v4.text-center > .separator {
  width: 100%;
  align-self: stretch;
}
.card-v4:hover {
  border-color: var(--border-card-hover);
}
.card-v4--featured {
  background: rgba(232, 200, 114, 0.03);
  border-color: var(--gold-border);
}
.card-v4--featured:hover {
  border-color: var(--gold-glow);
}
.card-v4 h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0.5rem 0;
}
.card-v4 p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0;
}
/* Footer card : pousse son contenu (CTA) en bas de la card-v4 flex-column,
   alignement cohérent des boutons dans une grille de cards stretchées. */
.card-v4__footer {
  margin-top: auto;
  padding-top: 24px;
}

/* ─── Section V4 · wrapper radius 12px ─── */
.sec-v4 {
  padding: 80px 1.5rem;
  position: relative;
  z-index: 10;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .sec-v4 {
    padding: 112px 1.5rem;
  }
}

/* ─── Gold accent · underline signature ─── */
.accent-gold-underline {
  background: linear-gradient(transparent 70%, rgba(232, 200, 114, 0.35) 70%);
  padding: 0 2px;
}

/* ─── FAQ V4 · chaleureuse sentence-case ─── */
.faq-v4-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  border: none;
  width: 100%;
  text-align: left;
}

/* ─── Update `.btn-primary` canonique pour hériter du pill Cabinet ─── */
.btn-primary {
  font-family: var(--font-sans);
  border-radius: 999px;
}

/* ══════════════════════════════════════════════════════════════
   39. DIRECTION C · SECTIONS & TEXTURES (refonte premium)
   Vraies distinctions de surface + grain SVG + transitions.
   Remplace les .section-* V3 qui étaient trop plates.
   ══════════════════════════════════════════════════════════════ */

/* Grain SVG réutilisable */
.with-grain {
  position: relative;
}
.with-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 1;
}
.with-grain > * {
  position: relative;
  z-index: 2;
}

/* Hero V4 : radial violet + gold + vignette + grain */
.sec-hero-v4 {
  position: relative;
  background:
    radial-gradient(
      ellipse 90% 60% at 50% 20%,
      rgba(112, 132, 255, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 75% 85%,
      rgba(232, 200, 114, 0.06) 0%,
      transparent 65%
    ),
    linear-gradient(180deg, #050918 0%, #030712 100%);
  overflow: hidden;
}
.sec-hero-v4::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  z-index: 0;
}
.sec-hero-v4 > * {
  position: relative;
  z-index: 1;
}

/* Section neutre dark */
.sec-dark-v4 {
  position: relative;
  background: #050918;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

/* Section élevée */
.sec-elevated-v4 {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(14, 22, 48, 0.5) 0%,
      rgba(10, 16, 36, 0.5) 100%
    ),
    #060c1c;
  border-top: 1px solid rgba(232, 200, 114, 0.08);
  border-bottom: 1px solid rgba(232, 200, 114, 0.08);
}

/* Section signature gold (Elite, preuve, CTA final) */
.sec-signature-v4 {
  position: relative;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 50%,
      rgba(232, 200, 114, 0.06) 0%,
      transparent 70%
    ),
    #060c1c;
  border-top: 1px solid rgba(232, 200, 114, 0.18);
  border-bottom: 1px solid rgba(232, 200, 114, 0.18);
}

/* .sec-flow : classe retirée (trait décoratif jugé inutile, 2026-04-17).
   Conservée vide pour compatibilité si réutilisée ailleurs. */

/* ══════════════════════════════════════════════════════════════
   40. EYEBROWS ÉDITORIAUX (remplace .eyebrow-brut encadré)
   Style magazine : numéro + ligne fine + label uppercase
   ══════════════════════════════════════════════════════════════ */

.eyebrow-edito {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.eyebrow-edito .eb-num {
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-feature-settings: "tnum";
}
.eyebrow-edito .eb-rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    rgba(232, 200, 114, 0) 100%
  );
}
.eyebrow-edito .eb-label {
  color: var(--text-tertiary);
  font-weight: 600;
}
.eyebrow-edito--center {
  justify-content: center;
}
.eyebrow-edito--primary .eb-num {
  color: var(--primary-soft);
}
.eyebrow-edito--primary .eb-rule {
  background: linear-gradient(
    90deg,
    var(--primary-soft) 0%,
    rgba(139, 156, 255, 0) 100%
  );
}

/* ══════════════════════════════════════════════════════════════
   41. SECTION HEADER ÉDITORIAL
   ══════════════════════════════════════════════════════════════ */

.sec-head-v4 {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.sec-head-v4 .fs-h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.sec-head-v4 .sec-head-sub {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--body-text);
  max-width: 640px;
  margin: 0 auto;
}
.sec-head-v4--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.sec-head-v4--left .sec-head-sub {
  margin-left: 0;
}
@media (max-width: 640px) {
  .sec-head-v4 {
    margin-bottom: 40px;
  }
}
