/* ==========================================================================
   Shuren — Home (V1 "Minimal premium animé")
   Feuille de style dédiée à la home, autonome : ne dépend pas de style.css.
   ========================================================================== */

/* ---------- Fonts locales ---------- */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/syne-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/lato-700.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --texte: #0A0A0A;
  --texte-doux: #6B6B6B;
  --texte-tenu: #9A9A9A;
  --fond: #FFFFFF;
  --fond-secondaire: #F5F5F3;
  --fond-carte: #FFFFFF;
  --bordure: rgba(0, 0, 0, 0.10);
  --bordure-forte: rgba(0, 0, 0, 0.18);
  --inv-fond: #0A0A0A;
  --inv-texte: #F5F5F3;
  --inv-doux: rgba(245, 245, 243, 0.65);
  --ombre-carte: 0 18px 40px -18px rgba(10, 10, 10, 0.18);
  --font-titre: 'Syne', sans-serif;
  --font-corps: 'Lato', sans-serif;
  --max-width: 1200px;
  --pad-x: 48px;
  --radius: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
}

[data-theme="dark"] {
  --texte: #EFEFEF;
  --texte-doux: #9B9B9B;
  --texte-tenu: #6E6E6E;
  --fond: #101010;
  --fond-secondaire: #181818;
  --fond-carte: #161616;
  --bordure: rgba(255, 255, 255, 0.10);
  --bordure-forte: rgba(255, 255, 255, 0.2);
  --inv-fond: #F5F5F3;
  --inv-texte: #0A0A0A;
  --inv-doux: rgba(10, 10, 10, 0.6);
  --ombre-carte: 0 18px 40px -18px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-corps);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--texte);
  background: var(--fond);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}

/* Grain global très léger */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
[data-theme="dark"] body::after { opacity: 0.05; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-titre); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }

::selection { background: var(--texte); color: var(--fond); }

/* ---------- Système de révélation au scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.rv.visible { opacity: 1; transform: none; }

/* Éléments d'entrée du hero (déclenchés au chargement) */
.fu {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
}
body.loaded .fu { opacity: 1; transform: none; }

/* ---------- Barre de progression ---------- */
#progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--texte);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 1200;
}

/* ---------- Nav ---------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#nav.compact {
  background: color-mix(in srgb, var(--fond) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--bordure);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  #nav.compact { background: var(--fond); }
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.35s var(--ease-out);
}
#nav.compact .nav-inner { height: 54px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
[data-theme="dark"] .nav-logo img { filter: invert(1); }

.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--texte-doux);
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--texte);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--texte); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.lang-toggle { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--texte-tenu); }
.lang-btn.active { color: var(--texte); font-weight: 700; }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--bordure);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.theme-toggle:hover { border-color: var(--bordure-forte); transform: rotate(15deg); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--texte);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
#nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
#nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--fond);
  border-bottom: 1px solid var(--bordure);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
#nav.nav-open .nav-mobile { max-height: 340px; }
.nav-mobile ul { padding: 10px var(--pad-x) 22px; display: flex; flex-direction: column; gap: 14px; }
.nav-mobile a { font-size: 1.05rem; color: var(--texte); }

/* ---------- Boutons ---------- */
.btn-plein, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-plein {
  background: var(--texte);
  color: var(--fond);
}
.btn-plein:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--texte) 45%, transparent);
}
.btn-outline {
  border: 1px solid var(--bordure-forte);
  color: var(--texte);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--texte);
}
.magnet { transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease; }

.lien-souligne {
  font-weight: 700;
  border-bottom: 1px solid var(--bordure-forte);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}
.lien-souligne:hover { border-color: var(--texte); }

/* ---------- Sections communes ---------- */
section { position: relative; }
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px var(--pad-x);
}
.section-inner-etroite { max-width: 860px; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  margin-bottom: 14px;
}
.section-titre {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 14px;
}
.section-sous-titre {
  color: var(--texte-doux);
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 56px;
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--pad-x) 60px;
  width: 100%;
}
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  margin-bottom: 28px;
}
.kanji-inline { letter-spacing: 0.1em; text-transform: none; }

.hero-h1 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 34px;
}
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-in {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1s var(--ease-out);
}
body.loaded .line-in { transform: translateY(0); }
.line:nth-child(2) .line-in { transition-delay: 0.1s; }

