/* ==========================================================================
   RÉNOCEM HABITAT — Feuille de styles
   Style : inspiré Rénovation Man · couleurs marque vert & bleu
   ========================================================================== */

:root {
  /* Vert émeraude (couleur marque Rénocem) */
  --green-50:   #DCFCE7;
  --green-100:  #BBF7D0;
  --green-200:  #86EFAC;
  --green-300:  #4ADE80;
  --green-400:  #22C55E;
  --green-500:  #10B981;   /* vert émeraude marque */
  --green-600:  #059669;
  --green-700:  #047857;
  --green-800:  #065F46;
  --green-900:  #064E3B;

  /* Bleu accent (eau / salle de bain) */
  --blue-50:    #E8F2F8;
  --blue-100:   #CCE1EE;
  --blue-200:   #99C3DC;
  --blue-300:   #5FA0C6;
  --blue-400:   #2F82B0;
  --blue-500:   #1E6F9C;   /* bleu principal */
  --blue-600:   #165A80;
  --blue-700:   #104563;

  /* Neutres */
  --ink:        #1A2119;
  --ink-soft:   #2D3A2B;
  --ink-mid:    #4F5A4C;
  --muted:      #7A857A;
  --line:       #E4E9E0;
  --line-dark:  #2C332A;

  --cream-50:   #FAFBF7;
  --cream-100:  #F4F6EF;
  --cream-200:  #E9EEE2;

  --bg:         #FFFFFF;
  --bg-alt:     var(--cream-100);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(26,33,25,.06), 0 2px 6px rgba(26,33,25,.04);
  --shadow:    0 6px 18px rgba(26,33,25,.08), 0 14px 40px rgba(26,33,25,.08);
  --shadow-lg: 0 20px 60px rgba(26,33,25,.14);

  --container: 1220px;

  --font-sans:    "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Playfair Display", "Georgia", serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

/* Typographie */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .55em;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: .01em; }
p  { color: var(--ink-mid); margin: 0 0 1em; font-size: 1.02rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(70px, 9vw, 130px) 0; }
.section--alt   { background: var(--cream-100); }
.section--cream { background: var(--cream-200); }
.section--dark  { background: var(--green-900); color: #fff; }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p  { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue-500);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--blue-300); }
.section--dark .eyebrow::before { background: var(--blue-300); }

.section-title {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-title p { color: var(--ink-mid); font-size: 1.08rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  transition: all .2s ease;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(30,111,156,.28);
}
.btn--primary:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(30,111,156,.36);
}

.btn--green {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(85,101,81,.28);
}
.btn--green:hover { background: var(--green-600); transform: translateY(-1px); }

.btn--dark {
  background: var(--green-900);
  color: #fff;
}
.btn--dark:hover { background: var(--green-800); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--green-500);
}
.btn--ghost:hover { background: var(--green-500); color: #fff; }

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--cream-100); }

.btn--lg { padding: 18px 30px; font-size: 1.02rem; }

/* Icônes inline */
.ico { width: 16px; height: 16px; display: inline-block; vertical-align: -3px; fill: currentColor; }
a .ico { margin-right: 6px; }

/* Topbar */
.topbar {
  background: var(--green-900);
  color: #fff;
  font-size: .85rem;
  padding: 9px 0;
}
.topbar a { color: rgba(255,255,255,.88); transition: color .15s; }
.topbar a:hover { color: var(--blue-300); }
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar__inner > div:first-child { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar .sep { color: rgba(255,255,255,.25); }
.topbar svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-right: 6px; vertical-align: -2px; }

@media (max-width: 760px) {
  .topbar__inner > div:last-child { display: none; }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__logo {
  width: 78px;
  height: 78px;
  display: block;
  flex-shrink: 0;
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  line-height: 1;
}
.brand__tagline {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-weight: 500;
  font-size: .94rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .18s;
}
.nav a:hover { color: var(--green-500); }
.nav a.active { color: var(--blue-500); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__cta .btn--ghost { padding: 11px 18px; font-size: .9rem; }
.header__cta .btn--primary { padding: 12px 20px; font-size: .92rem; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--green-700);
  border-radius: 10px;
  padding: 0;
  position: relative;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--green-700);
  border-radius: 1px;
}
.burger::before { top: 14px; }
.burger span   { top: 20px; }
.burger::after { top: 26px; }

@media (max-width: 1024px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav a:last-child { border-bottom: 0; }
  .burger { display: block; }
  .header__cta .btn--ghost { display: none; }
}
@media (max-width: 560px) {
  .brand__tagline { display: none; }
  .brand__name { font-size: 1.1rem; }
  .header__cta .btn--primary { padding: 10px 14px; font-size: .85rem; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--cream-100);
  overflow: hidden;
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--blue-50) 0%, transparent 70%);
  opacity: .9;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  opacity: .8;
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy h1 {
  margin-top: 8px;
  margin-bottom: 20px;
}
.hero__copy h1 span {
  color: var(--blue-500);
  font-style: italic;
}
.hero__copy > p {
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__meta .item .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta .item .lbl {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero__visual {
  position: relative;
}
.hero__visual svg,
.hero__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero__visual img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__badge svg {
  width: 28px; height: 28px;
  color: var(--blue-500);
  box-shadow: none;
  border-radius: 0;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__badge span {
  font-size: .8rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero__meta { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .hero__badge { left: 12px; bottom: 12px; padding: 10px 14px; }
}

/* ==========================================================================
   BANDEAU DE CONFIANCE
   ========================================================================== */
.trust-bar {
  background: var(--green-900);
  color: #fff;
  padding: 22px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px 40px;
  align-items: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .94rem;
  color: rgba(255,255,255,.88);
}
.trust-bar__item svg {
  width: 22px; height: 22px;
  color: var(--blue-300);
  flex-shrink: 0;
}
.trust-bar__item strong { color: #fff; font-weight: 600; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card__visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--cream-200);
}
.service-card__visual svg { width: 100%; height: 100%; }
.service-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.service-card:hover .service-card__visual img { transform: scale(1.04); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 18px; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: .94rem;
  color: var(--ink-mid);
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--blue-500);
}
.service-card__cta {
  font-weight: 600;
  color: var(--blue-500);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
  margin-top: auto;
}
.service-card__cta:hover { gap: 12px; color: var(--blue-600); }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.step:hover { border-color: var(--blue-500); transform: translateY(-2px); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue-500);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.step h4 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.15rem; }
.step p { font-size: .92rem; margin: 0; color: var(--ink-mid); }

/* ==========================================================================
   FEATURE
   ========================================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature--reverse > div:first-child { order: 2; }
.feature--reverse > div:last-child  { order: 1; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature--reverse > div:first-child,
  .feature--reverse > div:last-child { order: initial; }
}
.feature__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-200);
  position: relative;
  align-self: center;
  max-height: 620px;
}
.feature__media svg {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 4;
  display: block;
}
.feature__media > img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Variante : afficher l'image entière (utile pour infographies / éléments avec texte) */
.feature__media--contain {
  background: #fff;
  padding: 18px;
}
.feature__media--contain > img {
  object-fit: contain;
  height: auto;
}
.feature ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.feature ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-soft);
}
.feature ul li:last-child { border-bottom: 0; }
.feature ul li::before {
  content: "→";
  color: var(--blue-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature ul li strong { color: var(--ink); margin-right: 4px; }

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.015); }
.gallery-item svg { width: 100%; height: 100%; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(26,33,25,.9) 0%, transparent 100%);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
}

/* ==========================================================================
   TEMOIGNAGES
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px; right: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--blue-500);
  opacity: .15;
  line-height: 1;
}
.testimonial__stars {
  color: var(--blue-500);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: .9rem;
}
.testimonial__name {
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.testimonial__loc {
  font-size: .82rem;
  color: var(--muted);
}

/* ==========================================================================
   CTA BLOCK
   ========================================================================== */
.cta-block {
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
  opacity: .25;
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--green-500) 0%, transparent 70%);
  opacity: .3;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-block p {
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}
.cta-block .eyebrow { color: var(--blue-300); }
.cta-block .eyebrow::before { background: var(--blue-300); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.72);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand p {
  color: rgba(255,255,255,.6);
  margin-top: 16px;
  font-size: .92rem;
  max-width: 300px;
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tagline { color: rgba(255,255,255,.55); }
.footer__brand .brand__logo {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  width: 96px;
  height: 96px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 20px;
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li { margin-bottom: 12px; font-size: .93rem; }
.footer ul a:hover { color: var(--blue-300); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}

/* ==========================================================================
   BOUTON FLOTTANT TÉLÉPHONE
   ========================================================================== */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(30,111,156,.4);
  z-index: 40;
  animation: pulse 2.2s infinite;
}
.floating-call svg { width: 24px; height: 24px; }
@keyframes pulse {
  0%   { box-shadow: 0 8px 20px rgba(30,111,156,.4), 0 0 0 0 rgba(30,111,156,.6); }
  70%  { box-shadow: 0 8px 20px rgba(30,111,156,.4), 0 0 0 18px rgba(30,111,156,0); }
  100% { box-shadow: 0 8px 20px rgba(30,111,156,.4), 0 0 0 0 rgba(30,111,156,0); }
}
@media (max-width: 760px) { .floating-call { display: flex; } }

/* ==========================================================================
   PAGES INTÉRIEURES
   ========================================================================== */
.page-header {
  background: var(--green-900);
  color: #fff;
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
  opacity: .22;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green-500) 0%, transparent 70%);
  opacity: .35;
}
.page-header__inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.page-header h1 { color: #fff; margin-bottom: 18px; }
.page-header h1 span { color: var(--blue-300); font-style: italic; }
.page-header p {
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
  max-width: 640px;
}
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--blue-300); }
.breadcrumb .sep { margin: 0 8px; }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

