/* ============================================================
   Adomia — one-page premium
   Fond clair, accent orange, motion spring
   ============================================================ */

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #FBFBFA;
  --surface: #FFFFFF;
  --ink: #161513;
  --ink-2: #6B6862;
  --ink-3: #96938C;
  --line: rgba(22, 21, 19, 0.08);
  --line-strong: rgba(22, 21, 19, 0.14);
  --accent: #FF6700;
  --accent-deep: #E25B00;
  --accent-soft: #FFF3EA;
  --accent-line: rgba(255, 103, 0, 0.25);
  --dark: #171512;
  --dark-2: #211E1A;
  --r-xl: 2rem;
  --r-lg: 1.25rem;
  --r-md: 0.875rem;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 1px 2px rgba(22, 21, 19, 0.04), 0 12px 40px -12px rgba(22, 21, 19, 0.12);
  --shadow-float: 0 2px 6px rgba(22, 21, 19, 0.05), 0 32px 80px -24px rgba(22, 21, 19, 0.22);
  --container: 76rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

::selection { background: var(--accent); color: #fff; }

/* ---------- Typographie ---------- */
h2 { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-title em { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-spring),
              background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
              0 1px 2px rgba(226, 91, 0, 0.3),
              0 10px 28px -10px rgba(255, 103, 0, 0.55);
}

/* Reflet qui balaie le bouton au survol */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 38%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn-primary:hover::before { animation: sheen 0.8s var(--ease-out); }

@keyframes sheen {
  from { transform: translateX(0) skewX(-20deg); }
  to { transform: translateX(430%) skewX(-20deg); }
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
              0 2px 4px rgba(226, 91, 0, 0.28),
              0 16px 36px -12px rgba(255, 103, 0, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover { background: rgba(22, 21, 19, 0.04); transform: translateY(-1px); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

/* Avatar dans les CTA */
.btn-face {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  object-fit: cover;
  margin-left: -0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.btn-lg .btn-face { width: 2rem; height: 2rem; margin-left: -0.6rem; }

/* Icône imbriquée (button-in-button) */
.btn-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin-right: -0.55rem;
  transition: transform 0.45s var(--ease-spring);
}

.btn-ic svg { width: 0.85rem; height: 0.85rem; }
.btn:hover .btn-ic { transform: translate(2px, -1px) scale(1.06); }

/* ============================================================
   HEADER — pilule flottante
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding-top: 1rem;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  max-width: 62rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 0.6rem 0.55rem 1.15rem;
  margin-inline: clamp(0.75rem, 3vw, auto);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(22, 21, 19, 0.07);
  box-shadow: 0 1px 2px rgba(22, 21, 19, 0.04);
  transition: box-shadow 0.5s var(--ease-out);
}

@media (min-width: 62rem) {
  .header-inner { margin-inline: auto; }
}

.header.scrolled .header-inner { box-shadow: var(--shadow-soft); }

.header-logo { display: flex; flex-shrink: 0; }
.header-logo img { height: 1.9rem; width: auto; }

.header-nav {
  display: flex;
  gap: 0.25rem;
  justify-self: center;
}

.header-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink-2);
  transition: color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.header-nav a:hover { color: var(--ink); background: rgba(22, 21, 19, 0.05); }

.btn-header { padding: 0.6rem 1.25rem; font-size: 0.92rem; }

.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
}

.header-burger span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.45s var(--ease-spring), opacity 0.3s;
}

.header-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.header-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  pointer-events: auto;
  margin: 0.6rem clamp(0.75rem, 3vw, 2rem) 0;
  padding: 1rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(22, 21, 19, 0.07);
  box-shadow: var(--shadow-float);
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a:not(.btn) {
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-weight: 550;
  color: var(--ink);
}

.mobile-menu a:not(.btn):hover { background: rgba(22, 21, 19, 0.04); }
.mobile-menu .btn { margin-top: 0.5rem; }

@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .header-nav, .btn-header { display: none; }
  .header-burger { display: flex; justify-self: end; }
}

/* CTA du header (desktop) et du menu mobile : sans photo */
.btn-header .btn-face, .mobile-menu .btn .btn-face { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(7rem, 13vh, 9.5rem) 0 clamp(3rem, 6vw, 5rem); }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.3rem, 1.2rem + 3.3vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
  max-width: 22ch;
}

.hero-title em { color: var(--accent); }

/* Mots du H1 : révélation mot à mot (le JS enveloppe chaque mot) */
.hero-title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.hero-title .w > span { display: inline-block; }

.js .hero-title.split {
  opacity: 1;
  translate: none;
  filter: none;
}

.js .hero-title.split .w > span {
  transform: translateY(115%);
  transition: transform 0.9s var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.js .hero-title.split.in .w > span { transform: translateY(0); }

/* Surlignage orange animé derrière les mots-clés */
.hero-title em, .section-title em { position: relative; z-index: 0; }

.hero-title em::after, .section-title em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.03em;
  height: 0.45em;
  background: var(--accent-soft);
  border-radius: 0.18em;
}

.js .reveal em::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-spring) 0.85s;
}

.js .reveal.in em::after { transform: scaleX(1); }

.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-2);
  max-width: 34rem;
  margin-inline: auto;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Preuve sociale intégrée au hero */
.hero-proof { margin-top: 2.4rem; }

.hero-proof p {
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ink-3);
}

.hero-logos {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.hero-logos img {
  height: 1.8rem;
  width: auto;
  filter: grayscale(1) contrast(0.5) brightness(1.1);
  opacity: 0.75;
  transition: filter 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.hero-logos img:hover { filter: none; opacity: 1; }

/* Les logos apparaissent un à un après le label */
.js .hero-logos img {
  opacity: 0;
  translate: 0 8px;
  transition: opacity 0.5s var(--ease-out), translate 0.5s var(--ease-spring), filter 0.4s var(--ease-out);
}

.js .hero-proof.in .hero-logos img { opacity: 0.75; translate: 0 0; }

.js .hero-proof.in .hero-logos img:nth-child(1) { transition-delay: 0.15s; }
.js .hero-proof.in .hero-logos img:nth-child(2) { transition-delay: 0.23s; }
.js .hero-proof.in .hero-logos img:nth-child(3) { transition-delay: 0.31s; }
.js .hero-proof.in .hero-logos img:nth-child(4) { transition-delay: 0.39s; }
.js .hero-proof.in .hero-logos img:nth-child(5) { transition-delay: 0.47s; }
.js .hero-proof.in .hero-logos img:nth-child(6) { transition-delay: 0.55s; }

.js .hero-proof.in .hero-logos img:hover { opacity: 1; filter: none; transition-delay: 0s; }

/* --- Visuel SERP (double-bezel) --- */
.hero-visual {
  position: relative;
  width: min(38rem, 100%);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  transition: transform 0.7s var(--ease-spring);
}

.hero-visual.tilting { transition: transform 0.12s linear; }

/* Lévitation douce une fois la séquence terminée */
.js .hero-visual.settled .serp-card { animation: card-float 6s ease-in-out infinite alternate; }

@keyframes card-float {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.serp-card {
  background: rgba(22, 21, 19, 0.045);
  border: 1px solid rgba(22, 21, 19, 0.06);
  border-radius: var(--r-xl);
  padding: 0.5rem;
  box-shadow: var(--shadow-float);
}

.serp-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: calc(var(--r-xl) - 0.5rem) calc(var(--r-xl) - 0.5rem) var(--r-md) var(--r-md);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 1px 3px rgba(22, 21, 19, 0.05);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--ink);
}

.serp-glass { color: var(--ink-3); flex-shrink: 0; }

.serp-query { font-weight: 550; display: inline-flex; align-items: baseline; }

.serp-caret {
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  align-self: center;
  animation: caret-blink 1.1s steps(1) infinite;
}

@keyframes caret-blink { 50% { opacity: 0; } }

.serp-results { display: grid; gap: 0.4rem; margin-top: 0.4rem; }

.serp-result {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 1.05rem 1.25rem;
}

.serp-results > .serp-result:last-child {
  border-radius: var(--r-md) var(--r-md) calc(var(--r-xl) - 0.5rem) calc(var(--r-xl) - 0.5rem);
}

.serp-result-win {
  border: 1px solid var(--accent-line);
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.07), 0 8px 24px -10px rgba(255, 103, 0, 0.3);
}

.serp-result-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.serp-tag {
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
}

.serp-url { color: var(--ink-3); }

.serp-result-title {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.serp-result-desc {
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--ink-2);
}

