/* ==========================================================================
   SINONE — Expert Universe
   Feuille de styles principale
   Palette issue du logo officiel : #2175A7 · #249479 · #8CB94A
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marque */
  --blue: #2175a7;
  --blue-600: #1b6089;
  --blue-700: #154c6d;
  --blue-800: #103a53;
  --navy: #0a2739;
  --navy-deep: #061a27;
  --teal: #249479;
  --teal-600: #1c7a63;
  --green: #8cb94a;
  --green-600: #78a23a;

  /* Neutres */
  --ink: #0e1c26;
  --ink-700: #2e4453;
  --ink-500: #5a7182;
  --ink-400: #7c8f9d;
  --line: #e2e9ee;
  --line-soft: #eef3f6;
  --surface: #ffffff;
  --surface-2: #f5f8fa;
  --surface-3: #eaf1f6;

  /* Dégradés */
  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--teal) 55%, var(--green) 100%);
  --grad-navy: linear-gradient(160deg, #0d3b56 0%, #0a2739 100%);

  /* Typographie */
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.1rem, 1.35rem + 3.1vw, 3.85rem);
  --fs-h1: clamp(1.95rem, 1.35rem + 2.4vw, 3.1rem);
  --fs-h2: clamp(1.6rem, 1.2rem + 1.6vw, 2.45rem);
  --fs-h3: clamp(1.16rem, 1.03rem + 0.5vw, 1.42rem);
  --fs-lead: clamp(1.02rem, 0.97rem + 0.3vw, 1.18rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.8rem;

  /* Rythme */
  --gutter: clamp(1.15rem, 0.7rem + 1.9vw, 2.5rem);
  --section-y: clamp(3.75rem, 2.4rem + 5.2vw, 7rem);
  --maxw: 1200px;
  --maxw-narrow: 780px;

  /* Habillage */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 39, 57, 0.06), 0 2px 8px rgba(10, 39, 57, 0.05);
  --shadow: 0 4px 12px rgba(10, 39, 57, 0.07), 0 14px 34px rgba(10, 39, 57, 0.08);
  --shadow-lg: 0 10px 24px rgba(10, 39, 57, 0.1), 0 28px 60px rgba(10, 39, 57, 0.13);
  --ring: 0 0 0 3px rgba(33, 117, 167, 0.32);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 78px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.32; }

p { text-wrap: pretty; }

a { color: var(--blue-600); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--teal); }

ul, ol { padding-left: 1.15rem; }

strong { color: var(--ink); font-weight: 650; }

button, input, textarea, select { font: inherit; color: inherit; }

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

::selection { background: rgba(140, 185, 74, 0.3); color: var(--ink); }

/* --------------------------------------------------------------------------
   3. Utilitaires de mise en page
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.22s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

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

/* En-têtes de section --------------------------------------------------- */
.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow {
  background: rgba(36, 148, 121, 0.09);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
}

.lead { font-size: var(--fs-lead); color: var(--ink-500); }
.section-head p { margin-top: 1rem; font-size: var(--fs-lead); color: var(--ink-500); }

