/* ═══════════════════════════════════════════════════════════════════════
   DIGITAD LP — premium design system
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --c-red: #E20E2C;
  --c-red-bright: #FF1F44;
  --c-red-coral: #FF4D6D;
  --c-red-deep: #B5081F;
  --c-red-darker: #8B0418;
  --c-red-soft: #FFE5E9;
  --c-red-glow: rgba(226, 14, 44, 0.32);

  --c-ink: #0A0A0B;
  --c-ink-warm: #14070A;
  --c-ink-soft: #1F1F23;
  --c-text: #0F0F11;
  --c-text-muted: #525258;
  --c-text-subtle: #71717A;
  --c-bg: #FFFFFF;
  --c-bg-soft: #FAFAF9;
  --c-bg-warm: #F8F4ED;
  --c-bg-cream: #FFF9F2;
  --c-border: #E4E4E7;
  --c-border-soft: #F4F4F5;

  /* Type */
  --f-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-display: 'PT Sans Narrow', 'Poppins', sans-serif;
  --f-accent: 'Oranienbaum', 'Times New Roman', serif;

  /* Sizing */
  --container: 1280px;
  --container-narrow: 920px;
  --container-text: 720px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-full: 9999px;

  /* Shadows (premium-looking) */
  --shadow-xs: 0 1px 2px rgba(15, 15, 17, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 15, 17, 0.06), 0 1px 2px rgba(15, 15, 17, 0.04);
  --shadow-md: 0 8px 16px rgba(15, 15, 17, 0.06), 0 4px 8px rgba(15, 15, 17, 0.04);
  --shadow-lg: 0 24px 48px rgba(15, 15, 17, 0.08), 0 12px 24px rgba(15, 15, 17, 0.06);
  --shadow-xl: 0 40px 80px rgba(15, 15, 17, 0.12), 0 20px 40px rgba(15, 15, 17, 0.08);
  --shadow-red: 0 12px 32px rgba(226, 14, 44, 0.32), 0 4px 12px rgba(226, 14, 44, 0.18);
  --shadow-red-lg: 0 24px 64px rgba(226, 14, 44, 0.4), 0 12px 24px rgba(226, 14, 44, 0.24);

  /* Easings */
  --e-default: cubic-bezier(0.4, 0, 0.2, 1);
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --e-emphasized: cubic-bezier(0.83, 0, 0.17, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01';
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--c-red); color: white; }

/* ─── Layout ─────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }
@media (min-width: 768px) { .container { padding: 0 48px; } }

.section { padding: 140px 0; position: relative; }
.section--lg { padding: 180px 0; }
.section--sm { padding: 72px 0; }
@media (max-width: 768px) {
  .section { padding: 88px 0; }
  .section--lg { padding: 104px 0; }
  .section--sm { padding: 56px 0; }
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(226, 14, 44, 0.1);
  color: var(--c-red-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  border: 1px solid rgba(226, 14, 44, 0.2);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 3px rgba(226, 14, 44, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow--dark {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.22);
  font-size: 13px;
  padding: 9px 18px;
}
/* Big hero eyebrow (more prominent) */
.eyebrow--hero {
  font-size: 14px;
  padding: 10px 20px;
  letter-spacing: 0.06em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  margin-bottom: 24px;
}
.eyebrow--hero .eyebrow__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  margin-right: 4px;
}
/* Partenaires sociaux directement dans l'eyebrow */
.eyebrow__partners {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 14px;
  margin-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.eyebrow__partners svg {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 4px;
  padding: 2px;
  box-sizing: content-box;
}
.eyebrow__partners svg[title="TikTok"] { background: #000; }
.eyebrow__partners-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 4px;
  opacity: 0.9;
}
.eyebrow--dark::before { background: var(--c-red-coral); box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.3); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(226, 14, 44, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(226, 14, 44, 0); }
}

