/* =====================================================================
   KEYBIS · premium-v2.css
   Refonte visuelle SaaS premium — se charge APRÈS acquisition.css
   et surcharge tous les composants pour un rendu Stripe/Linear-grade.
   Aucune modification au CSS historique.
   ===================================================================== */

@import url("https://rsms.me/inter/inter.css");

:root {
  /* ── Neutres (slate) ─────────────────────────────────────────────── */
  --p-bg:          #f7f8fb;
  --p-bg-alt:      #eef0f6;
  --p-surface:     #ffffff;
  --p-surface-2:   #f9fafc;
  --p-surface-3:   #f3f5f9;
  --p-ink-900:     #0b1020;
  --p-ink-800:     #141a2e;
  --p-ink-700:     #1f2742;
  --p-ink-600:     #394263;
  --p-ink-500:     #5a6486;
  --p-ink-400:     #7b84a3;
  --p-ink-300:     #a3abc4;
  --p-line:        #e5e8f0;
  --p-line-strong: #d3d7e4;
  --p-ring:        rgba(79, 70, 229, 0.16);

  /* ── Brand (indigo / violet) ─────────────────────────────────────── */
  --p-primary:      #4f46e5;
  --p-primary-600:  #4338ca;
  --p-primary-700:  #3730a3;
  --p-primary-50:   #eef2ff;
  --p-primary-100:  #e0e7ff;
  --p-violet:       #7c3aed;
  --p-gradient:     linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --p-gradient-soft:linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);

  /* ── Sémantique ──────────────────────────────────────────────────── */
  --p-success:   #059669;
  --p-success-50:#ecfdf5;
  --p-warning:   #d97706;
  --p-warning-50:#fffbeb;
  --p-danger:    #dc2626;

  /* ── Rayons ──────────────────────────────────────────────────────── */
  --p-r-xs: 8px;
  --p-r-sm: 10px;
  --p-r-md: 14px;
  --p-r-lg: 20px;
  --p-r-xl: 28px;
  --p-r-2xl:36px;

  /* ── Ombres layered (SaaS premium, pas "pluche") ─────────────────── */
  --p-shadow-xs: 0 1px 2px rgba(10, 14, 30, 0.04),
                 0 0 0 1px rgba(10, 14, 30, 0.05);
  --p-shadow-sm: 0 2px 4px rgba(10, 14, 30, 0.05),
                 0 1px 2px rgba(10, 14, 30, 0.04),
                 0 0 0 1px rgba(10, 14, 30, 0.04);
  --p-shadow-md: 0 8px 24px -8px rgba(10, 14, 30, 0.12),
                 0 2px 6px rgba(10, 14, 30, 0.05),
                 0 0 0 1px rgba(10, 14, 30, 0.05);
  --p-shadow-lg: 0 24px 48px -16px rgba(10, 14, 30, 0.18),
                 0 8px 16px -8px rgba(10, 14, 30, 0.08),
                 0 0 0 1px rgba(10, 14, 30, 0.05);
  --p-shadow-glow: 0 18px 40px -12px rgba(79, 70, 229, 0.4),
                   0 8px 20px -8px rgba(79, 70, 229, 0.3);

  /* ── Motion ──────────────────────────────────────────────────────── */
  --p-ease:     cubic-bezier(0.2, 0.8, 0.2, 1);
  --p-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --p-dur-fast: 140ms;
  --p-dur-med:  220ms;
  --p-dur-slow: 380ms;

  /* ── Typographie ─────────────────────────────────────────────────── */
  --p-font: "Inter", "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --p-font-num: "Inter", "SF Mono", "Roboto Mono", monospace;

  /* ── Containers ──────────────────────────────────────────────────── */
  --p-container:       1200px;
  --p-container-wide:  1280px;
  --p-container-narrow: 920px;
}

/* =====================================================================
   BASE — override de acquisition.css
   ===================================================================== */

body.acq-body {
  font-family: var(--p-font);
  font-feature-settings: "cv11", "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--p-ink-800);
  background:
    radial-gradient(1000px 520px at 10% -10%, #e9ecf8 0%, rgba(233,236,248,0) 60%),
    radial-gradient(900px 480px at 92% -14%, #efeafd 0%, rgba(239,234,253,0) 58%),
    linear-gradient(180deg, var(--p-bg-alt) 0%, var(--p-bg) 360px);
  line-height: 1.6;
  letter-spacing: -0.005em;
}

/* Container standard, plus généreux */
.acq-container {
  width: min(var(--p-container), 92vw);
}
.acq-container-hero-wide {
  width: min(var(--p-container-wide), 94vw);
}

/* Typographie globale */
body.acq-body h1,
body.acq-body h2,
body.acq-body h3,
body.acq-body h4 {
  font-family: var(--p-font);
  color: var(--p-ink-900);
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.12;
}
body.acq-body h1 { font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 800; letter-spacing: -0.035em; }
body.acq-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); letter-spacing: -0.028em; }
body.acq-body h3 { font-size: 1.1rem; font-weight: 650; letter-spacing: -0.015em; }
body.acq-body p  { color: var(--p-ink-600); line-height: 1.7; }
body.acq-body .acq-muted { color: var(--p-ink-500); font-weight: 400; }

.acq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--p-primary-50);
  color: var(--p-primary-700);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  border: 1px solid var(--p-primary-100);
}

/* Numérique tabulaire sur toutes les stats */
.acq-stat strong,
.acq-price,
.acq-devis-label,
.acq-footer-stat strong {
  font-family: var(--p-font);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

/* =====================================================================
   TOPBAR — neutre discret, plus de promo criarde
   ===================================================================== */

.acq-topbar {
  background: var(--p-ink-900);
  color: rgba(255, 255, 255, 0.78);
  border: 0;
}
.acq-topbar-row {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.002em;
  min-height: 36px;
}
.acq-topbar-row span { color: rgba(255, 255, 255, 0.82); }
.acq-topbar-row strong { color: #fff; font-weight: 600; }

/* =====================================================================
   HEADER — sticky premium, nav claire
   ===================================================================== */

.acq-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--p-line);
  box-shadow: none;
}
.acq-header-main { min-height: 68px; }

.acq-brand {
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--p-ink-900);
}
.acq-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: var(--p-shadow-sm);
}
.acq-brand div {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--p-ink-900);
}
.acq-brand span {
  color: var(--p-ink-500);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 1px;
}

