@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #15171A;
  --linen: #ffffff;
  --linen-deep: #E8E8E8;
  --accent: #185FA5;
  --accent-light: #E6F1FB;
  --gray: #888780;
  --gray-light: #D3D1C7;
  --gray-faint: #9A998F;
  --bronze: #9A8B6E;
  --pole-route: #185FA5;
  --pole-route-bg: #E6F1FB;
  --pole-vente: #534AB7;
  --pole-vente-bg: #EEEDFE;
  --pole-fidelisation: #993556;
  --pole-fidelisation-bg: #FBEAF0;
  --pole-automation: #1A7A6E;
  --pole-automation-bg: #E5F5F3;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(21, 23, 26, 0.05);
  --shadow-md: 0 8px 24px rgba(21, 23, 26, 0.08);
  --t: 0.15s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========================
   ANIMATIONS
   ======================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animations are enhancement-only: content is visible without JS.
   The .js-ready class is added by JS at runtime; without it nothing is hidden. */

/* ease-out-expo — premium freinage, objet qui se pose délicatement */
:root { --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1); }

.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.65s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
  /* --d : délai par palier 120 ms (inline style="--d:1" etc.) */
  transition-delay: calc(var(--d, 0) * 120ms);
}
/* data-delay legacy compat */
.js-ready [data-animate][data-delay="1"] { transition-delay: max(calc(var(--d,0)*120ms), 0.10s); }
.js-ready [data-animate][data-delay="2"] { transition-delay: max(calc(var(--d,0)*120ms), 0.20s); }
.js-ready [data-animate][data-delay="3"] { transition-delay: max(calc(var(--d,0)*120ms), 0.30s); }
.js-ready [data-animate][data-delay="4"] { transition-delay: max(calc(var(--d,0)*120ms), 0.40s); }
.js-ready [data-animate].is-visible { opacity: 1; transform: translate(0, 0); }
.js-ready [data-animate="left"]  { opacity: 0; transform: translateX(-28px); }
.js-ready [data-animate="right"] { opacity: 0; transform: translateX(28px);  }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-ready [data-animate],
  .js-ready [data-animate].is-visible,
  .js-ready [data-animate="left"],
  .js-ready [data-animate="right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .closing-bg-anim { display: none; }
}

/* ========================
   NAV
   ======================== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 0.5px solid var(--gray-light);
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--linen-deep);
  box-shadow: 0 1px 12px rgba(21, 23, 26, 0.06);
}

.nav-logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.nav-logo span { color: var(--gray-faint); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  color: var(--gray);
}
.nav-links a { transition: color var(--t); }
.nav-links a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background var(--t);
  line-height: 0;
}
.nav-toggle:hover { background: var(--linen); }

/* ========================
   BUTTONS
   ======================== */

.btn-primary {
  background: var(--ink);
  color: var(--linen);
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  transition: transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 23, 26, 0.22);
}
.btn-primary:active { transform: scale(0.98); box-shadow: none; }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  white-space: nowrap;
  transition: background var(--t), color var(--t), transform var(--t);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--linen);
  transform: translateY(-1px);
}

.btn-linen {
  background: var(--linen);
  color: var(--ink);
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  transition: transform var(--t), box-shadow var(--t);
}
.btn-linen:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 241, 237, 0.28);
}
.btn-linen:active { transform: scale(0.98); }

/* ========================
   LAYOUT UTILITY
   ======================== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========================
   HOMEPAGE — HERO
   ======================== */

/* ── HERO DARK ──────────────────────────────────────────────────── */
.hero {
  padding: 0;
  min-height: 100svh;
  text-align: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Blue glow — statique, pas d'animation */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 75% at 50% 48%, rgba(24,95,165,0.55) 0%, transparent 68%),
    radial-gradient(ellipse 75% 70% at 56% 43%, rgba(83,74,183,0.32) 0%, transparent 62%);
  pointer-events: none;
}

/* Animated gradient bars at the bottom of hero */
.hero-bars {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.14;
  pointer-events: none;
}
.hero-bar {
  flex: 1;
  background: linear-gradient(to top, #185FA5 0%, #3b82f6 45%, #a78bfa 100%);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  animation: gbv-pulse 7s ease-in-out infinite;
}
.hero-bar:nth-child(1)  { height: 70%;  animation-delay: 0s;     }
.hero-bar:nth-child(2)  { height: 90%;  animation-delay: -0.6s;  }
.hero-bar:nth-child(3)  { height: 58%;  animation-delay: -1.2s;  }
.hero-bar:nth-child(4)  { height: 100%; animation-delay: -1.8s;  }
.hero-bar:nth-child(5)  { height: 78%;  animation-delay: -2.4s;  }
.hero-bar:nth-child(6)  { height: 84%;  animation-delay: -3.0s;  }
.hero-bar:nth-child(7)  { height: 65%;  animation-delay: -3.6s;  }
.hero-bar:nth-child(8)  { height: 95%;  animation-delay: -4.2s;  }
.hero-bar:nth-child(9)  { height: 72%;  animation-delay: -4.8s;  }
.hero-bar:nth-child(10) { height: 88%;  animation-delay: -5.4s;  }
.hero-bar:nth-child(11) { height: 60%;  animation-delay: -6.0s;  }
.hero-bar:nth-child(12) { height: 93%;  animation-delay: -6.6s;  }
/* Fade bars into hero bg at top */
.hero-bars::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, transparent 55%);
}

/* Lottie via div natif (pas web component) — mix-blend-mode fonctionne en Safari */
.hero-lottie {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 38%;
  overflow: hidden;
  mix-blend-mode: screen;
  /* fondu bas pour une transition douce vers le contenu */
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}
#hero-lottie-anim {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 5%;
  right: 5%;
}
.hero-top {
  position: absolute;
  top: 72px;
  left: 48px;
  z-index: 3;
  pointer-events: none;
}
.hero-brand {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
  margin: 0;
  line-height: 1;
}
.hero-brand span { color: rgba(255,255,255,0.45); }

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(to top, rgba(21,23,26,0.95) 0%, rgba(21,23,26,0.6) 60%, transparent 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 6px 16px 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(96,165,250,0); }
}

.hero-title {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-link {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.hero-link:hover { color: rgba(255,255,255,0.85); }

.hero-trust {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-sectors {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
  line-height: 2;
}

/* ── NAV transparent on hero (toggled via JS) ─────────────────── */
.hero-in-view .nav:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.hero-in-view .nav:not(.scrolled) .nav-logo,
.hero-in-view .nav:not(.scrolled) .nav-logo span,
.hero-in-view .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.hero-in-view .nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.hero-in-view .nav:not(.scrolled) .btn-primary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 0.5px solid rgba(255,255,255,0.25);
}
.hero-in-view .nav:not(.scrolled) .nav-toggle { color: rgba(255,255,255,0.85); }

/* ── Larger button variant ────────────────────────────────────── */
.btn-lg {
  padding: 14px 30px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 9px !important;
}

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--t);
}
.btn-ghost:hover { color: var(--ink); }

/* ========================
   ABOUT SECTION
   ======================== */

.about-section {
  padding: 88px 0 96px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 16px;
}
.about-u {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.about-blue {
  color: var(--accent);
}

.about-title {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
  text-wrap: balance;
}

.about-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-founders {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--linen-deep);
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-founder-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--linen);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.about-founder-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.about-founder-info span {
  font-size: 11px;
  color: var(--gray);
}

/* ── DisplayCards ── */
.about-cards {
  display: grid;
  grid-template-areas: 'stack';
  place-items: start start;
  height: 290px;
  overflow: visible;
}

.display-card {
  grid-area: stack;
  width: 380px;
  border-radius: 16px;
  border: 1.5px solid var(--linen-deep);
  background: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  transform: skewY(-4deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.45s ease, filter 0.45s ease;
  position: relative;
  overflow: hidden;
}

.display-card::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -10%;
  height: 120%;
  width: 100px;
  background: linear-gradient(to left, var(--linen), transparent);
  pointer-events: none;
}

.dc-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dc-bg, var(--linen));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dc-icon-wrap svg { stroke: var(--dc-color, var(--ink)); }