/* Section title */
.section__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--c-text);
  text-wrap: balance;
  margin-bottom: 24px;
  overflow: visible;
  padding-bottom: 0.1em;
}
.section__title--center { text-align: center; }
.section__title strong {
  font-family: var(--f-accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.015em;
  background: linear-gradient(120deg, var(--c-red) 0%, var(--c-red-coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Room for italic descenders + slant overflow on the right */
  padding: 0.05em 0.18em 0.3em 0;
  margin: -0.05em -0.18em -0.3em 0;
  display: inline-block;
  overflow: visible;
}
.section__title--white {
  color: white;
  line-height: 1.18;
  padding-bottom: 0.18em;
  overflow: visible;
}
.section__title--white strong {
  background: linear-gradient(120deg, var(--c-red-coral) 0%, #FFAAB6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 0.18em;
  line-height: 1.18;
  -webkit-text-fill-color: transparent;
}

.section__subtitle {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--c-text-muted);
  font-weight: 400;
  max-width: 680px;
  margin-bottom: 64px;
  text-wrap: pretty;
}
.section__subtitle--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__subtitle--white { color: rgba(255, 255, 255, 0.78); }

/* ─── Buttons ────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s var(--e-default);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: white;
  box-shadow: var(--shadow-red);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-red-bright) 0%, var(--c-red) 100%);
  opacity: 0;
  transition: opacity 0.2s var(--e-default);
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
}
.btn--primary:hover::before { opacity: 1; }
.btn--invert {
  background: white;
  color: var(--c-text);
}
.btn--invert:hover {
  background: var(--c-bg-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--ghost:hover { background: var(--c-bg-soft); border-color: var(--c-text); }
.btn--lg { padding: 22px 40px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }
.btn__arrow {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  transition: transform 0.2s var(--e-default);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ─── Header ─────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(228, 228, 231, 0.5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s var(--e-default);
}
.site-header__logo:hover { opacity: 0.78; }
.site-header__logo svg {
  height: 26px;
  width: auto;
  display: block;
}
.site-footer__logo { display: inline-flex; }
.site-footer__logo svg {
  height: 22px;
  width: auto;
  display: block;
}
.site-header__nav { display: none; gap: 36px; }
.site-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color 0.15s var(--e-default);
  position: relative;
}
.site-header__nav a:hover { color: var(--c-ink); }
.site-header__cta {
  padding: 12px 22px;
  font-size: 14px;
}
@media (min-width: 900px) { .site-header__nav { display: flex; } }

/* ─── HERO ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255, 90, 110, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 10% 90%, rgba(139, 4, 24, 0.75) 0%, transparent 60%),
    radial-gradient(ellipse 90% 80% at 50% 50%, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: white;
  padding: 72px 0 88px;
  overflow: hidden;
  isolation: isolate;
}

/* Layer 1 — diagonal grid + dots pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.13) 1.4px, transparent 1.4px),
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255, 255, 255, 0.04) 60px, rgba(255, 255, 255, 0.04) 61px);
  background-size: 26px 26px, 100% 100%;
  z-index: -2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 90%);
}

/* Layer 2 — subtle noise grain for depth */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Decorative floating circles */
.hero__deco-1, .hero__deco-2, .hero__deco-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__deco-1 {
  top: -160px;
  right: -160px;
  width: 460px;
  height: 460px;
  border: 2px dashed rgba(255, 255, 255, 0.14);
  animation: heroSpin 80s linear infinite;
}
.hero__deco-2 {
  top: 80px;
  right: 8%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 65%);
  filter: blur(2px);
}
.hero__deco-3 {
  bottom: -80px;
  left: 5%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 200, 220, 0.18) 0%, transparent 65%);
  filter: blur(8px);
}
@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating SVG search icons (subtle decorative) */
.hero__icon-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  color: white;
}
.hero__icon-deco--1 { top: 14%; left: 4%; width: 64px; height: 64px; transform: rotate(-12deg); }
.hero__icon-deco--2 { bottom: 22%; left: 32%; width: 50px; height: 50px; transform: rotate(18deg); opacity: 0.13; }
.hero__icon-deco--3 { top: 28%; right: 38%; width: 38px; height: 38px; opacity: 0.14; }
@media (max-width: 980px) {
  .hero__icon-deco { display: none; }
  .hero__deco-1, .hero__deco-2, .hero__deco-3 { display: none; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 720px; position: relative; z-index: 2; }
.hero__right { position: relative; z-index: 2; }

/* Desktop : form glissé vers le haut pour qu'il saute aux yeux dès le chargement */
@media (min-width: 980px) {
  .hero__inner {
    align-items: start;
    grid-template-columns: 1.15fr 1fr;
  }
  .hero__content { padding-top: 16px; }
  .hero__right {
    margin-top: -32px;
    position: sticky;
    top: 80px;
  }
}

/* Photo de fond à droite — sous le form, derrière les autres deco */
.hero__bg-photo {
  display: none;
}
@media (min-width: 980px) {
  .hero__bg-photo {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.55;
    mix-blend-mode: luminosity;
    mask-image: linear-gradient(to left, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%);
  }
  /* Vignette douce par-dessus pour fondre dans le rouge */
  .hero__bg-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(184, 0, 28, 0.35) 0%, var(--c-red-deep) 100%);
    mix-blend-mode: multiply;
  }
}

