/* ==========================================================================
   Onoma — reconstruction from scratch.
   Étape 1 : intro vidéo.  Étape 2 : hero (liquid metal teinté DA).
   Palette : #FFFFFF / #DBDBDB / #202020 / #FFED00
   Type : Lineal (display) + Allen Sans (corps)
   ========================================================================== */

@font-face {
  font-family: "Lineal";
  src: url("../assets/fonts/Lineal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lineal";
  src: url("../assets/fonts/Lineal-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Lineal";
  src: url("../assets/fonts/Lineal-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Allen Sans";
  src: url("../assets/fonts/AllenSans-Regular.woff2?v=fr") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Allen Sans";
  src: url("../assets/fonts/AllenSans-Bold.woff2?v=fr") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --white: #FFFFFF;
  --grey: #DBDBDB;
  --black: #202020;
  --yellow: #FFED00;

  --font-display: "Lineal", sans-serif;
  --font-body: "Allen Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }

html, body { height: 100%; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

/* ==========================================================================
   Intro vidéo
   ========================================================================== */

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.7s ease;
}

.intro.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Retour depuis une page projet : intro masquée d'emblée (aucun clignotement). */
.skip-intro .intro { display: none; }

.intro__video {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* fond blanc de la vidéo = raccord invisible */
  background: var(--white);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.site { min-height: 100vh; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* Fond liquid metal (WebGL) + repli CSS si WebGL indisponible */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  background:
    radial-gradient(120% 90% at 50% 20%, #ffffff 0%, #f2f2f2 45%, #dedede 100%);
}

.hero__inner {
  width: 100%;
  max-width: 1120px;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

/* ---------- Logo ---------- */

.hero__logo {
  width: min(420px, 82vw);
  height: auto;
  margin-bottom: 4px;
}

/* ---------- Badge ---------- */

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(32, 32, 32, 0.25);
  border-radius: 999px;
  padding: 8px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Titre / sous-titre ---------- */

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--black);
  font-size: clamp(1.7rem, 3.7vw, 2.9rem);
  max-width: 26ch;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: #333;
  max-width: 46ch;
}

/* ---------- Boutons "liquid glass" ---------- */

.lg-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.glass-btn {
  position: relative;
  isolation: isolate;               /* la lentille ne capte que le fond de page */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  cursor: pointer;
  color: rgba(32, 32, 32, 0.95);
  background: transparent;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

/* La lentille : couche vide qui réfracte le fond (liquid metal) */
.glass-btn__lens {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background-color: transparent;   /* intérieur totalement transparent (opacité 0) */

  /* Loupe : le fond métal est magnifié/déformé par le verre (léger zoom),
     sans flou ni teinte → l'intérieur reste transparent. */
  -webkit-backdrop-filter: saturate(140%);
  backdrop-filter: url(#liquid-glass) saturate(140%);

  /* Reflets + ombre portée renforcée sur les côtés */
  --glass-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.45),
    inset -2px -2px 0 -2px rgba(255, 255, 255, 0.40),
    inset -3px -8px 1px -6px rgba(255, 255, 255, 0.30),
    inset -0.3px -1px 4px 0 rgba(0, 0, 0, 0.06),
    inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.10),
    inset 0 3px 4px -2px rgba(0, 0, 0, 0.10),
    inset 2px -6.5px 1px -4px rgba(0, 0, 0, 0.05),
    0 2px 10px 0 rgba(0, 0, 0, 0.12),
    0 12px 30px -4px rgba(0, 0, 0, 0.16);
  box-shadow: var(--glass-shadow);
  transition: background-color 0.4s cubic-bezier(1, 0, 0.4, 1),
              box-shadow 0.4s cubic-bezier(1, 0, 0.4, 1);
}

.glass-btn__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  user-select: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

@media (hover: hover) {
  .glass-btn:hover { transform: scale(1.03); }
}
.glass-btn:active { transform: scale(0.96); }

/* Les deux boutons identiques (verre neutre). Léger renfort au survol. */
.glass-btn:hover .glass-btn__lens {
  background-color: rgba(255, 255, 255, 0.03);
}

/* ---------- Features (carte verre) ---------- */

.hero__features {
  width: 100%;
  margin-top: 20px;
}

/* Même forme que le badge : pilule (bords arrondis complets), même fond/bordure/flou */
.feature-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
  padding: 12px 38px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(32, 32, 32, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feature {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  text-align: center;
}

/* ==========================================================================
   Animations d'entrée (recréées façon framer-motion, en cascade)
   Déclenchées quand le hero reçoit .is-in
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.hero.is-in .reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s cubic-bezier(0.25, 0.1, 0.25, 1) var(--d, 0s),
    transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1) var(--d, 0s);
}

/* Révélation SANS opacité (translation seule) pour les éléments en verre :
   l'opacité < 1 casse le backdrop-filter et provoque une bascule visuelle.
   La translation seule le préserve → verre identique dès l'apparition. */
.reveal-slide {
  transform: translateY(30px);
}

.hero.is-in .reveal-slide {
  transform: translateY(0);
  transition: transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1) var(--d, 0s);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 640px) {
  .hero__inner { gap: 24px; }
  .feature-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .glass-btn { width: 100%; }
  .hero__ctas { width: 100%; }
}

/* ==========================================================================
   Accessibilité : mouvement réduit
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .intro { transition: none; }
  .reveal,
  .reveal-slide { opacity: 1; transform: none; }
  .hero.is-in .reveal,
  .hero.is-in .reveal-slide { transition: none; }
}

/* ==========================================================================
   Section "Réalisations"
   ========================================================================== */

.works {
  background: var(--white);
  padding: 120px 32px;
}

.works__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.works__head {
  max-width: 640px;
  margin-bottom: 56px;
}

.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-top: 14px;
}

.works__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
  max-width: 52ch;
}

/* Carrousel a defilement infini (recree en vanilla).
   Defilement auto (JS) + defilable a la main : glisser (souris), swipe
   (tactile) et trackpad. Le conteneur scrolle nativement ; le JS boucle. */
.works__carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;            /* Firefox */
  cursor: grab;
  /* Marge verticale : laisse respirer l'agrandissement au survol sans le rogner. */
  padding: 24px 0;
  /* Fondu doux sur les bords pour l'entree/sortie des cartes */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.works__carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.works__carousel.is-dragging { cursor: grabbing; }
.works__carousel.is-dragging a { pointer-events: none; } /* pas de clic pendant le glisser */

.works__track {
  display: flex;
  gap: 28px;
  width: max-content;
}

.work-card {
  flex: 0 0 clamp(230px, 24vw, 300px);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Cartes cliquables : agrandissement + elevation au survol (signale le clic).
   Cible les <a> uniquement → la carte « Bientot » (<article>) ne bouge pas. */
a.work-card { cursor: pointer; }
a.work-card:hover { transform: scale(1.05); }

.work-card__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--grey);
  border: 1px solid rgba(32, 32, 32, 0.10);
  transition: box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

a.work-card:hover .work-card__thumb {
  box-shadow: 0 18px 38px -14px rgba(32, 32, 32, 0.34);
}

.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Vignette de type logo : logo entier centré, aéré, en NOIR & BLANC (2026-07-16) */
.work-card__thumb--logo { background: var(--white); }
.work-card__thumb--logo img {
  object-fit: contain;      /* les logos (souvent paysage) ne sont jamais rognés */
  object-position: center;
  padding: 15%;             /* base (A&O) — surchargé par logo ci-dessous */
  filter: grayscale(1);     /* noir & blanc uniforme */
}
/* Égalisation optique par logo (masse visuelle mesurée par bbox → padding dédié).
   Un padding plus PETIT = logo plus GRAND. Si un fichier change, re-mesurer. */
.work-card__thumb--logo img[src="logoossss-07.svg"]  { padding: 9%; }   /* Solstice  */
.work-card__thumb--logo img[src="logoossss-04.svg"]  { padding: 5%; }   /* Arkenovae */
.work-card__thumb--logo img[src="btlogo.svg"]        { padding: 19%; }  /* BT gifts  */
.work-card__thumb--logo img[src="logoossss.svg"]     { padding: 8%; }   /* Exora     */

.work-card--soon .work-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card--soon .work-card__thumb span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
}

.work-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
}

.work-card__meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  opacity: 0.55;
  margin-top: 4px;
}