.roller {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  border-bottom: 0.045em solid var(--texte);
  padding-bottom: 0.02em;
}
.roller-word {
  display: inline-block;
  transition: transform 0.5s var(--ease-out), opacity 0.4s ease;
}
.roller-word.out { transform: translateY(-108%); opacity: 0; }
.roller-word.prep { transition: none; transform: translateY(108%); opacity: 0; }

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: var(--texte-doux);
  max-width: 640px;
  margin-bottom: 42px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Intégrations : rangée d'outils en niveaux de gris */
.hero-tools { margin-top: 40px; }
.hero-tools-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  margin-bottom: 14px;
}
.tools-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--texte-doux);
  background: var(--fond-carte);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-out);
}
.tool-chip:hover { border-color: var(--bordure-forte); color: var(--texte); transform: translateY(-1px); }
.tool-icon { width: 15px; height: 15px; flex-shrink: 0; fill: var(--texte-tenu); transition: fill 0.25s ease; }
.tool-chip:hover .tool-icon { fill: var(--texte-doux); }
.tool-icon-img { width: 18px; height: 18px; flex-shrink: 0; object-fit: contain; }
[data-theme="dark"] .tool-icon-img { filter: grayscale(1) contrast(1.15) brightness(1.55); }

/* Ensō calligraphique qui se dessine */
.hero-enso {
  position: absolute;
  top: 50%;
  right: -8vmin;
  transform: translateY(-54%) rotate(-14deg);
  width: 64vmin;
  height: 64vmin;
  color: var(--texte);
  opacity: 0.055;
  pointer-events: none;
}
[data-theme="dark"] .hero-enso { opacity: 0.085; }
.hero-enso path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2s var(--ease-out) 0.35s;
}
body.loaded .hero-enso path { stroke-dashoffset: 0; }