.acq-nav { gap: 2px; }
.acq-nav-link {
  color: var(--p-ink-600);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--p-r-sm);
  transition: color var(--p-dur-fast) var(--p-ease), background-color var(--p-dur-fast) var(--p-ease);
}
.acq-nav-link:hover {
  background: var(--p-surface-3);
  color: var(--p-ink-900);
}

/* CTA header */
.acq-header-cta .acq-btn {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.88rem;
  box-shadow: var(--p-shadow-sm);
}

.acq-menu-toggle {
  border: 1px solid var(--p-line);
  background: var(--p-surface);
  border-radius: var(--p-r-sm);
  color: var(--p-ink-700);
}

.acq-mobile-menu { border-top: 1px solid var(--p-line); background: var(--p-surface); }
.acq-mobile-menu a {
  border: 1px solid var(--p-line);
  background: var(--p-surface-2);
  border-radius: var(--p-r-sm);
  color: var(--p-ink-800);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 11px 13px;
}
.acq-mobile-menu a[data-nav="mobile_demande"] {
  background: var(--p-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--p-shadow-glow);
  font-weight: 600;
}
.acq-mobile-menu-group span {
  color: var(--p-ink-400);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* =====================================================================
   BOUTONS — reset total, indigo primaire
   ===================================================================== */

.acq-btn {
  font-family: var(--p-font);
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 11px 20px;
  letter-spacing: -0.005em;
  transition: transform var(--p-dur-fast) var(--p-ease),
              box-shadow var(--p-dur-fast) var(--p-ease),
              background-color var(--p-dur-fast) var(--p-ease),
              border-color var(--p-dur-fast) var(--p-ease),
              color var(--p-dur-fast) var(--p-ease);
}
.acq-btn:hover { transform: translateY(-1px); }
.acq-btn:active { transform: translateY(0) scale(0.985); transition-duration: 80ms; }
.acq-btn:focus-visible { outline: 0; box-shadow: 0 0 0 3px var(--p-ring); }

.acq-btn-primary {
  background: var(--p-primary);
  color: #fff;
  box-shadow: var(--p-shadow-sm);
}
.acq-btn-primary:hover {
  background: var(--p-primary-600);
  box-shadow: var(--p-shadow-md);
}

.acq-btn-secondary {
  background: var(--p-surface);
  color: var(--p-ink-800);
  border-color: var(--p-line-strong);
  box-shadow: var(--p-shadow-xs);
}
.acq-btn-secondary:hover {
  border-color: var(--p-ink-400);
  color: var(--p-ink-900);
}

.acq-btn-ghost {
  background: transparent;
  color: var(--p-ink-700);
  border-color: var(--p-line);
}
.acq-btn-ghost:hover {
  background: var(--p-surface-3);
  color: var(--p-ink-900);
}

.acq-btn-sm {
  padding: 8px 14px;
  font-size: 0.84rem;
  border-radius: 10px;
}

/* =====================================================================
   MAIN LAYOUT
   ===================================================================== */

.acq-main {
  padding: 48px 0 64px;
}
@media (max-width: 768px) {
  .acq-main { padding: 28px 0 40px; }
}

/* =====================================================================
   HERO — nouveau layout asymétrique
   ===================================================================== */

.acq-hero {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.acq-hero-single { display: block; }
.acq-hero-single .acq-hero-main {
  padding: 56px clamp(28px, 4vw, 64px);
  text-align: left;
}

.acq-card {
  background: var(--p-surface);
  border-radius: var(--p-r-xl);
  border: 1px solid var(--p-line);
  box-shadow: var(--p-shadow-sm);
  padding: 32px;
  transition: box-shadow var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease);
}

.acq-hero-main {
  padding: 48px clamp(28px, 3.5vw, 52px);
  background:
    radial-gradient(600px 280px at 90% 0%, rgba(124, 58, 237, 0.06) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(400px 220px at 0% 100%, rgba(79, 70, 229, 0.05) 0%, rgba(255,255,255,0) 55%),
    var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-2xl);
  box-shadow: var(--p-shadow-md);
}
.acq-hero-main h1 {
  margin: 14px 0 16px;
  max-width: 18ch;
}
.acq-hero-main .acq-muted {
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 56ch;
  color: var(--p-ink-500);
}

.acq-hero-aside {
  padding: 28px;
  border-radius: var(--p-r-xl);
  background: var(--p-gradient-soft);
  border: 1px solid var(--p-primary-100);
  box-shadow: var(--p-shadow-sm);
  color: var(--p-ink-900);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acq-hero-aside h2 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--p-ink-900);
}
.acq-hero-aside .acq-proof-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--p-surface);
  border: 1px solid var(--p-primary-100);
  color: var(--p-primary-700);
  font-size: 0.76rem;
  font-weight: 600;
}
.acq-hero-aside .acq-proof-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p-success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18);
  animation: p-pulse 1.8s infinite;
}
@keyframes p-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.06); }
}

.acq-category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acq-category-link {
  padding: 13px 14px;
  border-radius: var(--p-r-md);
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  color: var(--p-ink-800);
  font-weight: 550;
  font-size: 0.93rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color var(--p-dur-fast) var(--p-ease),
              transform var(--p-dur-fast) var(--p-ease),
              box-shadow var(--p-dur-fast) var(--p-ease);
}
.acq-category-link:hover {
  border-color: var(--p-primary);
  transform: translateX(2px);
  box-shadow: var(--p-shadow-xs);
  color: var(--p-primary-700);
}

/* CTA stack dans le hero */
.acq-cta-stack { gap: 8px; }
.acq-hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}
.acq-hero-cta-stack .acq-btn-primary {
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: var(--p-shadow-glow);
}
.acq-microcopy {
  color: var(--p-ink-400);
  font-size: 0.82rem;
  font-weight: 500;
}

.acq-reassurance-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 8px;
}
.acq-reassurance-inline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--p-ink-500);
  font-size: 0.82rem;
  font-weight: 500;
}
.acq-reassurance-inline span::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M2.5 7.5l3 3 6-7' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center/contain;
}

