/* =====================================================================
   VITAL TECH - Landing Page B2B (Vital Dome)
   Design system sobre premium (Hermès / Leica).
   Aucune italique. Aucun em-dash. Mobile first.
   ===================================================================== */

/* =====================================================================
   POLICES
   Titres : CANELA Thin (auto-hébergée, fournie par le client)
   Corps  : Helvetica (système)
   ===================================================================== */
@font-face {
  font-family: "Canela";
  src: url("assets/fonts/Canela-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Canela";
  src: url("assets/fonts/Canela-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --nacre: #f8f6f2;      /* fond principal */
  --sable: #efebe3;      /* fond alterné */
  --encre: #0a0a0a;      /* texte principal */
  --nuit: #25333d;       /* sections sombres : bleu marine (comme le site) */
  --or: #b08d4f;         /* accent doré signature */
  --or-clair: #c8a86b;
  --taupe: #a8a29e;
  --taupe-fonce: #6e6a64;

  --serif: "Canela", Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --label: 0.22em;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--nacre);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Jamais d'italique (charte) */
i, em, cite, address, dfn { font-style: normal; }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 100; line-height: 1.1; text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: rgba(176, 141, 79, 0.22); }

/* ---------- Utilitaires ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--label);
  color: var(--or);
}
.eyebrow--muted { color: var(--taupe-fonce); }
.eyebrow--light { color: var(--or-clair); }

.signature {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--or);
}

.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }

.bg-sable { background: var(--sable); }
.bg-nuit { background: var(--nuit); color: var(--nacre); }

.hairline { border-top: 1px solid rgba(10, 10, 10, 0.1); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s var(--ease);
  white-space: nowrap;
  max-width: 100%;
}
.btn svg { flex-shrink: 0; }
.btn svg { transition: transform 0.3s var(--ease); width: 16px; height: 16px; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--encre); color: var(--nacre); }
.btn--primary:hover { background: var(--or); color: var(--encre); }

.btn--light { background: var(--nacre); color: var(--encre); }
.btn--light:hover { background: var(--or); color: var(--encre); }

.btn--outline {
  border: 1px solid rgba(10, 10, 10, 0.3);
  padding: 14px 28px;
  font-size: 14px;
}
.btn--outline:hover { border-color: var(--or); color: var(--or); }

/* ---------- Reveal (IntersectionObserver) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}
.header.is-solid {
  padding: 12px 0;
  background: rgba(248, 246, 242, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 36px; width: auto; }
@media (min-width: 768px) { .header__logo img { height: 40px; } }
.header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(10, 10, 10, 0.25);
  transition: all 0.5s var(--ease);
}
.header__cta svg { width: 15px; height: 15px; }
.header.is-solid .header__cta { background: var(--encre); color: var(--nacre); border-color: var(--encre); }
.header.is-solid .header__cta:hover { background: var(--or); color: var(--encre); }
.header__cta:hover { border-color: var(--or); color: var(--or); }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

/* =====================================================================
   01 - HERO
   ===================================================================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { grid-template-columns: 1fr 1fr; } }

.hero__content {
  position: relative;
  z-index: 10;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 24px 64px;
}
@media (min-width: 768px) { .hero__content { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1024px) {
  .hero__content { padding-top: 128px; padding-left: max(40px, calc((100vw - 1240px) / 2)); }
}
.hero__eyebrow { margin-bottom: 32px; }
.hero__title {
  max-width: 16ch;
  font-size: 2.6rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.1rem; } }
.hero__subtitle {
  margin-top: 32px;
  max-width: 44ch;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--taupe-fonce);
}
.hero__actions { margin-top: 40px; }
.hero__note {
  margin-top: 20px;
  max-width: 42ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--taupe);
}

.hero__media { position: relative; width: 100%; height: 58svh; }
@media (min-width: 1024px) { .hero__media { height: auto; } }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim-r {
  position: absolute; inset: 0; pointer-events: none; display: none;
  background: linear-gradient(to right, var(--nacre), rgba(248,246,242,0) 55%, transparent);
}
@media (min-width: 1024px) { .hero__scrim-r { display: block; } }
.hero__scrim-b {
  position: absolute; inset: auto 0 0 0; height: 96px; pointer-events: none;
  background: linear-gradient(to top, rgba(248,246,242,0.5), transparent);
}
@media (min-width: 1024px) { .hero__scrim-b { display: none; } }

/* =====================================================================
   02 - TENSION
   ===================================================================== */
.tension__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.tension__title {
  font-size: 1.9rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) { .tension__title { font-size: 2.7rem; line-height: 1.15; } }
.tension__body {
  margin: 36px auto 0;
  max-width: 58ch;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--taupe-fonce);
}
.tension__sign { margin-top: 48px; text-align: right; }

/* =====================================================================
   03 - DOME
   ===================================================================== */
.dome__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .dome__top { grid-template-columns: 1fr 1fr; gap: 80px; } }
.dome__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sable);
}
.dome__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .dome__media { order: 1; } .dome__info { order: 2; } }

