/* =========================================================
   styles.css — le gros fichier css du site (tout est la dedans)
   Palette : blanc cassé chaud + vert foret profond
   Typo    : Space Grotesk (les titres) + Inter (le texte) + JetBrains Mono
   ========================================================= */

/* --- Tokens --- */
:root{
  /* Palette */
  --bg:        #FAFAF8;
  --bg-alt:    #F1F0EC;
  --bg-deep:   #E1DFD9;
  --green:     #1B3A2D;
  --green-2:   #0F2A20;
  --green-3:   #2E5742;
  --green-soft:rgba(27,58,45,.06);
  --green-border:rgba(27,58,45,.14);

  --ink:       #0F1715;
  --ink-soft:  #3F4A45;
  --ink-muted: #6B7570;
  --line:      rgba(15,23,21,.10);
  --line-strong: rgba(15,23,21,.18);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Shadows */
  --sh-1: 0 1px 0 rgba(15,23,21,.04), 0 1px 3px rgba(15,23,21,.04);
  --sh-2: 0 4px 14px rgba(15,23,21,.06), 0 1px 4px rgba(15,23,21,.04);
  --sh-3: 0 24px 60px rgba(15,23,21,.10), 0 8px 24px rgba(15,23,21,.05);

  /* Typo */
  --display: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- Reset --- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;padding:0}
img,svg,video{display:block;max-width:100%;height:auto}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;padding:0}
a{color:inherit;text-decoration:none}
/* La règle ci-dessus neutralise TOUS les liens — indispensable pour la nav, les
   boutons et les cartes, mais elle rend aussi invisibles les liens de texte.
   On rétablit donc l'apparence d'un lien dans le corps de page seulement, et
   uniquement pour les liens sans classe : les éléments déjà habillés
   (.btn, .wwd-link, .link-arrow…) ne sont pas concernés. */