.dc-text { flex: 1; min-width: 0; }
.dc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dc-color, var(--gray));
  margin-bottom: 4px;
}
.dc-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.dc-feat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dc-feat li {
  font-size: 11.5px;
  color: var(--gray);
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.4;
}
.dc-feat li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dc-color, var(--gray-light));
  flex-shrink: 0;
  margin-top: 4px;
}

.dc-1 {
  z-index: 3;
  border-color: var(--pole-route);
  box-shadow: 0 4px 20px rgba(24, 95, 165, 0.12), 0 1px 4px rgba(24, 95, 165, 0.06);
}
.dc-1::after { background: linear-gradient(to left, #fff, transparent); }

.dc-2 {
  transform: translateX(24px) translateY(26px) skewY(-4deg);
  filter: grayscale(0.4) brightness(0.97);
  opacity: 0.72;
  z-index: 2;
}
.dc-2::after { background: linear-gradient(to left, var(--linen), transparent); }

.dc-3 {
  transform: translateX(48px) translateY(52px) skewY(-4deg);
  filter: grayscale(0.9) brightness(0.96);
  opacity: 0.4;
  z-index: 1;
}

.about-cards:hover .dc-1 {
  transform: translateX(-12px) translateY(-10px) skewY(-4deg);
}
.about-cards:hover .dc-2 {
  transform: translateX(14px) translateY(14px) skewY(-4deg);
  filter: grayscale(0);
  opacity: 0.93;
}
.about-cards:hover .dc-3 {
  transform: translateX(40px) translateY(38px) skewY(-4deg);
  filter: grayscale(0.1);
  opacity: 0.75;
}

.about-confiance {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid var(--linen-deep);
  border-radius: 14px;
  overflow: hidden;
  align-self: center;
}
.about-confiance-item {
  padding: 18px 22px;
  border-bottom: 0.5px solid var(--linen-deep);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about-confiance-item:last-child { border-bottom: none; }
.about-confiance-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.about-confiance-item span {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-section { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-title { font-size: 22px; }
  .about-cards { display: none !important; }
  .gbv { display: none !important; }
  .about-confiance { margin-top: 32px; }
}

/* ========================
   PRODUCT MOCKUP
   ======================== */

.mockup-section {
  padding: 0 0 80px;
  background: #fff;
}

.mockup {
  border-radius: 14px;
  border: 1px solid var(--linen-deep);
  box-shadow:
    0 4px 24px rgba(21,23,26,0.06),
    0 24px 64px rgba(21,23,26,0.08);
  overflow: hidden;
  background: #fff;
}

/* Browser chrome */
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #F5F5F7;
  border-bottom: 1px solid var(--linen-deep);
}
.mockup-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.mockup-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #D1D1D6;
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--linen-deep);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}

/* App layout: sidebar + content */
.mockup-body {
  display: flex;
  height: 500px;
}

/* Sidebar */
.mock-sidebar {
  width: 188px;
  flex-shrink: 0;
  border-right: 1px solid var(--linen-deep);
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  background: #FAFAFA;
}
.mock-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--linen-deep);
  margin-bottom: 8px;
}
.mock-logo span { color: var(--gray-faint); font-weight: 400; }

.mock-nav { padding: 0 8px; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.mock-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.mock-nav-item:hover { background: var(--linen); color: var(--ink); }
.mock-nav-item.is-active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 500;
}

.mock-sidebar-user {
  margin-top: auto;
  padding: 12px 14px 0;
  border-top: 1px solid var(--linen-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--linen);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-sidebar-user strong { display: block; font-size: 11px; font-weight: 600; color: var(--ink); }
.mock-sidebar-user span { font-size: 10px; color: var(--gray); }

/* Content area */
.mock-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--linen-deep);
}
.mock-page-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.mock-page-sub { font-size: 11px; color: var(--gray); margin-top: 1px; }
.mock-topbar-actions { display: flex; gap: 8px; }
.mock-btn-ghost {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--linen-deep);
  background: white;
  color: var(--gray);
  cursor: pointer;
  font-family: inherit;
}
.mock-btn-primary {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  background: var(--ink);
  color: var(--linen);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--linen-deep);
}
.mock-kpi {
  padding: 12px 16px;
  border-right: 1px solid var(--linen-deep);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-kpi:last-child { border-right: none; }
.mock-kpi-label { font-size: 10px; color: var(--gray); }
.mock-kpi-value { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.mock-kpi-delta { font-size: 10px; color: #1FA37E; }
.mock-kpi-delta.down { color: var(--accent); }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  overflow: hidden;
}

/* Visit list */
.mock-visits { overflow: hidden; border-right: 1px solid var(--linen-deep); }
.mock-table-head {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-faint);
  border-bottom: 1px solid var(--linen-deep);
}
.mock-visit {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 0.5px solid #f0f0f0;
  font-size: 12px;
  color: var(--ink);
  gap: 0;
}
.mock-visit.current { background: #EEF5FF; }
.mock-dot {
  display: none; /* use CSS grid columns instead */
}
.mock-time { color: var(--gray); font-size: 11px; font-variant-numeric: tabular-nums; }
.mock-status {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #f0f0f0;
  color: var(--gray);
  font-weight: 500;
  width: fit-content;
}
.mock-status.done { background: #ECFDF5; color: #1FA37E; }
.mock-status.current { background: #EEF4FB; color: var(--accent); }

/* Map area */
.mock-map {
  position: relative;
  background: #EEF0F2;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow: hidden;
}
.mock-map-label {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-faint);
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 4px;
}
.mock-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mock-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}
.mock-pin-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  display: block;
  flex-shrink: 0;
}
.mock-pin-dot.done { background: #1FA37E; }
.mock-pin-dot.current { background: var(--accent); box-shadow: 0 0 0 4px rgba(24,95,165,0.2); }
.mock-pin-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
  background: white;
  padding: 1px 5px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  white-space: nowrap;
}

/* ========================
   LOGOS STRIP
   ======================== */

.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--linen-deep);
  border-bottom: 1px solid var(--linen-deep);
  background: #FAFAFA;
}
.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-faint);
  margin-bottom: 20px;
}
.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logos-grid span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: -0.01em;
}

/* ========================
   FEATURES
   ======================== */

.features {
  padding: 96px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
  text-wrap: balance;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.7;
  text-wrap: pretty;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  border: 1px solid var(--linen-deep);
  border-radius: 12px;
  padding: 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: #bbb;
}

@media (max-width: 860px) {
  .features-bento { grid-template-columns: 1fr; }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--fcbg, var(--linen));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--fc, var(--ink));
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.feature-list li {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fcbg, var(--linen));
  border: 1.5px solid var(--fc, var(--ink));
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23185FA5' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feature-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--fc, var(--accent));
  transition: gap 0.15s;
}
.feature-link:hover { text-decoration: underline; }

/* ========================
   HOMEPAGE — METRICS
   ======================== */

.metrics {
  padding: 72px 0;
  background: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen-deep);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.metric {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}
.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 14px;
  color: var(--gray);
}

/* ========================
   TESTIMONIALS
   ======================== */

.testimonials {
  padding: 96px 0;
  background: #F2F4F8;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.testimonials-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial {
  border: 1px solid rgba(21,23,26,0.07);
  border-radius: 20px;
  padding: 40px 36px 32px;
  background: #fff;
  box-shadow: 0 4px 32px rgba(21,23,26,0.06);
  position: relative;
  overflow: hidden;
}
/* Decorative large quote mark */
.testimonial::before {
  content: '"';
  position: absolute;
  top: -12px; left: 28px;
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
  color: rgba(24,95,165,0.07);
  font-family: 'Inter', sans-serif;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink);
  margin-bottom: 28px;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.testimonial-quote::before,
.testimonial-quote::after { content: none; }

.testimonial-divider {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--pole-vente));
  border-radius: 2px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pole-vente) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.testimonial-author span { font-size: 12.5px; color: var(--gray); margin-top: 2px; display: block; }

/* ========================
   HOMEPAGE — CLOSING CTA
   ======================== */