/* Toast prospect */
.lead-toast {
  position: absolute;
  left: -1.5rem;
  bottom: -1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.8rem 1.15rem;
  box-shadow: var(--shadow-float);
  transform: rotate(-2deg);
}

.lead-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  flex-shrink: 0;
}

.lead-toast-title { font-size: 0.92rem; font-weight: 650; line-height: 1.3; }
.lead-toast-sub { font-size: 0.8rem; color: var(--ink-2); }

/* Anneau qui pulse autour de l'icône quand le prospect arrive */
.lead-toast-icon { position: relative; }

.lead-toast-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--accent);
  opacity: 0;
}

.js .hero-visual.step-toast .lead-toast-icon::after { animation: ring-pulse 2.4s var(--ease-out) infinite; }

@keyframes ring-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Séquence animée (activée en JS) */
.js .serp-result-win, .js .serp-result-ghost, .js .lead-toast {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.js .lead-toast { transform: translateY(14px) rotate(-2deg); }

.js .hero-visual.step-results .serp-result-win,
.js .hero-visual.step-results .serp-result-ghost {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-visual.step-toast .lead-toast {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}

/* Second toast, en haut à droite */
.lead-toast-alt {
  left: auto;
  right: -1.25rem;
  top: -1.25rem;
  bottom: auto;
  transform: rotate(2deg);
}

.js .lead-toast-alt,
.js .hero-visual.step-toast .lead-toast-alt {
  opacity: 0;
  transform: translateY(-14px) rotate(2deg);
}

.js .hero-visual.step-toast2 .lead-toast-alt {
  opacity: 1;
  transform: translateY(0) rotate(2deg);
}

/* Changement de contenu du toast : sortie / entrée */
.lead-toast.swap { animation: toast-swap 0.6s var(--ease-spring); }

@keyframes toast-swap {
  0% { opacity: 1; transform: translateY(0) rotate(-2deg); }
  40%, 55% { opacity: 0; transform: translateY(12px) rotate(-2deg) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) rotate(-2deg); }
}

@media (max-width: 900px) {
  .hero-visual { margin-top: 2rem; }
  .lead-toast { left: 0.75rem; bottom: -1.1rem; }
}

/* ============================================================
   MÉCANISME (douleur / retournement)
   ============================================================ */
.mechanism { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.mechanism-title { max-width: 48rem; margin-inline: auto; }

.mechanism-intro {
  margin-top: 1.3rem;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  font-size: 1.12rem;
  color: var(--ink-2);
}

.mechanism-steps {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.mechanism-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem 1.7rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
}

.mechanism-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}

.js .mechanism-steps .reveal:nth-child(2) { transition-delay: 0.12s; }
.js .mechanism-steps .reveal:nth-child(3) { transition-delay: 0.24s; }

.mechanism-src {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--ink-3);
}