.dome__title { font-size: 2.25rem; line-height: 1.08; letter-spacing: -0.01em; }
@media (min-width: 768px) { .dome__title { font-size: 3rem; } }
.dome__desc { margin-top: 28px; max-width: 46ch; font-size: 1.125rem; line-height: 1.6; color: var(--taupe-fonce); }
.dome__list { margin-top: 36px; max-width: 28rem; }
.dome__list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  font-size: 15px;
  color: rgba(10, 10, 10, 0.85);
}
.dome__list li:first-child { border-top: none; padding-top: 0; }
.dome__list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 9999px;
  background: var(--or);
  flex-shrink: 0;
  transform: translateY(6px);
}
.dome__sign { margin-top: 36px; }

.dome__carousel-wrap { margin-top: 96px; }
@media (min-width: 768px) { .dome__carousel-wrap { margin-top: 128px; } }
.dome__carousel-head { max-width: 42rem; margin-bottom: 40px; }
.dome__carousel-title { font-size: 1.875rem; line-height: 1.2; letter-spacing: -0.01em; }
@media (min-width: 768px) { .dome__carousel-title { font-size: 2.4rem; } }
.dome__carousel-sub { margin-top: 16px; max-width: 52ch; font-size: 1rem; line-height: 1.6; color: var(--taupe-fonce); }
.dome__cta { margin-top: 56px; text-align: center; }

/* Cards modèles */
.model-card { width: 78%; flex-shrink: 0; scroll-snap-align: start; text-align: left; }
@media (min-width: 640px) { .model-card { width: 46%; } }
@media (min-width: 1024px) { .model-card { width: 31%; } }
@media (min-width: 1280px) { .model-card { width: 24%; } }
.model-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.05);
  transition: box-shadow 0.5s var(--ease);
}
.model-card:hover .model-card__media { box-shadow: 0 18px 40px -22px rgba(10, 10, 10, 0.4); }
.model-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.7s var(--ease);
}
.model-card:hover .model-card__media img { transform: scale(1.04); }
.model-card__foot { margin-top: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.model-card__name { font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: var(--taupe-fonce); }
.model-card__phrase { margin-top: 6px; max-width: 26ch; font-size: 15px; line-height: 1.35; }
.model-card__arrow { margin-top: 4px; flex-shrink: 0; color: var(--taupe); opacity: 0; transition: all 0.3s var(--ease); }
.model-card:hover .model-card__arrow { opacity: 1; color: var(--or); transform: translateX(2px); }

/* =====================================================================
   CAROUSEL (générique)
   ===================================================================== */
.carousel__nav { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-bottom: 20px; }
.carousel__btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(10, 10, 10, 0.15);
  color: var(--encre);
  transition: all 0.3s var(--ease);
}
.carousel__btn:disabled { opacity: 0.25; cursor: default; }
.carousel__btn:not(:disabled):hover { background: var(--or); color: var(--nacre); border-color: var(--or); }
.carousel__btn svg { width: 16px; height: 16px; }

.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding-bottom: 8px;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
/* Chaque card s'aligne nettement au bord gauche (jamais de texte coupé). */
.carousel__track > * { scroll-snap-align: start; scroll-snap-stop: always; }
.carousel__track.is-dragging { cursor: grabbing; }
.carousel__track.is-dragging a,
.carousel__track.is-dragging button { pointer-events: none; }

.carousel__progress { margin-top: 24px; height: 1px; width: 100%; background: rgba(10, 10, 10, 0.1); }
.carousel--light .carousel__progress { background: rgba(248, 246, 242, 0.12); }
.carousel--light .carousel__btn { border-color: rgba(248, 246, 242, 0.25); color: var(--nacre); }
.carousel__progress-fill { height: 1px; width: 15%; background: var(--or); transition: width 0.2s ease-out; }

/* =====================================================================
   04 - TECHNOLOGIE
   ===================================================================== */
.tech__head { max-width: 48rem; }
.tech__title { font-size: 2.25rem; line-height: 1.1; letter-spacing: -0.01em; }
@media (min-width: 768px) { .tech__title { font-size: 3rem; } }
.tech__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(10, 10, 10, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) { .tech__grid { grid-template-columns: repeat(3, 1fr); } }
.tech__col { background: var(--nacre); padding: 36px; height: 100%; }
@media (min-width: 768px) { .tech__col { padding: 40px; } }
.tech__num { font-family: var(--serif); font-size: 3rem; color: rgba(176, 141, 79, 0.7); }
.tech__col-title { margin-top: 32px; font-family: var(--sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--label); }
.tech__col-text { margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--taupe-fonce); }
.tech__certif { margin: 48px auto 0; max-width: 48rem; text-align: center; font-size: 12.5px; line-height: 1.6; color: var(--taupe); }

/* =====================================================================
   04 bis - EXPERIENCE
   ===================================================================== */