/* Stats row */
.acq-stats-row,
.acq-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--p-line);
}
.acq-stat {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.acq-stat strong {
  color: var(--p-ink-900);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.acq-stat span {
  color: var(--p-ink-500);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .acq-hero { grid-template-columns: 1fr; }
  .acq-stats-row, .acq-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   TRUST BAND — logo row minimal, pas de gros pavés
   ===================================================================== */

.acq-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 24px;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  box-shadow: var(--p-shadow-xs);
  margin: 12px 0 48px;
}
.acq-trust-pill {
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.acq-trust-pill:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--p-line);
}
.acq-trust-pill strong {
  color: var(--p-ink-900);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.acq-trust-pill span {
  color: var(--p-ink-500);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .acq-trust-band { grid-template-columns: 1fr 1fr; }
  .acq-trust-pill:nth-child(2)::after { display: none; }
}
@media (max-width: 520px) {
  .acq-trust-band { grid-template-columns: 1fr; gap: 12px; }
  .acq-trust-pill::after { display: none !important; }
}

/* =====================================================================
   SECTION SHELL — rythme vertical, alternance
   ===================================================================== */

.acq-section-shell {
  margin: 96px 0;
  scroll-margin-top: 100px;
}
.acq-section-shell:first-of-type { margin-top: 64px; }
@media (max-width: 768px) {
  .acq-section-shell { margin: 60px 0; }
}

.acq-section-head {
  display: block;
  max-width: 680px;
  margin-bottom: 32px;
}
.acq-section-head--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.acq-section-head--left { max-width: none; }
.acq-section-head h2 { margin: 6px 0 10px; }
.acq-section-head .acq-muted { font-size: 1.05rem; color: var(--p-ink-500); }
.acq-section-head .acq-kicker { margin-bottom: 6px; }

/* =====================================================================
   CATALOG GRID (services)
   ===================================================================== */

.acq-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.acq-catalog-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.acq-catalog-card {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--p-shadow-xs);
  transition: transform var(--p-dur-med) var(--p-ease),
              box-shadow var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease);
  position: relative;
}
.acq-catalog-card:hover {
  transform: translateY(-3px);
  border-color: var(--p-line-strong);
  box-shadow: var(--p-shadow-md);
}
.acq-catalog-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--p-ink-900);
  font-weight: 650;
}
.acq-catalog-card > .acq-muted {
  font-size: 0.95rem;
  color: var(--p-ink-500);
  margin: 0;
}
.acq-catalog-list {
  list-style: none;
  margin: 4px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.acq-catalog-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--p-ink-700);
}
.acq-catalog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    var(--p-success-50)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.5l2.5 2.5 5-5.5' stroke='%23059669' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center/11px;
}
.acq-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--p-ink-900);
  letter-spacing: -0.035em;
  margin: 4px 0;
  line-height: 1;
}
.acq-price-note {
  font-size: 0.78rem;
  color: var(--p-ink-400);
  font-weight: 500;
  margin: 0 0 10px;
}
.acq-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acq-card-footer .acq-btn { width: 100%; }

.acq-catalog-card--featured {
  border-color: var(--p-primary);
  box-shadow: var(--p-shadow-md);
  background:
    linear-gradient(180deg, rgba(79,70,229,0.025), rgba(255,255,255,0) 40%),
    var(--p-surface);
}
.acq-catalog-card--featured::before {
  content: "Recommandé";
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--p-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: var(--p-shadow-sm);
}

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

/* =====================================================================
   COMPARE GRID — faire seul vs avec Keybis
   ===================================================================== */

.acq-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.acq-compare-item {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--p-shadow-xs);
}
.acq-compare-item h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--p-ink-900);
  font-weight: 650;
}
.acq-compare-item .acq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acq-compare-item .acq-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--p-ink-600);
}
.acq-compare-item:not(.acq-compare-item-highlight) .acq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 2px;
  background: var(--p-ink-300);
  border-radius: 2px;
}
.acq-compare-item-highlight {
  background:
    linear-gradient(180deg, rgba(79,70,229,0.03), rgba(255,255,255,0) 50%),
    var(--p-surface);
  border-color: var(--p-primary-100);
  box-shadow: var(--p-shadow-sm);
}
.acq-compare-item-highlight h3 { color: var(--p-primary-700); }
.acq-compare-item-highlight .acq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background:
    var(--p-success-50)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.5l2.5 2.5 5-5.5' stroke='%23059669' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center/10px;
  border-radius: 50%;
}

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

/* =====================================================================
   TIMELINE / PROCESS
   ===================================================================== */

.acq-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
  position: relative;
}
.acq-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--p-primary-100), var(--p-primary) 50%, var(--p-primary-100));
  z-index: 0;
}
.acq-timeline-step {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 28px 20px 20px;
  position: relative;
  text-align: center;
  z-index: 1;
  box-shadow: var(--p-shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.acq-timeline-step > span {
  width: 38px;
  height: 38px;
  background: var(--p-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--p-shadow-glow);
}
.acq-timeline-step h3 { font-size: 0.98rem; margin: 8px 0 2px; }
.acq-timeline-step .acq-muted { font-size: 0.85rem; line-height: 1.55; }
@media (max-width: 900px) {
  .acq-timeline { grid-template-columns: 1fr 1fr; }
  .acq-timeline::before { display: none; }
}
@media (max-width: 520px) {
  .acq-timeline { grid-template-columns: 1fr; }
}

/* Process premium (pages service) */
.acq-process-premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.acq-process-step-premium {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  box-shadow: var(--p-shadow-xs);
  transition: border-color var(--p-dur-fast) var(--p-ease);
}
.acq-process-step-premium:hover { border-color: var(--p-line-strong); }
.acq-process-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--p-primary-50);
  color: var(--p-primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid var(--p-primary-100);
}
.acq-process-body h3 { margin: 2px 0 4px; font-size: 1rem; }
.acq-process-body .acq-muted { font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 640px) {
  .acq-process-premium { grid-template-columns: 1fr; }
}

/* =====================================================================
   BENEFITS GRID (pages service)
   ===================================================================== */

.acq-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.acq-benefit-card {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 24px;
  box-shadow: var(--p-shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease);
}
.acq-benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--p-line-strong);
}
.acq-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--p-primary-50);
  color: var(--p-primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--p-primary-100);
}
.acq-benefit-card h3 { margin: 4px 0 0; font-size: 1.02rem; }
.acq-benefit-card .acq-muted { font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 900px) { .acq-benefits-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   TÉMOIGNAGES / RÉSULTATS
   ===================================================================== */

.acq-proof-grid,
.acq-proof-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.acq-testimonial,
.acq-testimonial-card,
.acq-case {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 24px;
  box-shadow: var(--p-shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acq-testimonial strong,
.acq-testimonial-name {
  color: var(--p-ink-900);
  font-size: 0.92rem;
  font-weight: 650;
}
.acq-testimonial p,
.acq-testimonial-quote {
  margin: 0;
  color: var(--p-ink-700);
  font-size: 0.98rem;
  line-height: 1.65;
}
.acq-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.acq-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--p-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.acq-testimonial-avatar--b { background: linear-gradient(135deg, #059669, #0284c7); }
.acq-testimonial-role { color: var(--p-ink-500); font-size: 0.82rem; font-weight: 400; }
.acq-testimonial-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 1px; }

.acq-case strong,
.acq-result-card strong {
  color: var(--p-ink-900);
  font-size: 0.92rem;
  font-weight: 650;
}
.acq-case p { margin: 0; color: var(--p-ink-700); font-size: 0.92rem; line-height: 1.65; }
.acq-case p strong { color: var(--p-ink-900); font-size: inherit; }

.acq-result-card {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--p-shadow-xs);
}
.acq-result-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--p-primary-700);
}
.acq-result-before, .acq-result-after {
  padding: 10px 12px;
  border-radius: var(--p-r-sm);
  background: var(--p-surface-3);
}
.acq-result-after {
  background: var(--p-success-50);
  border: 1px solid rgba(5, 150, 105, 0.2);
}
.acq-result-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-ink-500);
  display: block;
  margin-bottom: 2px;
}
.acq-result-after .acq-result-label { color: var(--p-success); }
.acq-result-before p, .acq-result-after p { margin: 0; font-size: 0.88rem; color: var(--p-ink-700); line-height: 1.55; }