/* Révélation au scroll — activée uniquement quand JS confirme le support
   (classe .reveal-ready posée par le JS). Sinon le contenu reste visible :
   robuste, et pas de dépendance à l'IntersectionObserver pour l'affichage. */
.reveal-ready .reveal-up { opacity: 0; transform: translateY(28px); }
.reveal-ready .reveal-up.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (max-width: 720px) {
  .works { padding: 88px 24px; }
  .works__track { gap: 20px; animation-duration: 32s; }
  .work-card { flex-basis: clamp(200px, 62vw, 240px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-up { opacity: 1; transform: none; }
  .reveal-ready .reveal-up.in { transition: none; }
  .works__carousel { -webkit-mask-image: none; mask-image: none; }
  /* Pas d'agrandissement animé : on garde juste l'ombre comme indice de clic. */
  a.work-card { transition: none; }
  a.work-card:hover { transform: none; }
}

/* ==========================================================================
   NOS OFFRES — cartes de tarifs (recréé en vanilla depuis un composant React)
   Prominence de l'offre "populaire" via bordure jaune + ombre (pas de
   transform, pour ne pas entrer en conflit avec la révélation au scroll).
   ========================================================================== */
.offers {
  background: var(--white);
  padding: 120px 32px;
  border-top: 1px solid rgba(32, 32, 32, 0.06);
}
.offers__inner { max-width: 1200px; margin: 0 auto; }
.offers__head { max-width: 640px; margin-bottom: 56px; }
.offers__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
  max-width: 52ch;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;   /* cartes à hauteur égale (la populaire ressort par sa bordure + badge) */
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(32, 32, 32, 0.12);
  border-radius: 22px;
  padding: 34px 30px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.offer-card:hover {
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, 0.20);
  border-color: rgba(32, 32, 32, 0.22);
}

.offer-card--popular {
  border: 2px solid var(--yellow);
  box-shadow: 0 26px 54px -22px rgba(0, 0, 0, 0.22);
}
.offer-card--popular:hover { box-shadow: 0 30px 62px -22px rgba(0, 0, 0, 0.26); }

.offer-card__badge {
  position: absolute;
  top: 0;
  right: 28px;
  transform: translateY(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.offer-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.offer-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(32, 32, 32, 0.06);
  color: var(--black);
}
.offer-card__icon svg { width: 22px; height: 22px; }
.offer-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 22px;
}
.offer-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  opacity: 0.55;
  margin-top: 2px;
}