.exp__head { max-width: 720px; margin: 0 auto; text-align: center; }
.exp__title { font-size: clamp(2.25rem, 5vw, 3rem); line-height: 1.1; letter-spacing: -0.01em; }
.exp__intro { margin: 24px auto 0; max-width: 56ch; font-size: 1.0625rem; line-height: 1.65; color: var(--taupe-fonce); }

.exp__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .exp__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.exp__media { position: relative; aspect-ratio: 5 / 4; border-radius: 16px; overflow: hidden; background: var(--nacre); }
.exp__media img { width: 100%; height: 100%; object-fit: cover; }

.exp__beats { display: flex; flex-direction: column; }
.exp__beat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}
.exp__beat:first-child { border-top: none; padding-top: 0; }
.exp__beat:last-child { padding-bottom: 0; }
.exp__beat-label { font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; }
.exp__beat-text { font-size: 15px; line-height: 1.6; color: var(--taupe-fonce); max-width: 46ch; }

.exp__stats {
  margin-top: 52px; padding-top: 44px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: end; text-align: center;
}
@media (min-width: 700px) { .exp__stats { margin-top: 72px; padding-top: 56px; grid-template-columns: 1fr 1fr auto; gap: 48px; text-align: left; } }
.exp__stat { text-align: center; }
@media (min-width: 700px) { .exp__stat { text-align: left; } }
.exp__stat-num { display: block; font-family: var(--serif); font-size: clamp(3.4rem, 9vw, 5.5rem); line-height: 0.9; color: var(--or); letter-spacing: -0.02em; }
.exp__stat-label { display: block; margin: 14px auto 0; font-size: 14px; color: var(--taupe-fonce); max-width: 22ch; }
@media (min-width: 700px) { .exp__stat-label { margin-left: 0; margin-right: 0; } }
.exp__stat-source { margin: 0 auto; font-size: 11.5px; line-height: 1.6; color: var(--taupe); max-width: 30ch; text-align: center; }
@media (min-width: 700px) { .exp__stat-source { margin-left: 0; text-align: left; align-self: end; } }

/* =====================================================================
   05 - ROI
   ===================================================================== */
.roi__grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) { .roi__grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; } }
.roi__title { font-size: 2.25rem; line-height: 1.08; letter-spacing: -0.01em; }
@media (min-width: 768px) { .roi__title { font-size: 3rem; } }
.roi__sub { margin-top: 24px; max-width: 42ch; font-size: 15px; line-height: 1.6; color: rgba(248, 246, 242, 0.6); }
.roi__sliders { margin-top: 48px; display: flex; flex-direction: column; gap: 40px; }
.slider__head { display: flex; align-items: baseline; justify-content: space-between; }
.slider__label { font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: rgba(248, 246, 242, 0.55); }
.slider__value { font-family: var(--serif); font-size: 1.5rem; color: var(--nacre); }
@media (min-width: 768px) { .slider__value { font-size: 1.7rem; } }

input[type="range"].vt-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px; margin-top: 16px;
  background: rgba(248, 246, 242, 0.25);
  border-radius: 9999px; outline: none; cursor: pointer;
}
input[type="range"].vt-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 9999px;
  background: var(--nacre); border: 1px solid rgba(176, 141, 79, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
input[type="range"].vt-range::-webkit-slider-thumb:active { transform: scale(1.12); }
input[type="range"].vt-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 9999px;
  background: var(--nacre); border: 1px solid rgba(176, 141, 79, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.roi__table {
  border: 1px solid rgba(248, 246, 242, 0.12);
  background: rgba(248, 246, 242, 0.03);
  border-radius: 16px;
  padding: 28px 24px;
}
@media (min-width: 768px) { .roi__table { padding: 36px 32px; } }

/* Calculateur visuel : grand chiffre + barre CA/marge */
.roi__headline { margin-bottom: 28px; }
.roi__big { font-family: var(--serif); font-size: clamp(3rem, 7vw, 4.4rem); line-height: 0.92; color: var(--or-clair); letter-spacing: -0.02em; }
.roi__big-unit { display: block; margin-top: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: rgba(248, 246, 242, 0.6); }
.roi__big-sub { margin-top: 14px; max-width: 44ch; font-size: 13px; line-height: 1.6; color: rgba(248, 246, 242, 0.55); }

.roi__bars { padding-top: 26px; border-top: 1px solid rgba(248, 246, 242, 0.12); }
.roi__bar-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.roi__bar-head span:first-child { font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: rgba(248, 246, 242, 0.45); }
.roi__bar-head span:last-child { font-family: var(--serif); font-size: 1.4rem; color: var(--nacre); }
.roi__bar { display: flex; height: 16px; border-radius: 9999px; overflow: hidden; background: rgba(248, 246, 242, 0.08); }
.roi__bar-cost { background: rgba(248, 246, 242, 0.3); transition: width 0.6s var(--ease); }
.roi__bar-marge { background: linear-gradient(90deg, var(--or), var(--or-clair)); transition: width 0.6s var(--ease); }
.roi__legend { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 16px; }
.roi__legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(248, 246, 242, 0.7); }
.roi__legend-item b { color: var(--nacre); font-weight: 500; }
.roi__legend .dot { width: 9px; height: 9px; border-radius: 9999px; }
.dot--cost { background: rgba(248, 246, 242, 0.3); }
.dot--marge { background: var(--or-clair); }
.roi__foot { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(248, 246, 242, 0.1); font-size: 12px; line-height: 1.6; color: rgba(248, 246, 242, 0.45); }
.roi__row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px;
  border-top: 1px solid rgba(248, 246, 242, 0.1);
}
.roi__row:first-child { border-top: none; }
.roi__row-label { font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: rgba(248, 246, 242, 0.45); }
.roi__row-sub { margin-top: 4px; font-size: 12.5px; line-height: 1.35; color: rgba(248, 246, 242, 0.55); }
.roi__row-value { flex-shrink: 0; text-align: right; font-family: var(--serif); font-size: 1.25rem; line-height: 1.2; color: var(--or-clair); }
@media (min-width: 768px) { .roi__row-value { font-size: 1.5rem; } }
.roi__cta { margin-top: 36px; text-align: center; }
@media (min-width: 1024px) { .roi__cta { text-align: left; } }
.roi__note { margin-top: 20px; max-width: 60ch; font-size: 12px; line-height: 1.6; color: rgba(248, 246, 242, 0.4); }