.acq-proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  padding: 14px 20px;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: 999px;
  box-shadow: var(--p-shadow-xs);
  margin: 0 auto 24px;
  width: fit-content;
  max-width: 100%;
}
.acq-proof-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--p-ink-700);
  font-size: 0.85rem;
  font-weight: 500;
}
.acq-proof-stat-icon { color: var(--p-success); flex-shrink: 0; }
.acq-proof-stats-sep { color: var(--p-ink-300); }

@media (max-width: 900px) {
  .acq-proof-grid, .acq-proof-grid-v2 { grid-template-columns: 1fr; }
}

/* =====================================================================
   PREP CARD / CHECKLIST
   ===================================================================== */

.acq-prep-card {
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(124, 58, 237, 0.07) 0%, rgba(255,255,255,0) 60%),
    var(--p-surface);
  border: 1px solid var(--p-primary-100);
  border-radius: var(--p-r-2xl);
  padding: 40px clamp(24px, 3.5vw, 52px);
  box-shadow: var(--p-shadow-md);
}
.acq-prep-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.acq-prep-title {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--p-ink-900);
}
.acq-prep-subtitle {
  color: var(--p-ink-500);
  font-size: 1rem;
  margin: 0 0 24px;
}
.acq-prep-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  text-align: left;
}
.acq-prep-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--p-ink-700);
  font-weight: 500;
}
.acq-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--p-success-50);
  color: var(--p-success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acq-prep-reassurance {
  padding: 12px 16px;
  background: var(--p-surface-3);
  border-radius: var(--p-r-md);
  font-size: 0.9rem;
  color: var(--p-ink-700);
  margin-bottom: 20px;
  display: inline-block;
}
.acq-prep-cta-block { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.acq-prep-time { margin: 0; font-size: 0.85rem; color: var(--p-ink-500); font-weight: 500; }
.acq-prep-btn { padding: 13px 28px; font-size: 0.98rem; box-shadow: var(--p-shadow-glow); }
@media (max-width: 640px) {
  .acq-prep-items { grid-template-columns: 1fr; }
}

/* =====================================================================
   CHECKLIST générique
   ===================================================================== */

.acq-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acq-checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--p-ink-700);
  line-height: 1.5;
}
.acq-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    var(--p-success-50)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.5l2.5 2.5 5-5.5' stroke='%23059669' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center/10px;
}

/* =====================================================================
   EDITORIAL / RESOURCE / GUIDE CARDS
   ===================================================================== */

.acq-editorial-grid,
.acq-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.acq-guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.acq-resource-card,
.acq-guide-card {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 24px;
  box-shadow: var(--p-shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease),
              box-shadow var(--p-dur-med) var(--p-ease);
}
.acq-resource-card:hover,
.acq-guide-card:hover {
  transform: translateY(-2px);
  border-color: var(--p-line-strong);
  box-shadow: var(--p-shadow-sm);
}
.acq-resource-card h3,
.acq-guide-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--p-ink-900);
  line-height: 1.35;
}
.acq-resource-card .acq-muted,
.acq-guide-card .acq-muted {
  font-size: 0.88rem;
  line-height: 1.55;
  flex: 1;
}
.acq-guide-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--p-primary-50);
  color: var(--p-primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--p-primary-100);
  margin-bottom: 4px;
}
.acq-guide-icon--b { background: var(--p-success-50); color: var(--p-success); border-color: rgba(5,150,105,0.2); }
.acq-guide-icon--c { background: var(--p-warning-50); color: var(--p-warning); border-color: rgba(217,119,6,0.2); }

.acq-resource-card .acq-actions,
.acq-guide-card .acq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

@media (max-width: 960px) {
  .acq-editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .acq-guide-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .acq-editorial-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   FAQ
   ===================================================================== */

.acq-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}
.acq-faq,
.acq-faq-item {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-md);
  padding: 0;
  box-shadow: none;
  transition: border-color var(--p-dur-fast) var(--p-ease),
              box-shadow var(--p-dur-fast) var(--p-ease);
}
.acq-faq[open],
.acq-faq-item[open] {
  border-color: var(--p-primary-100);
  box-shadow: var(--p-shadow-sm);
}
.acq-faq summary,
.acq-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--p-ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.acq-faq summary::-webkit-details-marker,
.acq-faq-item summary::-webkit-details-marker { display: none; }
.acq-faq summary::after,
.acq-faq-item summary::after {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    var(--p-surface-3)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M3 4.5l3 3 3-3' stroke='%231f2742' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center/12px;
  transition: transform var(--p-dur-fast) var(--p-ease);
}
.acq-faq[open] summary::after,
.acq-faq-item[open] summary::after { transform: rotate(180deg); }