.prose h2 { margin-top: 40px; margin-bottom: 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 32px; font-family: var(--font-display); font-size: 1.3rem; }
.prose p  { font-size: 1.02rem; color: var(--ink-mid); }
.prose ul { padding-left: 0; list-style: none; margin: 18px 0 24px; }
.prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-mid);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 2px;
  background: var(--blue-500);
}

.info-card {
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 110px;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.info-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-500);
  margin: 12px 0 6px;
  line-height: 1;
}
.info-card .price small {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 400;
}
.info-card p { font-size: .92rem; margin-bottom: 20px; }
.info-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.info-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.info-card ul li:last-child { border-bottom: 0; }
.info-card ul li svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; }
.info-card .btn { width: 100%; justify-content: center; }

/* Grille bénéfices */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 30px 0;
}
@media (max-width: 800px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.benefit__ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.benefit__ico svg { width: 20px; height: 20px; }
.benefit h4 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-display); }
.benefit p { font-size: .9rem; margin: 0; color: var(--ink-mid); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--blue-500); }
.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--blue-500);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details div.faq__body {
  padding: 0 26px 22px;
  color: var(--ink-mid);
  font-size: .98rem;
}

/* ==========================================================================
   SIMULATEUR
   ========================================================================== */
.sim {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sim__head {
  background: var(--green-900);
  color: #fff;
  padding: 30px 36px;
}
.sim__head h2 { color: #fff; margin: 0 0 6px; font-size: 1.4rem; }
.sim__head p { color: rgba(255,255,255,.75); margin: 0; font-size: .92rem; }
.sim__progress {
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 20px;
}
.sim__progress-fill {
  height: 100%;
  background: var(--blue-500);
  border-radius: 99px;
  width: 0;
  transition: width .3s ease;
}
.sim__progress-text {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  text-align: right;
}

.sim__body { padding: 40px 36px; }
@media (max-width: 600px) { .sim__body { padding: 30px 22px; } .sim__head { padding: 24px 22px; } }

.sim__step { display: none; }
.sim__step.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sim__step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.sim__step > p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 24px;
}

.sim__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 480px) { .sim__options { grid-template-columns: 1fr; } }
.sim__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s;
  background: #fff;
  user-select: none;
}
.sim__option:hover { border-color: var(--blue-500); background: var(--cream-50); }
.sim__option input { display: none; }
.sim__option .check {
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: all .15s;
}
.sim__option input[type="checkbox"] ~ .check { border-radius: 6px; }
.sim__option .check::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(.3);
  transition: all .15s;
}
.sim__option input[type="checkbox"] ~ .check::after { border-radius: 2px; }
.sim__option.is-checked,
.sim__option:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--blue-50);
}
.sim__option.is-checked .check,
.sim__option:has(input:checked) .check {
  background: var(--blue-500);
  border-color: var(--blue-500);
}
.sim__option.is-checked .check::after,
.sim__option:has(input:checked) .check::after {
  opacity: 1;
  transform: scale(1);
}
.sim__option .label strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
  margin-bottom: 2px;
}
.sim__option .label span {
  font-size: .82rem;
  color: var(--muted);
}

.sim__field { margin-bottom: 20px; }
.sim__field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.sim__field input,
.sim__field textarea,
.sim__field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color .15s;
}
.sim__field input:focus,
.sim__field textarea:focus,
.sim__field select:focus {
  outline: 0;
  border-color: var(--blue-500);
}
.sim__field textarea { min-height: 110px; resize: vertical; }
.sim__grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sim__grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 500px) {
  .sim__grid-2, .sim__grid-3 { grid-template-columns: 1fr; }
}

.sim__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.sim__footer .btn { padding: 13px 22px; font-size: .95rem; }
.sim__footer [data-prev][hidden] { visibility: hidden; }

.sim__result {
  text-align: center;
}
.sim__result .amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--blue-500);
  margin: 20px 0 6px;
  line-height: 1;
}
.sim__result .amount small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}
.sim__result .note {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--ink-mid);
  margin: 24px 0;
  text-align: left;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
  opacity: .3;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: #fff; font-family: var(--font-display); margin-bottom: 10px; }
.contact-info > p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.contact-info__list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-info__list li:last-child { border-bottom: 0; }
.contact-info__list svg { width: 22px; height: 22px; color: var(--blue-300); flex-shrink: 0; margin-top: 2px; }
.contact-info__list strong { display: block; color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; font-weight: 600; }
.contact-info__list a, .contact-info__list span { color: rgba(255,255,255,.88); font-size: 1rem; }
.contact-info__list a:hover { color: var(--blue-300); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form h3 { font-family: var(--font-display); margin-bottom: 8px; }
.contact-form > p { color: var(--ink-mid); margin-bottom: 26px; font-size: .95rem; }
.contact-form .sim__field { margin-bottom: 16px; }

/* Misc */
.success {
  padding: 22px;
  background: var(--green-50);
  border: 1px solid var(--green-300);
  border-radius: var(--radius);
  color: var(--green-700);
}

/* ==========================================================================
   COMPATIBILITÉ avec le markup existant
   (alias de variables & classes utilisées dans les pages intérieures)
   ========================================================================== */

:root {
  /* Alias de variables historiques -> nouvelle palette verte/bleue */
  --sage-50:  var(--green-50);
  --sage-100: var(--green-100);
  --sage-200: var(--green-200);
  --sage-300: var(--green-300);
  --sage-400: var(--green-400);
  --sage-500: var(--green-500);
  --sage-600: var(--green-600);
  --sage-700: var(--green-700);
  --sage-800: var(--green-800);
  --font-serif: var(--font-display);

  --accent: var(--blue-500);
  --bg: #FFFFFF;
}

/* Alias: page-hero → page-header */
.page-hero {
  background: var(--green-900);
  color: #fff;
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
  opacity: .22;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green-500) 0%, transparent 70%);
  opacity: .4;
}
.page-hero > .container { position: relative; z-index: 1; max-width: 1220px; }
.page-hero .breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb a:hover { color: var(--blue-300); }
.page-hero .eyebrow { color: var(--blue-300); }
.page-hero .eyebrow::before { background: var(--blue-300); }
.page-hero h1 { color: #fff; margin-bottom: 18px; max-width: 820px; }
.page-hero h1 span { color: var(--blue-300); font-style: italic; }
.page-hero .lead,
.page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
  max-width: 720px;
}

/* Boutons dans le hero sombre — texte blanc pour lisibilité */
.page-hero .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.page-hero .btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Section sage (compat) — devient crème clair */
.section--sage { background: var(--green-50); }

/* Lead intro paragraph */
.lead {
  font-size: 1.12rem;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 720px;
}

/* Pricing note */
.pricing-note {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 14px 22px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1rem;
  margin: 20px 0;
  border: 1px solid var(--blue-100);
}
.pricing-note strong {
  font-family: var(--font-display);
  color: var(--blue-500);
  font-size: 1.25rem;
}

/* Note / note (sim) */
.note {
  background: var(--cream-100);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .93rem;
  color: var(--ink-mid);
  margin: 20px 0;
}

/* ==========================================================================
   CONTACT - Cards (compat)
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  align-items: flex-start;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--blue-500); }
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-card a { color: var(--blue-500); font-weight: 500; transition: color .15s; }
.contact-card a:hover { color: var(--blue-600); }

/* ==========================================================================
   FORM (compat)
   ========================================================================== */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) { .form { padding: 24px; } }
.form h3 {
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.form label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin: 14px 0 6px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .98rem;
  background: #fff;
  transition: border-color .15s;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 0;
  border-color: var(--blue-500);
}
.form textarea { min-height: 130px; resize: vertical; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* ==========================================================================
   SIMULATEUR — alias classes supplémentaires
   ========================================================================== */
.sim__progress-bar {
  height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  overflow: hidden;
}
.sim__progress-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}
.sim__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.sim__nav .btn { padding: 13px 22px; font-size: .95rem; }
.sim__nav [data-prev][hidden],
.sim__nav [hidden] { display: none; }