.offer-card__price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 24px; }
.offer-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.offer-card__cycle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  opacity: 0.5;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.offer-btn:hover { background: var(--black); color: var(--white); }
.offer-btn--solid { background: var(--black); color: var(--white); }
.offer-btn--solid:hover { background: #000; }

.offer-card__features {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.4;
  color: #3a3a3a;
}
.offer-card__features strong { font-weight: 700; color: var(--black); }
.offer-check { flex: 0 0 auto; color: var(--black); margin-top: 1px; }
.offer-check svg { width: 18px; height: 18px; display: block; }

/* Cascade en apparition (stagger) via --d sur chaque carte */
.reveal-ready .offer-card.reveal-up.in { transition-delay: var(--d, 0s); }

@media (max-width: 920px) {
  .offers { padding: 88px 24px; }
  .offer-grid { grid-template-columns: 1fr; gap: 24px; max-width: 460px; margin: 0 auto; }
}

/* ==========================================================================
   CONTACT — carte infos + formulaire (recréé en vanilla depuis un composant
   React). Motif "+" aux 4 coins, panneau formulaire distinct.
   ========================================================================== */
.contact {
  background: #f4f4f4;
  padding: 120px 32px;
}
.contact__inner { max-width: 1120px; margin: 0 auto; }

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  background: var(--white);
  border: 1px solid rgba(32, 32, 32, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.25);
}

.contact-card__plus {
  position: absolute;
  width: 22px;
  height: 22px;
  color: var(--black);
  z-index: 2;
}
.contact-card__plus svg { width: 100%; height: 100%; display: block; }
.contact-card__plus--tl { top: 0; left: 0; transform: translate(-50%, -50%); }
.contact-card__plus--tr { top: 0; right: 0; transform: translate(50%, -50%); }
.contact-card__plus--bl { bottom: 0; left: 0; transform: translate(-50%, 50%); }
.contact-card__plus--br { bottom: 0; right: 0; transform: translate(50%, 50%); }

.contact-card__info { padding: 44px 44px 40px; }
.contact-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 12px 0 16px;
}
.contact-card__desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: #3a3a3a;
  max-width: 44ch;
}