/* Hero photo as a stylized polaroid above the form */
.hero__photo-card {
  display: none;
}
@media (min-width: 980px) {
  .hero__photo-card {
    display: block;
    position: absolute;
    top: -32px;
    left: -56px;
    width: 200px;
    z-index: 3;
    transform: rotate(-6deg);
    transition: transform 0.4s var(--e-out);
  }
  .hero__photo-card:hover { transform: rotate(-3deg) scale(1.03); }
}
.hero__photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 0 6px white, 0 0 0 7px rgba(0, 0, 0, 0.05);
}
.hero__photo-card-name {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  background: var(--c-ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Floating expert badge — bottom-right of hero */
.hero__expert {
  display: none;
}
@media (min-width: 980px) {
  .hero__expert {
    display: flex;
    position: absolute;
    bottom: -32px;
    right: -16px;
    background: white;
    padding: 12px 16px 12px 12px;
    border-radius: var(--r-full);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    align-items: center;
    gap: 10px;
    z-index: 3;
  }
}
.hero__expert-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--c-red);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: white;
}
.hero__expert-text {
  font-size: 12px;
  line-height: 1.2;
  color: var(--c-text);
}
.hero__expert-text strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 1px;
  color: var(--c-ink);
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-wrap: balance;
  font-feature-settings: 'ss01', 'cv11';
}
.hero__title em {
  font-family: var(--f-accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: white;
  position: relative;
  display: inline-block;
  padding: 0.05em 0.18em 0.3em 0;
  margin: -0.05em -0.18em -0.3em 0;
  overflow: visible;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.18em;
  background: rgba(255, 255, 255, 0.22);
  z-index: -1;
  border-radius: 2px;
}

.hero__subtitle {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 560px;
  font-weight: 400;
  text-wrap: pretty;
}
.hero__subtitle strong { color: white; font-weight: 600; }

/* 3 punch messages — pills row */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.005em;
}
.hero__pill-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--c-red);
  border-radius: 50%;
  font-size: 12px;
}

/* Hero expertises tagline (LP générique uniquement) */
.hero__expertises {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 4px 0 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
}
.hero__expertise {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 200ms ease;
}
.hero__expertise:hover { background: rgba(255, 255, 255, 0.2); }
.hero__expertise--featured {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero__expertise--more {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  border-style: dashed;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-weight: 500;
}
.hero__expertise-sep {
  opacity: 0.4;
  font-weight: 400;
  user-select: none;
}
@media (max-width: 700px) {
  .hero__expertises { font-size: 12px; gap: 4px 6px; margin-bottom: 22px; }
  .hero__expertise { padding: 4px 10px; }
  .hero__expertise-sep { display: none; }
}

/* 3 hero feature cards — glass effect with SVG icons */
.hero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  transition: all 0.25s var(--e-out);
}
.hero__feature:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateX(4px);
}
.hero__feature-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero__feature-icon svg { width: 22px; height: 22px; }
.hero__feature-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__feature-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.hero__feature-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.hero__trust strong { color: white; font-weight: 700; }
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__trust-value {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero__trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero form panel (top-right) — like insurance LPs */
.hero__form-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero-form {
  background: white;
  color: var(--c-text);
  padding: 28px 28px 24px;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32), 0 12px 24px rgba(0, 0, 0, 0.18);
  position: relative;
}
.hero-form__header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-border-soft);
}
.hero-form__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.hero-form__title strong { color: var(--c-red); }
.hero-form__sub {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.hero-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  transition: border-color 0.15s var(--e-default), box-shadow 0.15s var(--e-default);
  margin-bottom: 10px;
  color: var(--c-text);
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--c-text-subtle); }
.hero-form input:focus,
.hero-form textarea:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(226, 14, 44, 0.12);
}
.hero-form__submit {
  width: 100%;
  padding: 14px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: white;
  border: 0;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: transform 0.15s var(--e-default), box-shadow 0.15s var(--e-default);
  box-shadow: 0 6px 16px rgba(226, 14, 44, 0.32);
}
.hero-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(226, 14, 44, 0.4);
}
.hero-form__legal {
  text-align: center;
  font-size: 11px;
  color: var(--c-text-subtle);
  margin-top: 12px;
  line-height: 1.4;
}
.hero-form__badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--c-ink);
  color: white;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-form__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 1.8s ease-in-out infinite;
}

@media (max-width: 540px) {
  .hero-form__row { grid-template-columns: 1fr; }
}

/* Hero form (right column) */
.hero-form {
  background: white;
  color: var(--c-text);
  padding: 32px 28px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.hero-form__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.hero-form__sub {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--c-bg-soft);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--c-text);
  transition: all 0.2s var(--e-default);
  margin-bottom: 10px;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--c-text-subtle); }
.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--c-red);
  background: white;
  box-shadow: 0 0 0 3px rgba(226, 14, 44, 0.12);
}
.hero-form textarea { resize: vertical; min-height: 70px; }
.hero-form .btn { width: 100%; margin-top: 4px; padding: 16px 24px; font-size: 15px; }
.hero-form__legal {
  margin-top: 12px;
  font-size: 11px;
  color: var(--c-text-subtle);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 540px) { .hero-form__row { grid-template-columns: 1fr; } }

/* Hero media — editorial magazine treatment (kept for non-form variant) */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 2;
}
/* Decorative offset frame behind the photo */
.hero__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid white;
  border-radius: var(--r-xl);
  transform: translate(20px, 20px) rotate(2deg);
  z-index: -1;
}
.hero__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-ink);
  border-radius: var(--r-xl);
  transform: translate(-12px, 12px) rotate(-3deg);
  z-index: -2;
  opacity: 0.85;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}
