/* ============================================================
   AGENCE MERCURE — Aurora UI
   Palette issue du logo : marine + dégradé bleu → violet → rose
   Typo : Outfit (titres) / Work Sans (corps)
   ============================================================ */

:root {
  /* Couleurs de marque */
  --navy: #101a33;
  --navy-deep: #0b1226;
  --blue: #2e7cf6;
  --violet: #7c3aed;
  --magenta: #d946ef;
  --pink: #ec4899;
  --orange: #f97316;

  /* Sémantique */
  --bg: #f7f8fd;
  --surface: #ffffff;
  --text: #1b2540;
  --text-muted: #5a6486;
  --border: #e4e8f4;
  --ring: #2e7cf6;

  /* Dégradé signature */
  --grad: linear-gradient(100deg, var(--blue) 0%, var(--violet) 45%, var(--pink) 100%);
  --grad-soft: linear-gradient(100deg, rgba(46, 124, 246, .12), rgba(124, 58, 237, .12), rgba(236, 72, 153, .12));

  /* Rythme */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(16, 26, 51, .06);
  --shadow-md: 0 8px 30px rgba(16, 26, 51, .10);
  --shadow-glow: 0 8px 40px rgba(124, 58, 237, .35);

  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 var(--space-2); }

a { color: var(--blue); }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.section { padding: var(--space-7) 0; }
.section--tight { padding: var(--space-6) 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-1);
}

.lead { font-size: 1.15rem; color: var(--text-muted); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  touch-action: manipulation;
}

.btn svg { flex: 0 0 auto; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 18px rgba(124, 58, 237, .30);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--primary:active { transform: translateY(0) scale(.98); }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

.btn--outline {
  background: var(--surface);
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }

/* ---------- Navbar ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .25s ease, box-shadow .25s ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 72px;
}

.nav__logo img { height: 40px; width: auto; }

/* Sur hero sombre, le logo repose sur une pastille claire */
.nav__logo {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .92);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .98rem;
  text-decoration: none;
  color: var(--navy);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.nav--dark:not(.is-scrolled) .nav__links a { color: rgba(255, 255, 255, .88); }

.nav__links a:hover { color: var(--violet); }
.nav__links a[aria-current="page"] {
  color: var(--violet);
  border-bottom-color: var(--violet);
}
.nav--dark:not(.is-scrolled) .nav__links a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--pink);
}

.nav__cta { margin-left: var(--space-2); }
.nav__cta .btn { min-height: 42px; padding: 8px 22px; font-size: .95rem; }

.nav__burger {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--navy);
}
.nav--dark:not(.is-scrolled) .nav__burger { color: #fff; }

@media (max-width: 860px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: var(--space-2) var(--space-3) var(--space-3);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 14px 8px; color: var(--navy) !important; border-bottom: 1px solid var(--border); }
  .nav__cta { margin: var(--space-2) 0 0; }
}

/* ---------- Hero aurora ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  padding: 170px 0 110px;
}

.hero--sub { padding: 150px 0 80px; }

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
  will-change: transform;
}

.hero__blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--blue), transparent 65%);
  top: -180px; left: -120px;
  animation: drift1 11s ease-in-out infinite alternate;
}
.hero__blob--2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--violet), transparent 65%);
  top: -80px; right: -160px;
  animation: drift2 13s ease-in-out infinite alternate;
}
.hero__blob--3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--pink), transparent 65%);
  bottom: -220px; left: 30%;
  animation: drift3 9s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(70px, 50px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(-60px, 60px) scale(1.08); } }
@keyframes drift3 { to { transform: translate(50px, -50px) scale(1.15); } }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 780px;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  margin-bottom: var(--space-3);
}

.hero__badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 50% { opacity: .4; } }

.hero h1 { color: #fff; margin-bottom: var(--space-3); }
.hero .lead { color: rgba(255, 255, 255, .78); max-width: 620px; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
  position: relative;
  z-index: 1;
}

.stat {
  padding: var(--space-3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  background: linear-gradient(100deg, #7db4ff, #b699ff, #ff9ecf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.stat__label { font-size: .92rem; color: rgba(255, 255, 255, .72); }

@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Marquee plateformes ---------- */

.platforms {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: var(--space-3) 0;
  overflow: hidden;
}

.platforms__label {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-7);
  padding-right: var(--space-7);
  flex-shrink: 0;
  animation: marquee 26s linear infinite;
}

@keyframes marquee { to { transform: translateX(-100%); } }

.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #9aa3bf;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s ease;
}
.marquee__item:hover { color: var(--navy); }

/* ---------- Cards services ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }

@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  color: var(--violet);
  margin-bottom: var(--space-2);
}

.card p { color: var(--text-muted); margin-bottom: 0; }

.card__list {
  margin: var(--space-2) 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}
.card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
}
.card__list svg { flex: 0 0 auto; margin-top: 4px; color: var(--pink); }

/* ---------- Étapes méthode ---------- */

.steps { counter-reset: step; }

.step {
  position: relative;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step__num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-2);
}

.step p { color: var(--text-muted); margin: 0; }

/* ---------- Section sombre CTA ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  color: #fff;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .75); max-width: 560px; margin: 0 auto var(--space-4); }

.cta-band .hero__blob { opacity: .45; }

/* ---------- Valeurs / listes iconées ---------- */