/* ---------- Preuve sociale ---------- */
#preuves { border-top: 1px solid var(--bordure); border-bottom: 1px solid var(--bordure); background: var(--fond-secondaire); }
.preuves-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.preuve {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px;
  border-left: 1px solid var(--bordure);
}
.preuve:first-child { border-left: none; padding-left: 0; }
.preuve-n {
  font-family: var(--font-titre);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.preuve-l { font-size: 0.85rem; color: var(--texte-doux); line-height: 1.45; }

/* ---------- Qui suis-je ---------- */
#apropos { overflow: hidden; }
.apropos-pin { position: relative; }
/* Effet "pin" desktop : le texte reste fixe pendant que le kanji défile derrière */
@media (min-width: 901px) {
  #apropos { height: 200vh; overflow: visible; }
  .apropos-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .apropos-pin .section-inner { padding-top: 0; padding-bottom: 0; }
}
.apropos-kanji {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(calc(-50% + var(--kanji-shift, 0px)));
  font-size: clamp(12rem, 26vw, 24rem);
  line-height: 1;
  font-weight: 700;
  color: var(--texte);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  will-change: transform;
}
[data-theme="dark"] .apropos-kanji { opacity: 0.05; }
.apropos-bloc {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 860px;
}
.apropos-photo-wrap { flex-shrink: 0; }
.apropos-photo-wrap.rv { transform: none; }
.apropos-photo {
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: var(--radius);
  clip-path: inset(0 100% 0 0 round var(--radius));
  transition: clip-path 1.1s var(--ease-out) 0.15s;
}
.apropos-photo-wrap.visible .apropos-photo { clip-path: inset(0 0 0 0 round var(--radius)); }
.apropos-contenu { display: flex; flex-direction: column; gap: 18px; font-size: 1.1rem; font-weight: 300; color: var(--texte-doux); }
.apropos-contenu p:first-child { color: var(--texte); font-weight: 400; }

/* ---------- Cards (Atelier) ---------- */
.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease,
    opacity 0.75s var(--ease-out);
}
.card.rv { transition: transform 0.75s var(--ease-out), opacity 0.75s var(--ease-out); transition-delay: var(--d, 0s); }
.card.rv.visible {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
  transition-delay: 0s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-carte);
  border-color: var(--bordure-forte);
}
.card-clickable { cursor: pointer; }
.card-lien-stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--fond);
  color: var(--texte);
  border: 1px solid var(--bordure);
  padding: 5px 10px;
  border-radius: 999px;
}
.card-visual {
  height: 150px;
  border-radius: calc(var(--radius) - 4px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-visual-chefsimon { background: #F3EDE2; }
[data-theme="dark"] .card-visual-chefsimon { background: #E9E2D4; }
.card-visual-eo { background: #2B2FE0; }
.card-visual-eo img { width: auto; height: auto; max-width: 110px; max-height: 110px; object-fit: contain; }
.card-visual-email { background: linear-gradient(135deg, #1B2735, #3A506B); }
.card-visual-avis { background: linear-gradient(135deg, #2B2118, #6B4F2C); }
.card-visual-planning { background: linear-gradient(135deg, #21182B, #52396B); }
.card-visual-projet {
  background: var(--fond-secondaire);
  color: var(--texte-tenu);
  font-family: var(--font-titre);
  font-size: 3rem;
}
.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-tenu);
}
.card-titre { font-size: 1.3rem; }
.card-desc { font-size: 0.95rem; color: var(--texte-doux); flex-grow: 1; }
.card-footer { margin-top: 4px; }
.card-lien { font-size: 0.9rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.card-arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }
.card-lien:hover .card-arrow, .lien-souligne:hover .card-arrow { transform: translateX(5px); }
.card-dashed { border-style: dashed; background: transparent; }

/* ---------- Agents 24/7 ---------- */
#agents { background: var(--fond-secondaire); }
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.agent-card {
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease,
    opacity 0.75s var(--ease-out);
}
.agent-card.rv { transition: transform 0.75s var(--ease-out), opacity 0.75s var(--ease-out); transition-delay: var(--d, 0s); }
.agent-card.rv.visible {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  transition-delay: 0s;
}
.agent-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-carte); }
.agent-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--bordure-forte);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.agent-titre { font-size: 1.2rem; }
.agent-desc { font-size: 0.95rem; color: var(--texte-doux); flex-grow: 1; }

/* Mini conversation animée */
.agent-chat {
  border-top: 1px solid var(--bordure);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 108px;
}
.agent-chat span, .agent-chat .chat-dots { opacity: 0; }
.chat-q, .chat-a {
  font-size: 0.85rem;
  padding: 8px 13px;
  border-radius: 12px;
  max-width: 90%;
  transform: translateY(8px);
}
.chat-q {
  align-self: flex-end;
  background: var(--fond-secondaire);
  border: 1px solid var(--bordure);
  border-bottom-right-radius: 3px;
}
.chat-a {
  align-self: flex-start;
  background: var(--texte);
  color: var(--fond);
  border-bottom-left-radius: 3px;
}
.chat-dots {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 10px 13px;
}
.chat-dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--texte-tenu);
}
.agent-card.visible .chat-q { animation: chatIn 0.45s var(--ease-out) calc(var(--d, 0s) + 0.35s) forwards; }
.agent-card.visible .chat-dots { animation: dotsWindow 1.1s ease calc(var(--d, 0s) + 0.85s) forwards; }
.agent-card.visible .chat-dots i { animation: dotPulse 0.7s ease-in-out infinite; }
.agent-card.visible .chat-dots i:nth-child(2) { animation-delay: 0.15s; }
.agent-card.visible .chat-dots i:nth-child(3) { animation-delay: 0.3s; }
.agent-card.visible .chat-a { animation: chatIn 0.45s var(--ease-out) calc(var(--d, 0s) + 1.95s) forwards; }
@keyframes chatIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dotsWindow {
  0% { opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; height: 0; padding-top: 0; padding-bottom: 0; }
}
@keyframes dotPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.agents-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Méthode ---------- */
.methode-wrap { position: relative; padding-top: 26px; }
.methode-ligne {
  position: absolute;
  top: 47px;
  left: 0; right: 0;
  height: 1px;
  background: var(--bordure-forte);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.4s var(--ease-out) 0.3s;
}
.methode-wrap.visible .methode-ligne { transform: scaleX(1); }
.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: etape;
}
.methode-etape { position: relative; padding-top: 42px; transform-origin: 0% 0%; }
.methode-etape.rv.visible { transition: transform 0.3s var(--ease-out); transition-delay: 0s; }
.methode-etape:hover { transform: scale(1.14); }
.methode-etape::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--fond);
  border: 1.5px solid var(--texte);
  transition: background 0.3s ease;
}
.methode-etape:hover::before { background: var(--texte); }
.methode-num {
  font-family: var(--font-titre);
  font-size: 0.9rem;
  color: var(--texte-tenu);
  display: block;
  margin-bottom: 8px;
}
.methode-titre { font-size: 1.15rem; margin-bottom: 8px; }
.methode-desc { font-size: 0.92rem; color: var(--texte-doux); }
.methode-lien { margin-top: 48px; }

/* ---------- Tarifs ---------- */
#tarifs { background: var(--fond-secondaire); }

.bill-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--fond-carte);
  margin-bottom: 44px;
}
.bill-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--texte-doux);
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bill-btn.active { background: var(--texte); color: var(--fond); }
.bill-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.75;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tarif-card {
  position: relative;
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease,
    opacity 0.75s var(--ease-out);
}
.tarif-card.rv { transition: transform 0.75s var(--ease-out), opacity 0.75s var(--ease-out); transition-delay: var(--d, 0s); }
.tarif-card.rv.visible {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  transition-delay: 0s;
}
.tarif-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-carte); }