.hero__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: white;
  color: var(--c-text);
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 5;
  transform: rotate(4deg);
  animation: float 5s ease-in-out infinite;
}
.hero__badge-stars {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__badge-text {
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.2;
  font-weight: 500;
}
/* Floating decorative arrow pointing to CTA */
.hero__arrow {
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 90px;
  height: 90px;
  z-index: 4;
  transform: rotate(-15deg);
  opacity: 0.9;
}
.hero__arrow svg { width: 100%; height: 100%; color: white; }
@keyframes float {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-6px); }
}
@media (max-width: 980px) {
  .hero__arrow { display: none; }
}

@media (min-width: 980px) {
  .hero { padding: 64px 0 120px; }
  .hero__inner {
    gap: 80px;
  }
}

/* ─── CLIENTS LOGOS BAR ──────────────────────────────────────────── */

.section--clients {
  padding: 64px 0 56px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border-soft);
}
.clients__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.clients__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-subtle);
}
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
}
/* Wrapper qui normalise la "boîte" de chaque logo — tous les boîtes ont la même taille,
   les images à l'intérieur se centrent. Donne une uniformité visuelle. */
.clients__logo-wrap {
  flex: 1 1 0;
  min-width: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.clients__logo-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Noir et blanc unifié — pour SVG transparent ou PNG transparent */
  filter: grayscale(100%) brightness(0) contrast(1);
  opacity: 0.55;
  mix-blend-mode: multiply;
  transition: opacity 0.2s var(--e-out), transform 0.2s var(--e-out);
}
.clients__logo-wrap:hover img { opacity: 0.85; transform: scale(1.04); }
/* Petits ajustements par type */
.clients__logo-wrap.clients__logo--md img { max-height: 100%; }
/* Typos massives (Fizz, Cascades, Bixi, Tanguay) — réduire pour ne pas dominer */
.clients__logo-wrap.clients__logo--lg img {
  max-height: 70%;
  max-width: 85%;
}
/* Logos PNG carrés avec FOND BLANC (ex: Econofitness) :
   - pas de brightness:0 (sinon fond blanc → bloc noir)
   - flex-grow plus important pour leur donner plus de largeur
   - scale agressif pour compenser leur ratio carré (moins de présence visuelle) */
.clients__logo-wrap.clients__logo--xl {
  flex: 1.5 1 0;
}
.clients__logo-wrap.clients__logo--xl img {
  max-height: 150%;
  max-width: 150%;
  filter: grayscale(100%) contrast(1.4);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .clients__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .clients__logo-wrap { flex: 0 1 calc(25% - 32px); height: 44px; max-width: 110px; }
}
@media (max-width: 480px) {
  .clients__logos { gap: 24px; }
  .clients__logo-wrap { flex: 0 1 calc(33% - 24px); height: 36px; }
}

/* ─── SHOWCASE (mockup produit) ──────────────────────────────────── */

.section--showcase {
  background: var(--c-bg-cream);
  position: relative;
  overflow: hidden;
}
.section--showcase::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 14, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.showcase__head { max-width: 540px; }
.showcase__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
}
.showcase__list li::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--c-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7L6 10L11 4' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(226, 14, 44, 0.3);
}
.showcase__list li strong { font-weight: 700; }
.showcase__media {
  position: relative;
}
.showcase__image {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(15, 15, 17, 0.18), 0 12px 32px rgba(15, 15, 17, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.showcase__image-deco {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px dashed rgba(226, 14, 44, 0.25);
  border-radius: var(--r-lg);
  z-index: -1;
  pointer-events: none;
}
.showcase__badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: white;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.showcase__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.showcase__badge-text {
  font-size: 13px;
  line-height: 1.3;
}
.showcase__badge-text strong { display: block; font-weight: 700; color: var(--c-text); }
@media (min-width: 980px) {
  .showcase-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

/* ─── EQUIPE (people photo) ──────────────────────────────────────── */

.section--equipe {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.equipe__media-wrap {
  position: relative;
}
.equipe__image {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(15, 15, 17, 0.2);
}
.equipe__media-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-red);
  border-radius: var(--r-lg);
  transform: translate(20px, 20px);
  z-index: -1;
}
.equipe__head { max-width: 520px; }
.equipe__quote {
  margin-top: 24px;
  padding: 24px;
  background: var(--c-bg-cream);
  border-left: 4px solid var(--c-red);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
}
@media (min-width: 980px) {
  .equipe-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
  }
}

/* ─── ARSENAL DE CROISSANCE (LP générique) ────────────────────────── */

.section--arsenal {
  background: var(--c-bg);
  position: relative;
}
.arsenal-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 980px)  { .arsenal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .arsenal-grid { grid-template-columns: 1fr; } }

