:root {
  --papier: #F7F5F0;
  --papier-2: #FFFFFF;
  --encre: #16181D;
  --encre-50: rgba(22,24,29,.72);
  --encre-30: rgba(22,24,29,.48);
  --ligne: rgba(27,29,34,.11);
  --vert: #0F6B5C;
  --vert-fonce: #0A5448;
  --vert-pale: #E4EFEA;
  --corail: #FE5F55;
  --mono: 'IBM Plex Mono', monospace;
}
* { margin:0; padding:0; box-sizing:border-box; }
::selection { background: var(--vert); color: var(--papier); }
html { scroll-behavior: smooth; }
body {
  background: var(--papier); color: var(--encre);
  font-family: 'Archivo', sans-serif; font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* Grain très léger */
body::after {
  content:""; position: fixed; inset: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-3%,2%); }
  30% { transform: translate(2%,-4%); } 50% { transform: translate(-4%,-2%); }
  70% { transform: translate(3%,3%); } 90% { transform: translate(-2%,4%); }
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.mono { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }

/* ---------------- Header ---------------- */
header {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  border-bottom: 1px solid var(--ligne);
  background: rgba(247,245,240,.8); backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--encre); }
.logo svg { width: 38px; height: 38px; }
.logo .mot {
  font-size: 22px; font-weight: 280; letter-spacing: -.015em;
  font-variation-settings: "wdth" 104;
  line-height: 1; position: relative; top: -1px;
}
.logo .mot b { font-weight: 820; letter-spacing: -.03em; }
nav { display:flex; gap: 34px; }
nav a {
  color: var(--encre); text-decoration:none; font-family: var(--mono);
  font-size: 13.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  position: relative; padding: 4px 0; transition: color .3s;
}
nav a::after {
  content:""; position:absolute; left:0; bottom:0; height:2px; width:100%;
  background: var(--vert); transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.65,0,.35,1);
}
nav a:hover { color: var(--vert); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------------- Mega menu ---------------- */
.mega {
  position: absolute; left: 0; right: 0; top: 72px;
  background: var(--papier); border-bottom: 1px solid var(--ligne);
  box-shadow: 0 30px 60px rgba(22,24,29,.08);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1), visibility .3s;
}
header.mega-ouvert .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grille {
  max-width: 1320px; margin: 0 auto; padding: 36px 48px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.mega-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px; border-radius: 12px; text-decoration: none; color: inherit;
  transition: background .25s;
}
.mega-item:hover { background: var(--vert-pale); }
.mega-item .ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  background: var(--vert-pale); color: var(--vert);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.mega-item:hover .ico { background: var(--vert); color: var(--papier); }
.mega-item .ico svg { width: 22px; height: 22px; stroke-width: 1.6; }
.mega-item .nom { font-size: 15.5px; font-weight: 680; letter-spacing: -.01em; line-height: 1.3; }
.mega-item .desc { margin-top: 3px; font-size: 13px; color: var(--encre-50); line-height: 1.5; }
.mega-pied {
  max-width: 1320px; margin: 0 auto; padding: 0 48px 26px;
}
.mega-pied a {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--vert); text-decoration: none; font-weight: 500;
}
.mega-pied a:hover { text-decoration: underline; }
.nav-mega-lien { cursor: pointer; }
.nav-mega-lien::before { content: ""; position: absolute; left: -14px; right: -14px; top: -10px; bottom: -26px; }
.header-droite { display:flex; align-items:center; gap: 28px; }
.btn {
  position: relative; display:inline-flex; align-items:center; gap:12px;
  text-decoration:none; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 14px 26px; border: 1px solid rgba(27,29,34,.3); border-radius: 100px;
  color: var(--encre); overflow: hidden; transition: color .4s, border-color .4s;
}
.btn::before {
  content:""; position:absolute; inset:0; background: var(--encre);
  transform: translateY(101%); transition: transform .45s cubic-bezier(.65,0,.35,1);
  border-radius: inherit;
}
.btn:hover { color: var(--papier); border-color: var(--encre); }
.btn:hover::before { transform: translateY(0); }
.btn span { position: relative; z-index:1; }
.btn-plein { background: var(--vert); color: var(--papier); border-color: var(--vert); }
.btn-plein::before { background: var(--vert-fonce); }
.btn-plein:hover { color: var(--papier); border-color: var(--vert-fonce); }
.btn-papier { background: var(--papier); color: var(--encre); border-color: var(--papier); }
.btn-papier::before { background: var(--encre); }
.btn-papier:hover { color: var(--papier); }
.btn-header { padding: 11px 22px; }