.contact-list {
  list-style: none;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list__item { display: flex; align-items: center; gap: 13px; }
.contact-list__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(32, 32, 32, 0.05);
  color: var(--black);
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__text { display: flex; flex-direction: column; }
.contact-list__label { font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.contact-list__value { font-family: var(--font-body); font-size: 13px; color: var(--black); opacity: 0.55; }

.contact-card__form {
  display: flex;
  align-items: center;
  background: rgba(32, 32, 32, 0.03);
  border-left: 1px solid rgba(32, 32, 32, 0.12);
  border-radius: 0 12px 12px 0;
  padding: 30px;
}
.contact-form { width: 100%; display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(32, 32, 32, 0.18);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(255, 237, 0, 0.45);
}

.contact-submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  background: var(--black);
  transition: transform 0.2s ease, background 0.2s ease;
}
.contact-submit:hover { background: #000; transform: translateY(-1px); }
.contact-submit:active { transform: translateY(0); }
.contact-submit.is-sent { background: var(--yellow); color: var(--black); }

@media (max-width: 860px) {
  .contact { padding: 80px 22px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card__info { padding: 34px 26px 28px; }
  .contact-card__form {
    border-left: none;
    border-top: 1px solid rgba(32, 32, 32, 0.12);
    border-radius: 0 0 12px 12px;
    padding: 26px;
  }
}

/* ==========================================================================
   HEADER / NAVIGATION + FOOTER
   ========================================================================== */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}
.site-header__logo { display: inline-flex; transition: opacity 0.3s ease; }
.site-header__logo img { height: 24px; width: auto; display: block; }
/* En haut de page, le hero a déjà son grand logo → on masque celui du header
   pour éviter la superposition ; il réapparaît une fois la barre blanche. */
.site-header:not(.is-scrolled) .site-header__logo { opacity: 0; pointer-events: none; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav__link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;      /* « À propos » ne casse jamais en 2 lignes (nav tablette 761-860px) */
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }

/* Fond blanc dès qu'on scrolle (solide → pas de coût de blur au scroll) */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(32, 32, 32, 0.08);
  box-shadow: 0 6px 24px -18px rgba(0, 0, 0, 0.4);
}

/* Burger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--white);
    border-bottom: 1px solid rgba(32, 32, 32, 0.08);
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.3);
    padding: 10px 32px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .site-header.nav-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav__link { padding: 12px 0; font-size: 18px; width: 100%; }
  .site-nav__link::after { display: none; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 32px 32px;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 40px;
}
.site-footer__logo {
  height: 26px; width: auto;
  filter: brightness(0) invert(1);   /* logo monochrome → blanc sur fond noir */
  margin-bottom: 18px;
}
.site-footer__tag {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 44ch;
}
.site-footer__socials { display: flex; gap: 12px; margin-top: 22px; }
.social {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.social svg { width: 19px; height: 19px; }
.social:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}
.site-footer__col a,
.site-footer__col span {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
}
.site-footer__col a:hover { color: var(--yellow); }

.site-footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__legal { display: flex; gap: 22px; }
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__legal a:hover { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 760px) {
  .site-footer { padding: 56px 24px 28px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   MÉTHODE — grille de cartes (visuel + titre + texte)
   ========================================================================== */
.method {
  background: var(--white);
  padding: 120px 32px;
}
.method__inner { max-width: 1120px; margin: 0 auto; }
.method__head { max-width: 640px; margin-bottom: 56px; }
.method__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
  max-width: 52ch;
}

.method-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 26px;
}
.method-card { display: flex; flex-direction: column; }

.method-card__visual {
  position: relative;
  margin: 0 0 20px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--grey);
  border: 1px solid rgba(32, 32, 32, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-card__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.method-card__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.method-card__ph {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
}
.method-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 10px;
}
.method-card__desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: #3a3a3a;
}
/* Liste de livrables par étape — méthode plus détaillée (2026-07-17).
   Puces carrées jaunes = motif charte (repris du hero__proof / bénéfices). */
.method-card__points {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(32, 32, 32, 0.10);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.method-card__points li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: #3a3a3a;
}
.method-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border: 1px solid rgba(32, 32, 32, 0.4);
}

/* cascade en apparition */
.reveal-ready .method-card.reveal-up.in { transition-delay: var(--d, 0s); }

@media (max-width: 860px) {
  .method { padding: 88px 24px; }
  .method-grid { grid-template-columns: 1fr; gap: 34px; max-width: 460px; margin: 0 auto; }
}

/* ==========================================================================
   TÉMOIGNAGES — grille bento (recréé en vanilla depuis un composant React).
   Cartes claires (motif grille), noires et jaunes (accent DA), citation en
   bas, apparition en cascade avec flou.
   ========================================================================== */
.testimonials {
  background: var(--white);
  padding: 120px 32px 100px;
}
.testimonials__inner { max-width: 1120px; margin: 0 auto; }
.testimonials__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.testimonials__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.t-col { display: flex; flex-direction: column; gap: 14px; }
.t-col .t-card { flex: 1 1 auto; }
.t-card--tall { flex: 7 1 auto; }
.t-card--short { flex: 3 1 auto; }