.arsenal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15, 15, 17, 0.08);
  border-radius: 20px;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: var(--c-text);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  overflow: hidden;
}
.arsenal-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(226, 14, 44, 0) 0%, rgba(226, 14, 44, 0.03) 100%);
  opacity: 0; transition: opacity 280ms ease;
  pointer-events: none;
}
.arsenal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(226, 14, 44, 0.12);
  border-color: rgba(226, 14, 44, 0.25);
}
.arsenal-card:hover::before { opacity: 1; }

.arsenal-card--featured {
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
  border-color: rgba(226, 14, 44, 0.28);
}
.arsenal-card__badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c-brand);
  color: #fff;
}

.arsenal-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.arsenal-card__icon svg { width: 28px; height: 28px; }
.arsenal-card__icon--sem    { background: #f5faff; }
.arsenal-card__icon--seo    { background: #fff5f6; color: var(--c-brand); }
.arsenal-card__icon--geo    { background: linear-gradient(135deg, #fde2eb 0%, #fff5f7 100%); color: var(--c-brand); }
.arsenal-card__icon--social { background: #fff5f6; color: var(--c-brand); }
.arsenal-card__icon--email  { background: #fff5f6; color: var(--c-brand); }

.arsenal-card__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.arsenal-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--c-text-dark);
  line-height: 1.2;
  margin: 0;
}
.arsenal-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-brand);
  background: rgba(226, 14, 44, 0.08);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.arsenal-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-subtle);
  margin: 0 0 22px;
  flex-grow: 1;
}
.arsenal-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--c-brand);
  transition: gap 220ms ease;
}
.arsenal-card__cta svg { width: 14px; height: 14px; transition: transform 220ms ease; }
.arsenal-card:hover .arsenal-card__cta { gap: 12px; }
.arsenal-card:hover .arsenal-card__cta svg { transform: translateX(2px); }

/* ─── BÉNÉFICES ──────────────────────────────────────────────────── */

.section--benefices {
  background: var(--c-bg);
  position: relative;
}
.section--benefices::after {
  content: "";
  position: absolute;
  top: 80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(226, 14, 44, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.section--benefices::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 200vw;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-border) 30%, var(--c-border) 70%, transparent 100%);
}

.benefices-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

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

.benefice {
  position: relative;
  background: white;
  padding: 40px 32px 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--e-out);
  overflow: hidden;
  isolation: isolate;
}
.benefice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--c-red-soft) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s var(--e-out);
}
.benefice:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(226, 14, 44, 0.3);
}
.benefice:hover::before { opacity: 1; }

.benefice__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--f-accent);
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: var(--c-bg-soft);
  line-height: 0.8;
  z-index: -1;
  transition: color 0.3s var(--e-out);
  letter-spacing: -0.02em;
}
.benefice:hover .benefice__num { color: rgba(226, 14, 44, 0.18); }

.benefice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-red-soft) 0%, #FFF8F8 100%);
  font-size: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(226, 14, 44, 0.15);
  border: 1px solid rgba(226, 14, 44, 0.08);
  transition: transform 0.4s var(--e-spring);
}
.benefice:hover .benefice__icon { transform: scale(1.1) rotate(-6deg); }

.benefice__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.benefice__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted);
}
.benefice__desc strong { color: var(--c-text); font-weight: 600; }
.benefice__desc p { margin: 0; }

/* ─── SOCIAL PROOF (logos marquee) ───────────────────────────────── */

.section--social {
  padding: 56px 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
  overflow: hidden;
}
.social__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.social__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-subtle);
}
.social__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  filter: grayscale(100%);
  opacity: 0.55;
}
.social__logos img { max-height: 36px; width: auto; }

/* ─── QUOTE / EDITORIAL ──────────────────────────────────────────── */

.section--quote {
  background: var(--c-bg);
  padding: 100px 0;
}
.quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='%23E20E2C'%3E%3Cpath d='M14 34c0-9 6-16 14-19l3 5c-5 2-9 7-9 12h6v17H14V34zm22 0c0-9 6-16 14-19l3 5c-5 2-9 7-9 12h6v17H36V34z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4;
}
.quote__text {
  font-family: var(--f-accent);
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.32;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  text-wrap: balance;
  padding-bottom: 0.2em;
  overflow: visible;
}
.quote__text strong {
  font-family: var(--f-body);
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(120deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.05em 0.05em 0;
}
.quote__author {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-subtle);
}
.quote__author::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--c-text-subtle);
  margin-right: 12px;
  vertical-align: middle;
}

/* ─── AGENCE STATS (light cream section) ────────────────────────── */