.sim__option-check {
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: all .15s;
  position: relative;
}
.sim__option input[type="checkbox"] ~ .sim__option-check { border-radius: 6px; }
.sim__option-check::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(.3);
  transition: all .15s;
}
.sim__option input[type="checkbox"] ~ .sim__option-check::after { border-radius: 2px; }
.sim__option:has(input:checked) .sim__option-check,
.sim__option.is-checked .sim__option-check {
  background: var(--blue-500);
  border-color: var(--blue-500);
}
.sim__option:has(input:checked) .sim__option-check::after,
.sim__option.is-checked .sim__option-check::after {
  opacity: 1;
  transform: scale(1);
}
.sim__option-body strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
  margin-bottom: 2px;
}
.sim__option-body span {
  font-size: .82rem;
  color: var(--muted);
  display: block;
}

.sim__estimate {
  text-align: center;
  padding: 20px 0;
}
.sim__estimate .price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--blue-500);
  margin: 16px 0 6px;
  line-height: 1;
}
.sim__estimate .price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.sim__summary {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  text-align: left;
}
.sim__summary h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 12px;
}
.sim__summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sim__summary li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.sim__summary li:last-child { border-bottom: 0; }
.sim__summary li strong { color: var(--ink); }
.sim__summary li span { color: var(--ink-mid); text-align: right; }

.sim__success {
  text-align: center;
  padding: 20px;
}
.sim__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.sim__success-icon svg { width: 34px; height: 34px; }

.sim__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--muted);
}
.sim__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sim__trust svg { width: 16px; height: 16px; color: var(--blue-500); }

/* Price (utilitaire) */
.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-500);
}

/* Container breadcrumb inside page-hero */
.page-hero .container > .breadcrumb { margin-bottom: 18px; }

/* ==========================================================================
   PROCESS 3 ÉTAPES (homepage)
   ========================================================================== */
.process-3 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.process-3__step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.process-3__step:hover { border-color: var(--blue-300); transform: translateY(-3px); }
.process-3__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 6px 18px rgba(30,111,156,.4);
}
.process-3__step h3 { color: #fff; font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.process-3__step p { color: rgba(255,255,255,.78); font-size: .95rem; margin: 0; }
.process-3__arrow {
  align-self: center;
  font-size: 2rem;
  color: var(--blue-300);
  font-weight: 300;
}
@media (max-width: 900px) {
  .process-3 { grid-template-columns: 1fr; gap: 18px; }
  .process-3__arrow { display: none; }
}

/* ==========================================================================
   AVANT / APRÈS
   ========================================================================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

.ba-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.ba-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 320px;
  position: relative;
}
.ba-visual__before,
.ba-visual__after {
  position: relative;
  overflow: hidden;
}
.ba-visual__before { border-right: 2px solid #fff; }
.ba-visual__before svg,
.ba-visual__after svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,33,25,.85);
  color: #fff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ba-tag--after {
  background: var(--blue-500);
}

.ba-info {
  padding: 22px 24px 26px;
}
.ba-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.ba-info > span {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.ba-info p {
  font-size: .92rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   GRILLE DE VILLES (zone d'intervention)
   ========================================================================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 20px 0 0;
}
.cities-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--ink-soft);
  transition: border-color .15s, color .15s;
}
.cities-grid span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
}
.cities-grid span:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}
@media (max-width: 480px) { .cities-grid { grid-template-columns: 1fr; } }

/* Trust bar item with strong inside */
.trust-bar__item span { line-height: 1.3; }

/* ==========================================================================
   PAGE RÉALISATIONS
   ========================================================================== */
.section--tight { padding: 50px 0; }

.trust-bar--proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.trust-bar--proof .trust-item {
  text-align: center;
  padding: 28px 18px;
  border-right: 1px solid var(--line);
}
.trust-bar--proof .trust-item:last-child { border-right: none; }
.trust-bar--proof .trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--blue-500);
  line-height: 1.1;
  margin-bottom: 6px;
}
.trust-bar--proof .trust-item span {
  display: block;
  font-size: .88rem;
  color: var(--muted);
}
@media (max-width: 800px) {
  .trust-bar--proof { grid-template-columns: repeat(2, 1fr); }
  .trust-bar--proof .trust-item:nth-child(2) { border-right: none; }
  .trust-bar--proof .trust-item:nth-child(1),
  .trust-bar--proof .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .trust-bar--proof { grid-template-columns: 1fr; }
  .trust-bar--proof .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-bar--proof .trust-item:last-child { border-bottom: none; }
}

/* Photo unique pour la réalisation phare */
.case-feature__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
  max-height: 620px;
}

/* Card avec une seule photo (pas de avant/après) */
.ba-visual--single {
  display: block;
  height: 320px;
}
.ba-visual--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ba-card:hover .ba-visual--single img { transform: scale(1.04); }

/* Featured case study */
.case-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.case-feature__visual {
  height: 100%;
  min-height: 380px;
}
.case-feature__visual .ba-visual {
  height: 100%;
  border-radius: 0;
}
.case-feature__content {
  padding: 48px 48px 48px 8px;
}
.case-feature__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 12px 0 16px;
  color: var(--ink);
}
.case-feature__content > p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}
.case-feature__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.case-feature__specs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-feature__specs strong {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.case-feature__specs span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}
.case-feature__quote {
  font-style: italic;
  color: var(--ink-soft);
  border-left: 3px solid var(--blue-500);
  padding-left: 16px;
  margin: 0;
}
.case-feature__quote em { color: var(--ink); font-style: normal; font-weight: 600; }

@media (max-width: 900px) {
  .case-feature { grid-template-columns: 1fr; }
  .case-feature__visual { min-height: 280px; }
  .case-feature__content { padding: 32px 28px 36px; }
  .case-feature__specs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .case-feature__specs { grid-template-columns: 1fr; gap: 10px; padding: 14px 0; }
}

/* Section heading helper */
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 12px 0 14px;
  color: var(--ink);
}
.section__head h2 span {
  font-style: italic;
  color: var(--blue-500);
}
.section__head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Testimonials grid (alias) */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.testimonial footer strong {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.testimonial footer span {
  color: var(--muted);
  font-size: .82rem;
}

/* ==========================================================================
   PROCESSUS — 4 étapes
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right,
    var(--green-300) 0%,
    var(--green-500) 50%,
    var(--blue-500) 100%);
  opacity: .35;
  z-index: 0;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-steps::before { display: none; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  position: relative;
  text-align: center;
  z-index: 1;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.process-step__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(16,185,129,.35);
}
.process-step__icon {
  width: 56px;
  height: 56px;
  margin: 8px auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
}
.process-step__icon svg { width: 28px; height: 28px; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.process-step p {
  font-size: .92rem;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.55;
}

.process-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ==========================================================================
   USP HIGHLIGHT — clé en main + interlocuteur unique
   ========================================================================== */
.usp-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 50px 0 0;
}
@media (max-width: 800px) { .usp-banner { grid-template-columns: 1fr; } }

.usp-card {
  position: relative;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(6,78,59,.20);
}
.usp-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.usp-card--blue {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  box-shadow: 0 18px 40px rgba(16,90,128,.20);
}
.usp-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.usp-card__icon svg { width: 32px; height: 32px; color: #fff; }
.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.usp-card h3 em {
  font-style: italic;
  color: rgba(255,255,255,.85);
}
.usp-card p {
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  margin: 0 0 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.usp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.usp-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .94rem;
  color: rgba(255,255,255,.94);
}
.usp-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 11px 11px;
}

/* ==========================================================================
   INTRO HOMEPAGE (SEO long-form)
   ========================================================================== */
.intro-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 24px;
  max-width: 760px;
  display: grid;
  gap: 12px;
}
.intro-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: var(--green-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-500);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.intro-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.intro-list a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: var(--green-300);
  text-underline-offset: 3px;
}
.intro-list a:hover { text-decoration-color: var(--green-500); }

.intro-closing {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-mid);
  font-style: italic;
}

/* Liens dans les paragraphes des sous-blocs feature */
.feature p a,
.feature ul li a {
  color: var(--blue-500);
  text-decoration: underline;
  text-decoration-color: var(--blue-200);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s;
}
.feature p a:hover,
.feature ul li a:hover { text-decoration-color: var(--blue-500); }

/* ==========================================================================
   SIMULATEUR — bloc de rappel (formulaire optionnel)
   ========================================================================== */
.sim__recall {
  margin-top: 36px;
  padding: 28px 26px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
}
.sim__recall h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 8px;
}
.sim__recall > p {
  color: var(--ink-mid);
  font-size: .94rem;
  margin: 0 0 20px;
}

/* ==========================================================================
   PAGE L'ENTREPRISE — valeurs et photo
   ========================================================================== */