/* =====================================================================
   06 - PREUVE SOCIALE
   ===================================================================== */
.proof__head { max-width: 42rem; margin: 0 auto; text-align: center; }
.proof__title { font-size: 1.875rem; line-height: 1.2; letter-spacing: -0.01em; }
@media (min-width: 768px) { .proof__title { font-size: 2.6rem; } }
.proof__logos {
  max-width: 60rem; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .proof__logos { grid-template-columns: repeat(4, 1fr); } }
.proof__logo {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 96px; padding: 20px 16px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.proof__logo span {
  font-family: var(--serif); font-size: 1rem; line-height: 1.25;
  color: var(--taupe-fonce);
  transition: color 0.3s var(--ease);
}
@media (min-width: 768px) { .proof__logo span { font-size: 1.0625rem; } }
.proof__logo:hover {
  border-color: rgba(176, 141, 79, 0.45);
  background: #fff;
  transform: translateY(-2px);
}
.proof__logo:hover span { color: var(--encre); }
/* Si vous insérez un vrai logo : <img> en niveaux de gris, désaturé */
.proof__logo img { max-height: 56px; max-width: 78%; width: auto; object-fit: contain; filter: grayscale(1) contrast(1.05); opacity: 0.82; transition: opacity 0.4s var(--ease), filter 0.4s var(--ease); }
.proof__logo:hover img { filter: grayscale(0); opacity: 1; }
.proof__verbatims { margin-top: 56px; }
.proof__verbatims-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px 24px; margin-bottom: 32px;
}