.feature-row {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-2) 0;
}

.feature-row__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  color: var(--violet);
}

.feature-row p { color: var(--text-muted); margin: 0; }

/* ---------- Split 2 colonnes ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.split__visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  overflow: hidden;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: var(--space-4);
}

.split__visual img { width: min(70%, 320px); }

/* ---------- Formulaire ---------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
}

.field .req { color: var(--pink); }

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--text);
  padding: 13px 16px;
  min-height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fbfcff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea { resize: vertical; min-height: 130px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .18);
}

.field .hint { font-size: .85rem; color: var(--text-muted); }

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr; gap: var(--space-4); } }

.footer__logo {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .95);
  border-radius: 12px;
  margin-bottom: var(--space-2);
}
.footer__logo img { height: 34px; width: auto; }

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 5px 0; }
.footer a { color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  font-size: .88rem;
}

.footer__baseline {
  font-family: var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
}
.footer__baseline .sep { color: var(--pink); }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Accessibilité mouvement ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .marquee { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   V2 — Animations premium & logos plateformes
   ============================================================ */

/* Barre de progression de lecture */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  pointer-events: none;
}

/* Révélation du titre héro mot à mot */
.word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.word > span { display: inline-block; transform: translateY(115%); }
.words-in .word > span {
  animation: wordUp .85s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes wordUp { to { transform: translateY(0); } }

/* Entrées orchestrées du héro */
.js-anim .hero__badge,
.js-anim .hero .lead,
.js-anim .hero__actions,
.js-anim .stats {
  animation: fadeUp .9s cubic-bezier(.22, 1, .36, 1) both;
}
.js-anim .hero__badge { animation-delay: .05s; }
.js-anim .hero .lead { animation-delay: .45s; }
.js-anim .hero__actions { animation-delay: .6s; }
.js-anim .stats { animation-delay: .75s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
}

/* Halo qui suit la souris dans le héro */
.hero__pointer-glow {
  position: absolute;
  top: 0; left: 0;
  width: 680px; height: 680px;
  margin: -340px 0 0 -340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 124, 246, .18), rgba(124, 58, 237, .12) 42%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Balayage lumineux lent du héro */
.hero::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 0deg,
    transparent 0 68%,
    rgba(217, 70, 239, .14) 78%,
    rgba(46, 124, 246, .14) 88%,
    transparent 96%);
  animation: sweep 28s linear infinite;
  pointer-events: none;
}
@keyframes sweep { to { transform: rotate(1turn); } }

/* Bouton primaire : dégradé vivant + reflet au survol */
.btn { position: relative; overflow: hidden; }
.btn--primary {
  background-size: 170% 100%;
  background-position: 0% 50%;
  transition: transform .2s ease, box-shadow .2s ease, background-position .5s ease;
}
.btn--primary:hover { background-position: 95% 50%; }
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, .45) 50%, transparent 72%);
  transform: translateX(-140%) skewX(-14deg);
  pointer-events: none;
}
.btn--primary:hover::after { animation: shine .9s ease; }
@keyframes shine { to { transform: translateX(140%) skewX(-14deg); } }

/* Reveal enrichi : flou + montée */
.reveal {
  filter: blur(10px);
  transform: translateY(34px) scale(.985);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1), filter .8s ease;
}
.reveal.is-visible { filter: blur(0); transform: none; }

/* Étapes : relief au survol */
.step { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, .35);
}

/* Marquee : vrais logos, pause au survol */
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  color: #2c3554;
  font-size: 1.15rem;
  gap: 12px;
}
.marquee__item svg { flex: 0 0 auto; }

/* Mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; transform: none; }
  .word > span { transform: none; animation: none; }
  .hero::before, .hero__pointer-glow, .scroll-progress { display: none; }
  .js-anim .hero__badge, .js-anim .hero .lead,
  .js-anim .hero__actions, .js-anim .stats { animation: none; }
}

/* ============================================================
   V3 — Scrollytelling GSAP + logos officiels
   ============================================================ */

/* Quand GSAP pilote les révélations, on neutralise le système CSS */
html.gsap-on .reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* Marquee : logos officiels (le height:auto global écrase l'attribut HTML) */
.marquee__item img { display: inline-block; height: 28px; width: auto; }
.marquee__item img[src*="google-ads"] { height: 30px; }
.marquee__item img[src*="meta"] { height: 24px; }
.marquee__item img[src*="outbrain"] { height: 22px; }
.marquee__item img[src*="taboola"] { height: 26px; }

/* Méthode : rail horizontal épinglé (desktop, GSAP actif) */
@media (min-width: 900px) {
  html.gsap-on .steps-section { overflow: hidden; }
  html.gsap-on .steps-section .container { max-width: none; padding: 0; }
  html.gsap-on .steps-section .section-head {
    max-width: 640px;
    margin-inline: auto;
  }
  html.gsap-on .steps-section .steps {
    display: flex;
    gap: var(--space-3);
    width: max-content;
    padding-left: max(24px, calc((100vw - 1160px) / 2));
    padding-right: 24px;
    will-change: transform;
  }
  html.gsap-on .steps-section .step {
    flex: 0 0 auto;
    width: min(42vw, 500px);
    padding: var(--space-5);
  }
  html.gsap-on .steps-section .step__num { font-size: 3.4rem; }
}