.photo-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/6;
}

/* Vraies photos */
.photo-real {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/6;
  background: var(--cream-100);
}
.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-real--portrait {
  background: var(--green-50);
}
.photo-real--portrait img {
  object-fit: cover;
  padding: 0;
  width: 100%;
  height: 100%;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; max-width: 700px; margin-left: auto; margin-right: auto; } }

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.value-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-600);
  margin-bottom: 20px;
}
.value-card__icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: var(--ink);
}
.value-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: .94rem;
  color: var(--ink-mid);
  line-height: 1.55;
}
.value-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 9px 9px;
}
.value-card ul li strong { color: var(--ink); font-weight: 600; }

/* Ghost button on dark CTA */
.btn--ghost-light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ==========================================================================
   Simulateur "boutons" (page simulateur.html) — état sélectionné + récap rows
   ========================================================================== */
.sim__option.selected {
  border-color: var(--blue-500);
  background: var(--blue-50);
}
.sim__option.selected .sim__option-check {
  background: var(--blue-500);
  border-color: var(--blue-500);
}
.sim__option.selected .sim__option-check::after {
  opacity: 1;
  transform: scale(1);
}

.sim__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.sim__summary-row:last-child { border-bottom: 0; }
.sim__summary-label {
  color: var(--ink);
  font-weight: 600;
  flex-shrink: 0;
}
.sim__summary-value {
  color: var(--ink-mid);
  text-align: right;
}

/* ==========================================================================
   RESPONSIVE — MOBILE (≤ 768 px)  &  TABLET (≤ 1024 px)
   ========================================================================== */

@media (max-width: 1024px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
    gap: 14px;
    z-index: 50;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
  }
  .nav.open a { padding: 10px 0; font-size: 1rem; }
  .burger { display: inline-flex; }
  .header__cta .btn--ghost { display: none; }
  .topbar__inner { flex-direction: column; gap: 6px; align-items: flex-start; font-size: .82rem; }
  .topbar .sep { display: none; }
}

@media (max-width: 768px) {
  /* Typo plus tassée */
  h1 { font-size: clamp(1.7rem, 6vw, 2.4rem) !important; line-height: 1.15; }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  h3 { font-size: 1.15rem; }
  .lead { font-size: 1rem; }

  /* Sections : moins d'air */
  .section { padding: 50px 0; }
  .page-hero { padding: 50px 0 40px; }

  /* Header / nav */
  .header__inner { gap: 8px; }
  .header__cta .btn { padding: 9px 14px; font-size: .85rem; }
  .brand__logo img { height: 36px; }

  /* Toutes les grilles multi-colonnes -> 1 colonne par défaut */
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* Layouts spécifiques */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .ba-grid, .case-grid, .testimonials, .steps, .features, .cards, .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }
  .footer__grid { grid-template-columns: 1fr !important; gap: 28px; }
  .process-3 { grid-template-columns: 1fr !important; }
  .process-3__arrow, .process-3 svg.arrow { display: none; }

  /* Formulaires */
  .form__row { grid-template-columns: 1fr !important; gap: 14px; }
  .sim__grid-2 { grid-template-columns: 1fr; }

  /* Boutons CTA dans le hero */
  .hero__ctas, .cta-block__inner, .page-hero .ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn, .cta-block__inner .btn { width: 100%; justify-content: center; }

  /* Simulateur : moins d'air, options en 1 colonne */
  .sim__body, .sim { padding: 20px !important; }
  .sim__options { grid-template-columns: 1fr !important; }
  .sim__option { padding: 14px 16px; }
  .sim__nav { flex-wrap: wrap; gap: 8px; }
  .sim__nav .btn { padding: 11px 14px; font-size: .9rem; flex: 1 1 auto; }
  .sim__head h2 { font-size: 1.5rem; }
  [data-amount] { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }

  /* Cas / réalisations cards */
  .case-card, .ba-card { padding: 16px; }
  .case-feature { flex-direction: column; }

  /* Avis */
  .testimonial { padding: 22px 20px; }

  /* Topbar : cacher l'email pour gain de place */
  .topbar__inner > div:last-child { display: none; }

  /* Floating call : un peu plus petit */
  .floating-call { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .floating-call svg { width: 22px; height: 22px; }

  /* Page-hero btns en pile */
  .page-hero .container > .btn,
  .page-hero .ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  .section { padding: 40px 0; }
  .testimonials { gap: 14px; }
  .topbar { display: none; } /* trop encombrant sur très petits écrans */
}

/* Garde-fou : aucune image ne déborde */
img, svg, video { max-width: 100%; height: auto; }
.container, section { overflow-x: clip; }

/* Tableaux scrollables si trop larges */
table { width: 100%; }
.table-scroll, .responsive-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ==========================================================================
   POLISH MOBILE — finitions visuelles téléphone & tablette
   Vient en surcouche des règles responsive génériques au-dessus.
   ========================================================================== */