.mechanism-step h3 {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.mechanism-step p {
  margin-top: 0.6rem;
  font-size: 0.97rem;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .mechanism-steps { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ============================================================
   RÉSULTATS : chiffres + cas clients
   ============================================================ */
.results {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.cases-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.case-card {
  --lift: 0px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateY(var(--lift));
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
}

.case-card:hover {
  transform: translateY(calc(var(--lift) - 6px));
  box-shadow: var(--shadow-float);
}

.case-card-feature {
  background: var(--surface);
  border-color: var(--accent-line);
  box-shadow: 0 0 0 4px rgba(255, 103, 0, 0.06), var(--shadow-float);
}

.case-head { display: flex; align-items: center; gap: 0.85rem; }

.case-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: var(--shadow-soft);
}

.case-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}

.case-stars { display: inline-flex; gap: 2px; color: #FBBC04; }

.case-stars .star { width: 0.95rem; height: 0.95rem; }

.js .case-stars .star { scale: 0; transition: scale 0.45s var(--ease-spring); }

.js .case-card.in .case-stars .star:nth-child(1) { scale: 1; transition-delay: 0.35s; }
.js .case-card.in .case-stars .star:nth-child(2) { scale: 1; transition-delay: 0.44s; }
.js .case-card.in .case-stars .star:nth-child(3) { scale: 1; transition-delay: 0.53s; }
.js .case-card.in .case-stars .star:nth-child(4) { scale: 1; transition-delay: 0.62s; }
.js .case-card.in .case-stars .star:nth-child(5) { scale: 1; transition-delay: 0.71s; }

.case-card blockquote {
  font-size: 1.08rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1.45;
  text-wrap: pretty;
}

.case-author {
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
}

.case-author span {
  font-weight: 450;
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-top: 0.1rem;
}

.case-metrics {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--ink-2);
}

.case-metrics strong {
  color: var(--accent-deep);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MÉTHODE
   ============================================================ */
.method { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.method-head { position: sticky; top: 7rem; text-align: left; }

.method-head .section-title { text-align: left; }

.method-intro {
  margin-top: 1.2rem;
  margin-bottom: 1.9rem;
  color: var(--ink-2);
  max-width: 26rem;
}

/* Le fil orange se dessine, le point apparaît en rebond */
.timeline-item::after {
  content: "";
  position: absolute;
  left: -1.5px;
  top: 0.25rem;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
}

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-head { position: static; }
}

/* ============================================================
   SIMULATEUR
   ============================================================ */
.simulator {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.simulator .section-title { max-width: 42rem; margin-inline: auto; }

.simulator-intro {
  margin-top: 1.2rem;
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.simulator-panel {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  background: rgba(22, 21, 19, 0.045);
  border: 1px solid rgba(22, 21, 19, 0.06);
  border-radius: var(--r-xl);
  padding: 0.6rem;
}

.simulator-controls {
  background: var(--bg);
  border-radius: calc(var(--r-xl) - 0.6rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.sim-control-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.sim-control-head label {
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.sim-control-head output {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.sim-hint {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.45;
}

.sim-basis {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-2);
}

/* Sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1.5rem;
  background: transparent;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--fill, 50%), rgba(22, 21, 19, 0.1) var(--fill, 50%));
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(255, 103, 0, 0.35);
  margin-top: calc((6px - 1.35rem) / 2);
  transition: transform 0.3s var(--ease-spring);
}

input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.15); }

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(22, 21, 19, 0.1);
}

input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

input[type="range"]::-moz-range-thumb {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(255, 103, 0, 0.35);
}

input[type="range"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 999px;
}

.simulator-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--ink-3);
  max-width: 44rem;
}

@media (max-width: 1050px) {
  .simulator-panel { grid-template-columns: 1fr; }
}

/* ============================================================
   TARIFS
   ============================================================ */
/* Section colorée pleine largeur, cartes blanches par-dessus */
.pricing {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--bg);
  position: relative;
}

.pricing::before, .pricing::after { display: none; }

.pricing::before {
  width: 34rem;
  height: 34rem;
  left: -14rem;
  top: -10rem;
  animation: orb-drift 16s ease-in-out infinite alternate;
}

.pricing::after {
  width: 28rem;
  height: 28rem;
  right: -12rem;
  bottom: -10rem;
  animation: orb-drift 13s ease-in-out infinite alternate-reverse;
}

.pricing .container { text-align: left; position: relative; z-index: 1; }

.pricing .eyebrow {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.pricing .section-title { color: #fff; }

/* Mots-clés : marker blanc, texte orange */
.pricing .section-title em { color: #fff; padding-inline: 0.12em; }

.pricing .section-title em::after {
  height: 100%;
  bottom: 0;
  background: #fff;
  border-radius: 0.3em;
}

.js .pricing .section-title em { transition: color 0.25s var(--ease-out) 1s; }
.js .pricing .section-title.in em { color: var(--accent-deep); }
.pricing .section-title:not(.reveal) em, html:not(.js) .pricing .section-title em { color: var(--accent-deep); }

/* Carte mise en avant : sombre, halo orange qui respire */
.price-card-feature {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  box-shadow: 0 24px 64px -20px rgba(23, 21, 18, 0.45);
  position: relative;
}

@keyframes glow-breathe {
  from { opacity: 0.25; }
  to { opacity: 0.8; }
}

/* ============================================================
   RÉSERVATION
   ============================================================ */
.booking {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.booking .section-title { text-align: center; max-width: 44rem; margin-inline: auto; }

.booking-intro {
  text-align: center;
  max-width: 38rem;
  margin: 1.2rem auto 0;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.booking-embed {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  min-height: 34rem;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.booking-fallback {
  text-align: center;
  margin-top: 1.3rem;
  font-size: 0.92rem;
  color: var(--ink-3);
}

.booking-fallback a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand img { height: 1.8rem; width: auto; }

.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  max-width: 21rem;
}

.footer-nav {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-nav a { color: var(--ink-2); transition: color 0.3s; width: max-content; }
.footer-nav a:hover { color: var(--ink); }

.footer-legal {
  font-size: 0.88rem;
  color: var(--ink-3);
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--ink); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   MINI-VISUELS ANIMÉS (mécanisme)
   ============================================================ */
.mech-visual {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  height: 10rem;
  margin-bottom: 1.3rem;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

/* --- 1. Recherche qui se tape --- */
.mv-search-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  box-shadow: 0 4px 14px -6px rgba(22, 21, 19, 0.14);
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--ink);
}

.mv-search-pill svg { color: var(--ink-3); flex-shrink: 0; }

.mv-typed {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
}

[data-anim].play .mv-typed { animation: mv-type 6s steps(25, end) infinite; }

@keyframes mv-type {
  0%, 8% { max-width: 0; opacity: 1; }
  48% { max-width: 15rem; opacity: 1; }
  88% { max-width: 15rem; opacity: 1; }
  93% { max-width: 15rem; opacity: 0; }
  98%, 100% { max-width: 0; opacity: 0; }
}

.mv-caret {
  width: 2px;
  height: 1em;
  background: var(--accent);
  flex-shrink: 0;
  margin-left: -2px;
  animation: caret-blink 1.1s steps(1) infinite;
}

/* Suggestions Google qui apparaissent sous la recherche */
.mv-suggest {
  margin-top: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.35rem;
  box-shadow: 0 8px 20px -10px rgba(22, 21, 19, 0.18);
  display: grid;
  gap: 0.1rem;
  opacity: 0;
  transform: translateY(6px);
}

.mv-suggest-item {
  font-size: 0.78rem;
  color: var(--ink-2);
  padding: 0.32rem 0.65rem;
  border-radius: 0.5rem;
  opacity: 0;
}

.mv-suggest-item b { font-weight: 700; color: var(--ink); }

.mv-suggest-1 { background: rgba(22, 21, 19, 0.04); }

[data-anim].play .mv-suggest { animation: mv-suggest 6s var(--ease-out) infinite; }
[data-anim].play .mv-suggest-1 { animation: mv-suggest-item 6s var(--ease-out) 0.15s infinite; }
[data-anim].play .mv-suggest-2 { animation: mv-suggest-item 6s var(--ease-out) 0.35s infinite; }

@keyframes mv-suggest {
  0%, 20% { opacity: 0; transform: translateY(6px); }
  32%, 86% { opacity: 1; transform: translateY(0); }
  93%, 100% { opacity: 0; transform: translateY(6px); }
}

@keyframes mv-suggest-item {
  0%, 24% { opacity: 0; }
  34%, 84% { opacity: 1; }
  92%, 100% { opacity: 0; }
}

/* --- 2. Classement : votre agence remonte --- */
.mv-rank { display: block; }

.mv-row {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 2.15rem;
  border-radius: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-inline: 0.75rem;
  top: 1.4rem;
}

/* Badge N°1 garanti qui claque en haut à droite */
.mv-first {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  box-shadow: 0 6px 16px -6px rgba(22, 21, 19, 0.4);
  transform: scale(0) rotate(-6deg);
}

[data-anim].play .mv-first { animation: mv-first 7s var(--ease-spring) infinite; }

@keyframes mv-first {
  0%, 42% { transform: scale(0) rotate(-6deg); }
  50%, 90% { transform: scale(1) rotate(-6deg); }
  100% { transform: scale(0) rotate(-6deg); }
}

.mv-row-you {
  z-index: 2;
  border-color: var(--accent-line);
  box-shadow: 0 6px 18px -8px rgba(255, 103, 0, 0.45);
  transform: translateY(5.5rem);
}

.mv-row-a { transform: translateY(0); }
.mv-row-b { transform: translateY(2.75rem); }

[data-anim].play .mv-row-you { animation: mv-you 7s var(--ease-spring) infinite; }
[data-anim].play .mv-row-a { animation: mv-a 7s var(--ease-spring) infinite; }
[data-anim].play .mv-row-b { animation: mv-b 7s var(--ease-spring) infinite; }

@keyframes mv-you {
  0%, 18% { transform: translateY(5.5rem); }
  38%, 90% { transform: translateY(0); }
  100% { transform: translateY(5.5rem); }
}

@keyframes mv-a {
  0%, 18% { transform: translateY(0); opacity: 1; }
  38%, 90% { transform: translateY(2.75rem); opacity: 0.45; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes mv-b {
  0%, 18% { transform: translateY(2.75rem); opacity: 1; }
  38%, 90% { transform: translateY(5.5rem); opacity: 0.45; }
  100% { transform: translateY(2.75rem); opacity: 1; }
}

.mv-row-label { font-size: 0.82rem; font-weight: 650; }

.mv-badge {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  transform: scale(0);
}

[data-anim].play .mv-badge { animation: mv-badge 7s var(--ease-spring) infinite; }

@keyframes mv-badge {
  0%, 36% { transform: scale(0); }
  44%, 92% { transform: scale(1); }
  100% { transform: scale(0); }
}

/* --- 3. Notifications entrantes --- */
.mv-contact { gap: 0.5rem; }

.mv-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.55rem 0.8rem;
  box-shadow: 0 4px 14px -6px rgba(22, 21, 19, 0.12);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
}

.mv-note-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  flex-shrink: 0;
}

.mv-note b { display: block; font-size: 0.8rem; font-weight: 700; line-height: 1.25; }
.mv-note i { font-style: normal; font-size: 0.72rem; color: var(--ink-3); }

[data-anim].play .mv-note-1 { animation: mv-note 7s var(--ease-spring) infinite; }
[data-anim].play .mv-note-2 { animation: mv-note 7s var(--ease-spring) 1.2s infinite; }
[data-anim].play .mv-note-3 { animation: mv-note 7s var(--ease-spring) 2.4s infinite; }

@keyframes mv-note {
  0%, 8% { opacity: 0; transform: translateY(12px) scale(0.97); }
  16%, 78% { opacity: 1; transform: translateY(0) scale(1); }
  86%, 100% { opacity: 0; transform: translateY(-8px) scale(0.97); }
}

@keyframes tl-lead {
  0%, 6% { opacity: 0; transform: translateY(10px) scale(0.97); }
  14%, 80% { opacity: 1; transform: translateY(0) scale(1); }
  88%, 100% { opacity: 0; transform: translateY(-6px) scale(0.97); }
}

@keyframes lead-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Flottement du toast prospect (hero) */
/* Les cartes prospects flottent en continu une fois apparues */
.js .hero-visual.step-toast .lead-toast:not(.lead-toast-alt) {
  animation: toast-bob 3.2s ease-in-out 0.9s infinite alternate;
}

.js .hero-visual.step-toast2 .lead-toast-alt {
  animation: toast-bob-alt 3.8s ease-in-out 1.2s infinite alternate;
}

@keyframes toast-bob {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(-7px) rotate(-1.2deg); }
}

@keyframes toast-bob-alt {
  from { transform: translateY(0) rotate(2deg); }
  to { transform: translateY(-6px) rotate(1.2deg); }
}

/* ============================================================
   RÉVÉLATIONS AU SCROLL
   ============================================================ */
/* Le reveal utilise translate/scale (propriétés séparées) pour laisser
   transform libre pour les hovers, lifts et tilts */
.js .reveal {
  opacity: 0;
  translate: 0 26px;
  filter: blur(6px);
  transition: opacity 0.85s var(--ease-out), translate 0.85s var(--ease-spring),
              scale 0.85s var(--ease-spring), filter 0.85s var(--ease-out);
}

.js .reveal[data-reveal="scale"] { translate: 0 18px; scale: 0.94; }
.js .reveal[data-reveal="left"] { translate: -32px 0; }
.js .reveal[data-reveal="right"] { translate: 32px 0; }

.js .reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.js .reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.js .reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }

.js .reveal.in {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: none;
}

/* Stagger automatique dans les grilles */
.js .mechanism-steps .reveal:nth-child(2),
.js .cases-grid .reveal:nth-child(2),
.js .stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }

.js .mechanism-steps .reveal:nth-child(3),
.js .cases-grid .reveal:nth-child(3),
.js .stats-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   ACCESSIBILITÉ — mouvement réduit
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js .reveal,
  .js .serp-result-win,
  .js .serp-result-ghost,
  .js .lead-toast {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
  }

  .lead-toast { transform: rotate(-2deg) !important; }
  .serp-caret { animation: none !important; opacity: 0; }
  .js .hero-logos img { opacity: 0.75 !important; translate: 0 0 !important; }

  /* Hero : mots et surlignage visibles d'emblée */
  .js .hero-title.split .w > span { transform: none !important; }
  .js .reveal em::after { transform: scaleX(1) !important; }

  /* Timeline, tarifs, étoiles : états finaux */
  .js .timeline-item::before { scale: 1 !important; }
  .js .timeline-item::after { transform: scaleY(1) !important; }
  .js .price-card .price-features li { opacity: 1 !important; translate: 0 0 !important; }
  .js .case-stars .star { scale: 1 !important; }
  .price-card-feature::after { animation: none !important; opacity: 0.4 !important; }
  .pricing::before, .pricing::after { animation: none !important; }
  .js .hero-visual.settled .serp-card { animation: none !important; }
  .lead-toast-icon::after { animation: none !important; }
  .lead-toast-alt { transform: rotate(2deg) !important; }
  .lead-toast.swap { animation: none !important; }
  .mv-suggest { opacity: 1 !important; transform: none !important; }
  .mv-suggest-item { opacity: 1 !important; }
  .mv-first { transform: scale(1) rotate(-6deg) !important; }
  .tl-lead { opacity: 1 !important; transform: none !important; }

  /* Mini-visuels : états finaux statiques */
  .mv-typed { max-width: 15rem !important; opacity: 1 !important; }
  .mv-caret { animation: none !important; opacity: 0; }
  .mv-row-you { transform: translateY(0) !important; }
  .mv-row-a { transform: translateY(2.75rem) !important; }
  .mv-row-b { transform: translateY(5.5rem) !important; }
  .mv-badge { transform: scale(1) !important; }
  .mv-note { opacity: 1 !important; transform: none !important; }
  .tl-tick { transform: scale(1) !important; }
  .tl-eq span { transform: scaleY(var(--eq-h, 0.6)) !important; }
  .tl-eq span:nth-child(odd) { --eq-h: 0.45; }
  .tl-eq span:nth-child(even) { --eq-h: 0.8; }
  .tl-bubble { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   TARIFS — panneau orange, formule unique (blocs imbriqués)
   ============================================================ */
.pricing-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(135deg, #FF7D22, var(--accent) 45%, var(--accent-deep));
  border-radius: calc(var(--r-xl) + 0.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 32px 80px -24px rgba(226, 91, 0, 0.45);
  color: #fff;
}

.pricing-copy h2 {
  text-align: left;
  font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.8rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.pricing-lead {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 30rem;
  line-height: 1.6;
}

.pricing-points {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-points li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
}

.pricing-points li::before {
  content: "";
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.95rem;
  transform: translateY(2px);
  background-color: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"/></svg>') center / contain no-repeat;
}

.pricing-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 24px 64px -24px rgba(23, 21, 18, 0.4);
}

.pricing-card-label {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
}

.pricing-tiers-note {
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.pricing-card .btn { margin-top: 1.3rem; width: 100%; }

@media (max-width: 900px) {
  .pricing-panel { grid-template-columns: 1fr; }
}

/* ============================================================
   SIMULATEUR — résultat unique
   ============================================================ */
.sim-result {
  background: linear-gradient(180deg, var(--accent-soft), var(--surface) 70%);
  box-shadow: inset 0 0 0 1px var(--accent-line);
  border-radius: calc(var(--r-xl) - 0.6rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sim-result-title {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.sim-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.sim-kpis > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.95rem 1.1rem;
}

.sim-kpis dt { font-size: 0.82rem; color: var(--ink-2); }

.sim-kpis dd {
  margin-top: 0.25rem;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  white-space: nowrap;
}

.sim-kpi-roi {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 12px 28px -12px rgba(255, 103, 0, 0.6);
}

.sim-kpi-roi dt { color: rgba(255, 255, 255, 0.85); }
.sim-kpi-roi dd { color: #fff; }

.sim-cost-line {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.sim-cost-line strong {
  color: var(--ink);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.sim-cost-line span {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-3);
}

.sim-cta { margin-top: auto; width: 100%; }

@media (max-width: 420px) {
  .sim-kpis { grid-template-columns: 1fr; }
}

/* ============================================================
   RETOUCHES — hero aéré, concurrents, visages, blocs imbriqués
   ============================================================ */

/* Hero : plus d'air */
.hero { padding: clamp(8rem, 15vh, 11rem) 0 clamp(4rem, 7vw, 6rem); }
.hero-badge { margin-bottom: 1.6rem; }
.hero-title { margin-top: 0.2rem; }
.hero-sub { margin-top: 1.9rem; line-height: 1.65; }
.hero-actions { margin-top: 2.7rem; gap: 1rem; }
.hero-proof { margin-top: 3.2rem; }
.hero-visual { margin-top: clamp(3rem, 6vw, 4.5rem); }

/* Résultats concurrents (plus de lignes grises vides) */
.serp-result-dim { opacity: 0.6; padding-block: 0.85rem; }
.serp-result-dim .serp-result-title { font-size: 0.92rem; font-weight: 550; color: var(--ink-2); }

.js .serp-result-dim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.js .hero-visual.step-results .serp-result-dim {
  opacity: 0.6;
  transform: translateY(0);
}

.js .hero-visual.step-results .serp-result-dim:nth-child(2) { transition-delay: 0.12s; }
.js .hero-visual.step-results .serp-result-dim:nth-child(3) { transition-delay: 0.24s; }

/* Visages humains dans les notifications */
.toast-face, .mv-note-ic .mv-face {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.mv-note-ic { overflow: hidden; }
.lead-toast-icon .toast-face { border: 2px solid var(--accent-soft); }

/* 2e notif : en bas à droite, ne recouvre plus « Votre agence... » */
.lead-toast-alt {
  top: auto;
  right: -1.25rem;
  bottom: -1.4rem;
  left: auto;
}

.js .lead-toast-alt,
.js .hero-visual.step-toast .lead-toast-alt {
  opacity: 0;
  transform: translateY(14px) rotate(2deg);
}

.js .hero-visual.step-toast2 .lead-toast-alt {
  opacity: 1;
  transform: translateY(0) rotate(2deg);
}

/* Toasts en mobile : dans le flux, jamais par-dessus la carte */
@media (max-width: 640px) {
  .lead-toast, .lead-toast-alt {
    position: static;
    margin: 0.8rem 0 0 auto;
    width: max-content;
    max-width: 100%;
  }
  .lead-toast { margin-top: 1rem; }
}

/* Carte 2 du mécanisme : libellés concurrents */
.mv-row-dim { font-size: 0.8rem; font-weight: 500; color: var(--ink-3); }

/* Blocs imbriqués */
.tray {
  background: rgba(22, 21, 19, 0.045);
  border: 1px solid rgba(22, 21, 19, 0.06);
  border-radius: var(--r-xl);
  padding: 0.6rem;
}

.booking-tray { margin-top: clamp(2.2rem, 4vw, 3rem); padding: 0.5rem; }
.booking-tray .booking-embed {
  margin-top: 0;
  background: var(--surface);
  border-radius: calc(var(--r-xl) - 0.5rem);
}

/* ============================================================
   MÉTHODE — PARCOURS ANIMÉ A → Z
   ============================================================ */
.method-grid { align-items: center; }

.journey-frame {
  background: rgba(22, 21, 19, 0.045);
  border: 1px solid rgba(22, 21, 19, 0.06);
  border-radius: var(--r-xl);
  padding: 0.5rem;
  box-shadow: var(--shadow-float);
}

.journey-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border-radius: calc(var(--r-xl) - 0.5rem) calc(var(--r-xl) - 0.5rem) 0.4rem 0.4rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.4rem;
}

.jc-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(22, 21, 19, 0.12);
}

.jc-url {
  margin-left: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 550;
  color: var(--ink-2);
}

.journey-stage {
  position: relative;
  background: var(--surface);
  border-radius: 0.4rem 0.4rem calc(var(--r-xl) - 0.5rem) calc(var(--r-xl) - 0.5rem);
  height: 23.5rem;
  overflow: hidden;
}

.j-scene {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-spring);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.journey.show-s1 .j-s1,
.journey.show-s2 .j-s2,
.journey.show-s3 .j-s3 {
  opacity: 1;
  transform: translateY(0);
}

.j-search-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 550;
  box-shadow: 0 4px 14px -6px rgba(22, 21, 19, 0.14);
}

.j-search-pill svg { color: var(--ink-3); flex-shrink: 0; }

.j-caret {
  width: 2px;
  height: 1em;
  background: var(--accent);
  animation: caret-blink 1.1s steps(1) infinite;
}

.j-serp { display: grid; gap: 0.5rem; margin-top: 0.9rem; }

.j-result {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.85rem 1.05rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-spring);
}

.j-serp.show .j-result { opacity: 1; transform: translateY(0); }
.j-serp.show .j-result:nth-child(2) { transition-delay: 0.1s; opacity: 0.65; }
.j-serp.show .j-result:nth-child(3) { transition-delay: 0.2s; opacity: 0.65; }

.j-result-win {
  background: var(--surface);
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.07), 0 8px 20px -10px rgba(255, 103, 0, 0.35);
  transition: opacity 0.5s var(--ease-out), transform 0.35s var(--ease-spring);
}

.j-result-win.clicked { transform: scale(0.97); }

.j-result-head { display: flex; align-items: center; gap: 0.5rem; }

.j-tag { font-size: 0.68rem; font-weight: 750; color: var(--accent-deep); }
.j-url-txt { font-size: 0.72rem; color: var(--ink-3); }

.j-result p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.j-dim p { font-weight: 500; color: var(--ink-2); font-size: 0.85rem; }

.j-site-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.j-site-head img { height: 1rem; width: auto; }
.j-site-brand { font-size: 0.8rem; font-weight: 650; color: var(--ink-2); }

.j-site-title {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.j-form { margin-top: 1rem; display: grid; gap: 0.6rem; }

.j-field {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 0.7rem;
  padding: 0.55rem 0.9rem;
}

.j-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-3);
}

.j-field-val {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.35em;
}

.j-field-caret {
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 1px;
  opacity: 0;
}

.j-field.typing .j-field-caret { opacity: 1; animation: caret-blink 1.1s steps(1) infinite; }

.j-submit {
  margin-top: 0.4rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.8rem 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 24px -10px rgba(255, 103, 0, 0.55);
  transition: transform 0.3s var(--ease-spring), background-color 0.3s;
  pointer-events: none;
}

.j-submit.pressed { transform: scale(0.96); background: var(--accent-deep); }

.j-s3 { justify-content: center; gap: 1rem; }

.j-done {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 650;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-spring);
}

.journey.s3-done .j-done { opacity: 1; transform: translateY(0); }

.j-done-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}

.j-lead {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: linear-gradient(180deg, var(--accent-soft), var(--surface) 70%);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 14px 34px -14px rgba(255, 103, 0, 0.4);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-spring);
}

.journey.s3-lead .j-lead { opacity: 1; transform: translateY(0) scale(1); }

.j-face {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  flex-shrink: 0;
}

.j-lead b { display: block; font-size: 0.95rem; font-weight: 700; }
.j-lead i { font-style: normal; font-size: 0.82rem; color: var(--ink-2); }

.j-call {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}

.journey.s3-lead .j-call { animation: call-pulse 1.8s var(--ease-out) infinite; }

@keyframes call-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 103, 0, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(255, 103, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 103, 0, 0); }
}

.j-hint {
  font-size: 0.9rem;
  color: var(--ink-2);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.3s;
}

.journey.s3-lead .j-hint { opacity: 1; }

.j-cursor {
  position: absolute;
  z-index: 5;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(22, 21, 19, 0.85);
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(22, 21, 19, 0.35);
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(0, 0);
  transition: transform 0.8s var(--ease-spring), opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.j-cursor.visible { opacity: 1; }

/* Clic = simple onde, sans mouvement du curseur */
.j-cursor::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
}

.j-cursor.clicking::after { animation: cursor-ripple 0.55s var(--ease-out); }

@keyframes cursor-ripple {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (max-width: 420px) {
  .journey-stage { height: 25rem; }
  .j-scene { padding: 1.1rem; }
}

/* Mouvement réduit : parcours figé sur la scène 1, visages et concurrents visibles */
@media (prefers-reduced-motion: reduce) {
  .js .serp-result-dim { opacity: 0.6 !important; transform: none !important; }
  .lead-toast-alt { transform: rotate(2deg) !important; }
  .j-result { opacity: 1 !important; transform: none !important; }
  .j-dim { opacity: 0.65 !important; }
  .j-cursor { display: none !important; }
  .j-caret, .j-field-caret { animation: none !important; opacity: 0 !important; }
}

/* Mobile etroit : les CTA pleine largeur ne debordent plus */
@media (max-width: 420px) {
  .pricing-card .btn, .sim-cta { padding-inline: 1.1rem; font-size: 0.92rem; }
  .pricing-card .btn .btn-face, .sim-cta .btn-face { width: 1.5rem; height: 1.5rem; }
}

/* ============================================================
   RETOUCHES 2 — pastille hero, CTA fins, tarifs lisibles
   ============================================================ */

/* Pastille « Agence Google Ads » : fond + animation (styles reconstruits) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.45rem 0.6rem 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-soft);
}

.hb-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-deep);
}

/* CTA hero plus fin */
.hero-actions .btn-lg {
  padding: 0.7rem 1.5rem 0.7rem 0.7rem;
  font-size: 1rem;
}

.hero-actions .btn-ghost.btn-lg { padding: 0.7rem 1.5rem; }
.hero-actions .btn-lg .btn-face { width: 1.9rem; height: 1.9rem; margin-left: 0; }

/* Tarifs : le fond orange est contenu dans une box arrondie */
.pricing-panel {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(135deg, #FF7D22, var(--accent) 45%, var(--accent-deep));
  border-radius: calc(var(--r-xl) + 0.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 32px 80px -24px rgba(226, 91, 0, 0.45);
}

/* Dans la carte blanche, tout est aligné à gauche sauf la garantie */
.pricing-card, .pricing-card .pricing-card-label, .cost-eq-item, .tier-budget { text-align: left; }

/* Étape intégrée dans la barre du navigateur */
.jc-step {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 0.18rem 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.jc-step.on { opacity: 1; }

@media (max-width: 480px) {
  .jc-step { display: none; }
}

/* ============================================================
   RETOUCHES 3 — badge sombre, image mandat, tarifs, footer, candidature
   ============================================================ */

/* Pastille hero : fond foncé */
.hero-badge {
  background: var(--dark);
  border-color: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 28px -12px rgba(23, 21, 18, 0.5);
}

.hero-badge .hb-glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--accent);
}

/* Image de mandat dans le H1 */
.h1-ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  object-fit: contain;
  vertical-align: -0.08em;
  margin-inline: 0.05em;
}

/* Logo Century 21 : même gabarit que les autres */
.hero-logos img[alt="Century 21"] { height: 1.35rem; }

/* Tarifs : texte aligné à gauche, jamais justifié */
.pricing-copy, .pricing-copy p, .pricing-copy li { text-align: left; }
.pricing-lead { text-align: left; }

/* Cal.com : centré dans la box */
.booking-tray .booking-embed {
  display: grid;
  justify-items: center;
  align-items: center;
}

.booking-embed > div, .booking-embed iframe {
  margin-inline: auto !important;
  width: 100%;
}

/* Simulateur : note centrée */
.simulator-note {
  text-align: center;
  margin-inline: auto;
}

/* Footer : colonne contact */
.footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr 1fr; }

.footer-contact {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  justify-items: start;
}

.footer-contact a { color: var(--ink-2); transition: color 0.3s; }
.footer-contact a:hover { color: var(--ink); }

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.3s;
}

.footer-link-btn:hover { color: var(--ink); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Formulaire de candidature */
.apply-dialog {
  border: none;
  border-radius: var(--r-xl);
  padding: 0;
  width: min(28rem, calc(100vw - 2.5rem));
  box-shadow: var(--shadow-float);
  margin: auto;
}

.apply-dialog::backdrop {
  background: rgba(23, 21, 18, 0.45);
  backdrop-filter: blur(4px);
}

.apply-form { padding: 1.8rem; display: grid; gap: 0.9rem; }

.apply-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apply-head h3 {
  font-size: 1.35rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.apply-close {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.apply-close::before, .apply-close::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.8rem;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
}

.apply-close::before { transform: rotate(45deg); }
.apply-close::after { transform: rotate(-45deg); }
.apply-close:hover { background: var(--accent-soft); border-color: var(--accent-line); }

.apply-intro { font-size: 0.95rem; color: var(--ink-2); margin-top: -0.4rem; }

.apply-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
}

.apply-field input[type="text"],
.apply-field input[type="email"],
.apply-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 0.7rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.apply-field input:focus-visible, .apply-field textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.15);
}

.apply-field textarea { resize: vertical; min-height: 5.5rem; }

.apply-field input[type="file"] {
  width: 100%;
  font-size: 0.88rem;
  color: var(--ink-2);
}

.apply-field input[type="file"]::file-selector-button {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-right: 0.8rem;
  cursor: pointer;
  transition: border-color 0.3s;
}

.apply-field input[type="file"]::file-selector-button:hover { border-color: var(--ink); }

.apply-submit { width: 100%; margin-top: 0.3rem; }

/* ============================================================
   RETOUCHES 4 — tarifs en box orange, textes à gauche, logos visibles
   ============================================================ */

/* La section redevient claire, l'orange est contenu dans une box */
.pricing { background: var(--bg); overflow: visible; }
.pricing::before, .pricing::after { display: none; }
.pricing .container { text-align: left; }

.pricing-panel {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(135deg, #FF7D22, var(--accent) 45%, var(--accent-deep));
  border-radius: calc(var(--r-xl) + 0.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 32px 80px -24px rgba(226, 91, 0, 0.45);
}

/* Rien de centré dans la carte, sauf la garantie */
.pricing-card,
.pricing-card-label,
.cost-eq-item,
.tier-budget,
.pricing-tiers li { text-align: left; }

/* Logos clients du hero : bien visibles */
.hero-logos img {
  height: 2.15rem;
  filter: grayscale(1) contrast(0.85);
  opacity: 1;
}

.hero-logos img[alt="Century 21"] { height: 1.55rem; }

/* Logo L'Agence Americaine : voir la regle par src en fin de fichier
   (couvre aussi le duplicata du diaporama mobile et bat le !important mobile) */

.js .hero-proof.in .hero-logos img { opacity: 1; }

/* ============================================================
   RETOUCHES 5 — logos noirs, encarts H1, mandat animé, tarifs adoucis
   ============================================================ */

/* Logos clients : en noir, bien visibles */
.hero-logos img {
  filter: brightness(0);
  opacity: 0.85;
}

.js .hero-proof.in .hero-logos img { opacity: 0.85; filter: brightness(0); }
.js .hero-proof.in .hero-logos img:hover { opacity: 1; filter: brightness(0); }

/* Encarts prospects flottants autour du H1 */
.hero-inner { position: relative; }

.hero-float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-float-1 { left: clamp(0rem, 2.5vw, 3rem); top: 10.5rem; }
.hero-float-2 { right: clamp(0rem, 2.5vw, 3rem); top: 16rem; }

.hf-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-float);
}

.hero-float-1 .hf-card {
  transform: rotate(-3deg);
  animation: hf-bob-1 3.6s ease-in-out infinite alternate;
}

.hero-float-2 .hf-card {
  transform: rotate(2.5deg);
  animation: hf-bob-2 4.2s ease-in-out infinite alternate;
}

@keyframes hf-bob-1 {
  from { transform: translateY(0) rotate(-3deg); }
  to { transform: translateY(-8px) rotate(-1.8deg); }
}

@keyframes hf-bob-2 {
  from { transform: translateY(0) rotate(2.5deg); }
  to { transform: translateY(-7px) rotate(1.3deg); }
}

.hf-card img {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--accent-soft);
  flex-shrink: 0;
}

.hf-card b { display: block; font-size: 0.85rem; font-weight: 700; line-height: 1.25; }
.hf-card i { font-style: normal; font-size: 0.75rem; color: var(--ink-3); }

@media (max-width: 1439px) {
  .hero-float { display: none; }
}

/* Image de mandat animée dans le H1 : le stylo signe en boucle */
.h1-ic {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.16em;
  margin-inline: 0.04em;
  overflow: visible;
}

.h1-ic #mandatSign {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: sign-draw 3.6s ease-in-out infinite;
}

@keyframes sign-draw {
  0%, 8% { stroke-dashoffset: 90; }
  50%, 82% { stroke-dashoffset: 0; }
  94%, 100% { stroke-dashoffset: 90; }
}

.h1-pen {
  animation: pen-write 3.6s ease-in-out infinite;
}

@keyframes pen-write {
  0%, 8% { transform: translate(30px, 74px); }
  20% { transform: translate(38px, 66px); }
  32% { transform: translate(46px, 78px); }
  42% { transform: translate(54px, 70px); }
  50%, 82% { transform: translate(64px, 74px); }
  94%, 100% { transform: translate(30px, 74px); }
}

/* Tarifs : orange adouci, texte blanc lisible */
.pricing-panel {
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(140deg, #F97F2B 0%, #EA6408 45%, #C85400 100%);
  box-shadow: 0 32px 80px -24px rgba(200, 84, 0, 0.4);
}

.pricing-lead { color: rgba(255, 255, 255, 0.95); }
.pricing-points { color: rgba(255, 255, 255, 0.96); }

/* Mouvement réduit : états finaux */
@media (prefers-reduced-motion: reduce) {
  .h1-ic #mandatSign { stroke-dashoffset: 0 !important; animation: none !important; }
  .h1-pen { transform: translate(64px, 74px) !important; animation: none !important; }
  .hero-float .hf-card { animation: none !important; }
}

/* ============================================================
   RETOUCHES 6 — encarts hors du H1, marquee logos mobile, tarifs lisibles
   ============================================================ */

/* Encarts prospects : dans les gouttières du viewport, à hauteur du titre,
   jamais sur le H1 (masqués sous 1440px, où les gouttières disparaissent) */
.hero-float-1 { left: calc((100% - 100vw) / 2 + 1.5rem); top: 12rem; }
.hero-float-2 { right: calc((100% - 100vw) / 2 + 1.5rem); top: 18rem; }

.hf-card {
  max-width: 13rem;
  padding: 0.6rem 0.9rem;
}

.hf-card b { font-size: 0.8rem; }
.hf-card i { font-size: 0.72rem; }

/* Logos clients : rangée centrée sur desktop */
.hero-logos { overflow: hidden; }

.hero-logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
}

.lg-dup { display: none; }

/* Carrousel continu des logos clients, sur toutes les tailles d'ecran */
.hero-logos {
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.hero-logos-track {
  justify-content: flex-start;
  width: max-content;
  gap: 2.4rem;
  animation: logos-marquee 14s linear infinite;
}

.lg-dup { display: block; }

/* pas de délais d'apparition individuels en mode diaporama */
.js .hero-logos img { opacity: 0.85 !important; translate: 0 0 !important; transition: none !important; }

@media (max-width: 760px) {
  .hero-logos-track { animation-duration: 10s; }
}

@keyframes logos-marquee {
  to { transform: translateX(calc(-50% - 1.2rem)); }
}

/* Tarifs : lisibilité d'abord — orange doux, texte sombre */
.pricing-panel {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 255, 255, 0.5), transparent 50%),
    linear-gradient(140deg, #FFEBDD 0%, #FFD9BC 55%, #FFC9A2 100%);
  border: 1px solid var(--accent-line);
  box-shadow: 0 24px 64px -24px rgba(226, 91, 0, 0.3);
  color: var(--ink);
}

.pricing-copy h2 { color: var(--ink); }

.pricing-lead { color: var(--ink-2); }

.pricing-points { color: var(--ink-2); }

.pricing-points li::before { background-color: var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  .hero-logos-track { animation: none !important; }
}

/* Conteneurs du diaporama logos toujours bornes a la largeur disponible */
.hero-proof { max-width: 100%; }
.hero-logos { max-width: 100%; }

/* CTA tarifs : autorise le retour a la ligne en mobile etroit */
@media (max-width: 480px) {
  .pricing-card .btn { white-space: normal; }
}

/* Cal.com : respiration egale autour du calendrier, plus colle en haut */
.booking-tray .booking-embed {
  padding: 1.6rem 1.25rem 0.6rem;
}

/* ============================================================
   MUR D'AVIS - colonnes defilant de bas en haut (facon blabla.ai)
   ============================================================ */
.reviews-wall {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  height: 34rem;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

.rev-track {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  animation: rev-scroll var(--speed, 44s) linear infinite;
}

.reviews-col:nth-child(1) .rev-track { --speed: 42s; }
.reviews-col:nth-child(2) .rev-track { --speed: 52s; }
.reviews-col:nth-child(3) .rev-track { --speed: 46s; }

.reviews-wall:hover .rev-track { animation-play-state: paused; }

@keyframes rev-scroll {
  to { transform: translateY(calc(-50% - 0.625rem)); }
}

.rev-set { display: grid; gap: 1.25rem; }

.rev-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.rev-head { display: flex; align-items: center; gap: 0.75rem; }

.rev-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: var(--shadow-soft);
}

.rev-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-deep);
  font-weight: 750;
  font-size: 1rem;
  flex-shrink: 0;
}