.t-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* contenu centré verticalement → pas de grand vide */
  margin: 0;
  padding: 30px 28px;
  border-radius: 20px;
  border: 1px solid rgba(32, 32, 32, 0.08);
  overflow: hidden;
  box-shadow: 0 14px 34px -18px rgba(32, 32, 32, 0.28);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (hover: hover) {
  .t-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -20px rgba(32, 32, 32, 0.38); }
}

/* Symbole de la marque, en arrière-plan (watermark, sans le nom écrit).
   TAILLE FIXE identique + MÊME position sur toutes les cartes (boîte carrée +
   object-fit:contain → jamais coupé). Exception : A&O (carte noire) plus grand. */
.t-card__mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center;
  opacity: 0.13;
  filter: grayscale(1);
  pointer-events: none;
  user-select: none;
}

/* Étoiles de notation — accroche visuelle immédiate */
.t-card__stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--yellow);
}
.t-card__stars svg { width: 18px; height: 18px; display: block; }

.t-card__quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
}
.t-card__foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding-top: 26px;
}
.t-card__name {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.t-card__role { font-family: var(--font-body); font-size: 13px; opacity: 0.6; }
.t-avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

/* Variante claire (fond blanc uni) */
.t-card--light { background: var(--white); color: var(--black); }
.t-card--light .t-avatar { background: var(--black); color: var(--white); }

/* Variante jaune (accent DA, remplace le bleu du composant) */
.t-card--yellow { background: var(--yellow); color: var(--black); border-color: rgba(32, 32, 32, 0.22); }
.t-card--yellow .t-avatar { background: var(--black); color: var(--yellow); }
.t-card--yellow .t-card__role { opacity: 0.72; }
.t-card--yellow .t-card__stars { color: var(--black); }   /* jaune sur jaune = invisible */
.t-card--yellow .t-card__mark { opacity: 0.16; }

/* Variante noire — carte VEDETTE (grande citation, contenu réparti sur la hauteur) */
.t-card--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  justify-content: space-between;   /* étoiles en haut, citation au centre, signature en bas */
  padding: 40px 34px;
}
.t-card--dark .t-avatar { background: var(--white); color: var(--black); }
.t-card--dark .t-card__role { color: rgba(255, 255, 255, 0.65); opacity: 1; }
/* Carte noire : logo éclairci (invert) pour rester lisible en filigrane sur le fond sombre */
.t-card--dark .t-card__mark { width: 250px; height: 250px; opacity: 0.17; filter: grayscale(1) invert(1); }
.t-card--dark .t-card__quote {
  font-size: 21px;
  line-height: 1.5;
  margin: auto 0;                   /* la citation prend le centre, bien mise en valeur */
}

/* Ligne de finition basse avec carrés aux extrémités (comme le composant) */
.testimonials__rule {
  position: relative;
  margin-top: 60px;
  border-bottom: 2px solid #e6e6e6;
}
.testimonials__rule::before,
.testimonials__rule::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 1px solid rgba(32, 32, 32, 0.28);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.testimonials__rule::before { left: -7px; }
.testimonials__rule::after { right: -7px; }

/* Apparition : cascade avec flou (reprend le variant du composant) */
.reveal-ready .t-card.reveal-up { opacity: 0; transform: translateY(-20px); filter: blur(10px); }
.reveal-ready .t-card.reveal-up.in {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: var(--d, 0s);
}

@media (max-width: 920px) {
  .testimonials { padding: 88px 24px 76px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-card--tall, .t-card--short { flex: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .t-card.reveal-up { opacity: 1; transform: none; filter: none; }
}

/* ==========================================================================
   COMPARATIF — agence classique vs Onoma (recréé en vanilla depuis un
   composant table shadcn). Cellules bordées, ✓/✗ avec légende, colonne
   Onoma mise en avant (teinte jaune DA).
   ========================================================================== */
.compare {
  background: var(--white);
  padding: 120px 32px;
}
.compare__inner { max-width: 980px; margin: 0 auto; }
.compare__head { max-width: 640px; margin-bottom: 48px; }
.compare__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
}

.compare__table {
  border: 1px solid rgba(32, 32, 32, 0.16);
  border-radius: 18px;
  overflow: hidden;
  overflow-x: auto;
  background: var(--white);
}

.cmp {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
}

/* Bordures internes façon composant : bas + droite (sauf derniers) */
.cmp th, .cmp td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(32, 32, 32, 0.12);
  text-align: center;
  vertical-align: middle;
}
.cmp th:not(:last-child), .cmp td:not(:last-child) {
  border-right: 1px solid rgba(32, 32, 32, 0.12);
}
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }
.cmp tbody tr { transition: background 0.2s ease; }
.cmp tbody tr:hover { background: rgba(32, 32, 32, 0.025); }