@media (max-width: 1024px) {
  /* --- Burger plus moderne, animation hamburger -> X --- */
  .burger {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: border-color .2s, background .2s;
  }
  .burger:hover { border-color: var(--blue-500); }
  .burger span,
  .burger span::before,
  .burger span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
  }
  .burger span::before { top: -7px; }
  .burger span::after  { top: 7px; }
  .burger.active span               { background: transparent; }
  .burger.active span::before       { top: 0; transform: translate(-50%, -50%) rotate(45deg); background: var(--ink); }
  .burger.active span::after        { top: 0; transform: translate(-50%, -50%) rotate(-45deg); background: var(--ink); }

  /* --- Nav mobile : effet slide-down soft --- */
  .nav.open {
    animation: navSlideDown .25s ease both;
    border-radius: 0 0 16px 16px;
    padding: 22px 24px 26px;
    box-shadow: 0 18px 40px rgba(20, 30, 50, .08);
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav.open a {
    padding: 14px 12px;
    border-radius: 10px;
    transition: background .18s, color .18s;
    font-weight: 500;
  }
  .nav.open a:hover,
  .nav.open a.active {
    background: var(--blue-50, #e9f0fa);
    color: var(--blue-500);
  }
}

@media (max-width: 768px) {
  /* --- Hero : plus aéré, typographie + soft (garder fond sombre) --- */
  .page-hero {
    padding: 56px 0 44px;
  }
  .page-hero h1 {
    letter-spacing: -.5px;
    margin-bottom: 14px;
    color: #fff;
  }
  .page-hero .lead {
    line-height: 1.55;
    color: rgba(255,255,255,.85);
  }
  .breadcrumb {
    font-size: .82rem;
    margin-bottom: 14px;
  }

  /* --- Boutons CTA full-width et bien lisibles --- */
  .btn { font-size: .98rem; }
  .btn--lg, .btn.btn--primary, .btn--ghost {
    padding: 14px 22px;
    border-radius: 12px;
  }
  .hero__ctas, .cta-block__inner > div { gap: 12px; }
  .page-hero .container > .btn,
  .page-hero .ctas .btn,
  .hero__ctas .btn,
  .cta-block__inner .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* --- Sections : marges aérées + transitions douces --- */
  .section { padding: 60px 0; }
  .section--alt, .section--cream {
    background: var(--cream-50, #faf9f5);
    border-radius: 24px 24px 0 0;
  }
  .section__head, .section-title {
    margin-bottom: 26px;
    text-align: center;
  }
  .eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blue-50, #e9f0fa);
    color: var(--blue-500);
    border-radius: 999px;
    font-size: .78rem;
    letter-spacing: .04em;
  }

  /* --- Cards : ombres douces + coins arrondis modernes --- */
  .ba-card, .case-card, .testimonial, .feature, .process-step, .step,
  .contact-card, .value-card, .city-card, .trust-item {
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(15, 25, 50, .05);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .ba-card:active, .case-card:active, .testimonial:active {
    transform: scale(.99);
    box-shadow: 0 2px 10px rgba(15, 25, 50, .04);
  }
  .ba-card img, .case-feature__photo, .ba-visual img {
    border-radius: 14px;
  }

  /* --- Avis : guillemets discrets --- */
  .testimonial { padding: 24px 22px; }
  .testimonial__stars { font-size: 1.05rem; letter-spacing: 1px; margin-bottom: 12px; }
  .testimonial p { font-size: .98rem; line-height: 1.6; }
  .testimonial footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line, #eee); }

  /* --- Process / étapes : pastilles plus visibles --- */
  .step__num, .process-3__num, .process-step__num {
    width: 56px; height: 56px;
    border-radius: 18px;
    font-size: 1.1rem;
    margin: 0 auto 14px;
  }
  .process-3__step { padding: 28px 22px; }
  .step h4, .process-3__step h4 { margin-top: 4px; font-size: 1.05rem; }

  /* --- Formulaires : champs plus modernes --- */
  .form input,
  .form textarea,
  .form select,
  .sim__field input,
  .sim__field textarea {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px; /* évite le zoom auto iOS */
    border: 1.5px solid var(--line, #e2e5ec);
    transition: border-color .18s, box-shadow .18s;
  }
  .form input:focus,
  .form textarea:focus,
  .sim__field input:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(37, 99, 175, .12);
  }
  .form label { font-weight: 600; font-size: .92rem; margin-bottom: 6px; display: block; }
  .form textarea { min-height: 120px; }
  .form { padding: 26px 22px; border-radius: 20px; background: #fff; box-shadow: 0 6px 22px rgba(20,30,50,.06); }

  /* --- Simulateur : encart soigné et tactile --- */
  .sim, .sim__body {
    border-radius: 22px;
    padding: 24px 20px !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20,30,50,.06);
  }
  .sim__progress { margin-bottom: 22px; }
  .sim__progress-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--cream-100, #f1efe9);
    overflow: hidden;
  }
  .sim__progress-fill {
    background: linear-gradient(90deg, var(--blue-300, #5a8acc), var(--blue-500, #2563af));
    border-radius: 999px;
    transition: width .35s ease;
  }
  .sim__option {
    border-radius: 14px;
    padding: 16px 18px;
    border-width: 1.5px;
    transition: transform .15s, border-color .18s, background .18s;
  }
  .sim__option:active { transform: scale(.98); }
  .sim__option.selected,
  .sim__option:has(input:checked) {
    border-color: var(--blue-500);
    background: var(--blue-50, #eaf2fc);
  }
  .sim__nav .btn {
    border-radius: 12px;
    padding: 13px 18px;
  }
  [data-amount], [data-estimate] .price {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-300, #5a8acc));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* --- Trust bar / stats : plus chic --- */
  /* Homepage .trust-bar (dark green, .trust-bar__item) : reste sombre, on adapte juste le layout */
  .trust-bar .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    justify-content: stretch;
  }
  .trust-bar .trust-bar__item {
    color: rgba(255,255,255,.92);
    font-size: .88rem;
    justify-content: flex-start;
  }
  .trust-bar .trust-bar__item strong { color: #fff; }

  /* Secondary stats bar (.trust-bar--proof, .trust-item) : carte blanche */
  .trust-bar--proof {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(20,30,50,.05);
  }
  .trust-item { padding: 10px; text-align: center; }
  .trust-item strong { display: block; font-size: 1.1rem; color: var(--blue-500); margin-bottom: 2px; }
  .trust-item span { font-size: .82rem; color: var(--muted); }

  /* --- Carte Google Maps : coins arrondis cohérents --- */
  .map-wrap { border-radius: 18px !important; box-shadow: 0 8px 26px rgba(20,30,50,.08) !important; }
  .map-wrap iframe { height: 320px !important; }

  /* --- Footer : aération + séparateurs --- */
  .footer { padding: 50px 0 30px; }
  .footer__grid > div { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer__grid > div:last-child { border-bottom: 0; }
  .footer h4 { font-size: 1rem; margin-bottom: 14px; }

  /* --- Floating call : pulse subtle + ombre --- */
  .floating-call {
    width: 56px; height: 56px;
    bottom: 18px; right: 18px;
    box-shadow: 0 10px 28px rgba(37, 99, 175, .35);
    animation: floatPulse 2.4s ease-in-out infinite;
  }
  @keyframes floatPulse {
    0%, 100% { transform: scale(1);   box-shadow: 0 10px 28px rgba(37, 99, 175, .35); }
    50%      { transform: scale(1.05); box-shadow: 0 12px 34px rgba(37, 99, 175, .50); }
  }

  /* --- Page hero buttons stack with primary first --- */
  .page-hero .btn--primary { order: 1; }
  .page-hero .btn--ghost { order: 2; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .page-hero { padding: 44px 0 36px; }

  /* Empile encore plus tassé sur très petits écrans */
  .form { padding: 22px 18px; }
  .sim, .sim__body { padding: 20px 16px !important; }
  .testimonial { padding: 22px 18px; }
  .map-wrap iframe { height: 280px !important; }

  h1 { letter-spacing: -.6px; }
  h2 span, h3 span { color: var(--blue-500); }

  /* Stats en 2 colonnes uniquement (au lieu de 4) */
  .trust-bar--proof {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* --- Barre CTA mobile collante en bas (téléphone uniquement, pages produit) --- */
@media (max-width: 768px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line, #eee);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
    display: flex;
    gap: 10px;
    z-index: 40;
    box-shadow: 0 -6px 22px rgba(20,30,50,.08);
  }
  .mobile-cta-bar .btn {
    flex: 1;
    justify-content: center;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: .92rem;
  }
  /* Évite que le bouton flottant ou le footer soient cachés par la barre */
  body { padding-bottom: 78px; }
  .floating-call { bottom: 80px !important; }
}

/* ==========================================================================
   BLOG — listing + article
   ========================================================================== */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(20,30,50,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20,30,50,.10);
}
.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.post-card__cover {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-100, #f1efe9);
}
.post-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.post-card:hover .post-card__cover img { transform: scale(1.04); }
.post-card__cover--placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--cream-100, #f1efe9), var(--cream-50, #faf9f5));
}
.post-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.post-card__cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--blue-50, #e9f0fa);
  color: var(--blue-500);
  border-radius: 999px;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.post-card__body h2,
.post-card__body h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 4px 0 10px;
}
.post-card__body p {
  color: var(--ink-mid, #555);
  font-size: .94rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.post-card__more {
  color: var(--blue-500);
  font-weight: 600;
  font-size: .92rem;
  margin-top: auto;
}
.post-card__more--muted { color: var(--muted); font-style: italic; font-weight: 500; }
.post-card--coming { opacity: .8; }
.post-card--coming .post-card__link { cursor: default; }

/* --- Article (post-content) --- */

.post-content {
  max-width: 760px;
  margin: 0 auto;
}
.post-cover {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 36px;
  box-shadow: 0 10px 28px rgba(20,30,50,.08);
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--ink, #19232f);
}
.post-content h2:first-of-type { margin-top: 0; }
.post-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}
.post-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-mid, #444);
  margin-bottom: 18px;
}
.post-content ul, .post-content ol {
  margin: 4px 0 22px;
  padding-left: 22px;
}
.post-content ul li, .post-content ol li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-mid, #444);
  margin-bottom: 8px;
}
.post-content a:not(.btn) {
  color: var(--blue-500);
  text-decoration: underline;
  text-decoration-color: rgba(37,99,175,.3);
  text-underline-offset: 3px;
}
.post-content a:not(.btn):hover { text-decoration-color: var(--blue-500); }
.post-content a.btn { text-decoration: none; }
.post-content a.btn--primary { color: #fff; }
.post-content a.btn--ghost { color: var(--green-500); }
.post-content a.btn--ghost:hover { color: #fff; }
.post-content strong { color: var(--ink, #19232f); }

.post-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 40px 0 30px;
  padding: 26px 28px;
  background: var(--cream-50, #faf9f5);
  border-radius: 18px;
  align-items: center;
  justify-content: center;
}
.post-meta-footer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line, #eee);
  font-size: .92rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .post-content h2 { font-size: 1.3rem; }
  .post-content p, .post-content ul li { font-size: 1rem; }
  .post-cta { flex-direction: column; padding: 22px; }
  .post-cta .btn { width: 100%; justify-content: center; }
  .post-cover { border-radius: 14px; }
}

/* ==========================================================================
   FIXES MOBILE ADDITIONNELS — bugs visibles utilisateur
   ========================================================================== */

@media (max-width: 768px) {
  /* A. Cards 'Quelle transformation' — override inline style 1fr 1fr */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* C. Hero : fond sombre + texte blanc forcés (override cache CSS / specificite) */
  .page-hero {
    background: var(--green-900, #0d3b3d) !important;
    color: #fff;
  }
  .page-hero h1,
  .page-hero h1 span {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
            background-clip: border-box !important;
  }
  .page-hero .lead,
  .page-hero p {
    color: rgba(255, 255, 255, .9) !important;
  }
  .page-hero .breadcrumb,
  .page-hero .breadcrumb a,
  .page-hero .breadcrumb span {
    color: rgba(255, 255, 255, .75) !important;
  }
  .page-hero .eyebrow {
    color: var(--blue-300, #5a8acc) !important;
  }

  /* B. Pill 'Nous vous accompagnons' (.pricing-note) — colonne unique sur mobile */
  .pricing-note {
    display: block !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    text-align: left !important;
    line-height: 1.55 !important;
  }
  .pricing-note strong {
    display: inline !important;
    font-size: 1.05rem !important;
  }
}

/* ==========================================================================
   PATCH FINAL — hero mobile : forcer fond sombre + texte blanc lisible.
   Specificite renforcee (body .page-hero) + !important pour battre toute
   regle precedente, y compris polish-mobile et inline styles.
   ========================================================================== */
@media (max-width: 1024px) {
  body section.page-hero,
  body .page-hero {
    background: #0d3b3d !important;
    background-color: #0d3b3d !important;
    background-image: none !important;
    color: #ffffff !important;
  }
  body section.page-hero h1,
  body .page-hero h1,
  body .page-hero h1 *,
  body .page-hero h1 span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    text-shadow: none !important;
    opacity: 1 !important;
  }
  body .page-hero p,
  body .page-hero p.lead,
  body .page-hero .lead {
    color: rgba(255, 255, 255, .92) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .92) !important;
    background: none !important;
    opacity: 1 !important;
  }
  body .page-hero .breadcrumb,
  body .page-hero .breadcrumb * {
    color: rgba(255, 255, 255, .75) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .75) !important;
  }
  body .page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .9) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .9) !important;
    text-decoration: underline;
  }
  body .page-hero .eyebrow {
    color: #5a8acc !important;
    -webkit-text-fill-color: #5a8acc !important;
    background: rgba(255, 255, 255, .10) !important;
    border-radius: 999px;
    padding: 4px 12px;
    display: inline-block;
  }
  body .page-hero .eyebrow::before,
  body .page-hero .eyebrow::after {
    display: none !important;
    content: none !important;
  }
}

/* ==========================================================================
   MOBILE — Hero accueil vert + tout centré (titres, textes, CTAs)
   ========================================================================== */
@media (max-width: 1024px) {

  /* === Hero d'accueil : fond vert foncé + tout centré === */
  body section.hero,
  body .hero {
    background: #064E3B !important;
    background-color: #064E3B !important;
    background-image: none !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 40px 20px !important;
  }
  body .hero::before,
  body .hero::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }
  body .hero .hero__grid,
  body .hero .hero__copy,
  body .hero .container {
    text-align: center !important;
  }
  body .hero h1,
  body .hero h1 *,
  body .hero h1 span,
  body .hero__copy h1,
  body .hero__copy h1 span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }
  body .hero h1 span,
  body .hero__copy h1 span,
  body .hero h1 em {
    color: #5a8acc !important;
    -webkit-text-fill-color: #5a8acc !important;
  }
  body .hero p,
  body .hero .lead,
  body .hero p.lead,
  body .hero__copy > p {
    color: rgba(255, 255, 255, .92) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .92) !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    opacity: 1 !important;
  }
  body .hero .eyebrow {
    color: #5a8acc !important;
    -webkit-text-fill-color: #5a8acc !important;
    background: rgba(255, 255, 255, .10) !important;
    border-radius: 999px;
    padding: 4px 14px;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body .hero .eyebrow::before,
  body .hero .eyebrow::after {
    display: none !important;
    content: none !important;
  }
  body .hero .hero__cta,
  body .hero .hero__ctas,
  body .hero__cta,
  body .hero__ctas {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
  }
  body .hero__cta .btn,
  body .hero__ctas .btn {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  /* Meta sous le hero : centrée, lisible sur fond vert */
  body .hero .hero__meta {
    text-align: center !important;
  }
  body .hero .hero__meta .item {
    text-align: center !important;
  }
  body .hero .hero__meta .num {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }
  body .hero .hero__meta .lbl {
    color: rgba(255, 255, 255, .80) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .80) !important;
  }
  /* Cacher l'image hero sur mobile pour libérer la place */
  body .hero .hero__visual,
  body .hero .hero__visual img,
  body .hero .hero__badge {
    display: none !important;
  }
  body .hero .trust-card,
  body .hero .review-card {
    background: rgba(255, 255, 255, .96) !important;
    color: #0d3b3d !important;
    margin: 18px auto 0 !important;
    text-align: center !important;
  }

  /* === Centrage global sur toutes les pages === */
  body .section__head,
  body .section-title,
  body section h1,
  body section h2,
  body section h3 {
    text-align: center !important;
  }
  body .section__head p,
  body .section-title p,
  body .lead,
  body p.lead {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body .ctas,
  body .hero__ctas,
  body .hero__cta,
  body .cta-block__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
  }
  body .ctas .btn,
  body .hero__cta .btn,
  body .cta-block__actions .btn {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   UI/UX OVERHAUL — Visual polish, micro-interactions, mobile-first
   Append-only block, uses higher specificity selectors (body ...) to safely
   override prior rules.
   ========================================================================== */

/* ---------- 1. HERO ACCUEIL REDESIGN ---------- */
body section.hero {
  position: relative;
  overflow: hidden;
}
body .hero h1 {
  letter-spacing: -1px;
  line-height: 1.05;
}
body .hero .eyebrow {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}
body .hero__cta .btn--primary,
body .hero__ctas .btn--primary {
  box-shadow: 0 12px 30px rgba(30, 111, 156, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
body .hero__cta .btn--primary:hover,
body .hero__ctas .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(30, 111, 156, .45);
}
body .hero__meta .num {
  font-family: var(--font-display, "Fraunces", serif);
  color: var(--blue-400, #2F82B0);
}

/* ---------- 2. SERVICES CARDS — modernize ---------- */
body .usp-grid,
body .services-grid,
body .solutions-grid {
  gap: 24px;
}
body .usp-card,
body .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 25, 50, .06);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
body .usp-card:hover,
body .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 25, 50, .12);
}
body .usp-card img,
body .service-card img,
body .service-card__visual img {
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
body .usp-card:hover img,
body .service-card:hover img,
body .service-card:hover .service-card__visual img {
  transform: scale(1.05);
}
body .service-card__visual {
  overflow: hidden;
}
body .usp-card .btn,
body .service-card .btn,
body .service-card__cta {
  transition: gap .2s ease, transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body .usp-card:hover .btn,
body .service-card:hover .btn,
body .service-card:hover .service-card__cta {
  gap: 10px;
}

/* ---------- 3. RÉALISATIONS — galerie pro ---------- */
body .ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
body .ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 20px rgba(15, 25, 50, .07);
  background: #fff;
}
body .ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 25, 50, .15);
}
body .ba-card .ba-visual,
body .ba-card .ba-visual--single {
  overflow: hidden;
  aspect-ratio: 4/3;
}
body .ba-card .ba-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
body .ba-card:hover .ba-visual img {
  transform: scale(1.06);
}
body .ba-card .ba-info {
  padding: 20px 22px 22px;
}

/* Filtres galerie */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-filter-btn {
  background: #fff;
  border: 1.5px solid var(--line, #e2e5ec);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-mid, #555);
  cursor: pointer;
  transition: all .2s ease;
}
.gallery-filter-btn:hover {
  border-color: var(--blue-500, #1E6F9C);
  color: var(--blue-500, #1E6F9C);
}
.gallery-filter-btn.active {
  background: var(--blue-500, #1E6F9C);
  border-color: var(--blue-500, #1E6F9C);
  color: #fff;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn .25s ease;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 5. STICKY HEADER + reading progress ---------- */
body header.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: padding .25s ease, box-shadow .25s ease;
}
body header.header.scrolled {
  box-shadow: 0 4px 18px rgba(15, 25, 50, .08);
}
body header.header.scrolled .header__inner {
  padding-top: 6px;
  padding-bottom: 6px;
}
body header.header.scrolled .brand__logo img {
  height: 36px;
  transition: height .25s ease;
}

.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500, #1E6F9C), var(--green-500, #10B981));
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
}

/* ---------- 6. BLOG ARTICLE polish ---------- */
body .post-content {
  max-width: 720px;
}
body .post-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #2b3640;
}
body .post-content h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  letter-spacing: -.3px;
}
body .post-content h2:first-of-type { margin-top: 0; }
body .post-content blockquote {
  border-left: 4px solid var(--blue-500, #1E6F9C);
  padding: 12px 22px;
  margin: 24px 0;
  font-style: italic;
  background: var(--cream-50, #FAFBF7);
  border-radius: 0 12px 12px 0;
}
body .post-content a:not(.btn) {
  color: var(--blue-500, #1E6F9C);
  text-decoration: underline;
  text-decoration-color: rgba(30,111,156,.4);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
body .post-content a:not(.btn):hover {
  text-decoration-color: var(--blue-500, #1E6F9C);
}

/* Meta reading info */
.post-reading-info {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--muted, #7A857A);
  margin: 10px 0 24px;
  padding: 12px 0;
  border-top: 1px solid var(--line, #E4E9E0);
  border-bottom: 1px solid var(--line, #E4E9E0);
}
.post-reading-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-reading-info svg {
  width: 16px; height: 16px;
  display: inline-block;
  vertical-align: middle;
}

/* Articles connexes */
.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line, #E4E9E0);
}
.related-articles h3 {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* ---------- 7. MICRO-INTERACTIONS ---------- */
[data-scroll-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
[data-scroll-fade].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-scroll-fade][data-delay="1"] { transition-delay: .1s; }
[data-scroll-fade][data-delay="2"] { transition-delay: .2s; }
[data-scroll-fade][data-delay="3"] { transition-delay: .3s; }
[data-scroll-fade][data-delay="4"] { transition-delay: .4s; }

/* Boutons : subtle ripple on primary */
body .btn--primary {
  position: relative;
  overflow: hidden;
}
body .btn--primary::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  transition: width .5s, height .5s;
  pointer-events: none;
}
body .btn--primary:hover::after {
  width: 220%; height: 600%;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ---------- 8. MOBILE UX OVERHAUL ---------- */
@media (max-width: 768px) {
  /* Tap targets minimum 44px */
  body .btn, body .nav a, body .footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Header plus compact mobile */
  body header.header .header__inner {
    padding: 10px 18px;
  }
  body header.header .brand__logo img {
    height: 34px;
  }
  
  /* Sticky bottom CTA bar */
  .mobile-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line, #E4E9E0);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0));
    display: flex;
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(15, 25, 50, .10);
  }
  .mobile-cta-bar .btn {
    flex: 1;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: .95rem;
    font-weight: 600;
    justify-content: center;
    min-height: 48px;
  }
  .mobile-cta-bar .btn--ghost {
    background: var(--green-500, #10B981);
    border-color: var(--green-500, #10B981);
    color: #fff;
  }
  
  /* Body padding pour la barre CTA */
  body { padding-bottom: 80px; }
  body .floating-call { bottom: 90px !important; }
  
  /* Filtres galerie scrollables horizontalement sur mobile */
  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter-btn {
    flex-shrink: 0;
    font-size: .82rem;
    padding: 7px 14px;
  }
  
  /* Header dynamique : pas de sticky sur mobile (libère viewport) */
  body header.header {
    position: relative;
  }
}

/* Desktop : pas de mobile CTA bar */
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}


/* ==========================================================================
   CORRECTIFS REGRESSIONS UI/UX OVERHAUL
   - Re-affiche photo hero sur tablette/desktop (cachée seulement sur mobile)
   - Garantit visibilite Google Maps iframes
   - Lisibilite boutons
   ========================================================================== */

/* Re-afficher la photo du hero sur tablette et desktop (>= 769px) */
@media (min-width: 769px) {
  body .hero .hero__visual,
  body .hero img,
  body .hero .hero__badge {
    display: block !important;
  }
}

/* Sur mobile, on cache la photo et le badge mais pas TOUT */
@media (max-width: 768px) {
  body .hero .hero__visual {
    display: none !important;
  }
  body .hero .hero__badge {
    display: none !important;
  }
  /* Mais le logo et les autres images doivent rester */
  body .hero .brand__logo img,
  body .hero .header img {
    display: block !important;
  }
}

/* Garantir que les iframes (Google Maps, etc.) sont visibles */
iframe,
.map-wrap iframe,
.feature__media iframe {
  display: block !important;
  max-width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Map wrap dans .feature__media : s'assurer qu'il a bien une hauteur */
.feature__media iframe {
  width: 100% !important;
  min-height: 400px !important;
  border: 0;
}
@media (max-width: 768px) {
  .feature__media iframe {
    min-height: 280px !important;
  }
}

/* Lisibilite des boutons : neutralise le ripple qui pouvait masquer le texte */
body .btn--primary {
  position: relative;
  z-index: 1;
}
body .btn--primary > * {
  position: relative;
  z-index: 2;
}
body .btn--primary::after {
  z-index: 0 !important;
  pointer-events: none;
}
/* Force du texte blanc pour btn--primary sur n'importe quel fond */
body .btn--primary,
body a.btn--primary,
body button.btn--primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* btn--ghost (transparent avec bordure) : texte foncé pour lisibilité */
body .btn--ghost {
  color: var(--green-700, #1f5b39) !important;
  -webkit-text-fill-color: var(--green-700, #1f5b39) !important;
}
body .btn--ghost:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* btn--ghost-light (sur fond sombre) : texte blanc */
body .btn--ghost-light {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Exception : sur le hero accueil mobile (fond vert foncé), btn--ghost doit être blanc */
@media (max-width: 768px) {
  body .hero .btn--ghost,
  body .hero__cta .btn--ghost,
  body .hero__ctas .btn--ghost {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: rgba(255,255,255,.6) !important;
  }
}


/* ==========================================================================
   FIX — usp-card content visible (override scroll-fade if needed)
   ========================================================================== */
body .usp-card,
body .usp-card *,
body .usp-card[data-scroll-fade],
body .usp-card[data-scroll-fade] * {
  opacity: 1 !important;
  visibility: visible !important;
}
body .usp-card[data-scroll-fade] {
  transform: none !important;
}
/* Garantir que le contenu interne (icone, titre, texte) est bien affiche */
body .usp-card .usp-card__icon,
body .usp-card .usp-card__body,
body .usp-card h3,
body .usp-card h4,
body .usp-card p,
body .usp-card svg,
body .usp-card a,
body .usp-card .btn {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
body .usp-card .btn {
  display: inline-flex !important;
}
body .usp-card ul,
body .usp-card li {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ==========================================================================
   FIX FINAL — usp-card couleurs + contenu visible + logo plus grand
   ========================================================================== */

/* Carte standard : fond clair, texte foncé, contenu visible */
body .usp-card {
  background: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  padding: 32px 30px !important;
  border: 1px solid var(--line, #e4e9e0);
}
body .usp-card h3,
body .usp-card p,
body .usp-card li {
  opacity: 1 !important;
  visibility: visible !important;
}
body .usp-card h3 {
  color: var(--ink, #19232f) !important;
  -webkit-text-fill-color: var(--ink, #19232f) !important;
}
body .usp-card h3 em {
  color: var(--blue-500, #1E6F9C) !important;
  -webkit-text-fill-color: var(--blue-500, #1E6F9C) !important;
  font-style: italic;
}
body .usp-card p {
  color: var(--ink-mid, #4a5560) !important;
  -webkit-text-fill-color: var(--ink-mid, #4a5560) !important;
}
body .usp-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
body .usp-card li {
  color: var(--ink-mid, #4a5560) !important;
  -webkit-text-fill-color: var(--ink-mid, #4a5560) !important;
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}
body .usp-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-500, #10B981) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 9px 9px;
}
body .usp-card .usp-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blue-50, #e9f0fa);
  color: var(--blue-500, #1E6F9C);
  display: grid !important;
  place-items: center;
  margin-bottom: 18px;
  opacity: 1 !important;
  visibility: visible !important;
}
body .usp-card .usp-card__icon svg {
  width: 28px; height: 28px;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Carte BLEUE : fond bleu foncé, texte blanc */
body .usp-card--blue {
  background: var(--blue-500, #1E6F9C) !important;
  border-color: var(--blue-500, #1E6F9C) !important;
}
body .usp-card--blue h3,
body .usp-card--blue p,
body .usp-card--blue li {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body .usp-card--blue h3 em {
  color: #bcd6f0 !important;
  -webkit-text-fill-color: #bcd6f0 !important;
}
body .usp-card--blue .usp-card__icon {
  background: rgba(255, 255, 255, .15) !important;
  color: #ffffff !important;
}
body .usp-card--blue .usp-card__icon svg {
  stroke: #ffffff !important;
}
body .usp-card--blue li::before {
  background: rgba(255,255,255,.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 9px 9px;
}

/* === LOGO plus grand === */
body .brand__logo {
  width: 110px !important;
  height: 110px !important;
}
body .brand__logo img {
  height: 100% !important;
  width: 100% !important;
  object-fit: contain !important;
}
body header.header.scrolled .brand__logo {
  width: 88px !important;
  height: 88px !important;
}
body header.header.scrolled .brand__logo img {
  height: 100% !important;
}
@media (max-width: 768px) {
  body .brand__logo {
    width: 78px !important;
    height: 78px !important;
  }
  body .brand__logo img {
    height: 100% !important;
  }
}

/* ==========================================================================
   Masquer le fil d'Ariane (breadcrumb) sur toutes les pages
   ========================================================================== */
.breadcrumb {
  display: none !important;
}

/* ==========================================================================
   FIX — masquer le badge avis du hero sur tablette + mobile (<= 1024px)
   Il n'a de sens que sur desktop posé sur la photo. Sans photo il flottait
   par-dessus les boutons.
   ========================================================================== */
@media (max-width: 1024px) {
  body .hero .hero__badge,
  body .hero__badge {
    display: none !important;
  }
}

/* ==========================================================================
   MOBILE — centrer le contenu des blocs .feature (page L'entreprise, etc.)
   ========================================================================== */
@media (max-width: 768px) {
  body .feature > div,
  body .feature__content {
    text-align: center !important;
  }
  body .feature h2,
  body .feature h3,
  body .feature p,
  body .feature .eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body .feature .eyebrow {
    display: inline-block !important;
  }
  /* Listes centrées proprement : on retire la flèche/puce absolue qui
     flotterait à gauche, et on centre chaque item */
  body .feature ul {
    text-align: center !important;
    padding-left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    list-style: none !important;
  }
  body .feature ul li {
    text-align: center !important;
    padding-left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body .feature ul li::before {
    display: none !important;
    content: none !important;
  }
  body .feature ul li > div {
    display: block !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   Hero : vert UNI (supprime les dégradés/halos décoratifs qui faisaient
   des zones plus claires). Vert classique de la marque (--green-900).
   ========================================================================== */
body section.page-hero,
body .page-hero,
body section.hero,
body .hero {
  background: #064E3B !important;
  background-color: #064E3B !important;
  background-image: none !important;
}
body .page-hero::before,
body .page-hero::after,
body .hero::before,
body .hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ==========================================================================
   MOBILE — centrer les boutons des heros (conteneurs flex en style inline)
   ========================================================================== */
@media (max-width: 768px) {
  body .page-hero .container > div[style*="flex"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  body .page-hero .container > div[style*="flex"] .btn {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   Eyebrow sur fonds sombres (CTA block, hero) : lisible, centré, sans tiret
   ========================================================================== */
body .cta-block .eyebrow,
body .page-hero .eyebrow,
body .hero .eyebrow {
  display: inline-block !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #bcd6f0 !important;
  -webkit-text-fill-color: #bcd6f0 !important;
  border-radius: 999px !important;
  padding: 5px 16px !important;
  font-size: .76rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}
/* Supprimer le tiret/ligne décoratif avant l'eyebrow sur ces fonds */
body .cta-block .eyebrow::before,
body .cta-block .eyebrow::after,
body .page-hero .eyebrow::before,
body .page-hero .eyebrow::after,
body .hero .eyebrow::before,
body .hero .eyebrow::after {
  display: none !important;
  content: none !important;
}
/* CTA block centré : eyebrow bien centré */
body .cta-block {
  text-align: center;
}
body .cta-block .eyebrow {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ==========================================================================
   process-steps à l'intérieur d'un .prose : neutraliser les styles prose
   ========================================================================== */
.prose .process-steps h3 {
  margin-top: 0;
  text-align: center;
}
.prose .process-steps p {
  font-size: .96rem;
}
.prose .process-steps {
  margin-top: 30px;
}

/* ==========================================================================
   DESKTOP — hero ACCUEIL : restaurer le fond clair d'origine (le vert
   n'est gardé que sur mobile). Le titre redevient foncé et lisible.
   ========================================================================== */
@media (min-width: 1025px) {
  body section.hero,
  body .hero {
    background: var(--cream-100) !important;
    background-color: var(--cream-100) !important;
  }
  /* Re-activer les halos décoratifs d'origine */
  body .hero::before {
    display: block !important;
    content: "" !important;
    background: radial-gradient(circle, var(--blue-50) 0%, transparent 70%) !important;
  }
  body .hero::after {
    display: block !important;
    content: "" !important;
  }
  /* Texte foncé d'origine, lisible sur fond clair */
  body .hero h1,
  body .hero h1 *,
  body .hero__copy h1 {
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
  }
  body .hero h1 span,
  body .hero__copy h1 span,
  body .hero h1 em {
    color: var(--blue-500) !important;
    -webkit-text-fill-color: var(--blue-500) !important;
  }
  body .hero__copy > p,
  body .hero .lead,
  body .hero p {
    color: var(--ink-mid) !important;
    -webkit-text-fill-color: var(--ink-mid) !important;
  }
  /* Eyebrow d'origine sur fond clair */
  body .hero .eyebrow {
    background: var(--blue-50) !important;
    color: var(--blue-500) !important;
    -webkit-text-fill-color: var(--blue-500) !important;
  }
}

/* ==========================================================================
   LANDING PAGE — lead gen salle de bain clé en main
   ========================================================================== */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line, #e4e9e0);
}
.lp-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.lp-header .brand__logo img { height: 52px; width: auto; }
.lp-header__cta { display: flex; align-items: center; gap: 16px; }
.lp-header__phone {
  font-weight: 700; color: var(--blue-500, #1E6F9C);
  font-size: 1.05rem; text-decoration: none; white-space: nowrap;
}

.lp-hero {
  background: #064E3B;
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: start;
}
.lp-hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #bcd6f0;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.lp-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 18px 0 16px;
}
.lp-hero h1 em { color: #7fb0e0; font-style: italic; }
.lp-hero__sub {
  color: rgba(255,255,255,.9);
  font-size: 1.12rem; line-height: 1.6;
  margin-bottom: 26px;
}
.lp-checks { list-style: none; padding: 0; margin: 0 0 8px; }
.lp-checks li {
  position: relative; padding-left: 34px; margin-bottom: 14px;
  font-size: 1.02rem; color: #fff; line-height: 1.4;
}
.lp-checks li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-500, #10B981) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 13px 13px;
}

/* Formulaire lead */
.lp-form {
  background: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.lp-form__head { text-align: center; margin-bottom: 20px; }
.lp-form__head h2 {
  font-size: 1.4rem; color: var(--ink, #19232f); margin-bottom: 6px;
}
.lp-form__head p { color: var(--muted, #6e7887); font-size: .92rem; }
.lp-form label {
  display: block; font-weight: 600; font-size: .85rem;
  color: var(--ink, #19232f); margin-bottom: 5px; margin-top: 12px;
}
.lp-form input, .lp-form select, .lp-form textarea {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--line, #e2e5ec);
  border-radius: 11px; padding: 12px 14px;
  font-size: 16px; font-family: inherit;
  transition: border-color .18s, box-shadow .18s;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
  outline: none; border-color: var(--blue-500, #1E6F9C);
  box-shadow: 0 0 0 4px rgba(30,111,156,.12);
}
.lp-form textarea { min-height: 80px; resize: vertical; }
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-form .btn { width: 100%; justify-content: center; margin-top: 18px; padding: 15px; font-size: 1.05rem; }
.lp-form__note { font-size: .78rem; color: var(--muted, #6e7887); text-align: center; margin-top: 12px; }

/* Trust bar landing */
.lp-trustbar {
  background: #fff;
  border-bottom: 1px solid var(--line, #e4e9e0);
}
.lp-trustbar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 26px 0; text-align: center;
}
.lp-trustbar strong { display: block; font-family: var(--font-display, serif); font-size: 1.5rem; color: var(--blue-500, #1E6F9C); }
.lp-trustbar span { font-size: .85rem; color: var(--ink-mid, #4a5560); }

/* Sections landing */
.lp-section { padding: 64px 0; }
.lp-section--cream { background: var(--cream-50, #faf9f5); }
.lp-section__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.lp-section__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.lp-section__head p { color: var(--ink-mid, #4a5560); font-size: 1.05rem; line-height: 1.6; }

.lp-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lp-benefit { background: #fff; border: 1px solid var(--line, #e4e9e0); border-radius: 18px; padding: 28px 24px; text-align: center; }
.lp-benefit__ico { width: 56px; height: 56px; border-radius: 16px; background: var(--blue-50, #e9f0fa); color: var(--blue-500, #1E6F9C); display: grid; place-items: center; margin: 0 auto 16px; }
.lp-benefit__ico svg { width: 28px; height: 28px; }
.lp-benefit h3 { font-size: 1.12rem; margin-bottom: 8px; }
.lp-benefit p { font-size: .94rem; color: var(--ink-mid, #4a5560); line-height: 1.55; }

.lp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-gallery img { width: 100%; height: 240px; object-fit: cover; border-radius: 14px; }

.lp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-review { background: #fff; border: 1px solid var(--line, #e4e9e0); border-radius: 18px; padding: 26px 24px; }
.lp-review__stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.lp-review p { font-size: .96rem; line-height: 1.6; color: var(--ink-mid, #4a5560); margin-bottom: 14px; }
.lp-review__author { font-weight: 700; color: var(--ink, #19232f); font-size: .92rem; }
.lp-review__src { font-size: .8rem; color: var(--muted, #6e7887); }

.lp-cta-final { background: #064E3B; color: #fff; padding: 64px 0; text-align: center; }
.lp-cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.lp-cta-final p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 28px; }
.lp-cta-final .btn { padding: 16px 36px; font-size: 1.1rem; }

.lp-footer { background: #0a2e26; color: rgba(255,255,255,.7); padding: 34px 0; font-size: .9rem; text-align: center; }
.lp-footer a { color: #bcd6f0; text-decoration: none; }

@media (max-width: 900px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-trustbar__inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .lp-benefits { grid-template-columns: 1fr 1fr; }
  .lp-gallery { grid-template-columns: 1fr 1fr; }
  .lp-reviews { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lp-header__phone { display: none; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-gallery { grid-template-columns: 1fr; }
  .lp-form__row { grid-template-columns: 1fr; }
  .lp-hero h1 { font-size: 1.9rem; }
}