.rev-author {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}

.rev-author span {
  font-weight: 450;
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 0.1rem;
}

.rev-card blockquote {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  text-wrap: pretty;
}

.rev-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
}

.rev-stars {
  display: inline-block;
  width: 5.25rem;
  height: 0.95rem;
  background-color: #FBBC04;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path d='M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0l23.27,55.36,59.45,5.15a16,16,0,0,1,9.11,28.06Z'/></svg>") left center / 1.05rem 0.95rem repeat-x;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path d='M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0l23.27,55.36,59.45,5.15a16,16,0,0,1,9.11,28.06Z'/></svg>") left center / 1.05rem 0.95rem repeat-x;
}

.rev-metrics {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--ink-2);
}

.rev-metrics strong {
  color: var(--accent-deep);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1000px) {
  .reviews-wall { grid-template-columns: repeat(2, 1fr); }
  .reviews-col:nth-child(3) { display: none; }
}

@media (max-width: 680px) {
  .reviews-wall { grid-template-columns: 1fr; height: 30rem; }
  .reviews-col:nth-child(2) { display: none; }
}

/* Mouvement reduit : etats finaux statiques */
@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none !important; }
  .lead-toast-alt { transform: rotate(2deg) !important; }
  .tl-lead { opacity: 1 !important; transform: none !important; }
  .mv-suggest, .mv-suggest-item { opacity: 1 !important; transform: none !important; }
  .mv-first { transform: scale(1) rotate(-6deg) !important; }
  .h1-face { scale: 1 !important; animation: none !important; }
}