/* Bordure conic-gradient animée sur l'offre recommandée */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.tarif-reco { border-color: var(--bordure-forte); }
.tarif-reco::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1.5px;
  background: conic-gradient(from var(--angle),
      transparent 0deg,
      var(--texte) 65deg,
      transparent 130deg,
      transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: recoSpin 5.5s linear infinite;
  pointer-events: none;
}
@keyframes recoSpin { to { --angle: 360deg; } }

.tarif-badge {
  position: absolute;
  top: -13px;
  left: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--texte);
  color: var(--fond);
  padding: 5px 12px;
  border-radius: 999px;
}
.tarif-badge-soft { background: var(--fond-secondaire); color: var(--texte-doux); border: 1px solid var(--bordure); }

.tarif-nom { font-size: 1.25rem; margin-bottom: 16px; }
.tarif-prix { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.tarif-montant {
  font-family: var(--font-titre);
  font-size: 2.9rem;
  line-height: 1;
  display: inline-block;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.tarif-montant.swap { opacity: 0; transform: translateY(8px); }
.tarif-detail { color: var(--texte-doux); font-size: 0.95rem; }
.tarif-cadence {
  font-size: 0.85rem;
  color: var(--texte-tenu);
  margin-bottom: 24px;
  min-height: 1.4em;
  transition: opacity 0.18s ease;
}
.tarif-cadence.swap { opacity: 0; }
.tarif-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}
.tarif-features li {
  font-size: 0.93rem;
  color: var(--texte-doux);
  padding-left: 26px;
  position: relative;
}
.tarif-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--fond-secondaire);
  border: 1px solid var(--bordure-forte);
}
.tarif-features li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.32em + 4px);
  width: 6px;
  height: 3.5px;
  border-left: 1.5px solid var(--texte);
  border-bottom: 1.5px solid var(--texte);
  transform: rotate(-45deg);
}
.tarif-btn { width: 100%; }

.tarif-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}
.tarif-extra {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px dashed var(--bordure-forte);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 0.95rem;
  color: var(--texte-doux);
}
.tarif-extra strong { color: var(--texte); }
.tarif-extra-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--bordure);
  display: grid;
  place-items: center;
  background: var(--fond-carte);
}