/* ---------------- Hero ---------------- */
.hero { min-height: 100svh; display:flex; flex-direction: column; padding: 96px 0 0; position: relative; }
.hero > .container { margin-top: auto; margin-bottom: auto; padding-top: 32px; padding-bottom: 56px; }
.hero .pulse-zone { margin-top: 0; }
.hero-haut { display:flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.hero-label { color: var(--encre-30); display:flex; align-items:center; gap:14px; }
.hero-label::before { content:""; width: 44px; height: 1px; background: var(--vert); display:inline-block; }
.hero h1 {
  font-size: clamp(46px, 7.2vw, 110px);
  line-height: .96; font-weight: 700; letter-spacing: -.035em;
  font-variation-settings: "wdth" 112;
  text-wrap: balance;
}
.hero h1 .ligne { display:block; overflow: hidden; }
.hero h1 .ligne > span { display:block; transform: translateY(112%); animation: lever 1.1s cubic-bezier(.16,1,.3,1) forwards; }
.hero h1 .ligne:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .ligne:nth-child(3) > span { animation-delay: .24s; }
@keyframes lever { to { transform: translateY(0); } }
.hero h1 .creux { color: transparent; -webkit-text-stroke: 2.5px var(--vert); }
.hero h1 .vert { color: var(--vert); }
.hero-bas {
  display:grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
  padding: 40px 0 0;
}
.hero-bas .lead { max-width: 460px; color: var(--encre-50); font-size: 18px; line-height: 1.7; font-weight: 500; }
.hero-actions { display:flex; gap:14px; align-items:center; padding-bottom: 6px; flex-wrap: wrap; }

/* Pouls — ligne de base continue + segment lumineux qui voyage */
.pulse-zone {
  position: relative; margin-top: 84px;
  border-top: 1px solid var(--ligne); background: var(--papier-2);
  background-image: repeating-linear-gradient(90deg, rgba(15,107,92,.045) 0, rgba(15,107,92,.045) 1px, transparent 1px, transparent 56px);
}
.pulse-svg { display:block; width: 100%; height: 96px; }
.pulse-base { fill:none; stroke: rgba(15,107,92,.18); stroke-width: 1.4; }
.pulse-trace {
  fill:none; stroke: var(--vert); stroke-width: 1.8; stroke-linecap: round;
  stroke-dasharray: 130 1470;
  animation: voyager 6s linear infinite;
}
@keyframes voyager { from { stroke-dashoffset: 1600; } to { stroke-dashoffset: 0; } }
.pulse-legende {
  position:absolute; top: 50%; transform: translateY(-50%); right: 48px;
  color: var(--encre-50); display:flex; align-items:center; gap:10px;
  background: var(--papier-2); padding: 6px 12px; border: 1px solid var(--ligne); border-radius: 100px;
}
.pulse-legende-g {
  position:absolute; top: 50%; transform: translateY(-50%); left: 48px;
  color: var(--encre-30); background: var(--papier-2); padding: 6px 12px;
}
.pulse-legende .dot { width:7px; height:7px; border-radius:50%; background:var(--vert); animation: clignote 1.6s ease infinite; }
@keyframes clignote { 50% { opacity:.25; } }

/* ---------------- Ticker ---------------- */
.ticker { border-top: 1px solid var(--ligne); border-bottom: 1px solid var(--ligne); overflow:hidden; padding: 17px 0; background: var(--papier-2); }
.ticker-piste { display:flex; width:max-content; animation: defiler 36s linear infinite; }
.ticker:hover .ticker-piste { animation-play-state: paused; }
.ticker-item { display:flex; align-items:center; gap: 28px; padding-right: 28px; white-space:nowrap; color: var(--encre-30); }
.ticker-item b { color: var(--encre-50); font-weight: 500; }
.ticker-item .ok { color: var(--vert); }
@keyframes defiler { to { transform: translateX(-50%); } }

/* ---------------- Bande stats ---------------- */
.stats {
  border-bottom: 1px solid var(--ligne);
  display:grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { padding: 44px 40px; border-right: 1px solid var(--ligne); }
.stat-item:first-child { border-left: 1px solid var(--ligne); }
.stat-item .valeur { font-size: 44px; font-weight: 720; letter-spacing: -.03em; line-height: 1; font-variation-settings: "wdth" 112; }
.stat-item .valeur em { font-style: normal; color: var(--vert); }
.stat-item .legende { margin-top: 10px; color: var(--encre-30); }

/* ---------------- Réassurance ---------------- */
.reassurance { display:flex; gap: 36px; flex-wrap: wrap; margin-top: 32px; }
.reassurance span { display:inline-flex; align-items:center; gap: 9px; color: var(--encre-50); }
.reassurance span::before { content:"✓"; color: var(--vert); font-weight: 800; }
.forfait .micro { margin-top: 14px; text-align: center; color: var(--encre-30); }
.apres-methode { text-align:center; margin-top: 56px; }
.apres-methode .note { display:block; margin-top: 16px; color: var(--encre-30); }
.sous-btn-bilan { display:block; margin-top: 16px; color: rgba(247,245,240,.55); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--ligne); }
.faq details { border-bottom: 1px solid var(--ligne); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 28px 56px 28px 0; font-size: 20px; font-weight: 640;
  letter-spacing: -.015em; font-variation-settings: "wdth" 106;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after {
  content:"+"; position:absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 28px; font-weight: 400; color: var(--vert);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--vert); }
.faq .reponse { padding: 0 0 28px; color: var(--encre-50); max-width: 720px; font-size: 15.5px; line-height: 1.7; }

/* ---------------- Sections ---------------- */
section { padding: 120px 0; position: relative; scroll-margin-top: 72px; }
.entete { display:grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.entete .repere { color: var(--encre-30); }
.entete h2 {
  font-size: clamp(40px, 5.4vw, 84px); line-height: .98; font-weight: 680;
  letter-spacing: -.03em; font-variation-settings: "wdth" 110; max-width: 900px; text-wrap: balance;
}
.entete h2 .creux { color: transparent; -webkit-text-stroke: 2px var(--vert); }

/* Services — grille d'icônes */
.services-grille {
  display:grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ligne); border-left: 1px solid var(--ligne);
}
.service {
  position: relative; padding: 48px 44px 56px;
  border-right: 1px solid var(--ligne); border-bottom: 1px solid var(--ligne);
  text-decoration: none; color: inherit; overflow: hidden;
}
.service::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent, rgba(15,107,92,.05));
  opacity:0; transition: opacity .5s;
}
.service::before {
  content:""; position:absolute; left:0; top:0; height:2px; width:100%;
  background: var(--vert); transform: scaleX(0); transform-origin: left;
  transition: transform .55s cubic-bezier(.65,0,.35,1);
}
.service:hover::after { opacity:1; }
.service:hover::before { transform: scaleX(1); }
.service .haut { display:flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; }
.service .ico {
  width: 56px; height: 56px; color: var(--vert);
  background: var(--vert-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s cubic-bezier(.22,1,.36,1), background .3s;
}
.service:hover .ico { transform: translateY(-4px); background: var(--vert); color: var(--papier); }
.service .ico svg { width: 28px; height: 28px; stroke-width: 1.6; }
.service .no { color: var(--vert); }
.service h3 {
  font-size: 21px; font-weight: 680; letter-spacing: -.015em; margin-bottom: 10px;
  font-variation-settings: "wdth" 106; transition: color .3s;
}
.service:hover h3 { color: var(--vert); }
.service p { color: var(--encre-50); font-size: 14.5px; line-height: 1.65; }

/* ---------------- Forfaits ---------------- */
.hero-prix { margin-top: 20px; display: flex; justify-content: flex-end; }
.hero-prix .pille {
  display: inline-flex; align-items: baseline; gap: 7px;
  background: var(--vert-pale); color: var(--encre);
  padding: 13px 24px; border-radius: 100px;
  font-size: 13px !important; letter-spacing: .08em;
}
.hero-prix b { color: var(--vert); font-weight: 700; font-size: 17px; letter-spacing: .02em; }
.forfaits-grille {
  display:grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ligne); border-left: 1px solid var(--ligne);
}
.forfait {
  position: relative; padding: 52px 44px 56px; display:flex; flex-direction: column;
  border-right: 1px solid var(--ligne); border-bottom: 1px solid var(--ligne);
  background: var(--papier);
}
.forfait.vedette { background: var(--papier-2); }
.forfait.vedette::before {
  content:""; position:absolute; left:0; top:0; height:2px; width:100%; background: var(--vert);
}
.forfait .etiquette { position:absolute; top: 22px; right: 44px; color: var(--vert); }
.forfait .nom { color: var(--encre-30); display:block; margin-bottom: 44px; }
.forfait h3 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; font-variation-settings: "wdth" 108; }
.forfait .prix { display:flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; }
.forfait .prix .montant { font-size: 60px; font-weight: 720; letter-spacing: -.035em; line-height: 1; font-variation-settings: "wdth" 112; }
.forfait .prix .periode { color: var(--encre-30); font-size: 15px; }
.forfait .prix-note { color: var(--encre-30); margin-bottom: 36px; }
.forfait ul { list-style: none; flex: 1; margin-bottom: 40px; }
.forfait li {
  padding: 11px 0 11px 26px; position: relative; font-size: 14.5px; color: var(--encre-50);
  border-bottom: 1px solid var(--ligne);
}
.forfait li::before { content: "✓"; position: absolute; left: 0; color: var(--vert); font-weight: 700; }
.forfait li.plus { color: var(--encre); font-weight: 500; }
.forfait .btn { justify-content: center; }