.closing {
  background: var(--ink);
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(24, 95, 165, 0.35) 0%, transparent 58%);
  pointer-events: none;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.closing-title {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.closing .btn-primary {
  background: #fff;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.closing .btn-primary:hover { box-shadow: 0 4px 24px rgba(255,255,255,0.25); }
.closing-trust {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════
   AUTO FEATURES GRID
   ════════════════════════════════════════════════════════════════ */

.auto-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.auto-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--linen);
  border: 0.5px solid var(--linen-deep);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.auto-feat:hover {
  border-color: var(--pole-automation);
  box-shadow: 0 0 0 3px rgba(26,122,110,0.07);
}
.auto-feat--wide {
  grid-column: 1 / -1;
}
.auto-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(26,122,110,0.1);
  color: var(--pole-automation);
  flex-shrink: 0;
}
.auto-feat-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.auto-feat-copy strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.auto-feat-copy span {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .auto-features { grid-template-columns: 1fr; }
  .auto-feat--wide { grid-column: auto; }
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════════ */

.trust-bar {
  border-top: 0.5px solid var(--linen-deep);
  border-bottom: 0.5px solid var(--linen-deep);
  background: #FAFAF8;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-bar-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.55;
}
.trust-bar-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.2;
  transition: opacity 0.2s;
  white-space: nowrap;
  user-select: none;
}
.trust-logo:hover { opacity: 0.45; }

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════ */

.how-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--linen);
  border-bottom: 0.5px solid var(--linen-deep);
}
.how-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.how-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.how-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
  text-wrap: balance;
}
.how-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.how-step {
  background: #fff;
  border: 0.5px solid var(--linen-deep);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s var(--ease-out-expo), transform 0.2s var(--ease-out-expo);
}
.how-step:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.how-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.how-step-icon {
  color: var(--accent);
  margin: 4px 0 0;
}

.how-step-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.how-step-desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}

.how-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--linen);
  border: 0.5px solid var(--linen-deep);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-top: 4px;
  width: fit-content;
}

.how-arrow {
  color: var(--linen-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .how-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */

.faq-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #fff;
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.faq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.faq-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: balance;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid var(--linen-deep);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 0.5px solid var(--linen-deep);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--linen); }
.faq-q[aria-expanded="true"] { background: var(--linen); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gray);
  transition: transform 0.25s var(--ease-out-expo);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px 20px;
  display: block;
}
.faq-a[hidden] { display: none; }
.faq-a p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 480px) {
  .faq-q { padding: 16px 18px; font-size: 13.5px; }
  .faq-a { padding: 0 18px 16px; }
  .faq-list { border-radius: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   STICKY CTA MOBILE
   ════════════════════════════════════════════════════════════════ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(21, 23, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}
.sticky-cta--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 10px;
  transition: opacity 0.15s;
}
.sticky-cta-btn:hover { opacity: 0.9; }
.sticky-cta-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
}

/* ========================
   FOOTER
   ======================== */

.footer {
  background: #fff;
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 12px; font-size: 16px; }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 280px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13px;
  color: var(--gray);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--linen-deep);
  font-size: 12px;
  color: var(--gray-faint);
}

/* ========================
   OUTILS CLIENT (QR + SIGNATURE)
   ======================== */

.client-tools-section {
  padding: 96px 0;
  background: #fff;
}

.client-tools-section .section-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
  margin: 12px auto 0;
}

.client-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.client-tool-card {
  border: 1px solid var(--linen-deep);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.client-tool-card:hover { box-shadow: var(--shadow-md); border-color: #d0d5dd; }

/* Visual area */
/* Harmonisation des deux cartes : même hauteur fixe */
.client-tool-card {
  display: flex;
  flex-direction: column;
}

.ct-visual {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-visual--pay  { background: linear-gradient(155deg, #EBF4FF 0%, #DFF0FF 100%); }
.ct-visual--sign { background: linear-gradient(155deg, #F0EEFF 0%, #E8E3FF 100%); }

/* Payment card mockup */
.ct-phone {
  width: 218px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  transform: rotate(1.5deg);
}

.ct-pay-card {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ct-pay-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.ct-pay-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 4px;
}

.ct-pay-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.ct-pay-amount span { font-size: 13px; font-weight: 500; color: var(--gray); }

.ct-pay-desc {
  font-size: 10.5px;
  color: var(--gray);
}

.ct-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #E7F7EC;
  color: #128C7E;
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.ct-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
}

.ct-pay-or {
  text-align: center;
}
.ct-pay-or span {
  font-size: 10px;
  color: var(--gray-light);
  position: relative;
  padding: 0 10px;
}
.ct-pay-or span::before,
.ct-pay-or span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--linen-deep);
}
.ct-pay-or span::before { right: 100%; }
.ct-pay-or span::after  { left: 100%; }

.ct-qr-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ct-qr {
  background: #fff;
  border: 1px solid var(--linen-deep);
  border-radius: 8px;
  padding: 5px;
  display: inline-flex;
  flex-shrink: 0;
}

.ct-pay-brands-vert {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-brand {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-align: center;
}
.ct-brand.stripe  { background: #F0F7FF; color: #635bff; }
.ct-brand.paypal  { background: #FFF8E6; color: #003087; }

/* Copy area */
.ct-copy {
  padding: 28px 28px 32px;
  border-top: 1px solid var(--linen-deep);
}

.tool-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--tc, var(--accent));
  margin-bottom: 10px;
}

.ct-copy h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.ct-copy p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Signature document mockup */
.ct-doc {
  width: 218px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 16px 16px 14px;
  transform: rotate(-1.5deg);
}

.ct-doc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--linen-deep);
}

.ct-doc-label {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-light);
  margin-bottom: 3px;
}

.ct-doc-client {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.ct-doc-logo {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.ct-doc-logo span { color: var(--gray-faint); }

.ct-doc-service {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
}

.ct-doc-total {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.ct-doc-total span { font-size: 12px; font-weight: 400; color: var(--gray); }

.ct-sig-zone {
  border-top: 1px dashed var(--linen-deep);
  padding-top: 10px;
  margin-bottom: 8px;
}

.ct-sig-label {
  font-size: 9px;
  color: var(--gray-light);
  margin-bottom: 4px;
  display: block;
}

.ct-sig-svg {
  width: 100%;
  height: 44px;
  display: block;
}

.ct-doc-confirm {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 6px;
}

.ct-doc-cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: var(--gray);
  background: var(--linen-deep);
  padding: 3px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .client-tools-grid { grid-template-columns: 1fr; }
}

/* ========================
   MESSAGERIE SECTION
   ======================== */

.messagerie-section {
  padding: 96px 0;
  background: #fff;
}

.msg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.msg-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 16px;
}

.msg-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
}

.msg-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Mini inbox mockup */
.msg-mockup {
  border: 1px solid var(--linen-deep);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.msg-mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #F5F5F7;
  border-bottom: 1px solid var(--linen-deep);
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.msg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E5383B;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 56, 59, 0); }
  50%       { box-shadow: 0 0 0 4px rgba(229, 56, 59, 0.2); }
}

.msg-thread {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.msg-row.unread .msg-bubble { font-weight: 600; color: var(--ink); }

.msg-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--linen-deep);
  color: var(--gray);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.msg-bubble-wrap { flex: 1; min-width: 0; }