/* Badge note Google */
.grating { display: inline-flex; align-items: center; gap: 10px; transition: opacity 0.3s var(--ease); }
.grating:hover { opacity: 0.75; }
.grating__g svg { width: 19px; height: 19px; display: block; }
.grating__stars { display: inline-flex; gap: 2px; color: #e0a73c; }
.grating__stars svg { width: 15px; height: 15px; }
.grating__txt { font-size: 13px; color: var(--taupe-fonce); }
.grating__txt b { color: var(--encre); font-weight: 600; }

/* Carte avis (style Google) */
.verbatim {
  display: flex; flex-direction: column;
  width: 86%; flex-shrink: 0; scroll-snap-align: start;
  border-radius: 16px;
  background: var(--nacre);
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.05);
  padding: 30px;
}
@media (min-width: 640px) { .verbatim { width: 48%; } }
@media (min-width: 768px) { .verbatim { padding: 34px; } }
@media (min-width: 1024px) { .verbatim { width: 46%; } }
.verbatim__top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.verbatim__avatar {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 9999px;
  background: rgba(176, 141, 79, 0.14); color: var(--or);
  font-family: var(--serif); font-size: 1.25rem; line-height: 1;
}
.verbatim__id { display: flex; flex-direction: column; min-width: 0; }
.verbatim__name { font-size: 14.5px; font-weight: 600; }
.verbatim__role { margin-top: 2px; font-size: 12.5px; color: var(--taupe-fonce); }
.verbatim__g { margin-left: auto; flex-shrink: 0; }
.verbatim__g svg { width: 20px; height: 20px; display: block; }
.verbatim__stars { display: inline-flex; gap: 3px; color: #e0a73c; margin-bottom: 16px; }
.verbatim__stars svg { width: 17px; height: 17px; }
.verbatim blockquote { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; letter-spacing: -0.01em; color: rgba(10, 10, 10, 0.88); }
@media (min-width: 768px) { .verbatim blockquote { font-size: 1.25rem; } }

/* =====================================================================
   07 - MANUFACTURE
   ===================================================================== */
.manuf__grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) { .manuf__grid { grid-template-columns: 1.05fr 0.95fr; gap: 80px; } }
.manuf__title { font-size: 2.25rem; line-height: 1.1; letter-spacing: -0.01em; }
@media (min-width: 768px) { .manuf__title { font-size: 2.9rem; } }
.manuf__paras { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.manuf__para { max-width: 54ch; font-size: 15px; line-height: 1.6; color: var(--taupe-fonce); }
.manuf__para--last { font-family: var(--serif); font-size: 1.25rem; color: var(--encre); }
.manuf__sign { margin-top: 36px; }
.manuf__media { display: grid; gap: 20px; }
.manuf__media-item { position: relative; border-radius: 16px; overflow: hidden; background: var(--sable); }
.manuf__media-item img { width: 100%; height: 100%; object-fit: cover; }
.manuf__media-item--1 { aspect-ratio: 4 / 3; }
.manuf__media-item--2 { aspect-ratio: 16 / 10; }

.founder {
  margin-top: 64px;
  border-radius: 16px;
  background: var(--sable);
  padding: 40px 32px;
  text-align: center;
}
@media (min-width: 768px) { .founder { margin-top: 80px; padding: 64px 48px; } }
.founder > div { max-width: 760px; margin: 0 auto; }
.founder__quote { position: relative; font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; letter-spacing: -0.01em; }
@media (min-width: 768px) { .founder__quote { font-size: 1.7rem; line-height: 1.45; } }
.founder__quote::before { content: "\201C"; display: block; font-family: var(--serif); font-size: 3.5rem; line-height: 0.5; color: var(--or); opacity: 0.45; margin-bottom: 18px; }
.founder__attr { margin-top: 26px; font-size: 13.5px; color: var(--taupe-fonce); }
.manuf__corporate { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 32px; }
.manuf__corporate span { font-size: 12.5px; color: var(--taupe); }

/* =====================================================================
   08 - ECOSYSTEME
   ===================================================================== */
.eco__head { max-width: 42rem; }
.eco__title { font-size: 2.25rem; line-height: 1.1; letter-spacing: -0.01em; }
@media (min-width: 768px) { .eco__title { font-size: 3rem; } }
.eco__grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .eco__grid { grid-template-columns: repeat(3, 1fr); } }
.eco__card {
  display: flex; flex-direction: column; height: 100%;
  border-radius: 16px; overflow: hidden;
  background: var(--nacre); box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.05);
}
.eco__card-media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.eco__card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.eco__card:hover .eco__card-media img { transform: scale(1.04); }
.eco__card-body { display: flex; flex-direction: column; flex: 1; padding: 28px; }
.eco__card-title { font-size: 1.5rem; }
.eco__card-phrase { margin-top: 12px; flex: 1; font-size: 14.5px; line-height: 1.6; color: var(--taupe-fonce); }
.eco__card-link { margin-top: 24px; align-self: flex-start; font-size: 12px; text-transform: uppercase; letter-spacing: var(--label); color: var(--or); transition: color 0.3s; }
.eco__card-link:hover { color: var(--encre); }

/* =====================================================================
   09 - CTA FINAL
   ===================================================================== */
.cta__grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) { .cta__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.cta__title { font-size: 2.25rem; line-height: 1.06; letter-spacing: -0.01em; }
@media (min-width: 768px) { .cta__title { font-size: 3.2rem; } }
.cta__sub { margin-top: 28px; max-width: 48ch; font-size: 15px; line-height: 1.6; color: rgba(248, 246, 242, 0.7); }
.cta__para { margin-top: 20px; max-width: 52ch; font-size: 14px; line-height: 1.6; color: rgba(248, 246, 242, 0.55); }
.cta__para--accent { margin-top: 20px; max-width: 52ch; font-family: var(--serif); font-size: 1.125rem; line-height: 1.6; color: var(--or-clair); }

.cta__form { margin-top: 40px; max-width: 28rem; }
.cta__fields { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .cta__fields { grid-template-columns: 1fr 1fr; } }
.cta__form input[type="text"],
.cta__form input[type="email"] {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(248, 246, 242, 0.15);
  background: rgba(248, 246, 242, 0.04);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--nacre);
  outline: none;
  transition: border-color 0.3s;
}
.cta__form input::placeholder { color: rgba(248, 246, 242, 0.35); }
.cta__form input:focus { border-color: var(--or); }
.field__error { margin-top: 4px; font-size: 11.5px; color: var(--or-clair); }
.cta__consent { margin-top: 20px; display: flex; align-items: flex-start; gap: 12px; font-size: 12.5px; line-height: 1.6; color: rgba(248, 246, 242, 0.55); }
.cta__consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: #b08d4f; }
.cta__submit { margin-top: 24px; }
.cta__confirm { margin-top: 24px; font-size: 13.5px; color: var(--or-clair); display: none; }

.cta__calendly { border-radius: 16px; overflow: hidden; background: var(--nacre); }
.cta__calendly-label { padding: 24px 24px 0; }
.calendly-inline-widget { min-width: 320px; height: 680px; }