/* ---------------- Bilan de santé ---------------- */
.bilan { background: var(--vert); color: var(--papier); }
.bilan .mono { color: rgba(247,245,240,.5); }
.bilan-grille { display:grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items:center; }
.bilan h2 {
  font-size: clamp(38px, 4.6vw, 70px); line-height: 1; font-weight: 680;
  letter-spacing: -.03em; font-variation-settings: "wdth" 110; margin-bottom: 30px; text-wrap: balance;
}
.bilan h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 2px rgba(247,245,240,.95); }
.bilan .texte p { color: rgba(247,245,240,.72); margin-bottom: 20px; max-width: 480px; font-size: 16.5px; }
.bilan .texte .btn { margin-top: 18px; border-color: rgba(247,245,240,.4); color: var(--papier); }
.bilan .texte .btn::before { background: var(--papier); }
.bilan .texte .btn:hover { color: var(--vert); border-color: var(--papier); }
.carte-bilan {
  background: var(--papier); color: var(--encre); border-radius: 16px; padding: 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  transform: rotate(1.2deg);
}
.carte-bilan .mono { color: var(--encre-30); }
.carte-bilan .score { display:flex; align-items: baseline; gap: 14px; margin: 18px 0 6px; }
.carte-bilan .score .gros { font-size: 92px; font-weight: 720; letter-spacing: -.04em; line-height: 1; font-variation-settings: "wdth" 114; }
.carte-bilan .score .sur { color: var(--encre-30); font-size: 26px; font-weight: 500; }
.carte-bilan .verdict { color: var(--encre-50); margin-bottom: 28px; font-size: 15px; }
.barres { display:grid; gap: 14px; }
.barre { display:grid; grid-template-columns: 130px 1fr 44px; gap: 14px; align-items:center; font-size: 13.5px; }
.barre .nom { color: var(--encre-50); }
.barre .piste { height: 5px; background: rgba(27,29,34,.08); border-radius: 99px; overflow:hidden; }
.barre .rempli { height: 100%; border-radius: 99px; background: var(--vert); width: 0; transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.barre.attention .rempli { background: var(--corail); }
.barre .val { text-align:right; font-family: var(--mono); font-size: 12px; color: var(--encre-50); }

/* ---------------- Québec / Loi 25 ---------------- */
.quebec { background: var(--papier-2); border-top: 1px solid var(--ligne); border-bottom: 1px solid var(--ligne); }
.quebec-grille { display:grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items:center; }
.quebec .gros-chiffre {
  font-size: clamp(110px, 15vw, 230px); font-weight: 720; line-height: .9;
  letter-spacing: -.04em; font-variation-settings: "wdth" 115;
}
.quebec .gros-chiffre small { font-size: .35em; font-weight: 500; color: var(--vert); vertical-align: super; }
.quebec .sous-chiffre { margin-top: 22px; color: var(--encre-30); }
.quebec .coordonnees { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--ligne); color: var(--encre-50); line-height: 2.1; }
.quebec .coordonnees b { color: var(--encre); font-weight: 500; }
.quebec h2 {
  font-size: clamp(36px, 4.2vw, 64px); line-height: 1.02; font-weight: 680;
  letter-spacing: -.028em; font-variation-settings: "wdth" 110; margin-bottom: 32px; text-wrap: balance;
}
.quebec h2 em { font-style: normal; color: var(--vert); }
.quebec .texte p { color: var(--encre-50); margin-bottom: 20px; max-width: 480px; font-size: 16.5px; }
.quebec .texte .btn { margin-top: 18px; }