.acq-faq p,
.acq-faq-body {
  padding: 0 24px 20px;
  color: var(--p-ink-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.acq-faq-body p { margin: 0 0 10px; color: var(--p-ink-600); }
.acq-faq-body p:last-child { margin: 0; }
.acq-faq-body p strong { color: var(--p-ink-900); font-weight: 600; }

.acq-faq-cta {
  text-align: center;
  margin-top: 32px;
  color: var(--p-ink-500);
  font-size: 0.95rem;
}
.acq-faq-cta p { margin: 0 0 10px; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */

.acq-cta-banner { margin: 72px 0 24px; }
.acq-final-cta,
.acq-final-cta-v2 {
  background:
    radial-gradient(800px 400px at 90% 20%, rgba(124, 58, 237, 0.55) 0%, rgba(124, 58, 237, 0) 50%),
    radial-gradient(800px 400px at 10% 80%, rgba(79, 70, 229, 0.55) 0%, rgba(79, 70, 229, 0) 50%),
    linear-gradient(135deg, #1a1540 0%, #2d1b69 100%);
  color: #fff;
  border-radius: var(--p-r-2xl);
  padding: 56px clamp(28px, 4vw, 64px);
  box-shadow: var(--p-shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.acq-final-cta::before,
.acq-final-cta-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.acq-final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.acq-final-cta h2,
.acq-final-cta-title {
  color: #fff;
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: -0.028em;
  line-height: 1.2;
}
.acq-final-cta .acq-muted,
.acq-final-cta-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}
.acq-final-social-proof {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 500;
  margin: 2px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.acq-final-social-proof::before {
  content: "★";
  color: #f59e0b;
}
.acq-final-micro-tension {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-style: italic;
  margin: 4px 0 14px;
}

.acq-final-cta .acq-actions,
.acq-final-cta-btn {
  display: inline-flex;
  margin-top: 10px;
}
.acq-final-cta-btn {
  background: #fff;
  color: var(--p-primary-700);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 650;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
}
.acq-final-cta-btn:hover {
  background: #fff;
  color: var(--p-primary);
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.45);
}
.acq-final-cta .acq-btn-primary {
  background: #fff;
  color: var(--p-primary-700);
}
.acq-final-cta .acq-microcopy { color: rgba(255, 255, 255, 0.55); }

.acq-final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}
.acq-final-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.acq-final-trust-item svg path { stroke: #a78bfa; }
.acq-final-trust-sep { color: rgba(255, 255, 255, 0.3); }

/* =====================================================================
   MOBILE STICKY CTA
   ===================================================================== */

.acq-mobile-sticky-wrap {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--p-line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -8px rgba(10, 14, 30, 0.1);
}
.acq-mobile-sticky-wrap .acq-btn { width: 100%; min-height: 48px; font-size: 0.98rem; }
.acq-mobile-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--p-ink-500);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .acq-mobile-sticky-wrap {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
  }
  body.acq-body { padding-bottom: 90px; }
}

/* =====================================================================
   DEVIS LABEL (modification)
   ===================================================================== */

.acq-devis-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--p-primary-700);
  background: var(--p-primary-50);
  padding: 6px 11px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid var(--p-primary-100);
}

/* =====================================================================
   ARTICLE BODY (pages légales / à propos)
   ===================================================================== */

.acq-article-body {
  max-width: 740px;
  padding: 40px clamp(24px, 3.5vw, 48px);
}
.acq-article-body h2 {
  margin: 28px 0 10px;
  font-size: 1.3rem;
}
.acq-article-body h2:first-child { margin-top: 0; }
.acq-article-body h3 {
  margin: 22px 0 6px;
  font-size: 1.02rem;
  color: var(--p-ink-900);
}
.acq-article-body p {
  margin: 0 0 12px;
  color: var(--p-ink-600);
  font-size: 1rem;
  line-height: 1.75;
}
.acq-article-body p strong { color: var(--p-ink-900); font-weight: 600; }
.acq-article-body ul {
  padding-left: 22px;
  margin: 0 0 14px;
  color: var(--p-ink-600);
  line-height: 1.75;
}
.acq-article-body a { color: var(--p-primary); text-decoration: underline; text-underline-offset: 3px; }

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

.acq-footer {
  background: var(--p-ink-900);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 64px;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.acq-footer .acq-container { max-width: var(--p-container); }

.acq-footer-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 48px;
}
.acq-footer-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--p-r-lg);
  border-left: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 12px rgba(0,0,0,0.2);
  transition: background var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease),
              transform var(--p-dur-med) var(--p-ease);
}
.acq-footer-stat:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(167, 139, 250, 0.35);
  transform: translateY(-1px);
}
.acq-footer-stat:first-child { border-left: 1px solid rgba(255,255,255,0.14); }
.acq-footer-stat-icon,
svg.acq-footer-stat-icon {
  width: 36px !important;
  height: 36px !important;
  box-sizing: border-box;
  padding: 9px;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 10px;
  margin-bottom: 4px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
}
.acq-footer-stat-icon path,
.acq-footer-stat-icon circle {
  stroke: #c4b5fd;
}
.acq-footer-stat strong {
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.acq-footer-stat span {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.003em;
}
@media (max-width: 960px) {
  .acq-footer-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .acq-footer-stats { grid-template-columns: 1fr 1fr; }
  .acq-footer-stat { padding: 16px 14px; }
  .acq-footer-stat strong { font-size: 1.3rem; }
}

.acq-footer-sep { display: none; }

.acq-footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.acq-footer-col { display: flex; flex-direction: column; gap: 10px; }
.acq-footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.acq-footer-col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--p-dur-fast) var(--p-ease);
}
.acq-footer-col a:hover { color: #fff; }
.acq-footer-brand-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.acq-footer-brand-desc {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 4px 0 8px;
}
.acq-footer-cta {
  align-self: flex-start;
  background: #fff;
  color: var(--p-primary-700) !important;
  box-shadow: none;
}
.acq-footer-cta:hover { background: var(--p-primary-50); color: var(--p-primary-700) !important; }

.acq-footer-tag,
.acq-footer-info {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
  padding: 3px 0;
}
.acq-footer-tag::before { content: "● "; color: var(--p-success); }

.acq-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}
.acq-footer-bottom-trust { font-size: 0.78rem; }

@media (max-width: 960px) {
  .acq-footer-stats { grid-template-columns: repeat(2, 1fr); }
  .acq-footer-stat:nth-child(3) { border-left: 0; }
  .acq-footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .acq-footer-col.acq-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .acq-footer-stats { grid-template-columns: 1fr 1fr; padding: 12px; }
  .acq-footer-stat { padding: 6px 10px; }
  .acq-footer-main { grid-template-columns: 1fr; }
}

/* =====================================================================
   SKIP LINK
   ===================================================================== */