.tarif-devis {
  margin-top: 24px;
  border: 1px solid var(--bordure);
  background: var(--fond-carte);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.tarif-devis-titre { font-size: 1.25rem; margin-bottom: 6px; }
.tarif-devis-desc { font-size: 0.95rem; color: var(--texte-doux); max-width: 560px; }
.tarif-devis-btn { flex-shrink: 0; }
.tarif-tva { margin-top: 26px; font-size: 0.8rem; color: var(--texte-tenu); }

/* ---------- Avantages ---------- */
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.avantage-item { display: flex; flex-direction: column; gap: 10px; }
.avantage-icone {
  width: 44px; height: 44px;
  border: 1px solid var(--bordure-forte);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.icon-draw path, .icon-draw line, .icon-draw polyline, .icon-draw circle, .icon-draw rect {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.3s var(--ease-out) calc(var(--d, 0s) + 0.25s);
}
.avantage-item.visible .icon-draw path,
.avantage-item.visible .icon-draw line,
.avantage-item.visible .icon-draw polyline,
.avantage-item.visible .icon-draw circle,
.avantage-item.visible .icon-draw rect { stroke-dashoffset: 0; }
.avantage-titre { font-size: 1.1rem; }
.avantage-desc { font-size: 0.93rem; color: var(--texte-doux); }

/* ---------- FAQ ---------- */
.faq-liste { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--bordure); }
.faq-item:first-child { border-top: 1px solid var(--bordure); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 1.02rem;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--texte-doux); }
.faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 14px; height: 14px;
  transition: transform 0.35s var(--ease-out);
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--texte);
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-plus::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p {
  padding: 0 4px 24px;
  color: var(--texte-doux);
  font-size: 0.98rem;
  max-width: 720px;
}
.faq-item[open] p { animation: faqIn 0.45s var(--ease-out); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.faq-cta { margin-top: 44px; text-align: center; }

/* ---------- Comparateur ---------- */
.comp { max-width: 980px; }
.comp-head, .comp-row {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 1fr;
  gap: 20px;
  align-items: center;
}
.comp-head {
  padding: 0 22px 14px;
  font-family: var(--font-titre);
  font-size: 0.95rem;
}
.comp-head-shuren { display: flex; align-items: center; gap: 8px; }
[data-theme="dark"] .comp-head-logo-mark, [data-theme="dark"] .comp-head-logo-text { filter: invert(1); }
.comp-head-agence { color: var(--texte-tenu); }
.comp-row {
  border: 1px solid var(--bordure);
  border-radius: 10px;
  padding: 15px 22px;
  margin-bottom: 8px;
  background: var(--fond-carte);
  font-size: 0.93rem;
  transition: border-color 0.3s ease, transform 0.75s var(--ease-out), opacity 0.75s var(--ease-out);
}
.comp-row:hover { border-color: var(--bordure-forte); }
.comp-critere { font-weight: 700; }
.comp-shuren {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.comp-agence { color: var(--texte-tenu); }
.comp-check {
  flex-shrink: 0;
  width: 15px; height: 15px;
  fill: none;
  stroke: var(--texte);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comp-check path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.7s var(--ease-out) calc(var(--d, 0s) + 0.35s);
}
.comp-row.visible .comp-check path { stroke-dashoffset: 0; }

/* ---------- CTA final ---------- */
#cta-final { padding: 40px var(--pad-x) 120px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--inv-fond);
  color: var(--inv-texte);
  border-radius: 24px;
  padding: 90px 48px;
  text-align: center;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--inv-texte) 9%, transparent), transparent 68%);
  animation: ctaDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaDrift {
  from { transform: translate(-12%, -8%); }
  to { transform: translate(12%, 8%); }
}
.cta-titre {
  position: relative;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  max-width: 720px;
  margin: 0 auto 16px;
}
.cta-sub {
  position: relative;
  color: var(--inv-doux);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 38px;
}
.cta-boutons {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-inverse { background: var(--inv-texte); color: var(--inv-fond); }
.btn-inverse:hover { box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.45); }
.btn-outline-inverse { border-color: color-mix(in srgb, var(--inv-texte) 35%, transparent); color: var(--inv-texte); }
.btn-outline-inverse:hover { border-color: var(--inv-texte); }

/* ---------- Bannière cookies (contrat conservé avec style.css) ---------- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--fond);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: cookieFadeIn 0.3s ease;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookie-banner p { font-size: 0.8125rem; line-height: 1.6; color: var(--texte-doux); flex: 1; margin: 0; }
#cookie-banner p a { color: var(--texte); text-decoration: underline; text-underline-offset: 3px; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--texte);
  color: var(--fond);
  border: none;
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept:hover { opacity: 0.85; }
.cookie-refuse {
  background: transparent;
  color: var(--texte-doux);
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 0.8125rem;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-refuse:hover { color: var(--texte); border-color: var(--texte); }
[data-theme="dark"] #cookie-banner { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }
  @keyframes cookieFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-refuse { flex: 1; text-align: center; }
}

/* ---------- Footer ---------- */
#footer { border-top: 1px solid var(--bordure); }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--texte-doux);
}
.footer-links { display: flex; align-items: center; gap: 22px; }
.footer-lien { transition: color 0.25s ease; }
a.footer-lien:hover { color: var(--texte); }
.footer-preview-tag { color: var(--texte-tenu); }
.footer-copy { color: var(--texte-tenu); }