/* ---------------- Étapes ---------------- */
.etapes-grille { display:grid; grid-template-columns: repeat(3,1fr); border-top:1px solid var(--ligne); border-left:1px solid var(--ligne); }
.etape { border-right:1px solid var(--ligne); border-bottom:1px solid var(--ligne); padding: 52px 44px 64px; position:relative; overflow:hidden; background: var(--papier); }
.etape::after {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(15,107,92,.05));
  opacity:0; transition: opacity .5s;
}
.etape:hover::after { opacity:1; }
.etape .no { color: var(--vert); display:block; margin-bottom: 70px; }
.etape h3 { font-size: 26px; font-weight: 680; letter-spacing:-.02em; margin-bottom: 14px; font-variation-settings: "wdth" 108; }
.etape p { color: var(--encre-50); font-size: 15px; }
.etape .duree { display:block; margin-top: 34px; color: var(--encre-30); }

/* ---------------- CTA ---------------- */
.cta { padding: 140px 0 130px; text-align:center; position:relative; overflow:hidden; }
.cta .mono { color: var(--encre-30); display:block; margin-bottom: 36px; }
.cta h2 {
  font-size: clamp(64px, 11vw, 180px); line-height: .92; font-weight: 720;
  letter-spacing: -.04em; font-variation-settings: "wdth" 114; position:relative;
}
.cta h2 .creux { color:transparent; -webkit-text-stroke: 3px var(--vert); }
.cta .actions { margin-top: 64px; display:flex; gap:16px; justify-content:center; position:relative; flex-wrap: wrap; }
.cta .garanties { margin-top: 44px; color: var(--encre-30); }