/* Boutons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(33, 117, 167, 0.3);
}
.btn--primary:hover { background: var(--blue-600); color: #fff; box-shadow: 0 10px 26px rgba(33, 117, 167, 0.38); }

.btn--accent {
  background: var(--green);
  color: #10240a;
  box-shadow: 0 6px 18px rgba(140, 185, 74, 0.34);
}
.btn--accent:hover { background: var(--green-600); color: #0d1f07; box-shadow: 0 10px 26px rgba(140, 185, 74, 0.42); }

.btn--ghost { border-color: var(--line); background: #fff; color: var(--ink); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: #fff; }

.btn--on-dark { border-color: rgba(255, 255, 255, 0.34); color: #fff; background: rgba(255, 255, 255, 0.05); }
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; }

.btn--sm { padding: 0.68rem 1.2rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --------------------------------------------------------------------------
   4. En-tête
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-xs);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 1.5rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.topbar__list a,
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; color: rgba(255, 255, 255, 0.82); }
.topbar__list a:hover { color: var(--green); }
.topbar__list svg { flex: none; opacity: 0.85; }
.topbar__social { display: flex; gap: 0.4rem; }
.topbar__social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.topbar__social a:hover { background: var(--green); color: var(--navy); }

@media (max-width: 860px) {
  .topbar__item--address { display: none; }
}
@media (max-width: 560px) {
  .topbar__social { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__list { gap: 1rem; justify-content: center; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(10, 39, 57, 0.09); background: rgba(255, 255, 255, 0.97); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand { flex: none; display: inline-flex; align-items: center; }
.brand img { height: clamp(38px, 3.4vw, 46px); width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative;
  display: block;
  font-family: var(--font-head);
  font-weight: 550;
  font-size: 0.92rem;
  color: var(--ink-700);
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s var(--ease);
}
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--blue); font-weight: 650; }

.header__cta { flex: none; }

.nav-toggle {
  display: none;
  flex: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.26s var(--ease), top 0.26s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1060px) {
  /* IMPORTANT : un « backdrop-filter » actif fait de l'en-tête le bloc conteneur
     de ses descendants en position fixed. Le panneau de menu se positionnerait
     alors par rapport à l'en-tête (78 px de haut) au lieu de la fenêtre, et
     serait donc inutilisable. On désactive donc le flou à partir de cette
     largeur et on rend le fond entièrement opaque pour compenser. */
  .header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header.is-stuck { background: #fff; }

  .nav-toggle { display: grid; }
  .header__cta { display: none; }

  /* Le panneau démarre sous l'en-tête : sa position exacte est mesurée en
     JavaScript à l'ouverture (--nav-top), ce qui reste juste que la barre
     supérieure soit visible, masquée par le défilement ou repliée sur deux
     lignes. La valeur de repli couvre le cas le plus courant. */
  .nav {
    position: fixed;
    top: var(--nav-top, 120px);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(340px, 86vw);
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(10, 39, 57, 0.16);
    padding: 1.5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.34s var(--ease), visibility 0.34s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    margin-left: 0;
    z-index: 105;
    visibility: hidden;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav__link { padding: 0.85rem 0.5rem; font-size: 1.02rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--blue); }
  .nav__cta { margin-top: 1.4rem; }
  .nav__cta .btn { width: 100%; }
}
@media (min-width: 1061px) {
  .nav__cta { display: none; }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 39, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 99;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 130% at 82% 8%, #14506f 0%, #0d3b56 42%, var(--navy-deep) 100%),
              var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -180px; top: -240px;
  background: radial-gradient(circle, rgba(140, 185, 74, 0.22) 0%, rgba(140, 185, 74, 0) 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  left: -220px; bottom: -280px;
  background: radial-gradient(circle, rgba(36, 148, 121, 0.2) 0%, rgba(36, 148, 121, 0) 68%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 540px; margin-inline: auto; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__badge b {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--grad-brand);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04121b;
  font-weight: 700;
}

.hero h1 {
  font-size: var(--fs-hero);
  color: #fff;
  letter-spacing: -0.028em;
  margin-bottom: 1.35rem;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--green) 10%, var(--teal) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.hero__lead {
  font-size: clamp(1.02rem, 0.95rem + 0.42vw, 1.22rem);
  color: rgba(255, 255, 255, 0.76);
  max-width: 56ch;
  margin-bottom: 2.1rem;
}

.hero__actions { margin-bottom: 2.6rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.hero__stats dt {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.hero__stats dd {
  margin: 0.3rem 0 0;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.hero__float {
  position: absolute;
  left: -22px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: var(--font-head);
  max-width: 84%;
}
.hero__float .dot {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(140, 185, 74, 0.16);
  color: var(--green-600);
}
@media (max-width: 560px) { .hero__float { left: 8px; bottom: 12px; font-size: var(--fs-xs); } }

/* Bandeau intérieur de page --------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(110% 150% at 78% 0%, #14506f 0%, #0d3b56 45%, var(--navy-deep) 100%),
              var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-block: clamp(2.75rem, 1.8rem + 4.4vw, 5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -230px;
  background: radial-gradient(circle, rgba(140, 185, 74, 0.2) 0%, rgba(140, 185, 74, 0) 68%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 1.05rem; }
.page-hero p { font-size: var(--fs-lead); color: rgba(255, 255, 255, 0.74); }
.page-hero .eyebrow { color: var(--green); }

.breadcrumb { margin-bottom: 1.15rem; font-size: var(--fs-xs); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 0.45rem; color: rgba(255, 255, 255, 0.55); }
.breadcrumb li + li::before { content: "/"; color: rgba(255, 255, 255, 0.3); }
.breadcrumb a { color: rgba(255, 255, 255, 0.78); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb [aria-current="page"] { color: #fff; }

/* --------------------------------------------------------------------------
   6. Bandeau de confiance
   -------------------------------------------------------------------------- */
.trustbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
}
.trustbar__label {
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--ink-400);
  margin-bottom: 1.5rem;
}
.trustbar__more { text-align: center; margin-top: 1.4rem; }
.trustbar__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue-600);
}
.trustbar__more a svg { flex: none; transition: transform 0.22s var(--ease); }
.trustbar__more a:hover { color: var(--teal-600); }
.trustbar__more a:hover svg { transform: translateX(3px); }

/* Défilement continu des logos */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 156px;
}
/* La boîte est imposée explicitement et c'est object-fit qui met l'image à
   l'échelle. S'en remettre à « max-height: 100% » avec une hauteur auto ne
   contraint pas de façon fiable un élément remplacé : l'image gardait la
   taille dictée par sa largeur et débordait, puis se faisait rogner. */