/* ---------- Page « Cas client » ---------- */
.cas-hero { padding-bottom: 0; }
.cas-fil {
  font-size: 0.8rem;
  color: var(--texte-tenu);
  margin-bottom: 22px;
}
.cas-fil a { border-bottom: 1px solid var(--bordure-forte); transition: color 0.2s ease, border-color 0.2s ease; }
.cas-fil a:hover { color: var(--texte); border-color: var(--texte); }

.cas-grid {
  display: grid;
  gap: 44px;
  margin-top: 56px;
}
@media (min-width: 980px) {
  .cas-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}

.cas-fiche {
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  background: var(--fond-carte);
  padding: 28px;
  align-self: start;
}
@media (min-width: 980px) {
  .cas-fiche { position: sticky; top: calc(var(--nav-h) + 24px); }
}
.cas-fiche-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  margin-bottom: 18px;
}
.cas-fiche-liste li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bordure);
}
.cas-fiche-liste li:last-child { border-bottom: none; }
.cas-fiche-liste span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-tenu);
}
.cas-fiche-liste strong { font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.cas-fiche-liste strong.accent { color: var(--texte); text-decoration: underline; text-decoration-color: var(--bordure-forte); text-underline-offset: 3px; }
.cas-fiche-cta { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--bordure); }

.cas-actes { position: relative; padding-left: 30px; }
.cas-actes::before {
  content: "";
  position: absolute;
  left: 5px; top: 10px; bottom: 10px;
  width: 1px;
  background: var(--bordure);
}
.acte { position: relative; padding-bottom: 52px; }
.acte:last-child { padding-bottom: 0; }
.acte::before {
  content: "";
  position: absolute;
  left: -30px; top: 6px;
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid var(--texte);
  background: var(--fond);
}
.acte-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texte-tenu);
  margin-bottom: 10px;
}
.acte-titre { font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.25; margin-bottom: 12px; }
.acte-texte { font-weight: 300; color: var(--texte-doux); max-width: 36em; }
.acte-agents { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.acte-agents li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 13px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--fond-carte);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.acte-agents li:hover { border-color: var(--texte); }

.acte-kpis { display: grid; gap: 14px; margin-top: 20px; }
@media (min-width: 640px) { .acte-kpis { grid-template-columns: repeat(3, 1fr); } }
.kpi {
  border: 1px solid var(--bordure);
  border-radius: var(--radius);
  background: var(--fond-carte);
  padding: 18px 16px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.kpi:hover { border-color: var(--bordure-forte); transform: translateY(-3px); }
.kpi-n { display: block; font-family: var(--font-titre); font-size: 1.7rem; line-height: 1.2; font-variant-numeric: tabular-nums; }
.kpi-l { display: block; font-size: 0.82rem; color: var(--texte-doux); line-height: 1.45; margin-top: 6px; }
.kpi-note { font-size: 0.76rem; color: var(--texte-tenu); margin-top: 16px; }

/* ---- L'addition ---- */
.addition-wrap { display: grid; gap: 40px; align-items: center; margin-top: 96px; }
@media (min-width: 980px) { .addition-wrap { grid-template-columns: 1fr 0.9fr; gap: 72px; } }
.addition-titre { font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.15; margin-bottom: 16px; }
.addition-texte { font-weight: 300; color: var(--texte-doux); max-width: 32em; margin-bottom: 14px; }
.addition-note { font-size: 0.76rem; color: var(--texte-tenu); }

.addition {
  font-family: var(--font-corps);
  background: var(--fond-carte);
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 30px 26px 24px;
  max-width: 440px;
  width: 100%;
  justify-self: center;
  transform: rotate(-0.6deg);
  box-shadow: var(--ombre-carte);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.addition:hover { transform: rotate(0deg) translateY(-4px); }
.addition-head {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--bordure-forte);
  margin-bottom: 8px;
}
.addition-head span { display: block; margin-top: 6px; font-size: 0.66rem; font-weight: 400; letter-spacing: 0.06em; color: var(--texte-tenu); text-transform: none; }
.addition-lignes li { display: flex; align-items: baseline; gap: 8px; padding: 11px 0; font-size: 0.85rem; }
.rv .addition-lignes li { opacity: 0; transform: translateY(6px); transition: opacity 0.45s ease, transform 0.45s var(--ease-out); }
.rv.visible .addition-lignes li { opacity: 1; transform: translateY(0); }
.rv.visible .addition-lignes li:nth-child(1) { transition-delay: 0.25s; }
.rv.visible .addition-lignes li:nth-child(2) { transition-delay: 0.45s; }
.rv.visible .addition-lignes li:nth-child(3) { transition-delay: 0.65s; }
.rv.visible .addition-lignes li:nth-child(4) { transition-delay: 0.85s; }
.add-item { flex-shrink: 0; max-width: 60%; }
.add-dots { flex: 1; border-bottom: 1px dotted var(--bordure-forte); transform: translateY(-4px); }
.add-prix { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; }
.addition-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-top: 10px; padding: 14px 0;
  border-top: 1px dashed var(--bordure-forte); border-bottom: 1px dashed var(--bordure-forte);
  font-size: 0.84rem; font-weight: 700;
}
.addition-total-n { font-size: 1.1rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.addition-vs { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 12px 0; font-size: 0.78rem; color: var(--texte-doux); }
.addition-vs span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; color: var(--texte); }
.addition-merci { text-align: center; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--texte-tenu); margin-top: 12px; }