/* ---------------- Footer ---------------- */
footer { border-top: 1px solid var(--ligne); padding: 64px 0 40px; background: var(--papier-2); }
.footer-grille { display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; margin-bottom: 80px; }
.footer-grille .col a { display:block; color: var(--encre-50); text-decoration:none; padding: 5px 0; font-size: 14.5px; transition: color .3s; }
.footer-grille .col a.logo { display:flex; align-items:center; padding: 0; color: var(--encre); }
.footer-grille .col a:hover { color: var(--vert); }
.footer-grille .col .titre { color: var(--encre-30); margin-bottom: 16px; }
.wordmark {
  font-size: clamp(44px, 10.8vw, 158px); line-height: .9; letter-spacing: -.03em;
  font-weight: 300; font-variation-settings: "wdth" 104;
  color: transparent; -webkit-text-stroke: 1px rgba(22,24,29,.28);
  user-select:none; white-space:nowrap; text-align:center;
  max-width: 100%; overflow: hidden;
  transition: color 1.2s ease;
}
.wordmark b { font-weight: 800; letter-spacing: -.04em; -webkit-text-stroke: 2.5px rgba(22,24,29,.3); }
.wordmark:hover { color: rgba(15,107,92,.08); }
.footer-bas { display:flex; justify-content:space-between; gap: 20px; flex-wrap:wrap; margin-top: 56px; color: var(--encre-30); }