.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.marquee__item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - clamp(1rem, 0.5rem + 1.5vw, 2rem))); }
}

/* --------------------------------------------------------------------------
   7. Grilles et cartes
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.15rem, 0.8rem + 1.2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.2rem + 0.9vw, 2.1rem);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--ink-500); font-size: 0.96rem; }

.card--tinted { background: var(--surface-2); border-color: transparent; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: rgba(33, 117, 167, 0.09);
  color: var(--blue);
  transition: background 0.28s var(--ease), color 0.28s var(--ease);
}
.card:hover .card__icon { background: var(--grad-brand); color: #fff; }
.card__icon--teal { background: rgba(36, 148, 121, 0.1); color: var(--teal-600); }
.card__icon--green { background: rgba(140, 185, 74, 0.14); color: var(--green-600); }

/* Liste à puces cochées -------------------------------------------------- */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.ticks li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.96rem;
  color: var(--ink-500);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(140, 185, 74, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2378a23a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* --------------------------------------------------------------------------
   8. Sections spécifiques
   -------------------------------------------------------------------------- */

/* Blocs deux colonnes ---------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(2rem, 1.2rem + 3.5vw, 4.5rem);
  align-items: center;
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: var(--radius-lg);
  background: var(--grad-brand);
  opacity: 0.14;
  z-index: -1;
}

/* Expertises : liste numérotée ------------------------------------------- */
.expertise-card { display: flex; flex-direction: column; gap: 1rem; }
.expertise-card__num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  opacity: 0.55;
}

/* Produits --------------------------------------------------------------- */
.product-card {
  display: flex;
  gap: 1.05rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.product-card__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: #fff;
}
.product-card h3 { font-size: 1.03rem; margin-bottom: 0.3rem; }
.product-card p { font-size: 0.9rem; color: var(--ink-500); line-height: 1.55; }

/* Valeurs ---------------------------------------------------------------- */
.value-card { text-align: center; align-items: center; }
.value-card .card__icon { margin-inline: auto; width: 60px; height: 60px; }

/* Profils / équipes ------------------------------------------------------ */
.profile-list { display: grid; gap: 0.8rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); list-style: none; padding: 0; margin: 0; }
.profile-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 550;
  color: var(--ink);
  font-size: 0.96rem;
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.profile-list li:hover { transform: translateY(-3px); border-color: transparent; box-shadow: var(--shadow-sm); }
.profile-list li svg { flex: none; color: var(--teal); }

/* Références ------------------------------------------------------------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
  gap: 1rem;
}
.logo-tile {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
/* Même principe que le bandeau défilant : boîte explicite + object-fit,
   pour que tous les logos s'alignent sur une hauteur commune sans rognage. */
.logo-tile img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.logo-tile:hover img { filter: grayscale(0); opacity: 1; }