.section--agence {
  background: var(--c-bg-cream);
  color: var(--c-text);
  position: relative;
}
.agence-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.agence-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.agence-stat {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid var(--c-border-soft);
  transition: all 0.3s var(--e-out);
}
.agence-stat:hover {
  border-color: var(--c-red-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.agence-stat__number {
  font-family: var(--f-display);
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  overflow-wrap: normal;
}
/* Non-numeric stats (e.g. "Google Partner") — render with smaller, weight 700 */
.agence-stat--text .agence-stat__number {
  font-family: var(--f-body);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-top: 16px;
  margin-bottom: 14px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.agence-stat__label {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.4;
  max-width: 240px;
  margin: 0 auto;
}
/* Google Partner badge stat */
.agence-stat--badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.agence-stat__badge {
  width: 116px;
  height: auto;
  margin-bottom: 16px;
}
.agence-stat__badge--qaseo {
  width: 200px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
/* Multi-partenaires sociaux : Meta Business Partner badge + TikTok + LinkedIn + Reddit */
.agence-stat--social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Meta Business Partner — vrai badge officiel (image) */
.meta-partner-badge {
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 8px;
}
.meta-partner-badge__img {
  width: 200px;
  height: auto;
  display: block;
}

.agence-stat__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.agence-stat__partner {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--e-spring);
}
.agence-stat__partner:hover { transform: translateY(-3px) scale(1.05); }
.agence-stat__partner svg { width: 22px; height: 22px; }
.agence-stat__partner--tiktok   { background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%); }
.agence-stat__partner--linkedin { background: linear-gradient(135deg, #0A66C2 0%, #004182 100%); }
.agence-stat__partner--reddit   { background: white; padding: 2px; }
.agence-stat__partner--reddit img { width: 100%; height: 100%; }

/* ─── DIFFÉRENCIATEURS ──────────────────────────────────────────── */

.section--diff {
  background: var(--c-bg-cream);
  position: relative;
}
.diff-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.diffs {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  counter-reset: diff;
}
.diff {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 32px;
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-xs);
  align-items: start;
  transition: all 0.3s var(--e-out);
  counter-increment: diff;
}
.diff:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 14, 44, 0.2);
}
.diff__num {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: white;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.diff__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.diff__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted);
}
.diff__desc strong { color: var(--c-text); font-weight: 600; }
.diff__desc p { margin: 0; }

/* ─── AUDIT (form section) ──────────────────────────────────────── */

.section--audit {
  background: var(--c-ink);
  color: white;
  position: relative;
  overflow: visible;
}
/* Wrap deco overflows in a separate layer so we can keep section overflow visible */
.section--audit > .container { position: relative; z-index: 1; }
.section--audit .section__title,
.section--audit .section__title strong {
  line-height: 1.35 !important;
  padding-bottom: 0.25em !important;
  overflow: visible !important;
  display: inline-block;
}
.section--audit .audit__intro h2 {
  margin-bottom: 32px;
}
.section--audit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 50%, rgba(226, 14, 44, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(black, black);
}
.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}
.audit__intro p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 540px;
}
.audit__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.audit__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.audit__benefits li::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 7L6 10L11 4' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(226, 14, 44, 0.4);
}

/* Audit form card */
.audit-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 40px 32px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.audit-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(226, 14, 44, 0.6) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(226, 14, 44, 0.3) 100%);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.audit-form__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: white;
}
.audit-form__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.audit-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.audit-form input,
.audit-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  color: white;
  transition: all 0.2s var(--e-default);
  margin-bottom: 12px;
}
.audit-form input::placeholder,
.audit-form textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.audit-form input:focus,
.audit-form textarea:focus {
  outline: none;
  border-color: var(--c-red-coral);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(226, 14, 44, 0.15);
}
.audit-form textarea { resize: vertical; min-height: 96px; font-family: inherit; }
@media (max-width: 540px) {
  .audit-form__row { grid-template-columns: 1fr; }
}
@media (min-width: 980px) {
  .audit-grid { grid-template-columns: 1.05fr 1fr; gap: 96px; }
}

/* ─── STATS MARCHÉ ──────────────────────────────────────────────── */

.section--marche { background: var(--c-bg); }
.marche-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.marche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.marche-stat {
  position: relative;
  padding: 48px 32px 32px;
  background: var(--c-bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-soft);
  text-align: center;
  overflow: hidden;
  transition: all 0.3s var(--e-out);
}
.marche-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-red), var(--c-red-coral));
  border-radius: 0 0 4px 4px;
}
.marche-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
  border-color: rgba(226, 14, 44, 0.2);
}
.marche-stat__number {
  font-family: var(--f-display);
  font-size: clamp(64px, 7.5vw, 104px);
  font-weight: 700;
  line-height: 0.95;
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.marche-stat__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 16px;
}
.marche-stat__text p { margin: 0; }
.marche-stat__source {
  display: inline-block;
  font-size: 11px;
  color: var(--c-text-subtle);
  font-style: italic;
  background: var(--c-bg);
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
}

/* ─── FAQ ────────────────────────────────────────────────────────── */