/* Première colonne : les critères */
.cmp tbody th {
  text-align: left;
  font-weight: 700;
  font-size: 14.5px;
  width: 34%;
}

/* En-têtes de colonnes */
.cmp thead th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  padding: 18px;
  background: rgba(32, 32, 32, 0.03);
}
.cmp__head-onoma {
  background: var(--black) !important;
  color: var(--white);
  box-shadow: inset 0 -3px 0 0 var(--yellow);
}

/* Colonne Onoma : teinte jaune légère */
.cmp__col-onoma { background: rgba(255, 237, 0, 0.09); }
.cmp__strong { font-weight: 700; }

/* ✓ / ✗ avec légende dessous (comme le composant) */
.cmp-ic { display: block; margin: 0 auto 4px; width: 20px; height: 20px; }
.cmp-ic svg { width: 100%; height: 100%; display: block; }
.cmp-ic--yes { color: var(--black); }
.cmp-ic--no { color: rgba(32, 32, 32, 0.32); }
.cmp-note { display: block; font-size: 12px; opacity: 0.6; }

@media (max-width: 720px) {
  .compare { padding: 88px 24px; }
  .cmp th, .cmp td { padding: 12px 10px; font-size: 13px; }
  .cmp tbody th { font-size: 12.5px; }
  .cmp thead th { font-size: 12px; padding: 14px 10px; }
  .cmp-note { font-size: 11px; }
}

/* ==========================================================================
   BÉNÉFICES — bande sombre, bénéfices orientés client (accent jaune DA)
   ========================================================================== */
.benefits {
  background: var(--black);
  color: rgba(255, 255, 255, 0.66);
  padding: 118px 32px;
}
.benefits__inner { max-width: 1120px; margin: 0 auto; }
.benefits__head { max-width: 680px; margin-bottom: 56px; }
.benefits .kicker { color: var(--yellow); opacity: 1; }
.benefits .section-title { color: var(--white); }
.benefits__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  max-width: 52ch;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 44px;
}
.benefit {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
/* Icône + titre sur une ligne, centrés verticalement l'un avec l'autre. */
.benefit__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.benefit__icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--yellow);
}
.benefit__icon svg { width: 26px; height: 26px; display: block; }
.benefit__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--white);
}
.benefit__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.reveal-ready .benefit.reveal-up.in { transition-delay: var(--d, 0s); }

@media (max-width: 1024px) and (min-width: 861px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .benefits { padding: 88px 24px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   CE QUI EST INCLUS — grille de cartes illustrées (mockups de marque)
   ========================================================================== */
.included {
  background: #f5f5f5;
  padding: 120px 32px;
}
.included__inner { max-width: 1120px; margin: 0 auto; }
.included__head { max-width: 640px; margin-bottom: 52px; }
.included__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
  max-width: 52ch;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}
.incl-card { display: flex; flex-direction: column; }
.incl-card__visual {
  margin: 0 0 18px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--grey);
  border: 1px solid rgba(32, 32, 32, 0.10);
}
.incl-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.incl-card:hover .incl-card__visual img { transform: scale(1.04); }
.incl-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin-bottom: 8px;
}
.incl-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #3a3a3a;
}

.reveal-ready .incl-card.reveal-up.in { transition-delay: var(--d, 0s); }

@media (max-width: 1024px) and (min-width: 861px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .included { padding: 88px 24px; }
  .included-grid { grid-template-columns: 1fr; gap: 30px; max-width: 460px; margin: 0 auto; }
}

/* ==========================================================================
   GARANTIE — bande de réassurance courte, entre Offres et Contact
   ========================================================================== */
.guarantee {
  background: var(--white);
  padding: 100px 32px;
  border-top: 1px solid rgba(32, 32, 32, 0.08);
}
.guarantee__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.guarantee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  margin-bottom: 26px;
}
.guarantee__badge svg { width: 30px; height: 30px; }

.guarantee__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}
.guarantee__desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 54ch;
  margin: 0 auto;
}

.guarantee-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(32, 32, 32, 0.10);
}
.guarantee-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(32, 32, 32, 0.16);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
}
.guarantee-point__icon { display: inline-flex; color: var(--black); }
.guarantee-point__icon svg { width: 17px; height: 17px; }