.logo-tile--name { text-align: center; }
.logo-tile--name span {
  font-family: var(--font-head);
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.logo-tile--name small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* Chiffres clés (page solution) ------------------------------------------ */
.stat-grid {
  display: grid;
  gap: clamp(1rem, 0.8rem + 0.8vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.stat {
  padding: clamp(1.35rem, 1.1rem + 0.8vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.stat__value {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 1.25rem + 1.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.45rem;
}
.stat h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.stat p { font-size: 0.9rem; color: var(--ink-500); line-height: 1.56; }

/* Maquettes produit ------------------------------------------------------ */
.mockups {
  display: grid;
  gap: clamp(1rem, 0.7rem + 1vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}
.mockup {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(0.9rem, 0.75rem + 0.5vw, 1.3rem);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.mockup:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mockup img { width: 100%; border-radius: 8px; }
.mockup figcaption {
  margin-top: 0.95rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: center;
}
.mockup figcaption small {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* Carte renvoyant vers une fiche produit détaillée ------------------------
   Toute la carte est cliquable : le titre porte le seul lien, étiré en
   superposition. Le libellé « voir la fiche » n'est donc pas un second lien,
   ce qui évite de dupliquer la même destination pour les lecteurs d'écran. */
.card--linked,
.product-card--linked { position: relative; }

.card__badge {
  display: inline-flex;
  align-items: center;
  margin-left: 0.6rem;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: rgba(140, 185, 74, 0.18);
  color: var(--green-600);
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  vertical-align: middle;
}

.card__link { color: inherit; }
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card--linked:hover .card__link,
.product-card--linked:hover .card__link { color: var(--blue); }
.card--linked:focus-within,
.product-card--linked:focus-within {
  border-color: transparent;
  box-shadow: var(--shadow);
}

.product-card__link { margin-top: 0.9rem; }
.product-card__link > * {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--blue-600);
}
.product-card__link svg { flex: none; transition: transform 0.22s var(--ease); }
.card--linked:hover .product-card__link svg,
.product-card--linked:hover .product-card__link svg { transform: translateX(3px); }

/* Secteurs --------------------------------------------------------------- */
.sector-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.sector {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid transparent;
  transition: background 0.26s var(--ease), border-color 0.26s var(--ease);
}
.sector:hover { background: #fff; border-color: var(--line); }
.sector svg { color: var(--teal); margin-bottom: 0.8rem; }
.sector h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.sector p { font-size: 0.88rem; color: var(--ink-500); }

/* Bande d'appel à l'action ----------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--navy) 60%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 1.6rem + 2.8vw, 3.75rem);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  right: -140px; top: -200px;
  background: radial-gradient(circle, rgba(140, 185, 74, 0.26) 0%, rgba(140, 185, 74, 0) 70%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 0.7rem; }
.cta-band p { max-width: 52ch; }
.cta-band__text { flex: 1 1 380px; }

/* --------------------------------------------------------------------------
   9. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(min(100%, 340px), 0.62fr);
  gap: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0 1.1rem;
  margin-bottom: 0;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.field label .req { color: #c2453d; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a7182' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 17px;
  padding-right: 2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: var(--ring);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-400); }
.field .error-msg { font-size: var(--fs-xs); color: #c2453d; min-height: 1.1em; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c2453d; background: #fff6f5; }

.field--check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 0.65rem; }
.field--check input {
  width: 18px; height: 18px;
  flex: none;
  margin-top: 0.22rem;
  accent-color: var(--blue);
  padding: 0;
  border-radius: 4px;
}
.field--check label {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 450;
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--ink-500);
  line-height: 1.55;
}
/* Le message d'erreur occupe toute la largeur, sous la case et son libellé. */
.field--check .error-msg { flex: 0 0 100%; min-height: 0; }
.field--check.is-invalid .error-msg { min-height: 1.1em; }
.field--check.is-invalid input { outline: 2px solid #c2453d; outline-offset: 2px; }

.form-note { margin-top: 1rem; font-size: var(--fs-xs); color: var(--ink-400); }

.form-alert {
  display: none;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.95rem 1.15rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.form-alert.is-visible { display: flex; }
.form-alert--ok { background: rgba(140, 185, 74, 0.13); color: #46661d; border: 1px solid rgba(140, 185, 74, 0.4); }
.form-alert--err { background: #fdf1f0; color: #9c332c; border: 1px solid #f2c9c5; }
.form-alert svg { flex: none; margin-top: 0.15rem; }

/* Coordonnées ------------------------------------------------------------ */
.info-list { display: grid; gap: 0.9rem; list-style: none; padding: 0; margin: 0; }
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.info-item:hover { border-color: transparent; box-shadow: var(--shadow-sm); }
.info-item__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(33, 117, 167, 0.09);
  color: var(--blue);
}
.info-item dt { font-family: var(--font-head); font-size: 0.78rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 0.2rem; }
.info-item dd { margin: 0; font-weight: 550; color: var(--ink); font-size: 0.98rem; }
.info-item dd a { color: var(--ink); }
.info-item dd a:hover { color: var(--blue); }
.info-item dd small { display: block; font-weight: 400; font-size: 0.84rem; color: var(--ink-500); margin-top: 0.15rem; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 300px; border: 0; }

/* --------------------------------------------------------------------------
   10. FAQ / accordéon
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; max-width: 840px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.faq details[open] { border-color: transparent; box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232175a7' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.35rem 1.35rem; color: var(--ink-500); font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   11. Pied de page
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding-top: clamp(3rem, 2.2rem + 3vw, 4.75rem);
  font-size: 0.93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 1rem + 3vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand img { height: 44px; width: auto; margin-bottom: 1.15rem; }
.footer__brand p { max-width: 40ch; margin-bottom: 1.4rem; }

.footer h2 {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer a { color: rgba(255, 255, 255, 0.62); }
.footer a:hover { color: var(--green); }
.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: 0.2rem; color: var(--teal); }

.footer__social { display: flex; gap: 0.55rem; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), transform 0.22s var(--ease);
}
.footer__social a:hover { background: var(--green); color: var(--navy-deep); transform: translateY(-2px); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
}
.footer__bottom ul { display: flex; gap: 1.35rem; flex-wrap: wrap; }

/* Bouton retour en haut --------------------------------------------------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(33, 117, 167, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease), background 0.2s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--teal); }

/* WhatsApp flottant ------------------------------------------------------- */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42);
  transition: transform 0.24s var(--ease);
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
@media (max-width: 480px) { .wa-float { width: 46px; height: 46px; left: 14px; bottom: 14px; } }

/* --------------------------------------------------------------------------
   12. Pages de contenu simple (mentions légales, 404, merci)
   -------------------------------------------------------------------------- */
.prose { max-width: var(--maxw-narrow); }
.prose h2 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem); margin-top: 2.5rem; margin-bottom: 0.85rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.6rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; color: var(--ink-500); }
.prose li { margin-bottom: 0.4rem; }

.state-page { text-align: center; max-width: 620px; margin-inline: auto; padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); }
.state-page__code {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 3rem + 9vw, 9rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.state-page__icon {
  width: 84px; height: 84px;
  margin: 0 auto 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(140, 185, 74, 0.14);
  color: var(--green-600);
}
.state-page h1 { margin-bottom: 1rem; }
.state-page p { color: var(--ink-500); font-size: var(--fs-lead); margin-bottom: 2rem; }
.state-page .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   13. Animations d'apparition
   --------------------------------------------------------------------------
   Le masquage initial dépend de la classe « js-anim », posée sur <html> par
   un court script en tête de page — donc avant le premier rendu, ce qui évite
   tout scintillement. Ce même script la retire automatiquement si main.js ne
   démarre pas : en cas d'erreur ou de blocage du JavaScript, le contenu
   s'affiche normalement au lieu de rester invisible.
   -------------------------------------------------------------------------- */
.reveal {
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}
.js-anim .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .js-anim .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}

/* --------------------------------------------------------------------------
   14. Impression
   -------------------------------------------------------------------------- */
@media print {
  .topbar, .header, .footer, .to-top, .wa-float, .nav-backdrop, .cta-band { display: none !important; }
  body { color: #000; }
  .hero, .page-hero { background: none !important; color: #000; padding-block: 1rem; }
  .hero h1, .page-hero h1, .hero p, .page-hero p { color: #000 !important; }
  .card, .product-card, .logo-tile { break-inside: avoid; border: 1px solid #ccc; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