/* Etapes (remplace l'ancien formulaire : Calendly est l'unique action) */
.cta__steps { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; max-width: 30rem; }
.cta__steps li { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; line-height: 1.55; color: rgba(248, 246, 242, 0.82); }
.cta__step-n {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 9999px;
  border: 1px solid rgba(200, 168, 107, 0.5); color: var(--or-clair);
  font-family: var(--serif); font-size: 14px; line-height: 1;
}
.cta__rgpd { margin-top: 24px; max-width: 42ch; font-size: 12px; line-height: 1.6; color: rgba(248, 246, 242, 0.4); }

/* =====================================================================
   10 - PARTICULIER
   ===================================================================== */
.particulier { padding: 64px 0; }
@media (min-width: 768px) { .particulier { padding: 80px 0; } }
.particulier__card {
  display: grid; grid-template-columns: 1fr;
  max-width: 940px; margin: 0 auto;
  overflow: hidden; border-radius: 18px;
  background: var(--sable);
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.06);
}
@media (min-width: 760px) { .particulier__card { grid-template-columns: 0.82fr 1.18fr; } }
.particulier__media { position: relative; min-height: 220px; overflow: hidden; }
.particulier__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.particulier__card:hover .particulier__media img { transform: scale(1.04); }
.particulier__body { padding: 36px 30px; }
@media (min-width: 768px) { .particulier__body { padding: 48px 46px; } }
.particulier__title { margin-top: 14px; font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.15rem); line-height: 1.12; letter-spacing: -0.01em; }
.particulier__text { margin-top: 16px; max-width: 46ch; font-size: 15px; line-height: 1.6; color: var(--taupe-fonce); }
.particulier__cta { margin-top: 26px; }

/* =====================================================================
   11 - FOOTER
   ===================================================================== */
.footer { background: var(--nacre); }

/* Bandeau de marque */
.footer__head {
  display: flex; flex-direction: column; gap: 32px;
  align-items: flex-start; justify-content: space-between;
  padding: 80px 0 44px;
}
@media (min-width: 760px) { .footer__head { flex-direction: row; align-items: flex-end; } }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.footer__logo { height: 46px; width: 46px; object-fit: contain; flex-shrink: 0; }
.footer__manifesto { font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--encre); }
.footer__cta { align-self: flex-start; }

.footer__rule { height: 1px; background: rgba(10, 10, 10, 0.1); }

.footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; padding: 48px 0; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.footer__col--contact { grid-column: span 2; }
@media (min-width: 760px) { .footer__col--contact { grid-column: auto; } }
.footer__col-title { font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--label); color: var(--encre); }
.footer__addr { margin-top: 18px; font-size: 13px; line-height: 1.7; color: var(--taupe-fonce); }
.footer__col--contact a { display: block; margin-top: 8px; font-size: 13px; color: var(--taupe-fonce); transition: color 0.3s; }
.footer__col--contact a:first-of-type { margin-top: 14px; }
.footer__col--contact a:hover { color: var(--or); }
.footer__col ul { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 13px; color: var(--taupe-fonce); transition: color 0.3s; }
.footer__col a:hover { color: var(--or); }
.footer__social { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 13px; color: var(--taupe-fonce); transition: color 0.3s; }
.footer__social:hover { color: var(--or); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between;
  padding: 28px 0 56px; border-top: 1px solid rgba(10, 10, 10, 0.08);
}
.footer__labels { font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: var(--taupe); }
.footer__copy { font-size: 12px; color: var(--taupe); }

/* Avertissement sanitaire (bandeau discret) */
.footer__legal { border-top: 1px solid rgba(10, 10, 10, 0.08); background: var(--sable); }
.footer__legal .container { padding-top: 32px; padding-bottom: 32px; }
.footer__legal-label { font-size: 10px; text-transform: uppercase; letter-spacing: var(--label); color: var(--taupe); margin-bottom: 14px; }
.footer__disclaimer { max-width: 62rem; display: flex; flex-direction: column; gap: 12px; }
.footer__disclaimer p { font-size: 11px; line-height: 1.65; color: var(--taupe); }