.section--faq {
  background: var(--c-bg-soft);
  position: relative;
}
.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: all 0.25s var(--e-out);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 14, 44, 0.2);
}
.faq-item__q {
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  letter-spacing: -0.01em;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M7 1.5V12.5M1.5 7H12.5' stroke='%23E20E2C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.25s var(--e-out);
  flex-shrink: 0;
}
.faq-item[open] .faq-item__q::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M1.5 7H12.5' stroke='%23E20E2C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-color: var(--c-red-soft);
  transform: rotate(180deg);
}
.faq-item__a {
  padding: 0 28px 22px;
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item__a strong { color: var(--c-text); font-weight: 600; }
.faq-item__a p { margin: 0; }

/* ─── PROCESS (timeline) ────────────────────────────────────────── */

.section--process { background: var(--c-bg); }
.process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.process-list {
  display: grid;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.process-list::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-red-soft) 0%, var(--c-bg-soft) 100%);
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 16px 0;
  align-items: flex-start;
  position: relative;
}
.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--c-red);
  color: var(--c-red);
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--e-out);
  box-shadow: 0 0 0 6px white;
}
.process-step:hover .process-step__num {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: white;
  box-shadow: 0 0 0 6px white, var(--shadow-red);
  transform: scale(1.05);
}
.process-step__body {
  background: var(--c-bg-soft);
  padding: 24px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border-soft);
  flex: 1;
  min-width: 0;
  transition: all 0.3s var(--e-out);
  margin-top: 4px;
}
.process-step:hover .process-step__body {
  background: white;
  border-color: rgba(226, 14, 44, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.process-step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.process-step__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted);
}
.process-step__desc strong { color: var(--c-text); font-weight: 600; }
.process-step__desc p { margin: 0; }

/* ─── CTA FINAL ─────────────────────────────────────────────────── */

.section--final {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-deep) 100%);
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section--final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.final__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: white;
  text-wrap: balance;
}
.final__title strong { font-weight: 800; text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 4px; text-decoration-color: rgba(255, 255, 255, 0.4); }
.final__subtitle {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */

.site-footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 32px 0 24px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__logo {
  font-weight: 800;
  font-size: 20px;
  color: white;
  letter-spacing: -0.02em;
}

/* ─── REVEAL ON SCROLL ──────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--e-out), transform 0.7s var(--e-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   CALCULATEUR ROI — Section interactive
   ═══════════════════════════════════════════════════════════════════════ */

.section--calc {
  background: linear-gradient(180deg, var(--c-bg-cream) 0%, var(--c-bg) 100%);
  position: relative;
}
.calc-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.calc-trust {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 24px auto 0;
  padding: 10px 18px;
  background: rgba(226, 14, 44, 0.06);
  border: 1px solid rgba(226, 14, 44, 0.18);
  border-radius: 999px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.4;
  text-align: left;
}
.calc-trust strong { color: var(--c-brand); font-weight: 700; }
.calc-trust__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10A37F;
  box-shadow: 0 0 0 0 rgba(16, 163, 127, 0.5);
  animation: calc-trust-pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes calc-trust-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 163, 127, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 163, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 163, 127, 0); }
}
@media (max-width: 600px) {
  .calc-trust { font-size: 12px; padding: 8px 14px; }
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .calc-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
.calc-inputs {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border-soft);
}
.calc-field { margin-bottom: 22px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.calc-field-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-red);
  text-transform: none;
  letter-spacing: 0;
}
.calc-select, .calc-slider {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--c-bg-soft);
  color: var(--c-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23E20E2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.calc-select:focus, .calc-slider:focus { outline: none; border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(226,14,44,0.12); }
.calc-slider {
  padding: 0; height: 8px;
  background: linear-gradient(to right, var(--c-red) 0%, var(--c-red) var(--val, 25%), var(--c-border) var(--val, 25%), var(--c-border) 100%);
  border: 0;
  border-radius: 999px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--c-red);
  cursor: grab;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: white; border: 3px solid var(--c-red); cursor: grab; box-shadow: var(--shadow-sm); }

.calc-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
}
.calc-platform {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.calc-platform input { position: absolute; opacity: 0; pointer-events: none; }
.calc-platform-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 6px;
  background: var(--c-bg-soft);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600;
  color: var(--c-text-muted);
  transition: all 0.15s var(--e-default);
}
.calc-platform input:checked + .calc-platform-card {
  background: var(--c-red-soft);
  border-color: var(--c-red);
  color: var(--c-red-deep);
}
.calc-platform-card svg { width: 22px; height: 22px; }