/* ---------------- Reveals ---------------- */
.rv { opacity:0; transform: translateY(18px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); }
.rv.vu { opacity:1; transform:none; }
.rv-d1 { transition-delay:.07s; } .rv-d2 { transition-delay:.14s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity:1 !important; transform:none !important; transition:none !important; }
  .pulse-trace, .ticker-piste, .hero h1 .ligne > span { animation: none !important; }
  .hero h1 .ligne > span { transform: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  nav, .mega { display:none; }
  .hero { padding-top: 84px; }
  .hero-bas { grid-template-columns: 1fr; gap: 30px; }
  .entete { grid-template-columns: 1fr; gap: 18px; margin-bottom: 56px; }
  .services-grille, .forfaits-grille { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 24px; }
  .stat-item .valeur { font-size: 32px; }
  .faq summary { font-size: 17px; }
  .forfait { padding: 40px 28px 44px; }
  .hero-prix { justify-content: flex-start; }
  .service { padding: 36px 28px 44px; }
  .service .haut { margin-bottom: 32px; }
  .bilan-grille, .quebec-grille { grid-template-columns: 1fr; gap: 56px; }
  .carte-bilan { transform: none; }
  .etapes-grille { grid-template-columns: 1fr; }
  .pulse-legende { right: 24px; }
  section { padding: 96px 0; }
}

/* ---- Pages internes (gabarits) ---- */
.page-hero { padding: 150px 0 70px; }
.page-hero .label { color: var(--encre-30); display:flex; align-items:center; gap:14px; margin-bottom: 30px; }
.page-hero .label::before { content:""; width: 44px; height: 1px; background: var(--vert); display:inline-block; }
.page-hero h1 { font-size: clamp(40px, 5.8vw, 86px); line-height: .98; font-weight: 700; letter-spacing: -.03em; font-variation-settings: "wdth" 110; max-width: 1000px; text-wrap: balance; }
.page-hero h1 .creux { color: transparent; -webkit-text-stroke: 2px var(--vert); }
.page-hero h1 .vert { color: var(--vert); }
.page-hero .lead { margin-top: 28px; max-width: 620px; color: var(--encre-50); font-size: 18px; line-height: 1.7; font-weight: 500; }
.bloc-texte { max-width: 760px; }
.bloc-texte h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 680; letter-spacing: -.025em; font-variation-settings: "wdth" 108; margin-bottom: 18px; text-wrap: balance; }
.bloc-texte p { color: var(--encre-50); margin-bottom: 16px; font-size: 16.5px; line-height: 1.75; }
.inclus { border-top: 1px solid var(--ligne); margin-top: 26px; }
.inclus li { list-style:none; padding: 14px 0 14px 30px; position: relative; border-bottom: 1px solid var(--ligne); color: var(--encre-50); font-size: 15.5px; }
.inclus li::before { content:"✓"; position:absolute; left:0; color: var(--vert); font-weight: 800; }
.tableau { width: 100%; border-collapse: collapse; margin-top: 10px; }
.tableau th, .tableau td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--ligne); font-size: 14.5px; vertical-align: top; }
.tableau th { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--encre-30); font-weight: 500; }
.tableau td:first-child { font-weight: 600; color: var(--encre); }
.tableau .oui { color: var(--vert); font-weight: 700; }
.tableau .non { color: var(--encre-30); }
.tableau .col-nous { background: var(--vert-pale); }
.contenu-wp { max-width: 760px; margin: 0 auto; padding: 130px 24px 90px; }
.contenu-wp h1 { font-size: clamp(36px,5vw,64px); font-weight: 700; letter-spacing:-.03em; margin-bottom: 28px; }
.contenu-wp p { color: var(--encre-50); margin-bottom: 16px; line-height: 1.75; }