main p a:not([class]),
main li a:not([class]){
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
main p a:not([class]):hover,
main li a:not([class]):hover{ text-decoration-thickness: 2px; }
ul,ol{margin:0;padding:0;list-style:none}
input,textarea,select{font:inherit;color:inherit}

/* --- Base --- */
body{
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","cv11";
  overflow-x: clip; /* empeche le scroll horizontal si un truc deborde a gauche */
}

::selection{ background: var(--green); color: var(--bg); }

/* Skip */
.skip{position:absolute;left:-9999px;background:var(--ink);color:var(--bg);padding:.6rem 1rem;border-radius:8px;z-index:9999}
.skip:focus{left:1rem;top:1rem}

/* --- Typo --- */
h1,h2,h3,h4{
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 .6em;
}
h1{
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
h2{
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  letter-spacing: -0.025em;
}
h3{
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  letter-spacing: -0.015em;
}
p{ margin: 0 0 1rem; color: var(--ink-soft); }
strong{ color: var(--ink); font-weight: 600; }

.eyebrow{
  font-family: var(--mono);
  font-weight: 500;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.eyebrow::before{
  content:"";
  width: 18px; height: 1px;
  background: var(--green);
  display: inline-block;
}

/* --- Layout --- */
.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-tight{
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section{ padding-block: clamp(72px, 10vw, 140px); }
.section-alt{ background: var(--bg-alt); }

/* le rythme visuel des sections : cream / sage / sand / vert
   (l'idée c'est d'alterner les fonds pour que ça soit pas plat) */

/* Hero — fond crème uniforme */
.hero{ background: var(--bg); }

/* "pour qui c'est" : degradé vertical du sage clair vers le blanc cassé */
.audience-v2.section-alt{
  background: linear-gradient(to bottom,
    #DDE8D5 0%,
    #E8EFDC 35%,
    var(--bg) 80%,
    var(--bg) 100%);
}

/* "Comment ça se passe" — sand chaud */
.process{ background: var(--bg-alt); }

/* "Avis clients" — VERT FORÊT à la place du sage clair */
.reviews.section-alt{ background: var(--bg-alt); }
.reviews.section-alt .section-head h2{ color: var(--ink); }
.reviews.section-alt .section-head p{ color: var(--ink-soft); }
.reviews.section-alt .section-head .eyebrow{ color: var(--green); }
.reviews.section-alt .section-head .eyebrow::before{ background: var(--green); }
.reviews.section-alt .review-chip{
  background: var(--bg);
  border-color: var(--line);
}
.reviews.section-alt .review-chip:hover{
  background: #FFFFFF;
  border-color: var(--green-border);
}

/* "notre offre" : le gros bloc vert foret, c'est le pic visuel de la page */
.offer.section-alt{
  background: var(--green);
  color: var(--bg);
}
/* un peu plus d'air entre l'intro "notre offre" et la grille de cards */
.offer .section-head{ margin-bottom: clamp(72px, 8vw, 120px); }
.offer.section-alt .section-head h2,
.offer.section-alt .section-head p{ color: var(--bg); }
.offer.section-alt .section-head p{ color: rgba(250,250,248,0.78); }
.offer.section-alt .section-head .eyebrow{ color: rgba(250,250,248,0.85); }
.offer.section-alt .section-head .eyebrow::before{ background: rgba(250,250,248,0.4); }

/* les cards dedans : toutes en clair sur le fond vert, avec une petite difference subtile */
.offer.section-alt .offer-card{
  background: var(--bg);
  color: var(--ink);
  border-color: rgba(250,250,248,0.15);
}
.offer.section-alt .offer-card h3,
.offer.section-alt .offer-card .price,
.offer.section-alt .offer-card .offer-items li,
.offer.section-alt .offer-card .offer-items strong{ color: var(--ink); }
.offer.section-alt .offer-card .lede,
.offer.section-alt .offer-card .price small,
.offer.section-alt .offer-card .price-meta{ color: var(--ink-soft); }
.offer.section-alt .offer-card .eyebrow{ color: var(--green); }
.offer.section-alt .offer-card .eyebrow::before{ background: var(--green); }
.offer.section-alt .offer-card .offer-items li{ border-color: var(--line); }
.offer.section-alt .offer-card .offer-items li:last-child{ border-bottom-color: var(--line); }
.offer.section-alt .offer-card .offer-items li .check{
  background: var(--green-soft);
  color: var(--green);
}

/* la card mise en avant = sand chaud, pour la demarquer un peu de la cream */
.offer.section-alt .offer-card.is-featured{
  background: var(--bg-alt);
  border-color: rgba(27,58,45,0.18);
  box-shadow: 0 8px 32px rgba(15,23,21,0.22);
}
.offer.section-alt .offer-card.is-featured .offer-items li{ border-color: rgba(27,58,45,0.10); }
.offer.section-alt .offer-card.is-featured .offer-items li:last-child{ border-bottom-color: rgba(27,58,45,0.10); }
.offer.section-alt .offer-card.is-featured .btn-primary{
  background: var(--green) !important;
  color: var(--bg) !important;
}
.offer.section-alt .offer-card.is-featured .btn-primary:hover{
  background: var(--green-2) !important;
}

/* Bandeau "Sans engagement" — adaptation pour fond clair de la card */
.offer.section-alt .offer-banner{
  background: var(--green-soft);
  border-color: var(--green-border);
  color: var(--green);
}

/* Textes posés directement sur le fond vert (hors cards) — en clair */
.offer.section-alt .plans-head h3{ color: var(--bg); }
.offer.section-alt .plans-head p{ color: rgba(250,250,248,0.78); }
.offer.section-alt .offer-guarantee{
  background: rgba(250,250,248,0.08);
  border-color: rgba(250,250,248,0.22);
}
.offer.section-alt .offer-guarantee .shield{ color: #8FD3A5; }
.offer.section-alt .offer-guarantee strong{ color: var(--bg); }
.offer.section-alt .offer-guarantee p{ color: rgba(250,250,248,0.78); }
.section-head{ max-width: 740px; margin: 0 auto clamp(48px, 5vw, 80px); text-align:center; }
.section-head--left{ text-align: left; margin-left: 0; }
.section-head p{ font-size: 1.05rem; }


/* Grid helpers */
.grid{ display: grid; gap: clamp(20px, 3vw, 40px); }
.grid-2{ grid-template-columns: 1fr; }
@media (min-width: 880px){ .grid-2{ grid-template-columns: 1fr 1fr; } }
.grid-3{ grid-template-columns: 1fr; }
@media (min-width: 720px){ .grid-3{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .grid-3{ grid-template-columns: repeat(3, 1fr); } }
.grid-4{ grid-template-columns: 1fr; }
@media (min-width: 720px){ .grid-4{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .grid-4{ grid-template-columns: repeat(4, 1fr); } }

/* --- Buttons --- */
.btn{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .97rem;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow{
  display:inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow{ transform: translateX(4px); }

.btn-primary{
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 8px 20px rgba(27,58,45,.18);
}
.btn-primary:hover{
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(27,58,45,.28);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover{ border-color: var(--green); color: var(--green); background: var(--green-soft); }
.btn-dark{
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover{ background: #050a08; transform: translateY(-1px); }
.btn-lg{ padding: 1.15rem 1.9rem; font-size: 1.02rem; }

.btn:focus-visible{ outline: 3px solid rgba(27,58,45,.4); outline-offset: 3px; }

.link-arrow{
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.link-arrow::after{ content:"→"; transition: transform .3s var(--ease); }
.link-arrow:hover{ border-color: var(--green); }
.link-arrow:hover::after{ transform: translateX(4px); }

/* ===== HEADER ===== */
.header{
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled{
  background: rgba(250,250,248,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
  gap: 1rem;
}
.logo{
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.logo-mark{
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--green);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: -.04em;
}

.nav{
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav a{
  font-size: .94rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s var(--ease);
  position: relative;
}
.nav a:hover{ color: var(--green); }
.nav a.is-current{ color: var(--ink); }
.nav a.is-current::after{
  content: "";
  position: absolute; left:0; right:0; bottom: -8px;
  height: 2px; background: var(--green); border-radius: 2px;
}
@media (min-width: 980px){ .nav{ display: flex; } }

.header-cta{ display: inline-flex; align-items: center; gap: .8rem; }

/* Téléphone dans l'en-tête */
.header-phone{
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--green); font-weight: 600; font-size: .95rem;
  text-decoration: none; white-space: nowrap; padding: .4rem .2rem;
}
.header-phone:hover{ color: var(--green-2); }
.header-phone svg{ flex: none; }
@media (max-width: 979px){
  .header-phone{ padding: .55rem; }
  .header-phone-num{ display: none; }
}

/* Mobile menu */
.burger{
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  background: transparent;
  cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease;
}
.burger span{
  display: block; width: 18px; height: 1.6px;
  background: var(--ink); position: relative;
  transition: background-color .2s ease,
              transform .42s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}
.burger span::before,
.burger span::after{
  content:""; position:absolute; left:0;
  width: 18px; height: 1.6px; background: var(--ink);
  transition: transform .42s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}
.burger span::before{ top: -6px; }
.burger span::after{ top: 6px; }

/* menu ouvert : les 3 barres se transforment en croix, avec un petit effet d'entrelacement */
.burger.is-open{ border-color: var(--green); }
.burger.is-open span{
  background-color: transparent;
  transition-delay: 0s;
}
.burger.is-open span::before{
  transform: translateY(6px) rotate(45deg);
}
.burger.is-open span::after{
  transform: translateY(-6px) rotate(-45deg);
  transition-delay: .08s;
}

/* quand on revient au burger : la barre du milieu reapparait APRES la rotation (sinon c'est moche) */
.burger:not(.is-open) span{
  transition-delay: .2s;
}
@media (min-width: 980px){ .burger{ display: none; } }

/* sur mobile on cache le bouton "nous contacter" du header, on garde que le burger */
@media (max-width: 979px){
  .header-cta .btn-primary{ display: none; }
  .header-cta{ margin-right: clamp(8px, 2vw, 18px); }
}

.mobile-menu{
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  padding: 90px var(--gutter) var(--gutter);
  display: none;
  flex-direction: column;
}
.mobile-menu.is-open{ display: flex; }
.mobile-menu .mm-close{
  position: absolute; top: 24px; right: var(--gutter);
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.mobile-menu nav a{
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu .btn-primary{ margin-top: 2rem; align-self: flex-start; }

/* le hero, la grosse section du haut */
.hero{
  padding-top: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(72px, 10vw, 140px);
  position: relative;
  /* surtout pas d'overflow:hidden ici, sinon le motif qui deborde du container est coupé */
}
.hero > *:not(.hero-pattern){ position: relative; z-index: 1; }

/* Hero en 2 colonnes desktop uniquement si une illustration est présente */
@media (min-width: 980px){
  .hero:has(.hero-illustration){
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
  }
  /* si l'illustration manque ou charge pas, on repasse a 1 colonne */
  .hero.hero--no-illus{ display: block; }
}
.hero-content{ display: flex; flex-direction: column; }
.hero-content > *{ position: relative; z-index: 1; }
.hero-illustration{
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.hero-illustration img,
.hero-illustration picture{
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 979px){
  .hero-illustration{ margin-top: clamp(40px, 6vw, 64px); max-width: 560px; }
}

.hero-pattern{
  position: absolute;
  bottom: 0;
  /* Sort du container centré ET du padding pour coller au bord gauche du viewport */
  left: calc((100% - 100vw) / 2);
  width: clamp(420px, 52vw, 760px);
  height: auto;
  color: var(--green);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  -webkit-mask-image: radial-gradient(ellipse 110% 110% at bottom left, #000 50%, transparent 95%);
          mask-image: radial-gradient(ellipse 110% 110% at bottom left, #000 50%, transparent 95%);
}
@media (max-width: 720px){
  .hero-pattern{
    width: 360px;
    opacity: 0.11;
  }
}
.hero-tag{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--green-border);
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.4rem;
}
.hero-tag .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(27,58,45,.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{ box-shadow: 0 0 0 4px rgba(27,58,45,.18); }
  50%{ box-shadow: 0 0 0 6px rgba(27,58,45,.05); }
}

.hero h1 .word{
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero h1 .word > span{
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

.hero-accent{
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(.95rem, 1.85vw, 1.5rem);
  color: var(--green);
  display: block;
  margin: .8rem 0 1.6rem;
  letter-spacing: -0.005em;
}
.hero-accent .cursor{
  display: inline-block;
  width: .55em;
  height: 1em;
  background: var(--green);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

.hero-lede{
  max-width: 760px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}
.hero-lede strong{ color: var(--ink); }

.hero-cta{
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 2rem;
}
.hero-trust{
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.hero-trust-item .num{
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-trust-item .lab{
  font-size: .85rem;
  color: var(--ink-muted);
  margin-top: .25rem;
}

/* le bandeau qui defile — "pour qui c'est ?" */
.audience{
  padding-block: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.audience-head{
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.audience-head h2{ margin-bottom: .2rem; }
.audience-head p{ color: var(--ink-muted); font-family: var(--mono); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }

.marquee{
  display: flex;
  overflow: hidden;
  user-select: none;
  -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;
  flex-shrink: 0;
  gap: 2.4rem;
  padding-right: 2.4rem;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee--reverse .marquee-track{ animation-direction: reverse; animation-duration: 44s; }
@keyframes marquee {
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}
.marquee:hover .marquee-track{ animation-play-state: paused; }

.profession{
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.6rem 1rem 1.2rem;
  border: 1px solid var(--green-border);
  border-radius: 999px;
  background: var(--bg);
  white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.section-alt .profession{ background: var(--bg); }
.profession:hover{ background: var(--green-soft); border-color: var(--green); }
.profession-ico{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.profession-ico svg{ width: 20px; height: 20px; stroke-width: 1.5; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.profession-name{
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.marquee + .marquee{ margin-top: 1.2rem; }


/* ----- Label visible pour les variantes en test ----- */
.variant-label{
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  padding: .45rem .85rem;
  border-radius: 4px;
  display: inline-block;
  margin: clamp(28px, 4vw, 48px) 0 1rem;
}
.variant-label:first-child{ margin-top: 0; }

/* ----- Section "Pour qui c'est" ----- */
.audience-v2{
  padding-block: clamp(48px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}

/* Bloc titre + illustration en 2 colonnes desktop */
.audience-head-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 1;
}
@media (min-width: 880px){
  .audience-head-grid{
    grid-template-columns: 1fr 1fr;
  }
}
.audience-head-text .eyebrow{
  justify-content: flex-start;
  font-size: .88rem;
  margin-bottom: 1.4rem;
}
.audience-head-text h2{
  margin: 0 0 1.3rem;
  max-width: 560px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.audience-head-text p{
  max-width: 520px;
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  line-height: 1.55;
}
.audience-illustration{
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.audience-illustration picture,
.audience-illustration img{
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 879px){
  .audience-head-text{ text-align: center; }
  .audience-head-text .eyebrow{ justify-content: center; }
  .audience-head-text h2,
  .audience-head-text p{ margin-inline: auto; }
  .audience-illustration{ max-width: 440px; }
}

/* Dots décoratifs flottants en arrière-plan */
.aud-dot{
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
  z-index: 0;
}
.aud-dot--1{
  top: 15%; left: 7%;
  width: 10px; height: 10px;
  opacity: .22;
  animation: aud-float-a 7s ease-in-out infinite;
}
.aud-dot--2{
  top: 60%; right: 9%;
  width: 14px; height: 14px;
  opacity: .15;
  animation: aud-float-b 9s ease-in-out infinite;
}
.aud-dot--3{
  top: 32%; right: 18%;
  width: 6px; height: 6px;
  opacity: .35;
  animation: aud-float-a 5.5s ease-in-out infinite reverse;
}
@keyframes aud-float-a {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(8px, -12px); }
}
@keyframes aud-float-b {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-10px, 8px); }
}
/* ----- Cartes "ce qu'on fait pour vous" (remplacent les bandeaux de metiers) ----- */
.wwd-grid{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.6vw, 22px);
}
@media (min-width: 820px){
  .wwd-grid{ grid-template-columns: repeat(3, 1fr); }
}
.wwd-card{
  display: flex; flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--bg);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease);
}
.wwd-card:hover{ transform: translateY(-4px); box-shadow: var(--sh-3); }
.wwd-ico{
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-soft); color: var(--green);
  margin-bottom: 1.3rem;
}
.wwd-ico svg{ width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wwd-card h3{
  font-family: var(--display);
  font-size: clamp(1.24rem, 1.5vw, 1.5rem);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 .6rem; color: var(--ink);
}
.wwd-card > p{
  color: var(--ink-soft);
  font-size: 1rem; line-height: 1.55;
  margin: 0 0 1.5rem; max-width: 34ch;
}
.wwd-link{
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .8rem; font-weight: 500; letter-spacing: .01em;
  color: var(--green); text-decoration: none;
  border-bottom: 1px solid var(--green-border); padding-bottom: 3px;
  transition: gap .2s var(--ease, ease), border-color .2s var(--ease, ease);
}
.wwd-link:hover{ gap: .6rem; border-color: var(--green); }

/* carte mise en avant : les prises de contact */
.wwd-card--feature{
  background: linear-gradient(158deg, var(--green-3) 0%, var(--green) 52%, var(--green-2) 100%);
  border-color: transparent;
  box-shadow: var(--sh-3);
  color: var(--bg);
}
.wwd-card--feature .wwd-ico{ background: rgba(250,250,248,.14); color: var(--bg); }
.wwd-card--feature h3{ color: var(--bg); }
.wwd-card--feature > p{ color: rgba(250,250,248,.82); }
.wwd-btn{ margin-top: auto; align-self: flex-start; }
.wwd-card--feature .wwd-btn.btn-primary{ background: var(--bg); color: var(--green); border-color: transparent; }
.wwd-card--feature .wwd-btn.btn-primary:hover{ background: #fff; transform: translateY(-1px); }

/* mini-visuel « augmentation des prises de contact » */
.wwd-trend{
  margin: 0 0 1.5rem;
  padding: .75rem .85rem .5rem;
  border-radius: 14px;
  background: rgba(250,250,248,.10);
  border: 1px solid rgba(250,250,248,.16);
}
.wwd-trend-top{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .02em;
  color: rgba(250,250,248,.82); margin-bottom: .45rem;
}
.wwd-trend-up{ color: #8FD3A5; font-weight: 600; }
.wwd-trend svg{ width: 100%; height: 38px; display: block; }

/* carte 1 : panneau "rapide & optimisé" (jauge de perf + arguments) */
.wwd-perf{
  margin: 0 0 1.5rem;
  padding: 1rem 1rem .9rem;
  border-radius: 16px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
}
.wwd-gauge{
  display: flex; flex-direction: column; align-items: center;
  gap: .3rem; margin-bottom: .95rem;
}
.wwd-gauge-svg{ width: 118px; height: auto; display: block; }
.wwd-gauge-track{ fill: none; stroke: var(--green-border); stroke-width: 9; stroke-linecap: round; }
.wwd-gauge-val{ fill: none; stroke: var(--green); stroke-width: 9; stroke-linecap: round; }
.wwd-gauge-dot{ fill: var(--bg); stroke: var(--green); stroke-width: 3; }
.wwd-perf-label{
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--mono); font-size: .74rem; font-weight: 600; letter-spacing: .02em;
  color: var(--green);
}
.wwd-perf-label svg{ width: 13px; height: 13px; fill: var(--green); }
.wwd-args{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.wwd-args li{
  display: flex; align-items: center; gap: .6rem;
  font-size: .92rem; line-height: 1.3; color: var(--ink-soft);
}
.wwd-args svg{
  width: 17px; height: 17px; flex-shrink: 0;
  fill: none; stroke: var(--green); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}

/* carte 2 : mini-recherche web "c'est vous !" */
.wwd-search{
  margin: 0 0 1.5rem;
  padding: .85rem;
  border-radius: 16px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
}
.wwd-search-bar{
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem;
  background: var(--bg);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  font-size: .82rem; color: var(--ink-soft);
  margin-bottom: .7rem;
}
.wwd-search-bar svg{ width: 15px; height: 15px; flex-shrink: 0; fill: none; stroke: var(--ink-soft); stroke-width: 2; stroke-linecap: round; }
.wwd-search-results{ display: flex; flex-direction: column; gap: .45rem; }
.wwd-result{ display: flex; align-items: center; gap: .55rem; padding: .5rem .6rem; border-radius: 11px; }
.wwd-result--you{
  background: var(--bg);
  border: 1px solid var(--green);
  box-shadow: 0 6px 16px rgba(27,58,45,.10);
}
.wwd-result-pin{ display: inline-flex; flex-shrink: 0; color: var(--green); }
.wwd-result-pin svg{ width: 19px; height: 19px; fill: currentColor; }
.wwd-result-lines{ display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.wwd-result-title{ font-family: var(--display); font-weight: 600; font-size: .86rem; line-height: 1.15; color: var(--ink); }
.wwd-result-url{ font-family: var(--mono); font-size: .68rem; color: var(--green-3); }
.wwd-result-badge{
  flex-shrink: 0;
  font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .01em;
  color: var(--bg); background: var(--green);
  padding: .22rem .5rem; border-radius: 999px; white-space: nowrap;
}
.wwd-result--ghost{ flex-direction: column; align-items: flex-start; gap: 5px; padding: .55rem .6rem; opacity: .5; }
.wwd-result--ghost span{ display: block; height: 7px; border-radius: 4px; background: var(--green-border); }
.wwd-result--ghost span:first-child{ width: 58%; }
.wwd-result--ghost span:last-child{ width: 34%; height: 6px; }

/* le enorme mot LeSiteArtisan strié tout en bas, la signature visuelle */
.megabrand{
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: clamp(20px, 3vw, 40px);
  margin-top: clamp(20px, 3vw, 40px);
  border-top: 1px solid rgba(250,250,248,.08);
  line-height: 0.78;
}
.megabrand-text{
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 15vw, 280px);
  letter-spacing: -0.045em;
  line-height: 0.85;
  white-space: nowrap;
  margin: 0;
  padding-bottom: 0;
  color: transparent;
  /* Dégradé vertical : blanc cassé en haut → vert profond en bas */
  background-image: linear-gradient(
    to bottom,
    #FAFAF8 0%,
    #C8DDC9 35%,
    #5A8E72 70%,
    #2E5742 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  user-select: none;
}

/* REALISATIONS (les 3 cas clients) */
.cases{ }
.case{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(8px, 1.5vw, 20px);
  align-items: center;
}
@media (min-width: 880px){
  .case{ grid-template-columns: 1.55fr 1fr; gap: clamp(32px, 5vw, 72px); }
  .case.case--inverted{ direction: rtl; }
  .case.case--inverted > *{ direction: ltr; }
}

/* Sections individuelles par cas — différenciation visuelle */
.cases-intro{ padding-block: clamp(40px, 5vw, 64px) 0; }
.case-section{ padding-block: clamp(28px, 4vw, 56px); }
.case-section--1{ background: var(--bg); }
.case-section--2{ background: var(--green); color: var(--bg); }   /* VERT FORÊT — pic visuel mid-page */
.case-section--3{ background: var(--bg-alt); }/* sable chaud */

/* Case Maison Garance (sur fond vert foncé) — inversion des couleurs */
.case-section--2 .case-meta{ color: rgba(250,250,248,0.6); }
.case-section--2 .case-body h3{ color: var(--bg); }
.case-section--2 .case-body p{ color: rgba(250,250,248,0.82); }
.case-section--2 .case-stats li strong{ color: var(--bg); }
.case-section--2 .case-stats li small{ color: rgba(250,250,248,0.65); }
.case-section--2 .case-stats li .ico{ background: var(--bg); color: var(--green); }
.case-section--2 .btn-dark{ background: var(--bg); color: var(--ink); }
.case-section--2 .btn-dark:hover{ background: #FFFFFF; }
.case-section--2 .link-arrow{ color: var(--bg); }
.case-section--2 .link-arrow:hover{ border-color: var(--bg); }
.cases-cta{ padding-block: clamp(20px, 3vw, 36px) clamp(8px, 1.5vw, 20px); background: var(--bg); }
.case-media{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  aspect-ratio: 16/9;
}
.case-media video{
  width:100%; height:100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.case:hover .case-media video{ transform: scale(1.02); }

.case-body h3, .case-body h2{
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 .25rem;
  letter-spacing: -0.025em;
}
.case-meta{
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 1.5rem;
}
.case-stats{
  display: grid;
  gap: .75rem;
  margin: 0 0 1.8rem;
}
.case-stats li{
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding-left: 0;
}
.case-stats li .ico{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: grid; place-items: center;
  font-size: .68rem;
  margin-top: 2px;
}
.case-stats li strong{
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  display: block;
}
.case-stats li small{
  font-size: .88rem;
  color: var(--ink-muted);
  display: block;
  margin-top: .15rem;
  font-family: var(--sans);
}
.case-actions{ display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   PAGE NOUS CONTACTER
   ========================================================= */
.contact-methods{ padding-block: clamp(40px, 5vw, 64px); }
.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (min-width: 720px){ .contact-grid{ grid-template-columns: repeat(3, 1fr); } }

.contact-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 38px);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.contact-card:hover{
  transform: translateY(-3px);
  border-color: var(--green-border);
  box-shadow: 0 18px 40px rgba(15,23,21,.08), 0 4px 12px rgba(15,23,21,.04);
}
.contact-card--primary{
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}
.contact-card--primary:hover{ border-color: var(--green-2); }
.contact-card-badge{
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.contact-card-ico{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
}
.contact-card-ico svg{ width: 28px; height: 28px; }
.contact-card--primary .contact-card-ico{
  background: rgba(250,250,248,.12);
  color: var(--bg);
}
.contact-card h3{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.contact-card--primary h3{ color: var(--bg); }
.contact-card-meta{
  margin: 0;
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--green);
  letter-spacing: .03em;
}
.contact-card--primary .contact-card-meta{ color: rgba(250,250,248,.7); }
.contact-card p{
  margin: .2rem 0 0;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-card--primary p{ color: rgba(250,250,248,.82); }
.contact-card-link{
  margin-top: auto;
  padding-top: 1.1rem;
  font-family: var(--mono);
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.contact-card--primary .contact-card-link{ color: var(--bg); }
.contact-card:hover .contact-card-link .arrow{ transform: translateX(2px); }

/* Bloc formulaire de contact */
.contact-form-section{ padding-block: clamp(48px, 6vw, 88px); }
.contact-form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 4vw, 56px);
}
@media (min-width: 980px){
  .contact-form-grid{ grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr); gap: clamp(48px, 5vw, 80px); }
}

.contact-form{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 8px 28px rgba(15,23,21,.06);
}
.contact-form .eyebrow{ margin-bottom: 1rem; }
.contact-form h2{ margin: 0 0 .4rem; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.contact-form-lede{ color: var(--ink-soft); margin: 0 0 1.8rem; font-size: 1rem; }

.form-row{ margin-bottom: 1.1rem; }
.form-row--2{ display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 720px){ .form-row--2{ grid-template-columns: 1fr 1fr; } }

.form-field{ display: flex; flex-direction: column; gap: .35rem; }
.form-label{
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
}
.form-label em{ color: var(--green); font-style: normal; }

.form-field input,
.form-field textarea{
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg);
  padding: .8rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
  font: inherit;
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color: var(--ink-muted); }
.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,58,45,.12);
}
.form-field textarea{ resize: vertical; min-height: 120px; line-height: 1.5; }

.form-radios{
  border: 0;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-radios legend{ margin-bottom: .6rem; padding: 0; }
.form-radio{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
  padding: .55rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .94rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
@media (min-width: 540px){
  .form-radios{ flex-direction: row; }
}
.form-radio:hover{ border-color: var(--green-border); }
.form-radio input{ accent-color: var(--green); width: 16px; height: 16px; }
.form-radio:has(input:checked){ background: var(--green-soft); border-color: var(--green); }

.form-actions{
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-start;
}
.form-hint{ font-size: .82rem; color: var(--ink-muted); margin: 0; max-width: 460px; line-height: 1.5; }
.form-hint .inline-link{ color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* Message de retour après envoi du formulaire */
.form-feedback{
  margin: 1.1rem 0 0;
  padding: .85rem 1.1rem;
  border-radius: var(--r-md);
  font-size: .92rem;
  line-height: 1.5;
  border: 1px solid transparent;
}
.form-feedback.is-ok{
  background: var(--green-soft);
  border-color: var(--green-border);
  color: var(--green);
}
.form-feedback.is-error{
  background: rgba(178,59,46,.07);
  border-color: rgba(178,59,46,.28);
  color: #8E2E24;
}

/* Sidebar contact direct */
.contact-direct{ display: flex; flex-direction: column; gap: 1.2rem; }
.contact-direct-card{
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  padding: clamp(22px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.contact-direct-card:hover{ border-color: var(--green-border); }
.contact-direct-card--phone{ background: var(--green); color: var(--bg); }
.contact-direct-card--phone .eyebrow{ color: rgba(250,250,248,.8); }
.contact-direct-card--phone .eyebrow::before{ background: rgba(250,250,248,.4); }
.contact-direct-card--phone h3{ color: var(--bg); }
.contact-direct-card.contact-direct-card--phone p{ color: var(--bg); }
.contact-direct-card--phone .contact-card-ico{ background: rgba(250,250,248,.12); color: var(--bg); }
.contact-direct-card--phone .btn-ghost{
  color: var(--bg);
  border-color: rgba(250,250,248,.4);
  margin-top: .4rem;
  align-self: flex-start;
}
.contact-direct-card--phone .btn-ghost:hover{ background: rgba(250,250,248,.12); border-color: var(--bg); color: var(--bg); }
.contact-direct-card h3{
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -.01em;
  margin: .15rem 0 .4rem;
  line-height: 1.15;
}
.contact-direct-card p{
  margin: 0 0 .6rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-direct-card .btn-ghost{ align-self: flex-start; margin-top: .4rem; }

/* Et après ? — timeline */
.contact-flow{ padding-block: clamp(48px, 6vw, 80px); }
.contact-flow-steps{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
}
.contact-flow-steps::before{
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--green-border) 100%);
  border-radius: 2px;
}
.contact-flow-steps li{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-flow-steps .step-num{
  font-family: var(--mono);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--bg);
  background: var(--green);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--bg);
}
.contact-flow-steps strong{
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem;
}
.contact-flow-steps p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Infos pratiques */
.contact-info{ padding-block: clamp(40px, 5vw, 64px) clamp(64px, 8vw, 96px); }
.contact-info-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 40px);
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg-alt);
  border-radius: var(--r-xl);
}
@media (min-width: 880px){ .contact-info-grid{ grid-template-columns: repeat(3, 1fr); } }
.contact-info-block h3{
  margin: .35rem 0 .5rem;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.contact-info-block p{
  margin: 0;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-info-block .inline-link{
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

/* case story : le recit + la methode pour chaque etude de cas */
.case-story{
  margin-top: clamp(48px, 6vw, 88px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  position: relative;
}
.case-story::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--green);
  border-radius: 999px;
}
.case-story-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 880px){
  .case-story-grid{
    grid-template-columns: 1.15fr 0.9fr;
    gap: clamp(48px, 6vw, 96px);
  }
}
.case-story .eyebrow{ margin-bottom: 1.6rem; }
.case-story-narrative p{
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.case-story-narrative p strong{ color: var(--ink); }
.case-story-narrative blockquote{
  margin: 1.8rem 0;
  padding: 1.5rem 1.6rem 1.5rem 2.2rem;
  border-left: 3px solid var(--green);
  background: var(--bg-alt);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  position: relative;
  line-height: 1.5;
}
.case-story-narrative blockquote::before{
  content: "\201C";
  position: absolute;
  top: -2px;
  left: 8px;
  font-size: 3.2rem;
  font-family: var(--display);
  color: var(--green);
  opacity: .22;
  line-height: 1;
  pointer-events: none;
}

/* Section sombre (case-section--2) — adapter les couleurs */
.case-section--2 .case-story{ border-top-color: rgba(250,250,248,.18); }
.case-section--2 .case-story-narrative p{ color: rgba(250,250,248,.78); }
.case-section--2 .case-story-narrative p strong{ color: var(--bg); }
.case-section--2 .case-story-narrative blockquote{
  background: rgba(250,250,248,.06);
  border-left-color: var(--bg);
  color: var(--bg);
}
.case-section--2 .case-story-narrative blockquote::before{ color: var(--bg); opacity: .35; }

/* Section sand (section-alt) — blockquote en blanc cassé pour ressortir */
.cases.section-alt .case-story-narrative blockquote{ background: var(--bg); }

/* Liste d'étapes — timeline verticale numérotée */
.story-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.story-steps::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--green-border) 90%);
  border-radius: 2px;
}
.story-steps li{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.1rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.story-steps .step-num{
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--bg);
  background: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 0 rgba(15,23,21,.08), 0 0 0 4px var(--bg);
}
.cases.section-alt .story-steps .step-num{ box-shadow: 0 2px 0 rgba(15,23,21,.08), 0 0 0 4px var(--bg-alt); }
.case-section--2 .story-steps .step-num{
  background: var(--bg);
  color: var(--green);
  box-shadow: 0 0 0 4px var(--green);
}
.case-section--2 .story-steps::before{
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(250,250,248,.25) 100%);
}
.story-steps strong{
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .25rem;
  line-height: 1.35;
}
.case-section--2 .story-steps strong{ color: var(--bg); }
.story-steps p{
  margin: 0;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.case-section--2 .story-steps p{ color: rgba(250,250,248,.7); }

/* les stats + la section "notre agence" */
/* Section "Notre agence" — padding resserré */
.about{ padding-block: clamp(20px, 3vw, 40px) clamp(48px, 7vw, 96px); }

/* ----- Option C : bande verticale à droite, hauteur contenue ----- */
.about-split{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
@media (min-width: 980px){
  .about-split{
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
    gap: clamp(32px, 4vw, 56px);
  }
}
.about-col-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 20px);
}
.about-col-text .section-head{ margin-bottom: 0; }
/* La rangée capabilities n'a plus besoin de sa marge top dans ce contexte */
.about--with-tall-image .capabilities{ margin-top: 0; }
.about-col-image{
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,23,21,.12), 0 2px 6px rgba(15,23,21,.06);
  background: var(--bg-alt);
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: clamp(420px, 50vw, 580px);
  align-self: center;
  justify-self: end;
}
@media (max-width: 979px){
  .about-col-image{ max-width: 380px; justify-self: start; max-height: none; }
}
.about-col-image picture,
.about-col-image img{ display: block; width: 100%; height: 100%; }
.about-col-image img{ object-fit: cover; object-position: center; }

/* Capabilities passe à 3 colonnes (au lieu de 6) quand l'image est à droite */
.about--with-tall-image .capabilities{ grid-template-columns: repeat(2, 1fr); }
@media (min-width: 980px){
  .about--with-tall-image .capabilities{ grid-template-columns: repeat(3, 1fr); }
}

/* Bande de 6 capabilities — entre le titre et la section suivante */
.capabilities{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 24px);
  margin: clamp(32px, 4vw, 56px) 0 0;
}

/* Offre qui suit "Notre agence" — top padding réduit pour coller mieux */
.offer{ padding-top: clamp(48px, 6vw, 80px); }
@media (min-width: 720px){ .capabilities{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px){ .capabilities{ grid-template-columns: repeat(6, 1fr); } }
.cap-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.cap-ico{
  width: 72px; height: 72px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .35s var(--ease);
}
.cap-item:hover .cap-ico{ transform: translateY(-3px); }
.cap-ico svg{ width: 100%; height: 100%; }
.cap-label{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(.92rem, 1.05vw, 1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
}

.about-strip{
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 64px);
  margin-block: clamp(40px, 5vw, 72px);
}
.about-strip h2{ color: var(--bg); }
.about-strip p{ color: rgba(250,250,248,.7); }
.about-strip .eyebrow{ color: #b8d4c6; }
.about-strip .eyebrow::before{ background: #b8d4c6; }
.about-grid{
  display: grid;
  gap: clamp(28px, 3vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px){ .about-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .about-grid{ grid-template-columns: repeat(4, 1fr); } }

.about-item{
  border-top: 1px solid rgba(250,250,248,.15);
  padding-top: 1.4rem;
}
.about-item .big{
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bg);
  margin: 0 0 .65rem;
}
.about-item .big .unit{
  font-size: .55em;
  color: #b8d4c6;
  margin-left: .15em;
  font-weight: 500;
}
.about-item h3{
  color: var(--bg);
  font-size: 1.1rem;
  margin: 0 0 .3rem;
}
.about-item p{ font-size: .94rem; line-height: 1.55; margin: 0; }

/* ===== OFFRE / les prix ===== */
.offer{ }
.offer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}
@media (min-width: 880px){
  .offer-grid{ grid-template-columns: 1.25fr .85fr; }
}
.offer-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.6vw, 48px);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--sh-1);
}
.section-alt .offer-card{ background: var(--bg); }
.offer-card.is-featured{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.offer-card.is-featured h3,
.offer-card.is-featured .price,
.offer-card.is-featured .offer-items strong{ color: var(--bg); }
.offer-card.is-featured p{ color: rgba(250,250,248,.7); }
.offer-card.is-featured .eyebrow{ color: #b8d4c6; }
.offer-card.is-featured .eyebrow::before{ background: #b8d4c6; }
.offer-card.is-featured .offer-items li{ border-color: rgba(250,250,248,.10); color: rgba(250,250,248,.85); }
.offer-card.is-featured .offer-items li .check{
  background: rgba(250,250,248,.10);
  color: var(--bg);
}

.offer-card h3{
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 .3rem;
}
.offer-card .lede{
  font-size: 1rem;
  color: var(--ink-muted);
  margin: 0 0 1.6rem;
}
.offer-card .price{
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3rem, 5vw, 4.2rem);
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: .2rem 0 1.6rem;
  display: flex;
  align-items: baseline;
  gap: .25rem;
}
.offer-card .price small{
  font-size: .35em;
  color: var(--ink-muted);
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0;
}
.offer-card.is-featured .price small{ color: rgba(250,250,248,.6); }

.offer-items{
  display: grid;
  gap: 0;
  margin: 0 0 2rem;
}
.offer-items li{
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
  font-size: .97rem;
  color: var(--ink);
  line-height: 1.5;
}
.offer-items li:last-child{ border-bottom: 1px solid var(--line); }
.offer-card.is-featured .offer-items li:last-child{ border-bottom-color: rgba(250,250,248,.10); }
.offer-items li .check{
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 1px;
}
.offer-items li strong{ font-weight: 500; }

.offer-banner{
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .94rem;
  color: var(--green);
  margin-top: clamp(28px, 3vw, 36px);
}
.offer-banner .shield{ flex-shrink: 0; }
.offer-cta{ margin-top: 1.8rem; }

/* --- Formules d'abonnement (3 cartes) --- */
.offer-grid--single{ grid-template-columns: 1fr; }
@media (min-width: 880px){
  .offer-grid--single{ grid-template-columns: 1fr; }
}
@media (min-width: 720px){
  .offer-card--wide .offer-items--cols{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(24px, 4vw, 56px);
  }
  .offer-card--wide .offer-items--cols li:nth-child(2){ border-top: 1px solid rgba(250,250,248,.10); }
}
.plans-head{
  text-align: center;
  margin: clamp(40px, 5vw, 64px) auto clamp(24px, 3vw, 36px);
  max-width: 640px;
}
.plans-head h3{
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0 0 .5rem;
}
.plans-head p{
  color: var(--ink-muted);
  font-size: 1rem;
  margin: 0;
}
.plans-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 28px);
  align-items: stretch;
}
@media (min-width: 880px){
  .plans-grid{ grid-template-columns: repeat(3, 1fr); }
}
.plan-card{ padding: clamp(24px, 2.8vw, 36px); }
.plan-card h3{ font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
.plan-card .price{ font-size: clamp(2.4rem, 3.6vw, 3.2rem); margin-bottom: .35rem; }
.plan-card .lede{ margin-bottom: 1.2rem; min-height: 0; }
.plan-card .offer-items{ margin-bottom: 0; }
.plan-card .offer-items li{ font-size: .93rem; }
.price-alt{
  font-size: .88rem;
  color: var(--ink-muted);
  margin: 0 0 1.4rem;
}
.plan-card.is-popular{
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--sh-1);
  position: relative;
}
.plan-badge{
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--bg);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin: 0;
  white-space: nowrap;
}
.offer-items li.is-excluded{ color: var(--ink-muted); }
.offer-items li.is-excluded strong{ color: var(--ink-muted); font-weight: 600; }
.offer-items li.is-excluded .check{
  background: rgba(0,0,0,.05);
  color: var(--ink-muted);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-steps{
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 880px){
  .process-step{ grid-template-columns: 80px 1.4fr 1fr; gap: 2.4rem; }
}
.process-step .num{
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--green);
  letter-spacing: .12em;
  padding-top: .25rem;
}
.process-step h3{
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin: 0 0 .25rem;
  letter-spacing: -0.02em;
}
.process-step .meta{
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-muted);
  margin: 0 0 .8rem;
  letter-spacing: .04em;
}
.process-step p{ margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* ----- Variante A : Timeline verticale avec ligne connectrice ----- */
.process-timeline{
  margin: clamp(20px, 3vw, 36px) 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  max-width: 800px;
}
.process-timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.process-timeline-item:last-child{ padding-bottom: 0; }
/* Ligne connectrice verticale */
.process-timeline-item::before{
  content: "";
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--green-border) 100%);
}
.process-timeline-item:last-child::before{ display: none; }
.ptl-num{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}
.ptl-body h3{
  margin: .15rem 0 .25rem;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  letter-spacing: -0.02em;
}
.ptl-meta{
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
  margin: 0 0 .8rem;
}
.ptl-body p:last-child{ margin: 0; color: var(--ink-soft); }

/* ----- Process : grille timeline + illustration mockups ----- */
.process-content{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  margin-top: clamp(20px, 3vw, 36px);
}
@media (min-width: 1040px){
  .process-content{
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, 1fr);
    gap: clamp(40px, 5vw, 72px);
  }
}
.process-content .process-timeline{ margin-top: 0; }

/* Pile d'écrans flottants */
.process-illust{
  display: none;
  position: relative;
  min-height: 640px;
  width: 100%;
  max-width: 460px;
  justify-self: center;
}
@media (min-width: 1040px){ .process-illust{ display: block; justify-self: end; } }

.mock{
  position: absolute;
  width: 240px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15,23,21,.12), 0 4px 12px rgba(15,23,21,.06);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mock:hover{ transform: translateY(-3px) rotate(0deg) !important; box-shadow: 0 24px 56px rgba(15,23,21,.16), 0 6px 16px rgba(15,23,21,.08); z-index: 5; }
.mock--visio{ top: 0; left: 0; transform: rotate(-5deg); z-index: 2; }
.mock--wire{ top: 110px; right: 0; transform: rotate(4deg); z-index: 3; }
.mock--build{ top: 290px; left: 10px; transform: rotate(-3deg); z-index: 4; }
.mock--live{ bottom: 0; right: 20px; transform: rotate(5deg); z-index: 5; }

/* Barre de fenêtre */
.mock-bar{
  height: 26px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  position: relative;
}
.mock-bar > span{ width: 8px; height: 8px; border-radius: 50%; background: rgba(15,23,21,.16); }
.mock-bar > span:nth-child(1){ background: #ED6A5E; }
.mock-bar > span:nth-child(2){ background: #F4BF50; }
.mock-bar > span:nth-child(3){ background: #61C554; }
.mock-url{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--ink-muted);
  font-style: normal;
  letter-spacing: .02em;
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-body{ padding: 14px; min-height: 150px; position: relative; }
.mock-tag{
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  padding: 8px 10px 10px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

/* ---- Mock 1 : visio Meet ---- */
.mock-meet{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-bottom: 38px;
}
.meet-tile{
  aspect-ratio: 4/3;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green-3) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.meet-tile--2{ background: linear-gradient(135deg, #6B7C75 0%, #3F4A45 100%); }
.meet-tile span{
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--bg);
  background: rgba(15,23,21,.25);
  padding: 3px 8px;
  border-radius: 4px;
}
.meet-controls{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(15,23,21,.85);
  padding: 5px 8px;
  border-radius: 999px;
}
.meet-controls span{
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(250,250,248,.85);
}
.meet-controls .ctrl-end{ background: #E63946; }

/* ---- Mock 2 : wireframe Figma ---- */
.mock-wireframe{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  position: relative;
}
.wf{ border-radius: 4px; background: rgba(15,23,21,.07); }
.wf-hero{ height: 42px; background: rgba(27,58,45,.14); }
.wf-row{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.wf-row span{ height: 28px; background: rgba(15,23,21,.06); border-radius: 4px; }
.wf-line{ height: 8px; }
.wf-line--short{ width: 60%; }
.wf-select{
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 46px;
  border: 1.5px solid #4F8CFA;
  border-radius: 4px;
  pointer-events: none;
}
.wf-select::before,
.wf-select::after{
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  background: #4F8CFA;
  border: 1.5px solid var(--bg);
  border-radius: 1px;
}
.wf-select::before{ top: -5px; left: -5px; }
.wf-select::after{ bottom: -5px; right: -5px; }

/* ---- Mock 3 : V1 preview avec annotations ---- */
.mock-preview{
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-bottom: 18px;
}
.pv-hero{
  height: 50px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-3) 100%);
  margin: -14px -14px 4px;
  border-radius: 0;
}
.pv-row{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 8px; }
.pv-row span{ height: 24px; background: var(--bg-alt); border-radius: 4px; border: 1px solid var(--line); }
.pv-line{ height: 7px; background: rgba(15,23,21,.08); border-radius: 4px; margin-top: 4px; }
.pv-line--short{ width: 55%; }
.annot{
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #F4BF50;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  box-shadow: 0 2px 6px rgba(15,23,21,.18);
  animation: annot-pulse 2.4s ease-in-out infinite;
}
.annot--1{ top: 4px; right: 4px; animation-delay: 0s; }
.annot--2{ bottom: 8px; left: 10px; background: #E63946; color: var(--bg); animation-delay: .8s; }
@keyframes annot-pulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.08); }
}

/* ---- Mock 4 : LIVE ---- */
.mock-online{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px 12px;
  text-align: center;
}
.live-check{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(27,58,45,.10);
}
.live-check svg{ width: 26px; height: 26px; }
.live-label{
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -.01em;
}
.live-meta{
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
}

/* ----- Variante B : 4 cards en grille ----- */
.process-cards{
  margin-top: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 720px){ .process-cards{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .process-cards{ grid-template-columns: repeat(4, 1fr); } }
.process-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.process-card:hover{
  transform: translateY(-3px);
  border-color: var(--green-border);
  box-shadow: var(--sh-2);
}
.process-card::before{
  content: "";
  position: absolute;
  top: 0; left: 1.5rem;
  width: 32px; height: 3px;
  background: var(--green);
  border-radius: 0 0 2px 2px;
}
.pc-step{
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: .4rem;
}
.process-card h3{
  font-size: 1.18rem;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.pc-meta{
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--ink-muted);
  letter-spacing: .03em;
  margin: 0;
}
.pc-desc{
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: .4rem 0 0;
}

/* les avis clients */
.reviews-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px){ .reviews-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .reviews-grid{ grid-template-columns: repeat(3, 1fr); } }
.review{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.section-alt .review{ background: var(--bg); }
.review:hover{ transform: translateY(-2px); border-color: var(--green-border); }
.stars{ color: var(--green); font-size: .92rem; letter-spacing: 2px; }
.review blockquote{
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ink);
}
.review-author{
  display: flex; align-items: center; gap: .8rem;
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}
.review-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--green-soft);
  /* si l'image charge pas, l'avatar reste rond et discret quand meme */
  color: var(--green);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  flex-shrink: 0;
}
img.review-avatar{
  border: 1px solid var(--green-border);
}
/* Variante pastille initiale (comptes sans photo), cohérente avec le widget d'avis */
.review-avatar--letter{
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
}
.review-author .who{
  font-weight: 500;
  font-size: .94rem;
  line-height: 1.15;
}
.review-author .role{
  font-size: .82rem;
  color: var(--ink-muted);
}

/* ----- Variante B : marquee défilant ----- */
.reviews-marquee{ margin-top: clamp(20px, 3vw, 36px); }
.marquee--reviews .marquee-track{
  animation-duration: 70s;
  gap: 0;
}
.marquee--reviews.marquee--reverse .marquee-track{ animation-duration: 88s; }
.marquee--reviews + .marquee--reviews{ margin-top: 1.4rem; }
.review-chip{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 340px;
  max-width: 340px;
  margin-right: 1.2rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.review-chip:hover{
  transform: translateY(-3px);
  border-color: var(--green-border);
}
.review-chip blockquote{
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

/* variantes de taille : que la largeur et le padding changent, la police reste pareil */
.review-chip.is-sm{
  min-width: 260px;
  max-width: 260px;
  padding: 1rem 1.1rem;
}

.review-chip.is-lg{
  min-width: 400px;
  max-width: 400px;
  padding: 1.35rem 1.45rem;
}

.review-chip.is-xl{
  min-width: 460px;
  max-width: 460px;
  padding: 1.5rem 1.6rem;
}
.review-chip .review-author{
  margin: 0;
  padding: 0;
  border: 0;
}

/* ----- Variante C : carousel quote vedette ----- */
.reviews-carousel{
  margin-top: clamp(20px, 3vw, 36px);
  position: relative;
}
.reviews-carousel-track{
  position: relative;
  min-height: clamp(280px, 32vw, 360px);
}
.review-big{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.review-big.is-active{
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.review-big .stars{ font-size: 1.05rem; letter-spacing: 3px; }
.review-big blockquote{
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.review-big .review-author{
  margin: 0;
  padding: 0;
  border: 0;
}
.reviews-carousel-nav{
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
}
.rc-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-border);
  border: 0;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.rc-dot:hover{ background: var(--green-3); }
.rc-dot.is-active{
  background: var(--green);
  transform: scale(1.3);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{ max-width: 880px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item:first-child{ border-top: 1px solid var(--line); }
.faq-q{
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q .icon{
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-item.is-open .faq-q .icon{
  transform: rotate(45deg);
  background: var(--green);
  color: var(--bg);
}
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner{ padding: 0 0 1.4rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; max-width: 92%; }

.faq-categories{
  display: grid;
  gap: 0;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.faq-cat{
  padding-block: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.faq-cat:last-child{ border-bottom: 0; }
.faq-cat h2{
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 0 0 1rem;
}

/* le CTA de fin (le panneau vert foncé) */
.cta-band{
  background: linear-gradient(to bottom left,
    var(--green) 0%,
    var(--green-3) 30%,
    #C9D8C0 70%,
    var(--bg) 100%);
  color: var(--bg);
  padding-block: clamp(72px, 9vw, 130px);
  position: relative;
  overflow: hidden;
}
.cta-band::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(250,250,248,.18), transparent 55%);
  pointer-events: none;
}
.cta-band h2{ color: var(--bg); }
.cta-band p.lede{
  color: rgba(250,250,248,.75);
  max-width: 620px;
  margin: 0 auto 2.4rem;
  font-size: 1.08rem;
}
.cta-band .section-head{ text-align: center; }
.cta-band .btn-primary{
  background: var(--bg);
  color: var(--green);
  box-shadow: none;
}
.cta-band .btn-primary:hover{ background: #fff; transform: translateY(-1px); }
.cta-band .btn-ghost{ color: var(--bg); border-color: rgba(250,250,248,.3); }
.cta-band .btn-ghost:hover{ background: rgba(250,250,248,.1); color: var(--bg); border-color: var(--bg); }
.cta-actions{ display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Calendly inline frame */
.calendly-frame{
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: clamp(12px, 2vw, 20px);
  box-shadow: var(--sh-3);
  margin-top: 2.4rem;
}
.calendly-inline-widget{ min-width: 320px; height: 720px; width: 100%; }

/* =========================================================
   PAGE HEADERS (Réalisations, Qui sommes-nous, FAQ, Actu)
   ========================================================= */
.page-head{
  padding-block: clamp(60px, 8vw, 120px) clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.page-head h1{
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.035em;
  margin-bottom: .8rem;
}
.page-head p{
  max-width: 720px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
}
/* les articles (actualités) */
.article-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
}
@media (min-width: 720px){ .article-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .article-grid{ grid-template-columns: repeat(3, 1fr); } }
.article-card{
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.article-card:hover{ transform: translateY(-3px); border-color: var(--green-border); box-shadow: var(--sh-2); }
.article-cover{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-3) 100%);
  position: relative;
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.article-cover.is-tone-2{ background: linear-gradient(135deg, #3F4A45 0%, #1B3A2D 100%); }
.article-cover.is-tone-3{ background: linear-gradient(135deg, #0F1715 0%, #1B3A2D 100%); }
.article-body{ padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.article-tag{
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
}
.article-card h3, .article-card h2{
  font-size: 1.2rem;
  margin: 0 0 .3rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.article-card p{ font-size: .94rem; color: var(--ink-soft); margin: 0; }
.article-card .footer{
  margin-top: auto;
  padding-top: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  color: var(--ink-muted);
  font-family: var(--mono);
  letter-spacing: .03em;
}

/* Article single (page article) */
.article-page article{ max-width: 760px; margin: 0 auto; }
.article-page article h2{ font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin: 2.4rem 0 1rem; }
.article-page article h3{ font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.article-page article p{ font-size: 1.04rem; line-height: 1.75; color: var(--ink); margin: 0 0 1.2rem; }
.article-page article ul{ margin: 0 0 1.4rem; padding-left: 1.5rem; list-style: disc; }
.article-page article ul li{ margin-bottom: .5rem; color: var(--ink); }
.article-page article blockquote{
  border-left: 3px solid var(--green);
  padding: .1rem 0 .1rem 1.4rem;
  margin: 1.8rem 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.article-meta{
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* la team / page a propos */
.about-hero{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 880px){ .about-hero{ grid-template-columns: 1fr 1fr; } }
.about-portrait{
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-2);
}
.about-portrait img{ width:100%; height:100%; object-fit: cover; }
.about-portrait .placeholder{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-3) 100%);
  color: var(--bg);
  font-family: var(--display);
  font-size: 4rem;
  letter-spacing: -0.06em;
}

.values-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 720px){ .values-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .values-grid{ grid-template-columns: repeat(3, 1fr); } }
.value-card{
  border-top: 2px solid var(--green);
  padding: 1.4rem 0 0;
}
.value-card h3{
  font-size: 1.2rem;
  margin: 0 0 .5rem;
  letter-spacing: -0.015em;
}
.value-card p{ font-size: .96rem; margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: rgba(250,250,248,.75);
  padding-block: clamp(56px, 7vw, 88px) clamp(24px, 3vw, 36px);
  margin-top: 0;
}
.footer-cta{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(250,250,248,.10);
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 880px){
  .footer-cta{ grid-template-columns: 1.6fr 1fr; align-items: end; }
}
.footer-cta h2{
  color: var(--bg);
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.footer-cta .actions{ display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }
@media (min-width: 880px){ .footer-cta .actions{ justify-content: flex-end; } }

.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 48px);
}
@media (min-width: 720px){ .footer-grid{ grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-brand .logo{ color: var(--bg); }
.footer-brand p{ color: rgba(250,250,248,.65); margin: .8rem 0 0; max-width: 320px; font-size: .94rem; }

.footer-col h4{
  font-family: var(--mono);
  font-weight: 500;
  font-size: .76rem;
  color: rgba(250,250,248,.5);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 1rem;
}
.footer-col ul{ display: grid; gap: .6rem; }
.footer-col a{ color: rgba(250,250,248,.78); transition: color .2s var(--ease); font-size: .94rem; }
.footer-col a:hover{ color: var(--bg); }
.footer-bottom{
  margin-top: clamp(28px, 4vw, 48px);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem;
  color: rgba(250,250,248,.5);
}

/* ANIMATIONS (l'etat de depart pour GSAP)
   le "masqué avant animation" est appliqué QUE si main.js a mis la classe
   has-anim sur <html> (= gsap a bien chargé). si pas de js/gsap, tout reste
   visible : c'est le filet de secu, on veut pas d'une page toute blanche. */
html.has-anim .reveal{ opacity: 0; transform: translateY(28px); }
/* sur tactile : distance plus courte, l'apparition doit etre quasi instantanée */
@media (hover: none) and (pointer: coarse){
  html.has-anim .reveal{ transform: translateY(14px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html.has-anim .reveal{ opacity: 1; transform: none; }
  .hero h1 .word > span{ transform: none; opacity: 1; }
  .marquee-track{ animation: none; transform: none; }
}

/* le widget avis clients : le bouton flottant + le tiroir qui sort sur le coté */
.reviews-widget{
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: #fff;
  border: 1px solid var(--green-border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15,23,21,.12), 0 2px 6px rgba(15,23,21,.06);
  cursor: pointer;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  color: var(--ink);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.reviews-widget:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,21,.16), 0 3px 8px rgba(15,23,21,.08);
  border-color: var(--green);
}
.reviews-widget:focus-visible{
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.rw-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--green-border);
  flex-shrink: 0;
}
.rw-logo svg{ width: 20px; height: 20px; display: block; }
.rw-logo--lg{ width: 48px; height: 48px; }
.rw-logo--lg svg{ width: 28px; height: 28px; }

.rw-text{
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}
.rw-title{
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.rw-rating{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.rw-score{
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.rw-stars{
  color: #F5B400;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
.rw-stars--lg{ font-size: 16px; }
.rw-count{
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 1px;
}

/* Backdrop */
.reviews-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(15,23,21,.42);
  z-index: 100;
  opacity: 0;
  transition: opacity .3s ease;
}
.reviews-backdrop.is-open{ opacity: 1; }
.reviews-backdrop[hidden]{ display: none; }

/* Drawer */
.reviews-drawer{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(440px, 92vw);
  background: var(--bg);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .42s cubic-bezier(.2,.7,.2,1);
  box-shadow: 14px 0 60px rgba(15,23,21,.18);
}
.reviews-drawer.is-open{ transform: translateX(0); }

.rw-drawer-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--green-border);
  background: #fff;
}
.rw-drawer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}
.rw-drawer-brand h2{
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.rw-drawer-meta{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}
.rw-drawer-meta strong{ color: var(--ink); font-weight: 700; }

.rw-drawer-close{
  appearance: none;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.rw-drawer-close:hover{
  background: var(--green);
  color: var(--bg);
  transform: rotate(90deg);
}

.rw-drawer-body{
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px 24px;
  scroll-behavior: smooth;
}
.rw-review{
  padding: 18px 0;
  border-bottom: 1px solid var(--green-border);
}
.rw-review:last-child{ border-bottom: 0; }

/* ===== Petit logo Google en coin de chaque avis (ce sont des avis Google) ===== */
.review-chip, .rw-review{ position: relative; }
.review-chip::after, .rw-review::after{
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%234285F4%27%20d%3D%27M22.56%2012.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26%201.37-1.04%202.53-2.21%203.31v2.77h3.57c2.08-1.92%203.28-4.74%203.28-8.09z%27%2F%3E%3Cpath%20fill%3D%27%2334A853%27%20d%3D%27M12%2023c2.97%200%205.46-.98%207.28-2.66l-3.57-2.77c-.98.66-2.23%201.06-3.71%201.06-2.86%200-5.29-1.93-6.16-4.53H2.18v2.84C3.99%2020.53%207.7%2023%2012%2023z%27%2F%3E%3Cpath%20fill%3D%27%23FBBC05%27%20d%3D%27M5.84%2014.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43%208.55%201%2010.22%201%2012s.43%203.45%201.18%204.93l2.85-2.22.81-.62z%27%2F%3E%3Cpath%20fill%3D%27%23EA4335%27%20d%3D%27M12%205.38c1.62%200%203.06.56%204.21%201.64l3.15-3.15C17.45%202.09%2014.97%201%2012%201%207.7%201%203.99%203.47%202.18%207.07l3.66%202.84c.87-2.6%203.3-4.53%206.16-4.53z%27%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
}
.review-chip::after{ top: 1.15rem; right: 1.15rem; }
.rw-review::after{ top: 18px; right: 2px; }
.rw-review-head{ padding-right: 26px; }

.rw-review-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rw-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rw-who{
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.rw-role{
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.rw-review .rw-stars{
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
}
.rw-review p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Avatar générique : pastille initiale (comptes Google sans photo) */
.rw-avatar--letter{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

/* Étoile vide (avis 4 étoiles) */
.rw-stars .rw-star-o{ color: #D8D6CE; }

/* Réponse du propriétaire */
.rw-owner{
  margin-top: 10px;
  padding: 9px 12px;
  background: var(--green-soft);
  border-radius: 10px;
}
.rw-owner-title{
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 3px;
}
.rw-review .rw-owner p{
  font-size: 13px;
}

.rw-load-more{
  appearance: none;
  width: 100%;
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--green-border);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.rw-load-more:hover{
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
}
.rw-load-more:focus-visible{
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.rw-load-more-count{
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.rw-load-more:hover .rw-load-more-count{
  color: var(--bg);
  background: rgba(255,255,255,.18);
}
.rw-load-more[hidden]{ display: none; }

.rw-drawer-foot{
  padding: 16px 22px 22px;
  border-top: 1px solid var(--green-border);
  background: #fff;
}
.rw-drawer-foot .btn{ width: 100%; justify-content: center; }

/* Mobile */
@media (max-width: 640px){
  .reviews-widget{
    bottom: 14px;
    left: 14px;
    padding: 8px 14px 8px 10px;
    gap: 10px;
  }
  .rw-logo{ width: 32px; height: 32px; }
  .rw-logo svg{ width: 18px; height: 18px; }
  .rw-title{ font-size: 12px; }
  .rw-score, .rw-stars{ font-size: 12px; }
  .rw-count{ font-size: 10px; }
  .reviews-drawer{ width: 100vw; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reviews-drawer{ transition: none; }
  .reviews-backdrop{ transition: none; }
  .reviews-widget{ transition: none; }
}

/* visuels d'article (reutilisables, cf plan-seo-articles.md §2bis)
   stat strip · graphique barres · icones H2 · cartes profil */

/* -- Strip de statistiques (compteurs animés via [data-count]) -- */
.viz-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 2.4rem 0;
}
.viz-stat{
  background: var(--bg-alt);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 1.3rem 1rem;
  text-align: center;
}
.viz-stat .num{
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
}
.viz-stat .lbl{
  display: block;
  margin-top: .55rem;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
@media (max-width: 560px){
  .viz-stats{ grid-template-columns: 1fr; gap: 10px; }
  .viz-stat{ display:flex; align-items:center; gap:1rem; text-align:left; padding:1rem 1.2rem; }
  .viz-stat .num{ font-size: 1.7rem; min-width: 4.2rem; }
  .viz-stat .lbl{ margin-top:0; }
}

/* -- Graphique en barres (coût/comparatif), grandit au scroll -- */
.viz-bars{
  margin: 2.4rem 0;
  padding: 1.6rem 1.4rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--green-border);
  border-radius: 14px;
}
.viz-bars .viz-cap{
  margin: 0 0 1.6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.viz-bars-row{
  display: flex;
  gap: 16px;
  align-items: end;
  min-height: 210px;
}
.viz-bar{ flex:1 1 0; min-width:0; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.viz-bar .amount{ font-size: .92rem; font-weight:700; color: var(--green); margin-bottom:.45rem; text-align:center; }
.viz-bar .track{ width: 100%; max-width: 96px; display:flex; align-items:flex-end; }
.viz-bar-fill{
  width: 100%;
  height: var(--h, 60px);
  background: linear-gradient(180deg, var(--green-3), var(--green));
  border-radius: 8px 8px 0 0;
  position: relative;
}
.viz-bar .name{ margin-top:.7rem; font-size:.86rem; font-weight:600; color: var(--ink); text-align:center; }
.viz-bar .time{
  margin-top:.45rem;
  white-space: nowrap;
  font-size: .72rem; font-weight:600;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: .14rem .6rem;
}
.viz-bar.is-accent .viz-bar-fill{ background: linear-gradient(180deg, var(--green), var(--green-2)); }

/* -- Icône au trait devant un H2 d'article -- */
.viz-h2-icon{
  display:inline-flex; vertical-align:-0.18em;
  width: 1.25em; height: 1.25em;
  margin-right: .55rem;
  color: var(--green);
}
.viz-h2-icon svg{ width:100%; height:100%; stroke: currentColor; fill:none; }

/* -- Cartes "quel profil" -- */
.profile-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 2.2rem 0;
}
.profile-card{
  background: var(--bg);
  border: 1px solid var(--green-border);
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
}
.profile-card .pc-icon{
  width: 40px; height: 40px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 1rem;
}
.profile-card .pc-icon svg{ width:22px; height:22px; stroke: currentColor; fill:none; }
.profile-card h3{ margin: 0 0 .15rem; font-size: 1.05rem; }
.profile-card .pc-verdict{ font-size:.75rem; font-weight:700; color: var(--green); text-transform:uppercase; letter-spacing:.05em; }
.profile-card p{ margin:.7rem 0 0; font-size:.9rem; }
@media (max-width: 720px){
  .profile-cards{ grid-template-columns: 1fr; }
}

/* -- Timeline de livraison (étapes J0 → J14, horizontale desktop / verticale mobile) -- */
.viz-timeline{
  margin: 2.4rem 0;
  padding: 1.6rem 1.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--green-border);
  border-radius: 14px;
}
.viz-timeline .viz-cap{
  margin: 0 0 1.6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.viz-tl{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.viz-tl::before{
  content: "";
  position: absolute;
  top: 15px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--green-border);
}
.viz-tl-step{ position: relative; text-align: center; padding-top: 44px; }
.viz-tl-step .tl-dot{
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--bg);
  border-radius: 50%;
  font-size: .8rem; font-weight: 700;
}
.viz-tl-step .tl-day{
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: .14rem .6rem;
  margin-bottom: .5rem;
}
.viz-tl-step h3{ margin: 0; font-size: .95rem; }
.viz-tl-step p{ margin: .45rem 0 0; font-size: .84rem; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 720px){
  .viz-tl{ grid-template-columns: 1fr; gap: 22px; }
  .viz-tl::before{ top: 16px; bottom: 16px; left: 15px; right: auto; width: 2px; height: auto; }
  .viz-tl-step{ text-align: left; padding: 0 0 0 48px; }
  .viz-tl-step .tl-dot{ left: 0; transform: none; }
}

/* -- Checklist « à vérifier avant de signer » (points de contrôle, 1 par ligne) -- */
.viz-checklist{
  margin: 2.4rem 0;
  padding: 1.6rem 1.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--green-border);
  border-radius: 14px;
}
.viz-checklist .viz-cap{
  margin: 0 0 1.2rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.viz-cl{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.viz-cl-item{
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--green-border);
  border-radius: 10px;
}
.viz-cl-item .cl-box{
  flex: none;
  width: 22px; height: 22px;
  margin-top: .12rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
}
.viz-cl-item .cl-box svg{ width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 3; }
.viz-cl-item .cl-txt{ font-size: .92rem; line-height: 1.5; color: var(--ink); }
.viz-cl-item .cl-txt strong{ display: block; margin-bottom: .12rem; }
.viz-cl-item .cl-txt span{ display: block; color: var(--ink-soft); font-size: .86rem; }

@media (prefers-reduced-motion: reduce){
  .viz-bar-fill{ transition: none; }
}

/* page de remerciement (merci.html), ça doit tenir sur un seul ecran */
.thanks-screen{
  /* prend toute la hauteur qui reste sous le header sticky, contenu centré */
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(24px, 4vw, 48px);
}
.thanks-inner{ text-align: center; }
.thanks-ico{
  width: 68px; height: 68px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: 50%;
}
.thanks-ico svg{ width: 34px; height: 34px; }
.thanks-eyebrow{ justify-content: center; }
.thanks-inner h1{ margin-bottom: .4em; }
.thanks-lede{
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 1.8rem;
}
.thanks-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* Print */
@media print{ .header, .site-footer, .cta-band, .reviews-widget, .reviews-drawer, .reviews-backdrop{ display: none; } }

/* ===== Encart garantie (section offre) ===== */
.offer-guarantee{
  display:flex; gap:1rem; align-items:flex-start;
  max-width:760px; margin:2.4rem auto 0;
  padding:1.3rem 1.5rem; border-radius:14px;
  background:var(--green-soft); border:1px solid var(--green-border);
}
.offer-guarantee .shield{ color:var(--green); flex:none; margin-top:.15rem; }
.offer-guarantee strong{ display:block; color:var(--ink); font-size:1.05rem; margin-bottom:.3rem; }
.offer-guarantee p{ color:var(--ink-soft); margin:0; font-size:.96rem; line-height:1.55; }

/* =========================================================
   Conversion Landing Pages (Google Ads)
   Hero réassurance, nav allégée, barre d'appel sticky mobile.
   Classes partagées par les 5 LP métier — rien de spécifique métier ici.
   ========================================================= */

/* Nav allégée : sur une LP on garde logo + téléphone + CTA, sans menu ni burger */
.header--lp .nav{ display: none; }
.header--lp .burger{ display: none; }

/* Ligne prix + garantie sous le hero, visible sans scroller */
.lp-assurance{
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 1.4rem; padding: .8rem 1.1rem;
  background: var(--green-soft); border: 1px solid var(--green-border);
  border-radius: var(--r-md);
  font-size: 1rem; color: var(--ink-soft); line-height: 1.4;
}
.lp-assurance svg{ flex: none; width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-assurance strong{ color: var(--green); font-weight: 600; }
.lp-assurance strong.nowrap{ white-space: nowrap; }
@media (max-width: 520px){ .lp-assurance{ display: flex; } }

/* ===== Pop-up devis temporisé — global, toutes pages (sauf devis / merci / légales) =====
   S'ouvre après 30 s OU 55% de scroll (JS dans main.js), fermable (croix ou Échap).
   Coin bas-droit sur desktop, pleine largeur en bas sur mobile : évite la bannière cookies
   (bas-gauche) et le widget avis (bas-gauche, accueil). */
.devis-pop{
  position: fixed; z-index: 200;
  right: max(16px, env(safe-area-inset-right)); left: auto;
  bottom: calc(16px + env(safe-area-inset-bottom));
  width: min(370px, calc(100vw - 32px));
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--green-border); border-radius: var(--r-lg);
  box-shadow: 0 18px 44px rgba(15,23,21,.20), 0 4px 12px rgba(15,23,21,.08);
  transform: translateY(150%); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
  will-change: transform;
}
.devis-pop.is-open{ transform: translateY(0); opacity: 1; }
.devis-pop__title{
  margin: 0 2rem .35rem 0;
  font-family: var(--display); font-weight: 700; font-size: 1.12rem; line-height: 1.25; color: var(--green);
}
.devis-pop__text{ margin: 0 0 1rem; font-size: .96rem; line-height: 1.45; color: var(--ink-soft); }
.devis-pop__cta{
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem; width: 100%;
  padding: .85rem 1rem; border-radius: var(--r-md);
  background: var(--green); color: var(--bg);
  font-family: var(--display); font-weight: 600; font-size: 1rem; line-height: 1.1;
  transition: transform .15s var(--ease);
}
.devis-pop__cta:hover{ transform: translateY(-1px); }
.devis-pop__cta:active{ transform: scale(.99); }
.devis-pop__close{
  position: absolute; top: .5rem; right: .5rem;
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--ink-muted); cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.devis-pop__close:hover{ background: var(--green-soft); color: var(--green); }
.devis-pop__close svg{ width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.devis-pop__close:focus-visible, .devis-pop__cta:focus-visible{ outline: 2px solid var(--green); outline-offset: 2px; }

@media (max-width: 520px){
  .devis-pop{ right: 12px; left: 12px; width: auto; bottom: calc(12px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce){
  .devis-pop{ transform: none; transition: opacity .3s ease; }
  .devis-pop.is-open{ transform: none; }
  .devis-pop__cta{ transition: none; }
}