/* =====================================================================
   MODALE
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.is-open { display: flex; }
@media (min-width: 768px) { .modal { padding: 32px; } }
.modal__overlay { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.55); backdrop-filter: blur(4px); animation: fade 0.3s ease; }
.modal__dialog {
  position: relative; z-index: 10;
  width: 100%; max-width: 48rem;
  border-radius: 16px; overflow: hidden;
  background: var(--nacre);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
  animation: pop 0.4s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9999px;
  background: rgba(248, 246, 242, 0.8); color: var(--encre);
  transition: all 0.3s;
}
.modal__close:hover { background: var(--or); color: var(--nacre); }
.modal__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .modal__grid { grid-template-columns: 1fr 1fr; } }
.modal__media { position: relative; aspect-ratio: 1; background: #fff; }
@media (min-width: 768px) { .modal__media { aspect-ratio: auto; } }
.modal__media img { width: 100%; height: 100%; object-fit: contain; padding: 32px; }
/* Photos pleine (gamme) : pas de padding, cadrage cover */
.modal__media--photo { aspect-ratio: 1; background: var(--sable); }
@media (min-width: 768px) { .modal__media--photo { aspect-ratio: auto; min-height: 380px; } }
.modal__media--photo img { object-fit: cover; padding: 0; }
.modal__body { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
@media (min-width: 768px) { .modal__body { padding: 40px; } }
.modal__name { font-family: var(--serif); font-size: 1.875rem; line-height: 1.2; }
.modal__phrase { margin-top: 8px; font-size: 15px; color: var(--or); }
.modal__desc { margin-top: 24px; font-size: 15px; line-height: 1.6; color: var(--taupe-fonce); }
.modal__cta { margin-top: 32px; align-self: flex-start; }
.modal__simple { padding: 48px 32px; text-align: center; }
@media (min-width: 768px) { .modal__simple { padding: 48px 64px; } }
.modal__simple h3 { font-size: 1.5rem; line-height: 1.4; }
@media (min-width: 768px) { .modal__simple h3 { font-size: 1.875rem; } }
.modal__simple p { margin: 20px auto 0; max-width: 28rem; font-size: 15px; line-height: 1.6; color: var(--taupe-fonce); }

/* =====================================================================
   UX MODERNE : motion + micro-interactions
   ===================================================================== */

/* Hero : révélation cinématique de l'image (clip + zoom) */
.hero__media img {
  animation: heroReveal 1.4s var(--ease) both;
}
@keyframes heroReveal {
  from { clip-path: inset(0 0 0 100%); transform: scale(1.08); }
  to { clip-path: inset(0 0 0 0%); transform: scale(1); }
}

/* Apparition fluide des images au chargement (blur-up léger) */
img[data-fade] { opacity: 0; filter: blur(12px); transition: opacity 0.9s var(--ease), filter 0.9s var(--ease); }
img[data-fade].is-loaded { opacity: 1; filter: blur(0); }

/* Boutons : micro-mouvement magnétique (desktop, géré en JS via --mx/--my) */
@media (hover: hover) and (pointer: fine) {
  .btn { transform: translate(var(--mx, 0), var(--my, 0)); }
}

/* Compteurs (expérience + ROI) : transition douce de la valeur */
.exp__stat-num [data-count] { font-variant-numeric: tabular-nums; }
.roi__row-value { transition: color 0.3s var(--ease); }
.roi__row-value.is-bump { color: var(--nacre); }

/* Jauge de seuil de rentabilité */
.roi__gauge { margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(248, 246, 242, 0.12); }
.roi__gauge-head { display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: rgba(248,246,242,0.45); margin-bottom: 10px; }
.roi__gauge-track { position: relative; height: 6px; border-radius: 9999px; background: rgba(248,246,242,0.1); overflow: hidden; }
.roi__gauge-fill { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 9999px; background: linear-gradient(90deg, var(--or), var(--or-clair)); transition: width 0.6s var(--ease); }
.roi__gauge-cap { margin-top: 10px; font-size: 12.5px; line-height: 1.5; color: rgba(248,246,242,0.6); }

/* Barre CTA collante (mobile) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--nacre) 65%, rgba(248,246,242,0));
  transform: translateY(120%);
  transition: transform 0.45s var(--ease);
  display: none;
}
.sticky-cta .btn { width: 100%; box-shadow: 0 8px 30px -8px rgba(10,10,10,0.4); }
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 768px) { .sticky-cta { display: block; } }

/* =====================================================================
   ANTI-DÉBORDEMENT MOBILE
   Empêche un bouton long (white-space:nowrap) d'élargir une colonne
   grid/flex au-delà du viewport sur petit écran.
   ===================================================================== */
.roi__grid,
.cta__grid,
.dome__top,
.manuf__grid > div { min-width: 0; }

@media (max-width: 600px) {
  .btn { white-space: normal; padding: 15px 26px; }
  .hero__actions .btn,
  .cta__submit { width: 100%; }
  .hero__title { font-size: 2.35rem; }
  .eyebrow,
  .eyebrow--muted,
  .eyebrow--light { letter-spacing: 0.16em; }

  /* Respiration mobile : on resserre les grands vides verticaux */
  .section { padding: 64px 0; }
  .exp__grid { margin-top: 32px; gap: 28px; }
  .exp__beat { padding: 22px 0; }
  .dome__carousel-wrap { margin-top: 72px; }
  .founder { padding: 36px 24px; }
  .founder__quote::before { font-size: 2.8rem; margin-bottom: 12px; }
  .manuf__media, .exp__head { margin-bottom: 4px; }
  /* L'espace pour la barre CTA collante en bas */
  body { padding-bottom: 0; }
}

/* =====================================================================
   PAGES LÉGALES (mentions-legales.html, cgv.html)
   ===================================================================== */
.legal-bar { border-bottom: 1px solid rgba(10, 10, 10, 0.08); background: var(--nacre); }
.legal-bar__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.legal-bar__inner img { height: 34px; width: auto; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--taupe-fonce); transition: color 0.3s var(--ease); }
.legal-back svg { width: 15px; height: 15px; }
.legal-back:hover { color: var(--or); }