.acq-skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--p-primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 100;
}
.acq-skip-link:focus { top: 8px; }

/* =====================================================================
   SCROLL REVEAL — forcer visible sans JS (comme premium v1)
   ===================================================================== */

.acq-scroll-reveal,
[class*="scroll-reveal"] {
  opacity: 1 !important;
  transform: none !important;
}

/* =====================================================================
   UTILITIES
   ===================================================================== */

.acq-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 700px) { .acq-grid-2 { grid-template-columns: 1fr; } }

.acq-section { padding: 24px 0; }

/* Meilleure lecture sur la section compare en fond alterné */
.acq-section-shell:nth-child(even) .acq-compare-grid .acq-compare-item,
.acq-section-shell:nth-child(even) .acq-catalog-card {
  background: var(--p-surface);
}

/* =====================================================================
   PATCH v2.1 — lisibilité, témoignages enrichis, estimation, forms, widget
   ===================================================================== */

/* ── Prix "estimation" (remplace le 549 €) ───────────────────────────── */
.acq-price.acq-price--estimate {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--p-primary-700);
  background: var(--p-primary-50);
  padding: 10px 14px;
  border-radius: var(--p-r-md);
  border: 1px solid var(--p-primary-100);
  display: inline-block;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.acq-price.acq-price--estimate small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--p-primary);
  margin-top: 2px;
  letter-spacing: 0;
}
.acq-devis-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--p-primary-700);
  background: var(--p-primary-50);
  padding: 8px 13px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid var(--p-primary-100);
  letter-spacing: -0.005em;
}
.ccm-pricing-amount.ccm-pricing-estimate {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--p-primary-700);
  letter-spacing: -0.02em;
}

/* ── Rating banner (au-dessus témoignages) ───────────────────────────── */
.acq-rating-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 14px 22px;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: 999px;
  box-shadow: var(--p-shadow-xs);
  max-width: fit-content;
  margin: 0 auto 36px;
}
.acq-rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.acq-rating-value {
  font-size: 1rem;
  color: var(--p-ink-900);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.acq-rating-value strong {
  color: var(--p-ink-900);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-right: 2px;
}
.acq-rating-meta {
  color: var(--p-ink-500);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Testimonials avec photos ─────────────────────────────────────────── */
.acq-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.acq-testimonials-grid .acq-testimonial-card {
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--p-shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease),
              box-shadow var(--p-dur-med) var(--p-ease);
}
.acq-testimonials-grid .acq-testimonial-card:hover {
  transform: translateY(-2px);
  border-color: var(--p-line-strong);
  box-shadow: var(--p-shadow-sm);
}
.acq-testimonials-grid .acq-testimonial-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}
.acq-testimonials-grid .acq-testimonial-quote {
  margin: 0;
  color: var(--p-ink-800);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 450;
  flex: 1;
  border-left: 3px solid var(--p-primary-100);
  padding-left: 14px;
}
.acq-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--p-line);
}
.acq-testimonial-photo,
.acq-testimonial-header .acq-testimonial-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--p-primary-50);
  flex-shrink: 0;
  border: 2px solid var(--p-surface);
  box-shadow: var(--p-shadow-xs);
}

/* Compat pour les pages service qui gardent testimonial-header */
.acq-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.acq-testimonials-grid .acq-testimonial-name {
  color: var(--p-ink-900);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.005em;
}
.acq-testimonials-grid .acq-testimonial-role {
  color: var(--p-ink-500);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 960px) {
  .acq-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .acq-testimonials-grid { grid-template-columns: 1fr; }
}

/* ── LISIBILITÉ : forcer les textes clairs sur tous les fonds dark ──── */