/* ============================================================
   RETOUCHES 7 — encarts pres du H1, interlignes notifs, zigzag mobile,
   tarifs blanc + degrade orange
   ============================================================ */

/* Encarts prospects : juste a cote du H1, sans jamais le recouvrir */
.hero-float-1 { left: calc(50% - 44rem); top: 11.5rem; }
.hero-float-2 { right: calc(50% - 44rem); top: 16.5rem; }

/* Interligne reduit entre les deux phrases des notifs */
.lead-toast-title, .hf-card b { line-height: 1.12; }
.lead-toast-sub, .hf-card i { line-height: 1.15; margin-top: 1px; }

/* Mobile : notifs en zigzag, pas tassees a droite */
@media (max-width: 640px) {
  .lead-toast { margin: 1rem auto 0 0; }
  .lead-toast-alt { margin: 0.7rem 0 0 auto; }
}

/* Tarifs : fond blanc rehausse d'un degrade orange */
.pricing-panel {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 125, 34, 0.18), transparent 55%),
    radial-gradient(100% 120% at 0% 100%, rgba(255, 103, 0, 0.08), transparent 50%),
    linear-gradient(160deg, #FFF6EF 0%, #FFFFFF 60%);
  border: 1px solid var(--accent-line);
  box-shadow: 0 24px 64px -24px rgba(226, 91, 0, 0.25);
}