.legal { padding: 56px 0 88px; }
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 2.9rem); line-height: 1.1; letter-spacing: -0.01em; margin-top: 14px; }
.legal__updated { margin-top: 16px; font-size: 13px; color: var(--taupe); }
.legal__intro { margin-top: 24px; font-size: 15px; line-height: 1.7; color: var(--taupe-fonce); }
.legal h2 { font-size: 1.4rem; line-height: 1.25; letter-spacing: -0.01em; margin-top: 48px; }
.legal h3 { font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--label); color: var(--or); margin-top: 28px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--taupe-fonce); }
.legal p { margin-top: 14px; }
.legal ul { margin-top: 14px; }
.legal li { position: relative; padding-left: 20px; margin-top: 8px; }
.legal li::before { content: ""; position: absolute; left: 3px; top: 11px; width: 4px; height: 4px; border-radius: 9999px; background: var(--or); }
.legal a { color: var(--encre); text-decoration: underline; text-decoration-color: rgba(176, 141, 79, 0.5); text-underline-offset: 3px; }
.legal a:hover { color: var(--or); }
.legal dl { margin-top: 18px; display: grid; grid-template-columns: 1fr; gap: 2px 24px; }
@media (min-width: 560px) { .legal dl { grid-template-columns: 200px 1fr; }
  .legal dt { margin-top: 14px; } .legal dd { margin-top: 14px; } }
.legal dt { font-size: 11px; text-transform: uppercase; letter-spacing: var(--label); color: var(--taupe); padding-top: 14px; }
.legal dd { font-size: 15px; color: var(--encre); padding-top: 2px; }
@media (min-width: 560px) { .legal dt, .legal dd { border-top: 1px solid rgba(10,10,10,0.07); } }
.legal__note { margin-top: 40px; padding: 20px 22px; border-radius: 12px; background: var(--sable); font-size: 12.5px; line-height: 1.6; color: var(--taupe-fonce); }

.legal-foot { border-top: 1px solid rgba(10, 10, 10, 0.08); }
.legal-foot__inner { padding: 28px 0; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.legal-foot a { font-size: 12.5px; color: var(--taupe-fonce); }
.legal-foot a:hover { color: var(--or); }
.legal-foot span { font-size: 12.5px; color: var(--taupe); }

/* =====================================================================
   AJOUTS REFONTE (doc Aude)
   ===================================================================== */
/* Technologie : grille 4 colonnes */
.tech__grid--4 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .tech__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tech__grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Constat : CTA centré */
.tension__cta { margin-top: 36px; }

/* Bande de réassurance sous le hero */
.trustbar { border-top: 1px solid rgba(10, 10, 10, 0.07); border-bottom: 1px solid rgba(10, 10, 10, 0.07); background: var(--nacre); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; padding: 20px 0; }
.trustbar__label { font-size: 10px; text-transform: uppercase; letter-spacing: var(--label); color: var(--taupe); }
.trustbar__names { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 26px; }
.trustbar__names span { font-family: var(--serif); font-size: 0.95rem; color: var(--taupe-fonce); white-space: nowrap; }
.trustbar__rating { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--taupe-fonce); transition: color 0.3s var(--ease); }
.trustbar__rating:hover { color: var(--or); }
.trustbar__rating b { color: var(--encre); font-weight: 600; }
.trustbar__g svg { width: 16px; height: 16px; display: block; }
@media (min-width: 980px) { .trustbar__inner { flex-wrap: nowrap; justify-content: space-between; } }

/* =====================================================================
   FORMULAIRE DE CONTACT (bloc 09) - remplace le widget Calendly
   Carte ivoire sur la section bleu marine, DA cohérente.
   ===================================================================== */
.contact-card { background: var(--nacre); color: var(--encre); border-radius: 16px; padding: 30px 26px; scroll-margin-top: 96px; }
@media (min-width: 768px) { .contact-card { padding: 38px 34px; } }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form .field { margin-bottom: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--encre);
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 9px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--taupe); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--or); box-shadow: 0 0 0 3px rgba(176, 141, 79, 0.12); }
.contact-form textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.contact-select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6a64' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.contact-select:invalid { color: var(--taupe); }
.field__error { margin-top: 5px; font-size: 11.5px; color: #b3261e; }
.contact-form__cta { width: 100%; margin-top: 6px; }
.contact-form__legal { margin-top: 14px; font-size: 11.5px; line-height: 1.55; color: var(--taupe); }
.contact-form__success { text-align: center; padding: 28px 8px; }
.contact-form__success p { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; color: var(--encre); }
.contact-form__success::before { content: ""; display: block; width: 44px; height: 44px; margin: 0 auto 18px;
  border-radius: 9999px; background: rgba(176, 141, 79, 0.15)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%23b08d4f' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px no-repeat; }