/* ---- Page Contact ---- */
.contact-section { padding: 50px 0 120px; }
.contact-grille { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.contact-form-bloc {
  background: var(--papier-2); border: 1px solid var(--ligne); border-radius: 16px;
  padding: 44px 44px 48px; position: relative;
}
.contact-form-bloc::before { content:""; position:absolute; left:0; top:0; height:2px; width:100%; background: var(--vert); border-radius: 16px 16px 0 0; }
.contact-cartes { display: flex; flex-direction: column; gap: 18px; }
.carte-contact { border: 1px solid var(--ligne); border-radius: 14px; padding: 24px 26px; background: var(--papier-2); transition: border-color .3s; }
.carte-contact:hover { border-color: var(--vert); }
.carte-contact h3 { font-size: 17px; font-weight: 680; letter-spacing: -.01em; margin-bottom: 8px; font-variation-settings: "wdth" 106; }
.carte-contact p { color: var(--encre-50); font-size: 14.5px; line-height: 1.6; }
.carte-contact a { color: var(--vert); font-weight: 600; text-decoration: none; }
.carte-contact a:hover { text-decoration: underline; }
.carte-mono { color: var(--encre-30); background: var(--vert-pale); border-color: transparent; line-height: 1.6; }

/* Gravity Forms — harmonisé au système v4 */
.contact-form .gform_wrapper { margin: 0; }
.contact-form .gform_wrapper form { margin: 0; }
.contact-form .gfield { margin-bottom: 20px; }
.contact-form .gfield_label,
.contact-form legend.gfield_label {
  display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--encre-50); font-weight: 500; margin-bottom: 9px;
}
.contact-form .gfield_required { color: var(--vert); margin-left: 4px; }
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=url],
.contact-form input[type=tel],
.contact-form textarea,
.contact-form select {
  width: 100%; font-family: 'Archivo', sans-serif; font-size: 15.5px; color: var(--encre);
  background: var(--papier); border: 1px solid var(--ligne); border-radius: 10px;
  padding: 13px 15px; transition: border-color .25s, box-shadow .25s; line-height: 1.5;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--vert); box-shadow: 0 0 0 3px rgba(15,107,92,.12);
}
.contact-form ::placeholder { color: var(--encre-30); }
.contact-form .gfield_description,
.contact-form .gform_validation_errors,
.contact-form .validation_message { font-size: 13px; color: var(--corail); margin-top: 6px; }
.contact-form .gform_footer { margin-top: 28px; padding: 0; }
.contact-form .gform_button,
.contact-form input[type=submit] {
  display: inline-flex; align-items: center; cursor: pointer;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 15px 30px; border-radius: 100px; border: 1px solid var(--vert);
  background: var(--vert); color: var(--papier); transition: background .3s, transform .15s;
}
.contact-form .gform_button:hover,
.contact-form input[type=submit]:hover { background: var(--vert-fonce); }
.contact-form .gform_button:active { transform: translateY(1px); }
.contact-form .gform_confirmation_message {
  padding: 22px 24px; background: var(--vert-pale); border-radius: 12px;
  color: var(--encre); font-size: 16px; line-height: 1.6;
}
.contact-form .gform_required_legend { display: none; }

@media (max-width: 980px) {
  .contact-grille { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-bloc { padding: 32px 24px 36px; }
  .contact-section { padding: 40px 0 90px; }
}