.pricing-card { border: 1px solid var(--line); }

/* Encarts flottants : texte aligne a gauche (heritage du hero centre) */
.hf-card { text-align: left; }

/* Notifs : la div conteneur heritait du line-height 1.6 du body,
   ce qui gonflait les lignes des textes inline */
.hf-card > div, .lead-toast > div, .mv-note > div, .j-lead > div {
  line-height: 1.2;
}

.hf-card i, .mv-note i, .j-lead i { display: block; }

/* Plus de trait/surlignage orange derriere les mots en orange */
.hero-title em::after,
.section-title em::after,
.pricing .section-title em::after {
  display: none !important;
}

/* Pastille +200 % de mandats sur l'angle du resultat sponsorise */
.serp-result-win { position: relative; }

.win-badge {
  position: absolute;
  top: -0.85rem;
  right: -0.6rem;
  z-index: 3;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 20px -8px rgba(255, 103, 0, 0.6);
  transform: scale(0) rotate(3deg);
  white-space: nowrap;
}

.js .hero-visual.step-results .win-badge {
  transform: scale(1) rotate(3deg);
  transition: transform 0.55s var(--ease-spring) 0.45s;
}

@media (max-width: 640px) {
  .win-badge { right: -0.2rem; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .win-badge { transform: scale(1) rotate(3deg) !important; }
}

/* Illustration mandat du H1 : mobile uniquement */
@media (min-width: 761px) {
  .h1-ic { display: none; }
}

/* Tarifs lisibles en 5 secondes : le prix d'abord, en gros */
.pricing-tiers-big li {
  padding: 1rem 1.2rem;
  gap: 1.2rem;
}

.pricing-tiers-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--ink-2);
}