.msg-sender { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.msg-sender span { font-weight: 400; color: var(--gray); margin-left: 6px; }
.msg-bubble { font-size: 12.5px; color: var(--gray); line-height: 1.5; }
.msg-channel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 4px;
}
.msg-channel.wa  { background: #e7f9ed; color: #128C7E; }
.msg-channel.sms { background: #fff3e0; color: #e65c00; }
.msg-channel.em  { background: var(--accent-light); color: var(--accent); }

.msg-reply-bar {
  margin: 0 16px 16px;
  border: 1px solid var(--linen-deep);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.msg-reply-btn {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 5px;
  padding: 4px 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .msg-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================
   CONFIANCE SECTION
   ======================== */

.confiance-section {
  padding: 72px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.confiance-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(24,95,165,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(83,74,183,0.18) 0%, transparent 55%);
  pointer-events: none;
}

.confiance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 1;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.confiance-item {
  background: transparent;
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.confiance-item:last-child { border-right: none; }

.confiance-item strong {
  display: block;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.confiance-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .confiance-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================
   CONTACT PAGE — LAYOUT
   ======================== */

.page-header {
  padding: 112px 24px 40px;
  text-align: center;
}
.page-eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray);
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.contact-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ========================
   CONTACT PAGE — FORM CARD
   ======================== */

.form-card {
  background: var(--white);
  border: 0.5px solid var(--linen-deep);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-section { margin-bottom: 28px; }

.form-section-title {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-faint);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--linen-deep);
}

.form-divider {
  height: 0.5px;
  background: var(--linen-deep);
  margin: 0 0 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row:last-child { margin-bottom: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

/* ========================
   FORM INPUTS
   ======================== */

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  height: 36px;
  border: 0.5px solid var(--gray-light);
  border-radius: 6px;
  font-size: 13px;
  padding: 0 12px;
  width: 100%;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.12s, box-shadow 0.12s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-light); }
input:focus, select:focus, textarea:focus {
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.09);
}

textarea {
  height: 96px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.6;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888780' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ========================
   POLE CHECKBOXES
   ======================== */

.poles-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pole-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 0.5px solid var(--linen-deep);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, transform 0.12s;
  user-select: none;
}
.pole-check:hover { border-color: var(--gray-light); transform: translateX(2px); }
.pole-check input[type="checkbox"] { display: none; }
.pole-check.checked {
  border-color: var(--accent);
  background: var(--accent-light);
}

.pole-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pole-check-icon svg { width: 16px; height: 16px; }

.pole-check-label { flex: 1; }
.pole-check-label strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.pole-check-label span { font-size: 11px; color: var(--gray); }

.pole-check-tick {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 0.5px solid var(--gray-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.12s, border-color 0.12s;
}
.pole-check.checked .pole-check-tick {
  background: var(--accent);
  border-color: var(--accent);
}
.pole-check-tick-icon { display: none; }
.pole-check.checked .pole-check-tick-icon { display: block; }

/* ========================
   CONTACT PREFERENCE
   ======================== */

.pref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.pref-option {
  border: 0.5px solid var(--linen-deep);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, transform 0.12s;
  text-align: center;
  user-select: none;
}
.pref-option:hover { border-color: var(--gray-light); transform: translateY(-1px); }
.pref-option input[type="radio"] { display: none; }
.pref-option.selected {
  border-color: var(--accent);
  background: var(--accent-light);
}

.pref-icon { margin-bottom: 8px; }
.pref-icon svg { width: 20px; height: 20px; stroke: var(--gray); }
.pref-option.selected .pref-icon svg { stroke: var(--accent); }

.pref-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.pref-desc { font-size: 11px; color: var(--gray); }

.time-slot { display: none; margin-top: 12px; }
.time-slot.visible { display: block; }

/* ========================
   FORM SUBMIT
   ======================== */

.form-submit { margin-top: 28px; }

.btn-submit {
  width: 100%;
  background: var(--ink);
  color: var(--linen);
  border: none;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--t), box-shadow var(--t);
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 23, 26, 0.22);
}
.btn-submit:active { transform: scale(0.99); box-shadow: none; }
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.form-error {
  display: none;
  font-size: 12px;
  color: #E24B4A;
  margin-top: 10px;
  text-align: center;
}
.form-error.visible { display: block; }

/* ========================
   SUCCESS STATE
   ======================== */

.form-success {
  display: none;
  text-align: center;
  padding: 56px 24px;
  background: var(--white);
  border: 0.5px solid var(--linen-deep);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.form-success.visible { display: block; }

.success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--linen-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.success-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.success-back {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  color: var(--accent);
}
.success-back:hover { text-decoration: underline; }

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 0.5px solid var(--linen-deep);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 0;
    z-index: 9;
    padding: 4px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 0.5px solid var(--linen-deep);
  }
  .nav-links.open a:last-child { border-bottom: none; }

  /* Hero */
  .hero-bars { height: 140px; gap: 3px; }
  .hero-top { display: none; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-link { display: none; }
  .hero-trust { font-size: 11px; letter-spacing: 0.04em; }

  /* Mockup */
  .mockup-section { padding: 0 0 48px; }
  .mockup-body { height: auto; flex-direction: column; }
  .mock-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--linen-deep); flex-direction: row; padding: 10px 14px; align-items: center; }
  .mock-logo { padding: 0; border-bottom: none; margin-bottom: 0; margin-right: 16px; }
  .mock-nav { flex-direction: row; padding: 0; flex: 1; gap: 4px; }
  .mock-nav-item span { display: none; }
  .mock-sidebar-user { display: none; }
  .mock-kpis { grid-template-columns: repeat(2, 1fr); }
  .mock-grid { grid-template-columns: 1fr; }
  .mock-map { display: none; }

  /* Features */
  .features { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-title { font-size: 28px; }
  .feature-card { padding: 24px; }

  /* Metrics */
  .metrics { padding: 48px 0; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-value { font-size: 40px; }

  /* Stats strip */
  .stats-strip { padding: 48px 0; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding: 0 20px; }
  .stats-strip-sep { display: none; }
  .stats-strip-item { padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .stats-strip-item:nth-child(odd):last-child,
  .stats-strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .stats-strip-item:nth-child(even) { border-right: none; }

  /* Confiance */
  .confiance-grid { grid-template-columns: repeat(2, 1fr); }
  .confiance-item { border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 28px 20px; }
  .confiance-item:nth-child(2),
  .confiance-item:nth-child(4) { border-right: none; }
  .confiance-item:nth-child(4),
  .confiance-item:nth-child(5) { border-bottom: none; }
  .confiance-item:nth-child(5) { border-right: none; }

  /* Pole feature sections */
  .pole-block { padding: 48px 0; }
  .pole-block-inner { display: flex; flex-direction: column; padding: 0 20px; gap: 32px; }
  .pole-copy { width: 100%; }
  .pole-visual { display: none; }
  .pole-visual--auto { display: flex; min-height: auto; justify-content: center; }
  .pole-visual--auto lottie-player { max-width: 260px; height: 220px; }
  .pole-title { font-size: 1.55rem; }
  .pole-desc { max-width: 100%; }
  .pole-sub-box-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pole-sub-box-anim { align-self: center; }

  /* Testimonials */
  .testimonials { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Logos */
  .logos-grid { gap: 20px; }

  /* Closing */
  .closing { padding: 72px 0; }
  .closing-title { font-size: 30px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Contact page */
  .page-header h1 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .pref-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
}

/* ========================
   FEATURE BADGE
   ======================== */

.feature-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pole-route);
  background: var(--pole-route-bg);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 10px;
}

/* ========================
   RELANCE STACK (Cycle de vente)
   ======================== */

.relance-stack {
  position: relative;
  height: 62px;
  margin-top: 20px;
}

.relance-card {
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--linen-deep);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.rc-back {
  transform: translateX(8px) translateY(-10px) scale(0.88);
  opacity: 0.35;
  background: #fafafa;
  z-index: 1;
  filter: grayscale(1);
}

.rc-mid {
  transform: translateX(4px) translateY(-5px) scale(0.94);
  opacity: 0.6;
  background: #fafafa;
  z-index: 2;
  filter: grayscale(0.4);
}

.rc-top {
  transform: translateX(0) translateY(0) scale(1);
  z-index: 3;
  border-color: var(--pole-vente);
  background: #fff;
  box-shadow: 0 2px 12px rgba(83, 74, 183, 0.12);
}

.feature-card:hover .rc-back {
  transform: translateY(-8px) scale(0.88);
  opacity: 0.5;
}

.feature-card:hover .rc-mid {
  transform: translateY(-4px) scale(0.94);
  opacity: 0.75;
  filter: grayscale(0.15);
}

.rc-day {
  font-size: 10px;
  font-weight: 700;
  color: var(--pole-vente);
  background: var(--pole-vente-bg);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.rc-msg {
  font-size: 12px;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================
   ROUTE VISION SECTION
   ======================== */

.rv-section {
  padding: 96px 0;
  background: #fff;
}

.rv-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}

.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pole-route);
  margin-bottom: 18px;
}
.rv-eyebrow svg { width: 14px; height: 14px; stroke: var(--pole-route); }

.rv-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.rv-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.rv-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rv-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rv-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--pole-route-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-feature-icon svg { width: 16px; height: 16px; stroke: var(--pole-route); }

.rv-features strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.rv-features span { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ── Phone frame ── */
.phone-frame {
  width: 228px;
  background: #1A1A1A;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 0 0 1px #333,
    0 24px 60px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.2);
  margin: 0 auto;
  position: relative;
}

.phone-notch {
  width: 64px;
  height: 18px;
  background: #1A1A1A;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 2px;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #FFF9F0;
  border-radius: 30px;
  overflow: hidden;
  height: 470px;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', 'Inter', sans-serif;
}

/* ── Route Vision App UI ── */
.rva-header {
  background: #FF6B35;
  padding: 12px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rva-logo {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.rva-logo span { font-weight: 400; opacity: 0.85; }
.rva-date { font-size: 10px; color: rgba(255,255,255,0.75); font-weight: 500; }

.rva-banner {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #F0EBE3;
}
.rva-banner-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 1px;
}
.rva-banner-stat strong { font-size: 15px; font-weight: 700; color: #2D3436; letter-spacing: -0.02em; }
.rva-banner-stat span { font-size: 9px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.rva-banner-divider { width: 1px; height: 28px; background: #F0EBE3; }

.rva-actions {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #F0EBE3;
}
.rva-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.rva-btn-maps {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #EEF4FB;
  color: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.rva-list {
  flex: 1;
  overflow: hidden;
  background: #FFF9F0;
  padding: 4px 0;
}

.rva-stop {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transition: background 0.15s;
}
.rva-stop.done { opacity: 0.6; }
.rva-stop.current { background: rgba(255,107,53,0.06); }

.rva-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #E8E0D8;
  color: #888;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: inherit;
}
.rva-num.done { background: #ECFDF5; color: #1FA37E; }
.rva-num.current { background: #FF6B35; color: #fff; }

.rva-info { min-width: 0; }
.rva-name { display: block; font-size: 11px; font-weight: 600; color: #2D3436; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rva-city { display: block; font-size: 9px; color: #999; font-weight: 500; }

.rva-check { flex-shrink: 0; }
.rva-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(255,107,53,0.12);
  color: #FF6B35;
  white-space: nowrap;
}
.rva-maps-link {
  color: #ccc;
  display: flex;
  align-items: center;
}
.rva-maps-link:hover { color: #FF6B35; }

.rva-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  border-top: 1px solid #F0EBE3;
  font-size: 9px;
  color: #aaa;
  font-weight: 500;
  font-family: inherit;
}

/* ========================
   WHATSAPP PHONE (RouteVision)
   ======================== */

/* Deux téléphones côte à côte dans rv-visual */
.rv-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.wa-phone { flex-shrink: 0; }
.wa-screen {
  background: #ECE5DD !important;
  height: 470px !important;
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Barre de contact en haut */
.wa-topbar {
  background: #075E54;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wa-topbar > svg { stroke: rgba(255,255,255,0.7); flex-shrink: 0; }
.wa-contact { display: flex; align-items: center; gap: 8px; }
.wa-avatar {
  width: 32px; height: 32px;
  background: #25D366;
  border-radius: 50%;
  font-size: 9px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.wa-contact-info strong { display: block; font-size: 12px; font-weight: 600; color: #fff; }
.wa-contact-info span  { font-size: 10px; color: rgba(255,255,255,0.7); }

/* Corps du chat */
.wa-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wa-date-chip {
  text-align: center;
  font-size: 10px;
  color: #555;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 3px 10px;
  align-self: center;
}

/* Bulle de message */
.wa-bubble {
  background: #fff;
  border-radius: 12px 12px 12px 2px;
  padding: 8px 10px 6px;
  max-width: 100%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
  font-size: 11px;
}
.wa-bubble-header {
  font-weight: 700;
  font-size: 11.5px;
  color: #111;
  margin-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 5px;
}
.wa-route-list { display: flex; flex-direction: column; gap: 7px; }
.wa-stop { display: flex; gap: 4px; align-items: flex-start; }
.wa-n { font-weight: 700; font-size: 10px; color: #075E54; flex-shrink: 0; margin-top: 1px; }
.wa-biz { font-weight: 600; font-size: 10.5px; color: #111; line-height: 1.3; }
.wa-loc { font-size: 9.5px; color: #555; margin: 1px 0; }
.wa-link { font-size: 9.5px; color: #075E54; text-decoration: none; display: block; }
.wa-bubble-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 5px;
  font-size: 9px;
  color: #888;
}

/* ========================
   PRODUCT SCREENS SECTION
   ======================== */

.product-screens {
  padding: 96px 0 80px;
  background: var(--linen);
}

.screens-disclaimer {
  font-size: 11px;
  color: var(--gray);
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.2px;
}

.screens-tabs {
  display: flex;
  gap: 6px;
  margin: 36px 0 20px;
  flex-wrap: wrap;
}

.screens-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--t);
}

.screens-tab:hover { border-color: var(--accent); color: var(--accent); }
.screens-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.screens-viewer {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21, 23, 26, 0.14);
  border: 1px solid var(--linen-deep);
}

.screens-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #1e2029;
}

.screens-dots { display: flex; gap: 6px; }
.screens-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.screens-dots span:nth-child(1) { background: #FF5F57; }
.screens-dots span:nth-child(2) { background: #FEBC2E; }
.screens-dots span:nth-child(3) { background: #28C840; }

.screens-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}

.screens-frame {
  position: relative;
  background: #0f1117;
  line-height: 0;
}

.screen-img {
  width: 100%;
  display: none;
  object-fit: cover;
}

.screen-img.active { display: block; }

.screens-caption {
  padding: 14px 20px;
  background: #1e2029;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.5;
}

.screens-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.screens-stat {
  background: var(--white);
  border: 1px solid var(--linen-deep);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.screens-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.screens-stat-lbl {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

@media (max-width: 640px) {
  .screens-stats { grid-template-columns: 1fr; }
  .screens-stat-val { font-size: 22px; }
}

@media (max-width: 768px) {
  .rv-section { padding: 64px 0; }
  .rv-grid { grid-template-columns: 1fr; gap: 40px; }
  .rv-title { font-size: 28px; }
  .phone-frame { width: 220px; }
  .phone-screen { height: 440px; }
  .wa-phone { display: none; } /* masqué sur mobile */
  .product-screens { padding: 64px 0 48px; }
  .screens-tabs { gap: 8px; }
  .screens-tab { padding: 7px 14px; font-size: 12px; }
  .screens-viewer { border-radius: 10px; }
  .screens-url { display: none; }
  .screens-caption { font-size: 12px; padding: 12px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   POLE BLOCKS (features section — 3 integrated poles)
   ═══════════════════════════════════════════════════════════════ */

.pole-block {
  padding: 80px 0;
  border-top: 1px solid var(--linen-deep);
}
.pole-block:first-of-type { border-top: none; }

.pole-block-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pole-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc, var(--accent));
  background: color-mix(in srgb, var(--pc, var(--accent)) 10%, #fff);
  padding: 5px 11px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.pole-title {
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pole-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-faint);
  margin-bottom: 24px;
  max-width: 480px;
}

.pole-sub-box {
  margin-top: 28px;
  background: var(--linen);
  border: 0.5px solid var(--linen-deep);
  border-radius: 12px;
  padding: 20px 22px;
}
.pole-sub-box-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pole-sub-box-text { flex: 1; }
.pole-sub-box-anim { flex-shrink: 0; opacity: 0.9; }
.pole-sub-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

/* ── Factures Timeline Stepper ─────────────────────────────── */
.ft-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.ft-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  /* animation init */
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-out-expo);
  transition-delay: calc(var(--d, 0) * 180ms);
}
.ft-step.ft-step--in {
  opacity: 1;
  transform: none;
}

.ft-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.ft-day {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #D0CCC3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.ft-day--final {
  background: #C9934A;
  color: #fff;
  border-color: #A5722C;
}

/* vertical connector that draws downward */
.ft-line {
  width: 1px;
  flex: 1;
  min-height: 16px;
  background: #CCCAC0;
  margin: 5px auto 5px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.35s var(--ease-out-expo);
  transition-delay: calc(var(--d, 0) * 180ms + 240ms);
}
.ft-line.ft-line--drawn { transform: scaleY(1); }

.ft-step-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3px;
  padding: 12px 0 28px 0;
}

.ft-chan {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-chan--email { color: #1A5FA8; }
.ft-chan--email svg { color: #1A5FA8; }

.ft-chan--wa { color: #128C4C; }
.ft-chan--wa svg { fill: #128C4C; stroke: none; }

.ft-chan--sms { color: #C04A00; }
.ft-chan--sms svg { color: #C04A00; }

.ft-detail {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.5;
}

/* resolved row */
.ft-resolved {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: #198037;
  background: #E8F5EC;
  border: 0.5px solid #A3D8B0;
  border-radius: 8px;
  padding: 8px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s var(--ease-out-expo),
    transform 0.4s var(--ease-out-expo);
  transition-delay: calc(var(--d, 0) * 180ms);
}
.ft-resolved svg { color: #198037; flex-shrink: 0; }
.ft-resolved.ft-resolved--in { opacity: 1; transform: none; }

/* reduced-motion: skip transitions */
@media (prefers-reduced-motion: reduce) {
  .ft-step, .ft-line, .ft-resolved {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.pole-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

/* Terrain: rv-visual lives inside pole-visual */
.pole-visual--rv .rv-visual {
  position: relative;
  width: 100%;
}

/* Cycle de vente visual */
.vente-visual-wrap {
  width: 100%;
}

.vente-tool-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.vente-tool-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f7f7f8;
  border: 1px solid var(--linen-deep);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════
   CLIENT EXPERIENCE CARDS (paiement QR + signature)
   ═══════════════════════════════════════════════════════════════ */

.cec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.cec-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--linen-deep);
  background: #fff;
}

.cec-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cec-card--pay .cec-visual  { background: linear-gradient(155deg, #EBF4FF 0%, #D8ECFF 100%); }
.cec-card--sign .cec-visual { background: linear-gradient(155deg, #F0EEFF 0%, #E6E0FF 100%); }

.cec-copy {
  padding: 13px 16px;
  border-top: 1px solid var(--linen-deep);
}

.cec-copy strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.cec-copy span {
  font-size: 11.5px;
  color: var(--gray-faint);
}

/* Payment phone mockup */
.cec-phone {
  width: 160px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  padding: 14px 14px 12px;
  transform: rotate(-1.5deg);
}

.cec-pay-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f4;
}

.cec-pay-brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.cec-pay-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cec-qr {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.cec-pay-or {
  font-size: 9px;
  color: var(--gray-faint);
  text-align: center;
  margin-bottom: 6px;
}

.cec-pay-btn {
  background: #22C55E;
  color: #fff;
  border-radius: 6px;
  padding: 7px 0;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Signature document mockup */
.cec-doc {
  width: 164px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  padding: 14px 14px 12px;
  transform: rotate(1.5deg);
}

.cec-doc-lines {
  margin-bottom: 12px;
}

.cec-doc-line {
  height: 5px;
  background: #EBEBEB;
  border-radius: 3px;
  margin-bottom: 5px;
}

.cec-doc-line--md { width: 75%; }
.cec-doc-line--sm { width: 55%; }

.cec-sig-zone {
  border: 1.5px dashed #D0D0D0;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 8px;
}

.cec-sig-label {
  font-size: 8px;
  color: var(--gray-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 5px;
}

.cec-sig-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.cec-doc-confirm {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
  color: #22C55E;
}

/* ── Lottie integrations ──────────────────────────────────────── */

/* Location animation flows above phones in Terrain */
.rv-lottie-pin {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  pointer-events: none;
}

.pole-visual--rv {
  flex-direction: column;
  align-items: center;
}

.pole-visual--auto {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Payment card Lottie visual */
.cec-visual--lottie {
  background: linear-gradient(155deg, #EBF4FF 0%, #D8ECFF 100%);
}
.cec-visual--lottie lottie-player {
  filter: drop-shadow(0 8px 24px rgba(24,95,165,0.15));
}

/* PayPal row under cec-cards */
.vente-lottie-row {
  margin-top: 14px;
}
.vente-lottie-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f8;
  border: 1px solid var(--linen-deep);
  border-radius: 10px;
  padding: 4px 14px 4px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-faint);
}

/* Email sent accent in messagerie */
.msg-lottie-accent {
  margin-bottom: 12px;
}
.msg-lottie-accent lottie-player {
  display: block;
}

/* ── Entropy canvas hero ─────────────────────────────────────── */
.hero--dark {
  position: relative;
  background: #060a10;
  overflow: hidden;
  min-height: 420px;
  padding: 110px 0 85px;
}

.entropy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.hero--dark .hero-inner {
  position: relative;
  z-index: 1;
}

.hero--dark .hero-sub {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 24px rgba(0,0,0,0.6);
}

.hero-ghost--light {
  color: rgba(255, 255, 255, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.hero-ghost--light:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* Gradient-bar hero card — About section */
@keyframes gbv-pulse {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.52); }
}

.gbv {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 1 / 1;
  max-width: 420px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 4px;
  box-shadow: 0 32px 80px rgba(24, 95, 165, 0.28), 0 2px 12px rgba(0,0,0,0.35);
}
.gbv-bar {
  flex: 1;
  height: 90%;
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  background: linear-gradient(to top,
    #185FA5 0%,
    #3b82f6 35%,
    #60a5fa 58%,
    #a78bfa 80%,
    #534AB7 100%
  );
  opacity: 0.82;
  animation: gbv-pulse 7s ease-in-out infinite;
}
.gbv-bar:nth-child(1) { animation-delay:    0s; }
.gbv-bar:nth-child(2) { animation-delay: -1.0s; }
.gbv-bar:nth-child(3) { animation-delay: -2.0s; }
.gbv-bar:nth-child(4) { animation-delay: -3.0s; }
.gbv-bar:nth-child(5) { animation-delay: -4.0s; }
.gbv-bar:nth-child(6) { animation-delay: -5.0s; }
.gbv-bar:nth-child(7) { animation-delay: -6.0s; }
.gbv-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1;
  pointer-events: none;
}
.gbv-kpi {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(24, 95, 165, 0.6);
}
.gbv-kpi-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.gbv-divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 10px 0 6px;
}
@media (prefers-reduced-motion: reduce) {
  .gbv-bar { animation: none; transform: scaleY(0.75); }
}

/* Gradient bars — closing CTA background */
.closing-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.closing-bg-anim lottie-player {
  min-width: 100%;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION EYEBROW SMALL
════════════════════════════════════════════════════════════════════ */
.section-eyebrow-sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pole-route);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════════
   DASHBOARD SECTION
════════════════════════════════════════════════════════════════════ */
.db-section {
  background: #060a10;
  padding: 96px 0 80px;
}

.db-section .section-header {
  margin-bottom: 48px;
}

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

.db-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Browser chrome wrapper */
.db-browser {
  background: #10151f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Address bar */
.db-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #1a2035;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.db-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.db-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.db-dots span:nth-child(1) { background: #ff5f57; }
.db-dots span:nth-child(2) { background: #febc2e; }
.db-dots span:nth-child(3) { background: #28c840; }

.db-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.01em;
}

.db-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #4ade80;
  flex-shrink: 0;
}

.db-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: db-pulse 2s ease-in-out infinite;
}

@keyframes db-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50%       { opacity: 0.75; box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

/* App layout: sidebar + main */
.db-layout {
  display: grid;
  grid-template-columns: 192px 1fr;
  min-height: 480px;
}

/* ── Sidebar ── */
.db-nav {
  background: #0d1117;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  padding: 18px 0 14px;
}

.db-logo {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 0 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.db-logo span {
  color: var(--pole-route);
}

.db-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
  flex: 1;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  cursor: default;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.db-nav-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.db-nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.db-nav-item.active svg {
  opacity: 1;
}

.db-nav-pill {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.db-nav-pill.alert {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.db-nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 8px;
}

.db-user-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pole-route), var(--pole-vente));
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.db-user-info strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.db-user-info span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Main area ── */
.db-main {
  background: #111827;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.db-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.db-page-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.db-page-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.db-head-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.db-btn-ghost {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 5px 11px;
  cursor: default;
}

.db-btn-cta {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--pole-route);
  border: none;
  border-radius: 6px;
  padding: 5px 11px;
  cursor: default;
}

/* ── KPI cards ── */
.db-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.db-kpi {
  background: #1a2035;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.db-kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.db-kpi-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.db-kpi-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.db-kpi-ico--terrain {
  background: rgba(24, 95, 165, 0.25);
  color: #60a5fa;
}

.db-kpi-ico--vente {
  background: rgba(83, 74, 183, 0.25);
  color: #a78bfa;
}

.db-kpi-ico--factures {
  background: rgba(20, 184, 166, 0.2);
  color: #2dd4bf;
}

.db-kpi-ico--msg {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.db-kpi-val {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: 'IBM Plex Mono', monospace;
}

.db-kpi-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.db-kpi-fill {
  height: 100%;
  border-radius: 2px;
}

.db-kpi-fill--terrain {
  background: linear-gradient(90deg, #185FA5, #60a5fa);
}

.db-kpi-fill--vente {
  background: linear-gradient(90deg, #534AB7, #a78bfa);
}

.db-kpi-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.db-kpi-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  width: fit-content;
}

.db-kpi-chip--alert {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.db-kpi-chip--green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* ── Panels ── */
.db-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.db-panel {
  background: #1a2035;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.db-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.db-panel-count {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

.db-panel-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* Quote pipeline rows */
.db-quote-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 11px;
}

.db-quote-row:last-child {
  border-bottom: none;
}

.db-quote-info {
  flex: 1;
  min-width: 0;
}

.db-quote-name {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-quote-age {
  display: block;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1px;
}

.db-quote-amt {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace;
}

.db-decote {
  font-size: 10px;
  font-weight: 600;
  color: #f87171;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace;
}

.db-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.db-tag--urgent {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
}

.db-tag--sent {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
}

.db-tag--done {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.db-tag--wait {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

/* Message rows */
.db-msg-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.db-msg-row:last-of-type {
  border-bottom: none;
}

.db-msg-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.db-msg-body {
  flex: 1;
  min-width: 0;
}

.db-msg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 2px;
}

.db-msg-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.db-msg-time {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.db-msg-text {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.db-channel {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.db-channel--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
}

.db-channel--em {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.db-channel--sms {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
}

.db-msg-reply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.db-msg-reply-placeholder {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.2);
}

.db-reply-btn {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--pole-route);
  border: none;
  border-radius: 5px;
  padding: 4px 11px;
  cursor: default;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════════════════════ */
.stats-strip {
  background: #090d15;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.stats-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stats-strip-item:last-child { border-right: none; }

.stats-strip-val {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0;
  border-radius: 0;
}

.stats-strip-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 140px;
  white-space: normal;
}

.stats-strip-sep { display: none; }

/* Responsive */
@media (max-width: 1100px) {
  .db-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .db-layout {
    grid-template-columns: 1fr;
  }
  .db-nav {
    display: none;
  }
  .db-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .db-kpis {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stats-strip-grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stats-strip-sep {
    display: none;
  }
  .stats-strip-item {
    padding: 0 16px;
    width: 50%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERHAUL — prevent overflow & polish every section
   ═══════════════════════════════════════════════════════════════ */

/* Core: kill horizontal scroll on any device */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Ensure images/media never overflow their container */
img, video, lottie-player {
  max-width: 100%;
}

@media (max-width: 768px) {

  /* ── Nav ── */
  .nav { padding: 14px 20px; }

  /* ── Hero ── */
  .hero-bottom {
    padding: 0 20px 60px;
    gap: 16px;
  }
  .hero-trust {
    font-size: 10px;
    letter-spacing: 0.03em;
    padding: 0 8px;
    text-align: center;
    line-height: 1.7;
    white-space: normal;
    word-break: break-word;
  }
  .btn-lg {
    padding: 13px 26px !important;
    font-size: 14px !important;
  }

  /* ── About section ── */
  .about-section { padding: 52px 0; }
  .about-founders { flex-direction: column; gap: 16px; }

  /* ── Features bento ── */
  .features { padding: 52px 0; }
  .feature-card { padding: 22px; }
  .section-header { margin-bottom: 36px; }

  /* ── Metrics ── */
  .metrics-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .metric { padding: 28px 24px; }
  .metric-value { font-size: 38px; }

  /* ── Testimonials ── */
  .testimonials { padding: 52px 0; }
  .testimonial { padding: 28px 22px; }
  .testimonial-quote { font-size: 15px; line-height: 1.7; }

  /* ── Stats strip ── */
  .stats-strip { padding: 52px 0; }
  .stats-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .stats-strip-item {
    width: auto;
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stats-strip-item:nth-child(even) { border-right: none; }
  .stats-strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .stats-strip-val { font-size: clamp(32px, 8vw, 42px); }
  .stats-strip-lbl { font-size: 12px; }

  /* ── DB section ── */
  .db-section { padding: 52px 0 40px; }
  .db-section .section-header { margin-bottom: 32px; }

  /* ── RV section ── */
  .rv-section { padding: 52px 0; }
  .rv-title { font-size: 26px; }

  /* ── Client tools ── */
  .client-tools-section { padding: 52px 0; }
  .ct-visual { height: 260px; }
  .ct-phone { width: 180px; }

  /* ── Closing CTA ── */
  .closing { padding: 64px 0; }
  .closing-title { font-size: 28px; }
  .closing-sub { font-size: 14px; padding: 0 8px; }

  /* ── Footer ── */
  .footer { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { font-size: 11px; }

  /* ── Confiance section ── */
  .confiance-section { padding: 52px 0; }
}

/* Extra small screens (< 480px) — tighter still */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pole-block { padding: 36px 0; }
  .pole-block-inner { padding: 0 16px; gap: 24px; }
  .pole-title { font-size: 1.4rem; }
  .pole-label { font-size: 10px; }
  .pole-desc { font-size: 0.9rem; }
  .feature-list li { font-size: 12.5px; }

  .hero-bottom { padding: 0 16px 52px; }
  .hero-trust { font-size: 9.5px; }

  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }

  .about-section { padding: 44px 0; }
  .about-title { font-size: 20px; }
  .about-body { font-size: 13.5px; }

  .testimonials-grid { gap: 16px; }
  .testimonial { padding: 22px 18px; }
  .testimonial-quote { font-size: 14px; }

  .closing-title { font-size: 25px; }
  .closing { padding: 52px 0; }

  .footer-grid { gap: 20px; }

  .rv-title { font-size: 22px; }

  /* Sub-box on very small screens */
  .pole-sub-box { padding: 14px 16px; }
  .pole-sub-label { font-size: 10px; margin-bottom: 10px; }

  /* Nav */
  .nav { padding: 12px 16px; }
  .nav-logo { font-size: 15px; }

  /* Logos */
  .logos-grid { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .logos-grid span { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN TEST — AMÉLIORATIONS UI
   ═══════════════════════════════════════════════════════════════ */

/* ── Curseur personnalisé ── */
.cursor {
  width: 22px;
  height: 22px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out-expo),
              height 0.2s var(--ease-out-expo),
              opacity 0.2s ease;
  will-change: transform;
}
.cursor--hover {
  width: 44px;
  height: 44px;
}
.cursor--hidden { opacity: 0; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ── Hero — H1 value proposition ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 0.5px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 8px;
}

.hero-h1 {
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
  text-wrap: balance;
}

/* hero-keywords — liste sémantique, séparateurs · en CSS */
.hero-keywords {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-keywords li { padding: 0 8px; }
.hero-keywords li + li::before {
  content: '·';
  margin-right: 8px;
  opacity: 0.5;
}

/* ── Hover states — cartes premium ── */
.feature-card {
  transition: border-color 0.25s var(--ease-out-expo),
              transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c0c0c0;
  box-shadow: 0 12px 32px rgba(21, 23, 26, 0.1);
}

.pole-check {
  transition: border-color 0.18s var(--ease-out-expo),
              background 0.18s var(--ease-out-expo),
              transform 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo);
}
.pole-check:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 23, 26, 0.07);
}

.client-tool-card {
  transition: box-shadow 0.3s var(--ease-out-expo),
              border-color 0.3s var(--ease-out-expo),
              transform 0.3s var(--ease-out-expo);
}
.client-tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(21, 23, 26, 0.12);
  border-color: #c8c8c8;
}

/* ── Ghost button — bordure renforcée au hover ── */
.btn-secondary {
  transition: background var(--t),
              color var(--t),
              transform var(--t),
              box-shadow 0.2s var(--ease-out-expo);
}
.btn-secondary:hover {
  box-shadow: inset 0 0 0 1px var(--ink);
}

/* ── Boutons — tous avec ease premium ── */
.btn-primary, .btn-linen, .btn-secondary {
  transition-timing-function: var(--ease-out-expo);
}

/* ── Testimonials hover ── */
.testimonial {
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(21, 23, 26, 0.1);
}

/* ── About confiance items hover ── */
.about-confiance-item {
  transition: background 0.18s var(--ease-out-expo);
  cursor: default;
}
.about-confiance-item:hover {
  background: rgba(24, 95, 165, 0.04);
}

/* ── Nav ghost (hero transparent) ── */
.nav .btn-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--linen-deep);
  border-radius: 6px;
  transition: border-color 0.18s var(--ease-out-expo), color 0.18s var(--ease-out-expo);
}
.nav .btn-ghost:hover { border-color: var(--ink); }
.hero-in-view .nav:not(.scrolled) .btn-ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.hero-in-view .nav:not(.scrolled) .btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ── Focus visible WCAG AA ── */
.btn-primary:focus-visible,
.btn-linen:focus-visible,
.btn-secondary:focus-visible,
.nav .btn-ghost:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERHAUL — optimisation téléphone
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Kill horizontal scroll : cause principale = translateX sur data-animate ── */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  /* Remplacer translateX par translateY sur mobile */
  .js-ready [data-animate="left"],
  .js-ready [data-animate="right"] {
    transform: translateY(16px) !important;
  }
  .js-ready [data-animate="left"].is-visible,
  .js-ready [data-animate="right"].is-visible {
    transform: translateY(0) !important;
  }
  /* Clipper tous les débordements de section */
  section, .pole-block, .features, .trust-bar,
  .how-section, .faq-section, .closing, .about-section,
  .db-section, .stats-strip, .testimonials {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* ── Body : espace pour sticky CTA ── */
  body { padding-bottom: 72px; }

  /* ── Nav : zone tactile 48px min ── */
  #nav-toggle {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav { padding: 0 16px; height: 56px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero-bottom {
    padding: clamp(24px, 6vw, 48px) 20px clamp(80px, 12vw, 100px);
    gap: 14px;
    align-items: center;
    text-align: center;
  }
  .hero-h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    letter-spacing: -0.035em;
  }
  .hero-eyebrow { font-size: 10px; padding: 5px 12px; }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .hero-cta .btn-linen {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .hero-keywords { font-size: 10px; }

  /* ── Trust bar ── */
  .trust-bar { padding: 12px 14px; gap: 8px; }
  .trust-bar-logos { gap: 16px; }
  .trust-logo { font-size: 11px; }

  /* ── Comment ça marche ── */
  .how-section { padding: 36px 0; }
  .how-header { margin-bottom: 28px; }
  .how-title { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }
  .how-sub { font-size: 13px; }
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .how-arrow { transform: rotate(90deg); margin: -6px auto; opacity: 0.35; }
  .how-step { padding: 18px 16px; border-radius: 10px; }
  .how-step:hover { transform: none; }
  .how-step-title { font-size: 14px; }
  .how-step-desc { font-size: 12.5px; }

  /* ── About ── */
  .about-section { padding: 36px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-copy { padding: 0 14px; }
  .about-body { font-size: 13.5px; line-height: 1.65; }
  .about-confiance { margin-top: 24px; }
  .about-confiance-item { padding: 12px 14px; }
  .about-founders { flex-wrap: wrap; gap: 10px; margin-top: 20px; }

  /* ── Pole blocks ── */
  .pole-block { padding: 32px 0; }
  .pole-block-inner {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 14px !important;
    gap: 20px !important;
    grid-template-columns: unset !important;
  }
  /* Cacher tous les visuels sur mobile */
  .pole-visual { display: none !important; }
  /* Sauf la Lottie auto */
  .pole-visual--auto {
    display: flex !important;
    justify-content: center;
    max-height: 160px;
    overflow: hidden;
  }
  .pole-visual--auto lottie-player { max-width: 160px; height: 160px; }

  /* Aligner le texte à gauche, compact */
  .pole-copy {
    max-width: 100%;
    text-align: left;
  }
  .pole-title {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
    margin-bottom: 8px;
  }
  .pole-desc { font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
  .pole-label { margin-bottom: 10px; }
  .feature-list { gap: 8px; }
  .feature-list li { font-size: 13px; }

  /* ── Container global plus serré ── */
  .container { padding: 0 14px !important; }

  /* ── Auto features ── */
  .auto-features { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
  .auto-feat--wide { grid-column: 1 / -1; }
  .auto-feat { padding: 12px 12px; gap: 10px; border-radius: 10px; }
  .auto-feat-icon { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
  .auto-feat-copy strong { font-size: 12px; }
  .auto-feat-copy span { font-size: 11px; }

  /* ── Factures stepper ── */
  .ft-subbox { padding: 16px; }
  .ft-day { width: 42px; height: 42px; font-size: 10px; }
  .ft-step-left { width: 42px; }
  .ft-step-right { padding: 8px 0 20px 0; }
  .ft-chan { font-size: 11px; }
  .ft-detail { font-size: 11px; }

  /* ── Dashboard ── */
  .db-section { padding: 52px 0 36px; }
  .db-browser { border-radius: 12px; overflow-x: auto; }
  .db-layout { grid-template-columns: 1fr; }
  .db-nav { display: none; }
  .db-kpis { grid-template-columns: 1fr 1fr; }

  /* ── Stats ── */
  .stats-strip { padding: 0; }
  .stats-strip-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip-val { font-size: clamp(28px, 7vw, 36px); }

  /* ── Testimonials ── */
  .testimonials { padding: 36px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial { padding: 20px 16px; }
  .testimonial:hover { transform: none; }
  .testimonial-quote { font-size: 13.5px; line-height: 1.65; }

  /* ── FAQ ── */
  .faq-section { padding: 36px 0; }
  .faq-header { margin-bottom: 24px; }
  .faq-title { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .faq-q { padding: 14px 16px; font-size: 13.5px; }
  .faq-a { padding: 0 16px 14px; }
  .faq-a p { font-size: 13px; }

  /* ── Stats ── */
  .stats-strip { padding: 32px 0; }
  .stats-strip-val { font-size: clamp(26px, 7vw, 34px); }
  .stats-strip-lbl { font-size: 11.5px; }

  /* ── Dashboard ── */
  .db-section { padding: 36px 0 28px; }

  /* ── Closing CTA ── */
  .closing { padding: 48px 14px; }
  .closing-title { font-size: clamp(1.3rem, 5.5vw, 1.75rem); }
  .closing-sub { font-size: 13.5px; padding: 0; }

  /* ── Footer ── */
  .footer { padding: 32px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { font-size: 11px; margin-top: 20px; }
}

@media (max-width: 390px) {
  .hero-h1 { font-size: clamp(1.75rem, 8.5vw, 2.2rem); }
  .how-step { padding: 18px 16px; }
  .container { padding: 0 14px; }
  .pole-block-inner { padding: 0 14px; }
  .trust-bar-logos { gap: 14px; }
  .trust-logo { font-size: 10.5px; }
  .auto-feat { padding: 12px 14px; }
  .faq-list { border-radius: 10px; }
}