/* ---- Transposition à d'autres secteurs ---- */
.transpose { margin-top: 88px; padding-top: 40px; border-top: 1px solid var(--bordure); text-align: center; }
.transpose-titre { font-size: 1.15rem; margin-bottom: 20px; }
.transpose-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.transpose-chips li {
  font-size: 0.8rem; font-weight: 700;
  padding: 7px 15px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--fond-carte);
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}
.transpose-chips li:hover { border-color: var(--texte); transform: translateY(-2px); }

@media (max-width: 767px) {
  .cas-actes { padding-left: 24px; }
  .acte::before { left: -24px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  :root { --pad-x: 32px; }
  .atelier-grid, .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 520px; }
  .methode-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .methode-ligne { display: none; }
  .preuves-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .preuve:nth-child(3) { border-left: none; padding-left: 0; }
  .tarif-devis { flex-direction: column; align-items: flex-start; }
  .hero-enso { right: -30vmin; opacity: 0.04; }
}

@media (max-width: 767px) {
  :root { --pad-x: 20px; }
  .section-inner { padding: 78px var(--pad-x); }
  .nav-links, .lang-toggle { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .atelier-grid, .agents-grid { grid-template-columns: 1fr; }
  .avantages-grid { grid-template-columns: 1fr; gap: 32px; }
  .apropos-bloc { flex-direction: column; gap: 32px; }
  .comp-head { display: none; }
  .comp-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }
  .comp-agence { font-size: 0.85rem; }
  .comp-agence::before { content: "Agence traditionnelle : "; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
  .cta-panel { padding: 64px 24px; border-radius: 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tarif-extras { grid-template-columns: 1fr; }
  .hero-sub br { display: none; }
}

@media (max-width: 600px) {
  .preuves-inner { grid-template-columns: 1fr 1fr; }
  .preuve { padding: 0 16px; }
  .methode-grid { grid-template-columns: 1fr; }
  .hero-cta .btn-plein, .hero-cta .btn-outline { width: 100%; }
}

/* ==========================================================================
   Reduced motion : tout reste lisible, rien ne bouge
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .rv, .fu, .line-in, .roller-word { opacity: 1 !important; transform: none !important; }
  .apropos-photo { clip-path: none !important; }
  .hero-enso path, .comp-check path,
  .icon-draw path, .icon-draw line, .icon-draw polyline, .icon-draw circle, .icon-draw rect { stroke-dashoffset: 0 !important; }
  .methode-ligne { transform: scaleX(1) !important; }
  .agent-chat span { opacity: 1 !important; transform: none !important; }
  .chat-dots { display: none !important; }
  .tarif-reco::before { animation: none !important; }
  .cta-panel::before { animation: none !important; }
}