.reveal-ready .guarantee__inner.reveal-up.in { transition-delay: 0s; }

@media (max-width: 640px) {
  .guarantee { padding: 76px 24px; }
  .guarantee-points { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   FAQ — accordéon (recréé en vanilla depuis un composant shadcn/Radix).
   Une question ouverte a la fois. Hauteur animée via grid-template-rows
   (0fr → 1fr) : fluide, sans mesure JS, robuste au redimensionnement.
   ========================================================================== */
.faq {
  background: var(--white);
  padding: 120px 32px;
}
.faq__inner { max-width: 780px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-top: 18px;
}
.faq__intro a,
.faq-item__panel-inner a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.faq__intro a:hover,
.faq-item__panel-inner a:hover { color: #555; }

.faq-list { border-top: 1px solid rgba(32, 32, 32, 0.12); }
.faq-item { border-bottom: 1px solid rgba(32, 32, 32, 0.12); }

.faq-item__q { margin: 0; }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: transparent;
  border: none;
  appearance: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--black);
}
.faq-item__trigger:hover span:first-child { opacity: 0.7; }

.faq-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(32, 32, 32, 0.06);
  color: var(--black);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}
.faq-item__icon svg { width: 16px; height: 16px; }

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__panel-inner { overflow: hidden; min-height: 0; }
.faq-item__panel-inner p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: #3a3a3a;
  padding: 0 4px 22px;
  max-width: 62ch;
}

.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__icon { background: var(--yellow); transform: rotate(180deg); }

@media (max-width: 640px) {
  .faq { padding: 88px 24px; }
  .faq-item__trigger { font-size: 15.5px; padding: 18px 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel { transition: none; }
  .faq-item__icon { transition: none; }
}

/* ==========================================================================
   À PROPOS — portrait + bio (equivalent solo de la section équipe Softriver)
   ========================================================================== */
.about {
  background: var(--white);
  padding: 120px 32px;
  border-top: 1px solid rgba(32, 32, 32, 0.08);
}
.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* width:100% explicite : le stretch implicite des grid items est
   incohérent d'un moteur à l'autre dès qu'un enfant a un aspect-ratio. */
.about__portrait { width: 100%; margin: 0; }
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--grey);
  border: 1px solid rgba(32, 32, 32, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__photo span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
}

.about__lead {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  margin-top: 16px;
}

.about__body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 56ch;
}

.about__facts {
  list-style: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 32, 32, 0.12);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.about__facts li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
}
.about__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border: 1px solid rgba(32, 32, 32, 0.3);
}

@media (max-width: 860px) {
  .about { padding: 88px 24px; }
  .about__inner { grid-template-columns: 1fr; gap: 34px; }
  .about__portrait { max-width: 280px; margin: 0 auto; }
}

/* ==========================================================================
   HERO — refonte SPLIT / FLAT (2026-07-10)
   Composition asymétrique : texte à gauche, plaque de marque à droite.
   Fond plat 100% charte (remplace l'ancien hero centré + liquid metal WebGL).
   Ces règles (préfixées .hero--split) surchargent l'ancien hero centré.
   ========================================================================== */
.hero--split { background: var(--white); }

.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  text-align: left;
  max-width: 1260px;
  padding: 128px 40px 84px;
}

.hero__content { display: block; width: 100%; }

.hero__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
  margin-bottom: 24px;
}

.hero--split .hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--black);
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  max-width: 15ch;
  margin: 0 0 26px;
}

/* Surligneur jaune (statique, tient sur plusieurs lignes) */
.hero__hi {
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  background-size: 100% 0.72em;
  background-position: 0 0.82em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 0 0.04em;
}

.hero--split .hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  color: #3a3a3a;
  max-width: 46ch;
  margin: 0 0 36px;
}

.hero--split .hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 40px;
}

/* Boutons plats (le fond n'est plus réfractant → plus de verre) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn--solid { background: var(--black); color: var(--white); }
.btn--solid:hover { background: #000; transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.5); }
.btn--outline { border: 1px solid var(--black); color: var(--black); background: transparent; }
.btn--outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.hero__proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(32, 32, 32, 0.12);
}
.hero__proof li {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
}
.hero__proof li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  background: var(--yellow);
  border: 1px solid rgba(32, 32, 32, 0.4);
}

/* ---- Logo seul (colonne droite) — vrai logo, sans fond ni texte ---- */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero__logo-mark {
  width: min(80%, 380px);
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 116px 24px 56px;
  }
  .hero__logo-mark { width: min(52%, 200px); }
  .hero--split .hero__ctas .btn { flex: 1 1 auto; }
}
@media (max-width: 480px) {
  .hero__proof { gap: 22px; }
}