/* Topbar dark */
.acq-topbar,
.acq-topbar * { color: rgba(255, 255, 255, 0.85) !important; }
.acq-topbar strong { color: #fff !important; }

/* CTA final dark — blindage */
.acq-final-cta,
.acq-final-cta-v2 { color: #fff; }
.acq-final-cta h2,
.acq-final-cta h3,
.acq-final-cta p,
.acq-final-cta-v2 h2,
.acq-final-cta-v2 h3,
.acq-final-cta-v2 p,
.acq-final-cta-title,
.acq-final-cta-sub { color: #fff !important; }
.acq-final-cta-sub,
.acq-final-cta .acq-muted { color: rgba(255, 255, 255, 0.82) !important; }
.acq-final-social-proof { color: rgba(255, 255, 255, 0.75) !important; }
.acq-final-micro-tension { color: rgba(255, 255, 255, 0.62) !important; }
.acq-final-trust,
.acq-final-trust-item { color: rgba(255, 255, 255, 0.78) !important; }
.acq-final-trust svg path { stroke: #a78bfa !important; }

/* Footer dark — blindage */
.acq-footer,
.acq-footer p,
.acq-footer span,
.acq-footer a,
.acq-footer h4 { color: rgba(255, 255, 255, 0.72); }
.acq-footer h4 { color: #fff !important; }
.acq-footer-brand-name,
.acq-footer-stat strong { color: #fff !important; }
.acq-footer-col a { color: rgba(255, 255, 255, 0.65); }
.acq-footer-col a:hover { color: #fff; }
.acq-footer-info,
.acq-footer-tag { color: rgba(255, 255, 255, 0.5); }
.acq-footer-bottom,
.acq-footer-bottom span { color: rgba(255, 255, 255, 0.52); }

/* Hero aside (fond violet pâle) — texte sombre forcé */
.acq-hero-aside,
.acq-hero-aside h2,
.acq-hero-aside h3,
.acq-hero-aside p,
.acq-hero-aside span,
.acq-hero-aside li { color: var(--p-ink-800); }
.acq-hero-aside .acq-checklist li { color: var(--p-ink-700); }
.acq-hero-aside-hint {
  color: var(--p-ink-600);
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 4px;
}
.acq-hero-aside-hint svg { color: var(--p-primary); }

/* Cache les blocs vides potentiels (acq-actions sans boutons etc.) */
.acq-hero-aside .acq-actions:empty,
.acq-card-footer:empty,
.acq-actions:empty { display: none !important; }

/* =====================================================================
   FORMULAIRE SaaS premium
   ===================================================================== */

.acq-form-shell {
  max-width: 680px;
  margin: 0 auto;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--p-shadow-md);
}
.acq-form-head { margin-bottom: 24px; }
.acq-form-head h1, .acq-form-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 6px 0 8px;
}
.acq-form-head p { color: var(--p-ink-500); font-size: 1rem; margin: 0; }

.acq-form-progress {
  display: flex;
  gap: 8px;
  margin: 0 0 28px;
}
.acq-form-progress-step {
  flex: 1;
  height: 4px;
  background: var(--p-line);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.acq-form-progress-step.is-active { background: var(--p-primary); }
.acq-form-progress-step.is-done { background: var(--p-primary-600); }

.acq-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.acq-form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--p-ink-800);
  letter-spacing: -0.005em;
}
.acq-form-label .acq-form-required { color: var(--p-danger); margin-left: 2px; }
.acq-form-hint {
  font-size: 0.8rem;
  color: var(--p-ink-500);
  font-weight: 400;
  line-height: 1.4;
}

.acq-form-input,
.acq-form-select,
.acq-form-textarea {
  width: 100%;
  font-family: var(--p-font);
  font-size: 0.95rem;
  color: var(--p-ink-900);
  background: var(--p-surface);
  border: 1px solid var(--p-line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.4;
  transition: border-color var(--p-dur-fast) var(--p-ease),
              box-shadow var(--p-dur-fast) var(--p-ease),
              background-color var(--p-dur-fast) var(--p-ease);
  box-shadow: var(--p-shadow-xs);
  -webkit-appearance: none;
  appearance: none;
}
.acq-form-input::placeholder,
.acq-form-textarea::placeholder { color: var(--p-ink-300); }
.acq-form-input:hover,
.acq-form-select:hover,
.acq-form-textarea:hover { border-color: var(--p-ink-300); }
.acq-form-input:focus,
.acq-form-select:focus,
.acq-form-textarea:focus {
  outline: 0;
  border-color: var(--p-primary);
  box-shadow: 0 0 0 3px var(--p-ring);
  background: var(--p-surface);
}
.acq-form-textarea { resize: vertical; min-height: 110px; }
.acq-form-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M3 4.5l3 3 3-3' stroke='%235a6486' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

/* Radio/checkbox cards (UX card select, mieux qu'un select) */
.acq-form-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.acq-form-card {
  position: relative;
  padding: 14px 16px;
  background: var(--p-surface);
  border: 1.5px solid var(--p-line-strong);
  border-radius: var(--p-r-md);
  cursor: pointer;
  transition: border-color var(--p-dur-fast) var(--p-ease),
              background var(--p-dur-fast) var(--p-ease),
              transform var(--p-dur-fast) var(--p-ease);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.acq-form-card:hover { border-color: var(--p-primary); transform: translateY(-1px); }
.acq-form-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.acq-form-card input:checked + .acq-form-card-body,
.acq-form-card:has(input:checked) {
  border-color: var(--p-primary);
  background: var(--p-primary-50);
  box-shadow: 0 0 0 3px var(--p-ring);
}
.acq-form-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--p-ink-900);
  letter-spacing: -0.005em;
}
.acq-form-card-desc {
  font-size: 0.82rem;
  color: var(--p-ink-500);
  line-height: 1.45;
}

.acq-form-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--p-line);
}
.acq-form-actions .acq-btn-primary { padding: 12px 26px; }
.acq-form-footnote {
  font-size: 0.78rem;
  color: var(--p-ink-400);
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.5;
}
.acq-form-footnote a { color: var(--p-primary); text-decoration: underline; text-underline-offset: 3px; }

/* Groupe à deux colonnes */
.acq-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .acq-form-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   WIDGET QUICK-QUALIF (side panel)
   ===================================================================== */

.kq-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  background: var(--p-gradient);
  color: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: var(--p-shadow-glow);
  cursor: pointer;
  font-family: var(--p-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform var(--p-dur-fast) var(--p-ease),
              box-shadow var(--p-dur-fast) var(--p-ease);
}
.kq-toggle:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -12px rgba(79, 70, 229, 0.5); }
.kq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.kq-toggle-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.35);
  animation: kq-pulse 1.8s infinite;
}
@keyframes kq-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12); }
}

.kq-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: min(380px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-xl);
  box-shadow: 0 40px 80px -20px rgba(10, 14, 30, 0.35),
              0 16px 32px -12px rgba(10, 14, 30, 0.2),
              0 0 0 1px rgba(10, 14, 30, 0.06);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: kq-pop 0.22s var(--p-ease-out);
}
.kq-panel[data-open="true"] { display: flex; }
@keyframes kq-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.kq-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--p-gradient);
  color: #fff;
}
.kq-header-title {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
}
.kq-header-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.3;
  display: block;
}
.kq-close {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background var(--p-dur-fast) var(--p-ease);
}
.kq-close:hover { background: rgba(255, 255, 255, 0.3); }

.kq-body {
  padding: 20px 18px;
  overflow-y: auto;
}
.kq-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.kq-progress-step {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: var(--p-line);
}
.kq-progress-step.is-active { background: var(--p-primary); }
.kq-progress-step.is-done { background: var(--p-primary); }

.kq-step { display: none; flex-direction: column; gap: 12px; }
.kq-step[data-active="true"] { display: flex; }

.kq-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--p-ink-900);
  margin: 0 0 2px;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.kq-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kq-option {
  padding: 12px 14px;
  background: var(--p-surface);
  border: 1.5px solid var(--p-line-strong);
  border-radius: 10px;
  color: var(--p-ink-800);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--p-dur-fast) var(--p-ease),
              background var(--p-dur-fast) var(--p-ease),
              transform var(--p-dur-fast) var(--p-ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--p-font);
}
.kq-option:hover {
  border-color: var(--p-primary);
  background: var(--p-primary-50);
  transform: translateX(2px);
}
.kq-option-sub {
  font-size: 0.75rem;
  color: var(--p-ink-500);
  font-weight: 400;
  margin-top: 1px;
  display: block;
}
.kq-option-arrow {
  color: var(--p-ink-400);
  flex-shrink: 0;
}