/* Une seule mise en avant : le prix d'appel */
.price-hero {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.price-hero-from {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--accent-deep);
  margin-bottom: 0.3rem;
}

.price-hero em {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-3);
}

/* Les 3 points inclus, desormais dans la carte blanche (ex-paliers) */
.pricing-card .pricing-points {
  margin-top: 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.pricing-tiers-note { margin-top: 0.7rem; }

/* « Satisfait ou rembourse » du titre tarifs en orange */
.pricing-copy h2 em { font-style: normal; color: var(--accent-deep); }

/* CTA du simulateur : taille normale, centre */
.sim-cta {
  width: auto;
  align-self: center;
  padding: 0.85rem 1.7rem;
  font-size: 0.98rem;
}

.sim-cta .btn-face { width: 1.7rem; height: 1.7rem; }

/* ============================================================
   RETOUCHES 8 — hero 100vh, étape du parcours visible, simulateur,
   mentions légales
   ============================================================ */

/* Hero : badge -> logos = 100% de la hauteur d'écran sur PC */
.hero-top {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 901px) {
  .hero { padding-top: 0; }

  .hero-top {
    min-height: 100vh;
    justify-content: center;
    padding-top: 4rem;
  }

  .hero-visual { margin-top: clamp(1.5rem, 4vw, 3rem); }

  /* Encarts positionnés dans le bloc plein écran, à hauteur du titre */
  .hero-float-1 { top: 34%; }
  .hero-float-2 { top: 46%; }
}

/* Parcours : l'étape en cours bien visible, partout (mobile compris) */
.journey-stage {
  border-radius: 0.4rem;
}

.journey-stepbar {
  margin-top: 0.4rem;
  background: var(--surface);
  border-radius: 0.4rem 0.4rem calc(var(--r-xl) - 0.5rem) calc(var(--r-xl) - 0.5rem);
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.jsb-count {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.jsb-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.jsb-dots {
  margin-left: auto;
  display: inline-flex;
  gap: 5px;
  flex-shrink: 0;
}

.jsb-dots i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(22, 21, 19, 0.14);
  transition: background-color 0.4s, transform 0.4s var(--ease-spring);
}

.jsb-dots i.on { background: var(--accent); transform: scale(1.15); }

/* La pilule d'étape dans la barre d'URL devient redondante */
.jc-step { display: none; }

/* Simulateur : plus de grand blanc au-dessus du CTA */
.sim-result { justify-content: center; gap: 1.1rem; }
.sim-cta { margin-top: 0.4rem; }

/* Mentions légales */
.legal-dialog { width: min(36rem, calc(100vw - 2.5rem)); }

.legal-content {
  max-height: 62vh;
  overflow-y: auto;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  padding-right: 0.4rem;
}

.legal-content h4 {
  margin-top: 0.6rem;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* PC : la phrase + logos clients respirent davantage des CTA au-dessus */
@media (min-width: 901px) {
  .hero-proof { margin-top: 7rem; }
}

/* Simulateur : plus d'air au-dessus du CTA */
.sim-cta { margin-top: 1.6rem; }

/* Encarts prospects du H1 : flottement plus ample et plus vivant */
@keyframes hf-bob-1 {
  from { transform: translate(0, 0) rotate(-3deg); }
  to { transform: translate(7px, -18px) rotate(-0.4deg); }
}

@keyframes hf-bob-2 {
  from { transform: translate(0, 0) rotate(2.5deg); }
  to { transform: translate(-8px, -16px) rotate(0.3deg); }
}

.hero-float-1 .hf-card { animation-duration: 3s; }
.hero-float-2 .hf-card { animation-duration: 3.7s; }

/* Mobile : CTA de la carte tarifs compact */
@media (max-width: 640px) {
  .pricing-card .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    line-height: 1.25;
    white-space: normal;
    gap: 0.5rem;
  }

  .pricing-card .btn .btn-ic {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-right: -0.4rem;
  }
}

/* ============================================================
   PERFORMANCE 2026
   ============================================================ */

/* Les sections sous la ligne de flottaison ne sont rendues
   qu'a l'approche du viewport */
.mechanism, .results, .method, .simulator, .pricing, .booking, .urgency, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* Mobile : la barre du header et le menu ne collent pas aux bords */
.header-inner { margin-inline: max(0.9rem, 3vw); }

@media (min-width: 64rem) {
  .header-inner { margin-inline: auto; }
}

.mobile-menu { margin-inline: max(0.9rem, 3vw); }

/* Mobile : moins d'ecart entre l'animation du hero et la section suivante */
@media (max-width: 760px) {
  .hero { padding-bottom: 1.25rem; }
  .mechanism { padding-top: 2.75rem; }
}

/* ============================================================
   RETOUCHES 9 — 3e encart prospect a gauche, air sous le titre
   des avis, simulateur (titre plus gros, CTA aligne a gauche)
   ============================================================ */

/* 3e encart prospect : sous le premier, decale vers la droite (quinconce),
   sans jamais atteindre le sous-titre centre ni remonter sur le h1.
   PC uniquement : herite du display:none sous 1440px des .hero-float */
.hero-float-3 { left: calc(50% - 34rem); top: 20rem; }

.hero-float-3 .hf-card {
  transform: rotate(2deg);
  animation: hf-bob-3 3.4s ease-in-out infinite alternate;
}

@keyframes hf-bob-3 {
  from { transform: translate(0, 0) rotate(2deg); }
  to { transform: translate(6px, -15px) rotate(0.4deg); }
}

@media (min-width: 901px) {
  .hero-float-3 { top: 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-3 .hf-card { animation: none !important; }
}

/* Mobile : separation lisible entre la methode et les tarifs
   (fonds quasi identiques, le vide seul ne marquait pas la frontiere) */
@media (max-width: 900px) {
  .method { padding-bottom: 2.5rem; }
  .pricing { padding-top: 2.75rem; border-top: 1px solid var(--line); }
}

/* Encarts prospects : titre et sous-titre sur une seule ligne chacun */
.hf-card { max-width: none; }
.hf-card b, .hf-card i { white-space: nowrap; }

/* Logo L'Agence Americaine (les 2 exemplaires, dup mobile inclus) :
   gabarit compact + opacite pleine pour son trait fin — en fin de fichier
   pour battre le 0.85 !important du diaporama mobile. Le gras vient d'un
   stroke ajoute dans le SVG. */
.hero-logos img[src*="agence-americaine"] {
  height: 1.5rem;
  opacity: 1 !important;
}

/* Recrutement : pastilles des postes recherches sous l'intro */
.apply-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.apply-role {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.apply-role-note {
  background: transparent;
  border: 1px dashed var(--line-strong);
  color: var(--ink-2);
  font-weight: 550;
}

/* Newsletter du footer */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.4rem 2.5rem;
  background: rgba(22, 21, 19, 0.045);
  border: 1px solid rgba(22, 21, 19, 0.06);
  border-radius: var(--r-xl);
  padding: 1.7rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.footer-news-title { font-size: 1.15rem; font-weight: 700; }

.footer-news-sub {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  max-width: 30rem;
}

.footer-news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-news-form input[type="email"] {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 1.2rem;
  min-width: 15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.footer-news-form input[type="email"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-news-ok { font-weight: 650; color: var(--accent-deep); }

@media (max-width: 640px) {
  .footer-news { padding: 1.4rem 1.2rem; }
  .footer-news-form { width: 100%; }
  .footer-news-form input[type="email"] { flex: 1; min-width: 0; }
}

/* Section urgence : 78 % des vendeurs commencent en ligne */
.urgency { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

.urgency-inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.urgency-text {
  margin-top: 1.2rem;
  margin-inline: auto;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 38rem;
}

.urgency-src {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-3);
}

.urgency-src a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.urgency-src a:hover { color: var(--accent-deep); }


/* Avis : plus d'air entre le titre et le mur d'avis anime */
.reviews-wall { margin-top: clamp(3.2rem, 6vw, 5rem); }

/* Simulateur : titre du panneau resultat plus gros */
.sim-result-title { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.75rem); letter-spacing: -0.025em; }

/* Simulateur : CTA aligne a gauche avec le reste du contenu */
.sim-cta { align-self: flex-start; }

/* Tarifs : mention option site web sous les 3 points inclus */
/* ============================================================
   RETOUCHES 10 — avis Google dans le hero, section video,
   encart avis tarifs, box offre dans la DA du site
   ============================================================ */

/* Pastille 5/5 Avis Google (sous la video) */
.hero-badge-google {
  margin-bottom: 0;
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--ink);
  padding: 0.45rem 0.9rem;
  gap: 0.45rem;
  box-shadow: var(--shadow-soft);
}

.hero-badge-google .rev-stars { width: 4.2rem; height: 0.78rem; -webkit-mask-size: 0.84rem 0.78rem; mask-size: 0.84rem 0.78rem; }
.hero-badge-google b { font-weight: 800; }
.hero-badge-google .hb-g { flex-shrink: 0; }

/* Section video (remplace le mur d'avis) */
.video-intro {
  margin: 1rem auto 0;
  max-width: 34rem;
  text-align: center;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.video-tray {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  max-width: 56rem;
  margin-inline: auto;
  padding: 0.5rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--r-xl) - 0.5rem);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-float);
}

.video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5.25rem;
  height: 5.25rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 48px -12px rgba(255, 103, 0, 0.6);
  transition: transform 0.35s var(--ease-spring), background-color 0.3s;
}

.video-play svg { margin-left: 0.25rem; }
.video-play:hover { transform: scale(1.06); background: var(--accent-deep); }
.video-play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.video-play-ring {
  position: absolute;
  inset: -0.55rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 103, 0, 0.55);
  animation: video-ring 2.2s ease-out infinite;
}