.calc-results {
  background: var(--c-ink);
  color: white;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.calc-results::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(226, 14, 44, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.calc-results > * { position: relative; z-index: 1; }
.calc-results__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.calc-results__title {
  font-size: 24px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 28px; line-height: 1.2;
}
.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.calc-result {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 18px 16px;
  backdrop-filter: blur(8px);
}
.calc-result__label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-bottom: 6px;
}
.calc-result__value {
  font-family: var(--f-display);
  font-size: 36px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--c-red-coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.calc-result__hint {
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.calc-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--c-red);
  color: white;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.calc-cta:hover { background: var(--c-red-deep); transform: translateY(-2px); }
.calc-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.4);
  text-align: center; margin-top: 14px; line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════
   REVIEW MODE — Module de commentaires (visible avec ?review=1 dans URL)
   ═══════════════════════════════════════════════════════════════════════ */

.fb-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-red); color: #fff; border: none;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(184, 0, 28, 0.45);
  transition: transform 0.15s var(--e-default);
}
.fb-toggle:hover { transform: scale(1.08); }
.fb-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; border-radius: 10px;
  background: var(--c-ink); color: #fff;
  font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  padding: 0 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.fb-panel {
  position: fixed; bottom: 92px; right: 24px; z-index: 9998;
  width: 380px; max-height: 70vh;
  background: #fff; border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  display: none; flex-direction: column; overflow: hidden;
}
.fb-panel.open { display: flex; }
.fb-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid #F0F0F0;
  background: #FAFAFA;
}
.fb-header-t { font-weight: 700; font-size: 15px; color: var(--c-ink); }
.fb-header-actions { display: flex; gap: 8px; }
.fb-header-actions button {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: #888; padding: 4px 8px; border-radius: 6px;
}
.fb-header-actions button:hover { background: #F0F0F0; color: var(--c-ink); }
.fb-copy-btn {
  font-size: 12px !important; font-weight: 600;
  padding: 6px 12px !important; background: #F4F4F5 !important;
  border-radius: 6px !important; color: var(--c-ink) !important;
}
.fb-copy-btn:hover { background: var(--c-red-soft) !important; color: var(--c-red) !important; }
.fb-body { padding: 16px 18px; overflow-y: auto; flex: 1; }
.fb-section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--c-red); margin-bottom: 10px;
}
.fb-pick-btn {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 10px 14px;
  background: #FAFAFA; border: 2px dashed #D4D4D8;
  border-radius: 8px; font-family: inherit;
  font-size: 13px; font-weight: 600; color: #71717A;
  cursor: pointer; margin-bottom: 10px;
  transition: all 0.15s;
}
.fb-pick-btn:hover, .fb-pick-btn.active {
  border-color: var(--c-red); color: var(--c-red); background: var(--c-red-soft);
}
.fb-target-preview {
  display: none; padding: 10px 12px;
  background: #FFFBEB; border: 1px solid #FCD34D;
  border-radius: 8px; margin-bottom: 10px; position: relative;
}
.fb-target-preview.has-target { display: block; }
.fb-target-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #92400E;
}
.fb-target-text {
  font-size: 12px; color: var(--c-ink); margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.fb-target-clear {
  position: absolute; top: 6px; right: 6px;
  background: none; border: none; font-size: 14px; cursor: pointer;
  color: #92400E; padding: 2px 6px;
}
.fb-textarea {
  width: 100%; min-height: 80px;
  border: 1px solid #E4E4E7; border-radius: 8px;
  padding: 10px 12px; font-family: inherit;
  font-size: 13px; resize: vertical; outline: none;
  line-height: 1.4;
}
.fb-textarea:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(226,14,44,0.1); }
.fb-submit {
  width: 100%; margin-top: 8px; padding: 10px;
  background: var(--c-red); color: #fff; border: none;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.fb-submit:hover { background: var(--c-red-deep); }
.fb-divider { height: 1px; background: #F0F0F0; margin: 16px 0; }
.fb-list-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #71717A; margin-bottom: 10px;
}
.fb-item {
  background: #FAFAFA; border: 1px solid #E4E4E7;
  border-radius: 8px; padding: 10px 12px; margin-bottom: 8px;
  position: relative;
}
.fb-item-page {
  font-size: 10px; font-weight: 700; color: var(--c-red);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.fb-item-target {
  font-size: 11px; color: #525258; background: #fff;
  border: 1px solid #E4E4E7; border-left: 3px solid #FCD34D;
  border-radius: 4px; padding: 4px 8px; margin: 4px 0;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.fb-item-text { font-size: 12px; color: var(--c-ink); margin-top: 4px; line-height: 1.4; }
.fb-item-time { font-size: 10px; color: #A1A1AA; margin-top: 4px; }
.fb-item-del {
  position: absolute; top: 6px; right: 6px;
  background: none; border: none; color: #A1A1AA;
  cursor: pointer; font-size: 16px; padding: 2px 6px;
}
.fb-item-del:hover { color: var(--c-red); }
.fb-empty { font-size: 13px; color: #A1A1AA; text-align: center; padding: 20px 0; }
.fb-reset-btn {
  width: 100%; margin-top: 8px; padding: 8px;
  background: #fff; color: #71717A;
  border: 1px solid #E4E4E7; border-radius: 8px;
  font-size: 12px; cursor: pointer; font-family: inherit;
}
.fb-reset-btn:hover { color: var(--c-red); border-color: var(--c-red); }

body.fb-picking * { cursor: crosshair !important; }
body.fb-picking .fb-toggle,
body.fb-picking .fb-panel,
body.fb-picking .fb-panel * { cursor: auto !important; }
.fb-highlight { outline: 2px solid var(--c-red) !important; outline-offset: 2px !important; }