/* ==========================================================================
   CTA STRATÉGIQUES (2026-07-16) — header, fin de comparatif, garantie.
   Tous pointent vers #contact. Réutilisent .btn / .btn--solid du hero.
   ========================================================================== */

/* Header — bouton permanent en fin de nav (jaune signature, inversion au survol) */
.site-nav__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.site-nav__cta:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 760px) {
  .site-nav__cta {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 15px 22px;
    margin-top: 12px;
  }
}

/* Variante jaune signature — inversion noir au survol */
.btn--yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn--yellow:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.5);
}

/* Fin du comparatif — le visiteur vient d'être convaincu */
.compare__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Garantie — le risque est levé, moment d'agir */
.guarantee__cta { margin-top: 36px; }

/* ==========================================================================
   CTA + VISIBLES (2026-07-17, demande Damien « CTA plus visibles, à des
   endroits stratégiques »). Taille renforcée + bande de conversion jaune.
   ========================================================================== */

/* Taille renforcée — pour les CTA à mettre en avant */
.btn--lg { padding: 18px 40px; font-size: 16.5px; }

/* Bande pleine largeur JAUNE, placée juste après les Réalisations (le visiteur
   vient de voir le travail = intérêt maximal). Noir sur jaune = contraste
   signature de la charte → impossible à manquer. */
.cta-band {
  background: var(--yellow);
  padding: 88px 32px;
}
.cta-band__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cta-band__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.72;
  margin: 0 0 14px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.03;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--black);
  margin: 0;
}
.cta-band__text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
  opacity: 0.82;
  max-width: 46ch;
  margin: 18px auto 0;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
@media (max-width: 560px) {
  .cta-band { padding: 66px 24px; }
  .cta-band__actions .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   CONTACT SIMPLIFIÉ — 2 boutons (WhatsApp / mail), + MODAL de choix (2026-07-18).
   Message pré-rempli côté client (mailto: / wa.me) → zéro friction, zéro serveur.
   ========================================================================== */

/* Bloc « Parlons de votre projet » — remplace le formulaire */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  height: 100%;
}
.contact-actions__lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 4px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 22px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.contact-btn__ic { width: 26px; height: 26px; flex: 0 0 auto; }
.contact-btn__txt { display: flex; flex-direction: column; line-height: 1.25; }
.contact-btn__txt strong { font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.contact-btn__txt small { font-size: 12.5px; opacity: 0.72; }
.contact-btn--wa { background: var(--black); color: var(--white); }
.contact-btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(0, 0, 0, 0.55); }
.contact-btn--mail { background: transparent; color: var(--black); border: 1px solid rgba(32, 32, 32, 0.28); }
.contact-btn--mail:hover { border-color: var(--black); transform: translateY(-2px); }

/* MODAL — fenêtre qui se superpose */
.cmodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cmodal[hidden] { display: none; }
.cmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0.55);
  animation: cmodal-fade 0.2s ease;
}
.cmodal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 22px;
  padding: 42px 32px 34px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
  text-align: center;
  /* entrée en TRANSFORM seule (opacité inchangée) → jamais invisible même si
     l'animation est gelée (leçon reveal-slide). */
  animation: cmodal-pop 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cmodal-fade { from { opacity: 0; } }
@keyframes cmodal-pop  { from { transform: translateY(10px) scale(0.985); } }
.cmodal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; background: var(--grey); color: var(--black);
  border-radius: 999px; cursor: pointer;
  transition: background 0.2s ease;
}
.cmodal__close svg { width: 18px; height: 18px; }
.cmodal__close:hover { background: #cfcfcf; }
.cmodal__offer {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; font-size: clamp(1.3rem, 3.8vw, 1.62rem);
  line-height: 1.12; color: var(--black); margin: 4px 0 24px;
}
.cmodal__actions { display: flex; flex-direction: column; gap: 12px; }
.cmodal__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 22px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.cmodal__ic { width: 21px; height: 21px; flex: 0 0 auto; }
.cmodal__btn--wa { background: var(--black); color: var(--white); }
.cmodal__btn--wa:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(0, 0, 0, 0.55); }
.cmodal__btn--mail { background: transparent; color: var(--black); border: 1px solid var(--black); }
.cmodal__btn--mail:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .cmodal__backdrop, .cmodal__panel { animation: none; }
}