.kq-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--p-line);
  background: var(--p-surface-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.kq-back {
  background: transparent;
  border: 0;
  color: var(--p-ink-500);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background var(--p-dur-fast) var(--p-ease);
  font-family: var(--p-font);
}
.kq-back:hover { background: var(--p-surface-3); color: var(--p-ink-800); }
.kq-microcopy {
  font-size: 0.74rem;
  color: var(--p-ink-400);
  font-weight: 500;
}

@media (max-width: 560px) {
  .kq-panel { right: 8px; bottom: 8px; left: 8px; width: auto; }
  .kq-toggle { right: 12px; bottom: 12px; padding: 10px 14px 10px 10px; font-size: 0.84rem; }
}

/* Décale le sticky mobile quand le toggle widget est visible */
@media (max-width: 768px) {
  body.acq-body { padding-bottom: 96px; }
}

/* =====================================================================
   PATCH v2.2 — trust-band premium + social proof unifié + mobile fix
   ===================================================================== */

/* ── Trust-band : 4 cards SaaS contrastées avec icônes ──────────────── */
.acq-trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 24px 0 60px;
}
.acq-trust-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 22px;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: var(--p-r-lg);
  box-shadow: var(--p-shadow-sm);
  position: relative;
  transition: transform var(--p-dur-med) var(--p-ease),
              border-color var(--p-dur-med) var(--p-ease),
              box-shadow var(--p-dur-med) var(--p-ease);
}
.acq-trust-pill::after { display: none !important; } /* reset old separator */
.acq-trust-pill::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--p-primary-50) no-repeat center / 20px;
  border: 1px solid var(--p-primary-100);
  display: block;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.acq-trust-pill:hover {
  transform: translateY(-2px);
  border-color: var(--p-line-strong);
  box-shadow: var(--p-shadow-md);
}
.acq-trust-pill strong {
  color: var(--p-ink-900);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.3;
  display: block;
}
.acq-trust-pill span {
  color: var(--p-ink-700) !important;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.003em;
}

/* Icônes par position (data-driven) — fonctionne sur les 4 premières pills */
.acq-trust-pill:nth-child(1)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M3 10.5l3 3 7-8.5' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M10 4l6 3v4c0 3.5-2.5 6-6 7' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.acq-trust-pill:nth-child(2)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><rect x='3' y='5' width='14' height='11' rx='2' stroke='%234f46e5' stroke-width='2'/><path d='M7 9h6M7 12h4' stroke='%234f46e5' stroke-width='2' stroke-linecap='round'/></svg>");
}
.acq-trust-pill:nth-child(3)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><circle cx='10' cy='10' r='7' stroke='%234f46e5' stroke-width='2'/><path d='M10 6v4l3 2' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.acq-trust-pill:nth-child(4)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><rect x='4' y='9' width='12' height='8' rx='2' stroke='%234f46e5' stroke-width='2'/><path d='M7 9V6.5a3 3 0 013-3v0a3 3 0 013 3V9' stroke='%234f46e5' stroke-width='2' stroke-linecap='round'/></svg>");
}

/* Responsive */
@media (max-width: 960px) {
  .acq-trust-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .acq-trust-band { grid-template-columns: 1fr; }
  .acq-trust-pill { padding: 18px 18px; }
}

/* ── Social-proof inline boostée (+500, 4.9/5) ──────────────────────── */
.acq-reassurance-inline {
  gap: 8px 18px;
}
.acq-reassurance-inline span {
  color: var(--p-ink-700) !important;
  font-size: 0.87rem;
  font-weight: 500;
}
.acq-reassurance-inline span strong {
  color: var(--p-ink-900);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ── Rating banner PREMIUM (au-dessus de la section témoignages) ───── */
.acq-rating-banner {
  display: flex;
  align-items: center;
  gap: 14px 22px;
  padding: 18px 24px;
  background: var(--p-surface);
  border: 1px solid var(--p-line-strong);
  border-radius: var(--p-r-lg);
  box-shadow: var(--p-shadow-sm);
  max-width: fit-content;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.acq-rating-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 3px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
}
.acq-rating-value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 0.95rem;
  color: var(--p-ink-600);
  font-weight: 500;
}
.acq-rating-value strong {
  color: var(--p-ink-900);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.acq-rating-meta {
  color: var(--p-ink-600);
  font-size: 0.88rem;
  font-weight: 500;
}
.acq-rating-meta strong {
  color: var(--p-ink-900);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Social proof card — composant réutilisable premium ─────────────── */
.acq-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--p-surface);
  border: 1px solid var(--p-line);
  border-radius: 999px;
  box-shadow: var(--p-shadow-sm);
}
.acq-social-proof-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.9rem;
  line-height: 1;
}
.acq-social-proof-text {
  font-size: 0.9rem;
  color: var(--p-ink-700);
  font-weight: 500;
}
.acq-social-proof-text strong {
  color: var(--p-ink-900);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Stats-row boostée (chiffres hero) ──────────────────────────────── */
.acq-stats-row .acq-stat strong,
.acq-grid-4 .acq-stat strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--p-ink-900);
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.acq-stats-row .acq-stat span,
.acq-grid-4 .acq-stat span {
  color: var(--p-ink-600);
  font-weight: 500;
  font-size: 0.82rem;
}

/* ── CTA Final — social proof boosté ─────────────────────────────────── */
.acq-final-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 500;
}
.acq-final-social-proof::before {
  content: "★★★★★";
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
.acq-final-social-proof strong {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Blocs "Nos engagements" : renforcer les hightlight cards ──────── */
.acq-compare-item-highlight {
  background:
    linear-gradient(180deg, rgba(79,70,229,0.05), rgba(255,255,255,0) 65%),
    var(--p-surface);
  border-color: var(--p-primary);
  box-shadow: var(--p-shadow-md), 0 0 0 1px rgba(79, 70, 229, 0.12) inset;
}
.acq-compare-item-highlight h3 {
  color: var(--p-ink-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.acq-compare-item-highlight h3::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    var(--p-primary-50)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7.5l3 3 5-6' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center / 14px;
  border: 1px solid var(--p-primary-100);
  flex-shrink: 0;
}
.acq-compare-item-highlight .acq-list li {
  color: var(--p-ink-700);
}

/* ── Mobile : widget + sticky CTA sans chevauchement ───────────────── */
@media (max-width: 768px) {
  .acq-mobile-sticky-wrap {
    padding-right: 80px; /* réserve place pour le kq-toggle */
  }
  .kq-toggle {
    bottom: 18px;
    right: 14px;
  }
  /* Quand le widget panel est ouvert, on cache le sticky mobile */
  body.acq-body:has(.kq-panel[data-open="true"]) .acq-mobile-sticky-wrap {
    display: none;
  }
}

/* ── Muted un peu moins muté pour meilleure lisibilité globale ──── */
body.acq-body .acq-muted {
  color: var(--p-ink-600);
}
body.acq-body .acq-hero-main .acq-muted {
  color: var(--p-ink-600);
  font-weight: 400;
}