@keyframes video-ring {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.video-frame.playing .video-play { display: none; }

.video-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.video-proof {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .video-play-ring { animation: none; }
}

/* Tarifs : les deux colonnes alignees par le bas (carte prix / encart avis) */
@media (min-width: 901px) {
  .pricing-panel { align-items: end; }
}

/* Tarifs : encart avis client sous les points inclus */
.pricing-review {
  margin-top: 1.6rem;
  max-width: 30rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
}

.pricing-review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-review-head .rev-initial { width: 2.25rem; height: 2.25rem; font-size: 0.95rem; }

.pricing-review-author {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.pricing-review-author span {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 0.1rem;
}

.pricing-review-rating {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
}

.pricing-review-rating .rev-stars { width: 4.2rem; height: 0.78rem; -webkit-mask-size: 0.84rem 0.78rem; mask-size: 0.84rem 0.78rem; }

.pricing-review blockquote {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
}

/* Box offre : reprend les codes du site — surface blanche, coins --r-lg,
   filet orange fin, ombre douce, pastille orange, valeur barree */
.pricing-offer-lead {
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.pricing-offer-lead svg { color: var(--accent); flex-shrink: 0; }
.pricing-offer-lead b { color: var(--accent-deep); font-weight: 750; }

.pricing-offer {
  position: relative;
  margin-top: 1.3rem;
  padding: 1.15rem 1.25rem 1.05rem;
  background: linear-gradient(180deg, #FFF8F2 0%, var(--surface) 100%);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(22, 21, 19, 0.04), 0 16px 40px -22px rgba(226, 91, 0, 0.35);
}

.pricing-offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pricing-offer-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-offer-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
}

.pricing-offer-value s {
  font-size: 1rem;
  font-weight: 650;
  color: var(--ink-3);
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
}

.pricing-offer-value b {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  text-transform: uppercase;
}

.pricing-offer-title {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pricing-offer-title em { font-style: normal; color: var(--accent-deep); }

.pricing-offer-countdown {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--accent-line);
  font-size: 0.82rem;
  color: var(--ink-3);
}

.pricing-offer-countdown b {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Cal.com sans le panneau description : sur PC la box s'ajuste
   a la largeur reelle du calendrier au lieu de s'etirer.
   Attention : sous ~750px d'iframe, Cal bascule en layout mobile empile —
   ne pas serrer davantage. */
@media (min-width: 901px) {
  .booking-tray { max-width: 50.5rem; margin-inline: auto; }
  .booking-tray .booking-embed { padding-inline: 0.6rem; }
}


/* Header : pilule resserree — 3 liens seulement, plus de nav a rallonge */
.header-inner { max-width: 47rem; }

/* Box tarifs : memes angles que les autres grandes box du site
   (simulateur, trays video et Cal.com) — r-xl, partout */
.pricing-panel { border-radius: var(--r-xl); }

/* Offre : lien vers un exemple de site realise */
.pricing-offer-example { margin-top: 0.55rem; font-size: 0.86rem; }

.pricing-offer-example a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.pricing-offer-example a:hover { color: var(--accent); }