/* =============================================================
   BUSINESS IN A BOX — Design System
   Éditorial premium : papier chaud, encre, accent institutionnel.
   Aucun dégradé gratuit, aucune fioriture. Hiérarchie et preuve.
   ============================================================= */

:root {
  /* Surfaces */
  --paper: #fbfaf7;
  --paper-2: #f4f1ea;
  --paper-3: #ece7dc;
  --ink-surface: #14161a;

  /* Encre / texte */
  --ink: #16181c;
  --ink-soft: #3b3f46;
  --muted: #6c675e;
  --on-dark: #f3efe7;
  --on-dark-muted: #a9a396;

  /* Filets */
  --line: rgba(22, 24, 28, 0.12);
  --line-strong: rgba(22, 24, 28, 0.24);
  --line-on-dark: rgba(243, 239, 231, 0.16);

  /* Accent institutionnel (vert profond) */
  --accent: #17513b;
  --accent-hover: #0f3b2a;
  --accent-soft: rgba(23, 81, 59, 0.08);
  --accent-line: rgba(23, 81, 59, 0.28);
  --gold: #a9803f;
  --danger: #b23b3b;

  /* Typographie */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rythme */
  --container: 1180px;
  --container-narrow: 760px;
  --container-wide: 1320px;
  --radius: 4px;
  --radius-lg: 10px;

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 6rem;
  --s8: 8rem;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--paper); }

/* Focus visible — accessibilité clavier */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Lien d'évitement (skip link) — visible au focus clavier uniquement */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--paper);
  padding: 0.7rem 1.1rem; border-radius: 0 0 var(--radius) 0; font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* ---- Typographie ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4vw, 3.15rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.lead { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; color: var(--ink-soft); }

/* Éléments éditoriaux */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ''; width: 1.6rem; height: 1px; background: var(--accent-line);
}
.eyebrow.center::before { display: none; }

.accent { color: var(--accent); }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s3); }
.container.narrow { max-width: var(--container-narrow); }
.container.wide { max-width: var(--container-wide); }

.section { padding: var(--s7) 0; }
.section.tight { padding: var(--s6) 0; }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--ink { background: var(--ink-surface); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--on-dark); }
.section--ink p { color: var(--on-dark-muted); }
.hr { height: 1px; background: var(--line); border: 0; }

.section-head { max-width: 760px; margin-bottom: var(--s5); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--s2); }
.section-head h2 { margin-bottom: var(--s2); }
.section-head p { font-size: 1.12rem; color: var(--muted); line-height: 1.6; max-width: 64ch; }
.section--ink .section-head p { color: var(--on-dark-muted); }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Grilles utilitaires */
.grid { display: grid; gap: clamp(1.25rem, 2vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600; line-height: 1;
  padding: 0.95rem 1.65rem; border-radius: 7px; cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0) !important; }
.btn-primary { background: var(--accent); color: var(--paper); box-shadow: 0 1px 2px rgba(20,22,26,0.12); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(23, 81, 59, 0.5); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(20,22,26,0.55); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); background: rgba(20, 22, 26, 0.04); }
.btn-ghost-light { background: transparent; color: var(--on-dark); border-color: var(--line-on-dark); }
.btn-ghost-light:hover { border-color: var(--on-dark); background: rgba(243, 239, 231, 0.08); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.45em; font-weight: 600; color: var(--accent); }
.link-arrow svg { width: 1em; height: 1em; transition: transform 0.22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---- Header / Navigation ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease) 0.3s, background var(--ease) 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: baseline; gap: 0.55rem; font-family: var(--serif); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.01em; white-space: nowrap; }
.brand .brand-name { color: var(--ink); }
.site-footer .brand .brand-name { color: var(--on-dark); }
.brand .brand-dot { color: var(--accent); }
.brand small { font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: var(--s4); list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.4rem 0; transition: color var(--ease) 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--accent); }
.nav-right { display: flex; align-items: center; gap: var(--s3); }
.nav-cta-mobile { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: all var(--ease) 0.25s; }

/* ---- Hero (accueil) ---- */
.hero { padding: var(--s7) 0 var(--s6); position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }

/* Fond subtil du hero (aucun aplat criard) */
.hero-aura {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 45% at 82% 8%, rgba(23, 81, 59, 0.07), transparent 70%),
    radial-gradient(45% 40% at -5% 105%, rgba(23, 81, 59, 0.05), transparent 70%);
}
.hero-aura::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}

/* Composition deux colonnes */
.hero-layout { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-main .eyebrow { margin-bottom: var(--s3); }
.hero-h1 { font-size: clamp(2.3rem, 4.2vw, 3.4rem); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: var(--s3); }
.hero-h1 .accent { color: var(--accent); }
.hero-main .lead { max-width: 42ch; margin-bottom: var(--s3); }
.hero-sub { color: var(--muted); max-width: 46ch; margin-bottom: var(--s4); font-size: 1.02rem; }
.hero-trust { display: flex; align-items: center; gap: 0.95rem; font-size: 0.9rem; color: var(--muted); margin-top: var(--s4); max-width: 54ch; line-height: 1.55; }
.hero-trust-photo { flex: none; width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.hero-trust strong { color: var(--ink); display: block; margin-bottom: 0.15rem; }

/* Carte crédibilité (sombre, point focal) */
.hero-card {
  background: var(--ink-surface); color: var(--on-dark); border-radius: 16px;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  box-shadow: 0 34px 70px -34px rgba(20, 22, 26, 0.5);
  position: relative;
}
.hero-card .hc-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #6fbf9a; }
.hero-card-person { display: flex; align-items: center; gap: var(--s2); margin-top: var(--s3); }
.hero-card-person img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(243, 239, 231, 0.14); flex: none; }
.hcp-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--on-dark); line-height: 1.15; }
.hcp-role { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 0.15rem; }
.hero-card-divider { height: 1px; background: var(--line-on-dark); margin: var(--s3) 0; }
.hcp-num { font-family: var(--serif); font-size: clamp(2.1rem, 3vw, 2.7rem); font-weight: 600; color: var(--on-dark); line-height: 1; }
.hcp-label { font-size: 0.9rem; color: var(--on-dark-muted); margin-top: 0.55rem; }
.hero-card .link-arrow { color: #6fbf9a; margin-top: var(--s3); display: inline-flex; }

/* ---- Project Stack (portefeuille, colonne droite du hero) ---- */
.hero-stack {
  background: var(--ink-surface); color: var(--on-dark); border-radius: 16px;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: 0 34px 70px -34px rgba(20, 22, 26, 0.5);
}
.hero-stack .hc-tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #6fbf9a; }
.stack-lead { font-family: var(--serif); font-size: 1.16rem; line-height: 1.3; color: var(--on-dark); margin: 0.6rem 0 var(--s3); }
.stack-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: var(--s3); }
.stack-chips span { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.04em; color: var(--on-dark-muted); border: 1px solid var(--line-on-dark); border-radius: 999px; padding: 0.26rem 0.6rem; }

.stack-deck { position: relative; height: 246px; margin-bottom: var(--s3); }
.stack-card {
  position: absolute; left: 0; right: 0; bottom: 0; height: 206px;
  display: flex; flex-direction: column; transform-origin: bottom center;
  background: #20242c;                 /* OPAQUE : la carte du dessus masque celles du dessous */
  border: 1px solid rgba(243, 239, 231, 0.13); border-radius: 12px;
  padding: 1rem 1.1rem; box-shadow: 0 18px 38px -22px rgba(0, 0, 0, 0.75);
  transition: transform 0.75s var(--ease), opacity 0.5s var(--ease), filter 0.75s var(--ease);
  opacity: 0; overflow: hidden;
}
.stack-card .sc-head { display: flex; justify-content: space-between; align-items: center; }
.sc-family { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #6fbf9a; }
.sc-title { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--on-dark); margin: 0.4rem 0 0.15rem; line-height: 1.2; }
.sc-market { font-size: 0.78rem; color: var(--on-dark-muted); }
.sc-tags { font-size: 0.76rem; color: var(--on-dark-muted); margin-top: 0.5rem; line-height: 1.45; flex: 1 1 auto; overflow: hidden; }
.sc-metric { display: flex; align-items: baseline; gap: 0.45rem; margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid var(--line-on-dark); }
.sc-metric strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--on-dark); }
.sc-metric span { font-size: 0.74rem; color: var(--on-dark-muted); }

/* Positions — fallback sans JS (3 premières) ; JS ajoute pos-* qui priment. Fonds opaques, profondeur par échelle + luminosité (aucune transparence qui bave). */
.stack-card:nth-child(1) { opacity: 1; z-index: 3; transform: translateY(0) scale(1); }
.stack-card:nth-child(2) { opacity: 1; z-index: 2; transform: translateY(-24px) scale(0.955); filter: brightness(0.8); }
.stack-card:nth-child(3) { opacity: 1; z-index: 1; transform: translateY(-46px) scale(0.912); filter: brightness(0.62); }
.stack-card.pos-0 { transform: translateY(0) scale(1); opacity: 1; z-index: 3; filter: none; }
.stack-card.pos-1 { transform: translateY(-24px) scale(0.955); opacity: 1; z-index: 2; filter: brightness(0.8); }
.stack-card.pos-2 { transform: translateY(-46px) scale(0.912); opacity: 1; z-index: 1; filter: brightness(0.62); }
.stack-card.pos-hide { transform: translateY(-46px) scale(0.9); opacity: 0; z-index: 0; pointer-events: none; }

.stack-foot { font-size: 0.82rem; color: var(--on-dark-muted); line-height: 1.55; margin: 0 0 var(--s2); }
.hero-stack .link-arrow { color: #6fbf9a; }
.hero .eyebrow { margin-bottom: var(--s3); }
.hero h1 { max-width: 15ch; margin-bottom: var(--s3); }
.hero .lead { max-width: 46ch; margin-bottom: var(--s4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s2); align-items: center; margin-bottom: var(--s5); }
.hero-note { font-size: 0.9rem; color: var(--muted); }

/* Signature personnelle (photo + nom) — présence de Fares avec fonction, pas décor */
.signature { display: inline-flex; align-items: center; gap: 0.75rem; }
.signature img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); flex: none; }
.signature .sig-name { font-weight: 600; font-size: 0.95rem; color: var(--ink); line-height: 1.2; }
.signature .sig-role { font-size: 0.8rem; color: var(--muted); }
.section--ink .signature .sig-name { color: var(--on-dark); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--s6); align-items: center; }

/* Bloc « en un coup d'œil » du hero */
.hero-panel { background: var(--ink-surface); color: var(--on-dark); border-radius: var(--radius-lg); padding: var(--s4); }
.hero-panel h3 { color: var(--on-dark); font-size: 1.15rem; margin-bottom: var(--s3); }
.hero-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.hero-panel li { display: flex; gap: 0.7rem; font-size: 0.95rem; color: var(--on-dark-muted); align-items: flex-start; }
.hero-panel li svg { flex: none; width: 1.1rem; height: 1.1rem; color: #6fbf9a; margin-top: 0.15rem; }

/* ---- Bandeau de preuve (chiffres) ---- */
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.proof-strip.four { grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: var(--s2) var(--s4); border-left: 1px solid var(--line); }
.proof-item:first-child { border-left: 0; padding-left: 0; }
.section--ink .proof-item { border-left-color: var(--line-on-dark); }
.proof-num { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 600; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.section--ink .proof-num { color: var(--on-dark); }
.proof-label { margin-top: 0.7rem; font-size: 0.9rem; color: var(--muted); max-width: 30ch; line-height: 1.5; }
.section--ink .proof-label { color: var(--on-dark-muted); }
/* Variante empilée (1 colonne, style inline) : pas de séparateur vertical */
.proof-strip[style*="1fr"] .proof-item { border-left: 0; padding-left: 0; }

/* Grille de projets — section preuve (sombre), montre la PLURALITÉ des projets */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 1.6vw, 1.3rem); }
.proof-project {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-on-dark); border-radius: 13px;
  padding: var(--s4); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.proof-project:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.07); border-color: rgba(243, 239, 231, 0.25); }
.pp-family { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #6fbf9a; }
.pp-title { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--on-dark); margin: 0.5rem 0 0.15rem; line-height: 1.2; }
.pp-market { font-size: 0.8rem; color: var(--on-dark-muted); }
.pp-metric { margin-top: auto; padding-top: var(--s3); display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.pp-metric strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--on-dark); line-height: 1; }
.pp-metric span { font-size: 0.78rem; color: var(--on-dark-muted); }
.proof-foot { display: flex; justify-content: space-between; align-items: center; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s5); }
.proof-foot p { color: var(--on-dark-muted); font-size: 0.85rem; max-width: 62ch; margin: 0; }
.proof-foot .link-arrow { color: #6fbf9a; }

/* Grille de contrastes — différenciation (pleine largeur) */
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.contrast { border: 1px solid var(--line); border-radius: 14px; padding: var(--s4); background: var(--paper); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.contrast:hover { border-color: var(--line-strong); box-shadow: 0 20px 44px -34px rgba(20, 22, 26, 0.4); }
.ct-no, .ct-yes { display: flex; align-items: center; gap: 0.7rem; }
.ct-no { color: var(--muted); font-size: 0.98rem; padding-bottom: 0.8rem; margin-bottom: 0.8rem; border-bottom: 1px solid var(--line); }
.ct-no svg { flex: none; width: 1.1rem; height: 1.1rem; color: var(--muted); }
.ct-no span { text-decoration: line-through; text-decoration-color: var(--line-strong); }
.ct-yes { color: var(--ink); font-weight: 600; font-size: 1.06rem; }
.ct-yes svg { flex: none; width: 1.15rem; height: 1.15rem; color: var(--accent); }

/* ---- Preuve (clients réels — Lead Central) ---- */
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: var(--s5); }
.proof-stat { padding: var(--s3) var(--s4); border-left: 1px solid var(--line); }
.proof-stat:first-child { border-left: 0; padding-left: 0; }
.proof-stat-num { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.proof-stat-label { margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted); }

/* Captures CRM : cadres sombres qui ressortent sur le fond clair */
.crm-shots { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--s3); margin-bottom: var(--s5); align-items: start; }
.crm-shot { margin: 0; }
.crm-frame {
  background: var(--ink-surface); border: 1px solid var(--line-strong); border-radius: 12px;
  min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--on-dark-muted); text-align: center; padding: var(--s4);
  box-shadow: 0 30px 60px -40px rgba(20, 22, 26, 0.5); overflow: hidden;
}
.crm-placeholder span { display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #6fbf9a; border: 1px dashed var(--line-on-dark); padding: 0.35rem 0.7rem; border-radius: 999px; margin-bottom: 0.6rem; }
.crm-frame img { width: 100%; height: auto; display: block; border-radius: 10px; }
.crm-shot figcaption { margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* Liste des projets (table éditoriale) */
.proof-projects-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(1.5rem, 4vw, 4rem); border-top: 1px solid var(--line); }
.proof-proj { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s3); padding: var(--s3) 0; border-bottom: 1px solid var(--line); }
.pj-sector { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.pj-country { font-family: var(--sans); font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.pj-metric { font-size: 0.9rem; color: var(--accent); font-weight: 600; white-space: nowrap; }
.proof-honesty { font-size: 0.82rem; color: var(--muted); max-width: 80ch; margin: var(--s4) 0 0; line-height: 1.55; }

/* ---- Cartes ---- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.4rem, 2.3vw, 1.9rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.card.on-paper2 { background: var(--paper); }
.card-hover { cursor: pointer; }
.card-hover:hover { border-color: var(--line-strong); transform: translateY(-4px); box-shadow: 0 26px 52px -30px rgba(20, 22, 26, 0.42); }
.card h3 { letter-spacing: -0.01em; }

/* Carte projet (catalogue) */
.box-card { position: relative; overflow: hidden; }
.box-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.box-card.card-hover:hover::before { transform: scaleX(1); }
.box-card .box-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.box-card h3 { margin: 0.9rem 0 0; flex-grow: 1; }
.box-card p { font-size: 0.98rem; color: var(--ink-soft); flex-grow: 1; }
.box-card .box-foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line); }
.box-card .box-foot .link-arrow svg { transition: transform 0.25s var(--ease); }
.box-card.card-hover:hover .box-foot .link-arrow svg { transform: translateX(4px); }
.badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.32rem 0.65rem; border-radius: 999px; }
.badge-available { background: var(--accent-soft); color: var(--accent); }
.badge-soon { background: rgba(22,24,28,0.06); color: var(--muted); }
.box-card.is-soon { opacity: 0.9; }
.box-card.is-soon:hover { transform: none; }

/* Cartes catalogue sur fond sombre (section--ink) */
.section--ink .box-card { background: rgba(255, 255, 255, 0.04); border-color: var(--line-on-dark); }
.section--ink .box-card::before { background: #6fbf9a; }
.section--ink .box-card .box-cat { color: #6fbf9a; }
.section--ink .box-card h3 { color: var(--on-dark); }
.section--ink .box-card p { color: var(--on-dark-muted); }
.section--ink .box-card .box-foot { border-top-color: var(--line-on-dark); }
.section--ink .box-card .link-arrow { color: #6fbf9a; }
.section--ink .box-card.card-hover:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(243, 239, 231, 0.25); box-shadow: 0 26px 52px -30px rgba(0, 0, 0, 0.6); }
.section--ink .badge-available { background: rgba(111, 191, 154, 0.16); color: #6fbf9a; }
.section--ink .badge-soon { background: rgba(243, 239, 231, 0.08); color: var(--on-dark-muted); }

/* Carte business = opportunité (statut · nom · desc · potentiel CA · CTA) */
.box-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.box-card .box-head .box-cat { margin: 0; }
.box-ca { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line); }
.box-ca-label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.box-ca-range { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.6rem); font-weight: 600; color: var(--ink); margin-top: 0.35rem; letter-spacing: -0.01em; }
.box-ca-note { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.box-cta { margin-top: var(--s3); }
.ca-disclaimer { font-size: 0.82rem; color: var(--muted); max-width: 74ch; margin: var(--s4) 0 0; line-height: 1.55; }
/* Variantes sur fond sombre */
.section--ink .box-ca { border-top-color: var(--line-on-dark); }
.section--ink .box-ca-label { color: var(--on-dark-muted); }
.section--ink .box-ca-range { color: var(--on-dark); }
.section--ink .box-ca-note { color: var(--on-dark-muted); }
.section--ink .ca-disclaimer { color: var(--on-dark-muted); }

/* Liste de prestations / inclusions */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); }
.feature-list li svg { flex: none; width: 1.15rem; height: 1.15rem; color: var(--accent); margin-top: 0.2rem; }

/* Grille de fonctionnalités à icônes */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.feature-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.4rem, 2.2vw, 1.8rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -30px rgba(20, 22, 26, 0.42); border-color: var(--line-strong); }
.feature-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); margin-bottom: var(--s3); }
.feature-ic svg { width: 23px; height: 23px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* Liste numérotée « tout ce que vous recevez » (accumulation, pas des cartes) */
.spec-list { border-top: 1px solid var(--line); }
.spec-item {
  display: grid; grid-template-columns: 4.5rem 1fr 1.35fr; gap: var(--s4); align-items: baseline;
  padding: var(--s4) var(--s2); border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.spec-item:hover { background: rgba(23, 81, 59, 0.03); }
.spec-num { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 600; color: var(--accent); opacity: 0.85; line-height: 1; letter-spacing: -0.02em; }
.spec-title { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.spec-desc { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 760px) {
  .spec-item { grid-template-columns: 2.6rem 1fr; column-gap: var(--s3); row-gap: 0.4rem; padding: var(--s3) 0; }
  .spec-num { grid-row: 1 / span 2; font-size: 1.6rem; }
  .spec-desc { grid-column: 2; }
}

/* Condition (callout à icône) */
.condition { display: flex; gap: 0.9rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; padding: var(--s3) var(--s4); }
.condition svg { flex: none; width: 1.5rem; height: 1.5rem; color: var(--accent); margin-top: 0.05rem; }
.condition p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

/* Panneau de profils ciblés */
.profiles { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); box-shadow: 0 26px 54px -42px rgba(20, 22, 26, 0.3); }
.profiles-head { padding: var(--s3) var(--s4); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.profiles ul { list-style: none; }
.profiles li { display: flex; gap: 0.9rem; align-items: center; padding: var(--s3) var(--s4); border-top: 1px solid var(--line); transition: background 0.25s var(--ease); }
.profiles li:first-child { border-top: 0; }
.profiles li:hover { background: rgba(23, 81, 59, 0.03); }
.pf-ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); }
.pf-ic svg { width: 19px; height: 19px; }
.profiles li > span:last-child { font-size: 0.96rem; color: var(--ink-soft); }

/* Blocs « ce qui est inclus » */
.include-block { border-top: 1px solid var(--line); padding: var(--s4) clamp(0px, 2vw, var(--s3)); transition: background 0.3s var(--ease); border-radius: 10px; }
.include-block:hover { background: rgba(23, 81, 59, 0.025); }
.include-block:last-child { border-bottom: 1px solid var(--line); }
.include-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s4); align-items: start; }
.include-block h3 { display: flex; align-items: baseline; gap: 0.8rem; }
.include-block .idx { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); font-weight: 600; opacity: 0.85; }
.include-block .lead { font-size: 1.05rem; margin-top: 0.6rem; }

/* Étapes numérotées */
.steps { display: grid; gap: var(--s3); }
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--s4); align-items: start; padding: var(--s4) 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: 0; padding-top: 0; }
.step-num { font-family: var(--serif); font-size: 1.75rem; font-weight: 600; color: var(--accent); width: 2.9rem; line-height: 1; opacity: 0.9; }
.step h4 { margin-bottom: 0.35rem; font-size: 1.2rem; }
.step p { font-size: 0.98rem; margin: 0; color: var(--ink-soft); }

/* Comparaison (deux colonnes opposées) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.compare-col { border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.5rem, 2.6vw, 2.1rem); }
.compare-col.highlight { border-color: var(--accent-line); background: var(--accent-soft); box-shadow: 0 22px 48px -34px rgba(23, 81, 59, 0.4); }
.compare-col h4 { margin-bottom: var(--s3); font-size: 1.2rem; }

/* Prix */
.pricing { border: 1px solid var(--line-strong); border-radius: 18px; overflow: hidden; box-shadow: 0 34px 64px -42px rgba(20, 22, 26, 0.4); }
.pricing-main { padding: clamp(1.8rem, 4vw, 3rem); background: var(--paper); }
.pricing-tag { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pricing-amount { font-family: var(--serif); font-size: clamp(2.8rem, 5.4vw, 3.8rem); font-weight: 600; line-height: 1; margin: 0.7rem 0 0.4rem; letter-spacing: -0.02em; }
.pricing-amount .per { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-sub { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.pricing-secondary { padding: var(--s3) clamp(1.8rem, 4vw, 3rem); background: var(--paper-2); border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2); align-items: baseline; }
.pricing-note { padding: var(--s3) clamp(1.8rem, 4vw, 3rem); font-size: 0.9rem; color: var(--muted); border-top: 1px solid var(--line); line-height: 1.6; }

/* Dossier d'opportunité — fiche de chiffres-clés (hero) */
.opp-facts { background: var(--ink-surface); color: var(--on-dark); border-radius: 16px; padding: clamp(1.4rem, 2.4vw, 2rem); box-shadow: 0 34px 70px -34px rgba(20, 22, 26, 0.5); display: flex; flex-direction: column; }
.opp-fact { display: flex; flex-direction: column; gap: 0.35rem; padding: var(--s3) 0; border-top: 1px solid var(--line-on-dark); }
.opp-fact:first-child { border-top: 0; padding-top: 0; }
.opp-fact:last-child { padding-bottom: 0; }
.opp-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #6fbf9a; }
.opp-val { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; color: var(--on-dark); line-height: 1.1; }
.opp-label sup { font-size: 0.7em; }

/* Économie — libellé + valeur */
.econ-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; }
.econ-val { font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.7rem); font-weight: 600; color: var(--ink); margin: 0.4rem 0 0.5rem; letter-spacing: -0.01em; white-space: nowrap; }

/* Encadré / callout */
.callout { border-left: 3px solid var(--accent); background: var(--accent-soft); padding: var(--s3) var(--s4); border-radius: 0 var(--radius) var(--radius) 0; }
.callout p:last-child { margin-bottom: 0; }
.note-placeholder { border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: var(--s3); color: var(--muted); font-size: 0.9rem; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(22,24,28,0.02) 10px, rgba(22,24,28,0.02) 20px); }
.note-placeholder::before { content: 'Emplacement — '; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }

/* Citation */
.pullquote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.38; font-weight: 500; color: var(--ink); max-width: 28ch; }

/* FAQ (details/summary) */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: var(--s4) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--s3); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--ink); transition: color 0.2s var(--ease); }
.faq summary:hover { color: var(--accent); }
.faq details[open] summary { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 1.4rem; height: 1.4rem; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--accent); }
.faq summary .plus::before { width: 1.1rem; height: 2px; }
.faq summary .plus::after { width: 2px; height: 1.1rem; transition: transform var(--ease) 0.2s; }
.faq details[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq details > div { padding: 0 0 var(--s3); color: var(--ink-soft); max-width: 62ch; }

/* Fil d'Ariane */
.breadcrumb { padding: var(--s3) 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--line-strong); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current="page"] { color: var(--ink-soft); }

/* ---- Formulaire ---- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 30px 60px -46px rgba(20, 22, 26, 0.35); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.field { margin-bottom: var(--s3); }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; }
.field .req { color: var(--accent); }
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }
.input, .select, .textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 0.85rem 1rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.input.invalid, .select.invalid, .textarea.invalid { border-color: var(--danger); }
.textarea { min-height: 130px; resize: vertical; }
.select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c675e' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 1rem; padding-right: 2.4rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: var(--s3); padding: var(--s2) var(--s3); border-radius: var(--radius); font-size: 0.92rem; display: none; }
.form-status.ok { display: block; background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line); }
.form-status.err { display: block; background: rgba(178,59,59,0.08); color: var(--danger); border: 1px solid rgba(178,59,59,0.3); }
.form-aside { display: flex; flex-direction: column; gap: var(--s3); }

/* ---- CTA de bas de page ---- */
.cta-band { background: var(--ink-surface); color: var(--on-dark); border-radius: 18px; padding: clamp(2.2rem, 5vw, 4.2rem); text-align: center; position: relative; overflow: hidden; box-shadow: 0 34px 70px -40px rgba(20, 22, 26, 0.5); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, rgba(111, 191, 154, 0.12), transparent 65%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--on-dark); margin-bottom: var(--s2); }
.cta-band p { color: var(--on-dark-muted); max-width: 54ch; margin: 0 auto var(--s4); font-size: 1.1rem; line-height: 1.6; }

/* ---- Footer ---- */
.site-footer { background: var(--ink-surface); color: var(--on-dark); padding: var(--s6) 0 var(--s4); }
.footer-lead { display: flex; justify-content: space-between; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.footer-lead .brand { color: var(--on-dark); font-size: 1.35rem; }
.footer-promise { font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-weight: 500; color: var(--on-dark); max-width: 34ch; line-height: 1.35; margin: var(--s4) 0 var(--s5); }
.footer-nav { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s4); padding: var(--s4) 0; border-top: 1px solid var(--line-on-dark); border-bottom: 1px solid var(--line-on-dark); }
.footer-nav a { color: var(--on-dark-muted); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--on-dark); }
.footer-nav .footer-mail { margin-left: auto; color: #6fbf9a; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s2); padding-top: var(--s4); font-size: 0.82rem; color: var(--on-dark-muted); }
.footer-bottom .footer-legal { display: flex; gap: var(--s3); }
.footer-legal a { color: var(--on-dark-muted); transition: color 0.2s var(--ease); }
.footer-legal a:hover { color: var(--on-dark); }

/* ---- 404 ---- */
.error-page { min-height: 62vh; display: flex; align-items: center; text-align: center; }
.error-page .code { font-family: var(--serif); font-size: clamp(4rem, 12vw, 8rem); font-weight: 600; color: var(--accent); line-height: 1; }

/* ---- Animations d'entrée ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Utilitaires ---- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: var(--s2); } .mt-3 { margin-top: var(--s3); } .mt-4 { margin-top: var(--s4); } .mt-5 { margin-top: var(--s5); }
.text-center { text-align: center; }
.stack > * + * { margin-top: var(--s3); }
.stack-2 > * + * { margin-top: var(--s2); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .hero-layout { grid-template-columns: 1fr; gap: var(--s5); }
  .hero-card, .hero-stack { max-width: 480px; }
  .include-grid { grid-template-columns: 1fr; gap: var(--s2); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .crm-shots { grid-template-columns: 1fr; }
}

/* Bascule du menu en hamburger avant que les liens ne se tassent */
@media (max-width: 920px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: var(--s2) var(--s3);
  }
  .site-header.open .nav-links li { width: 100%; }
  .site-header.open .nav-links a { display: block; width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .site-header.open .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta-mobile { display: block; }
  .nav-cta-mobile a { color: var(--accent) !important; font-weight: 600; }
}

@media (max-width: 760px) {
  .section { padding: var(--s6) 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .contrast-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s3); border: 0; }
  .proof-stat { border-left: 0; padding: 0; }
  .proof-projects-list { grid-template-columns: 1fr; }
  .proof-strip, .proof-strip.four { grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s3); }
  .proof-item { border-left: 0; padding-left: 0; }
  .compare { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav .footer-mail { margin-left: 0; width: 100%; }
  .pricing-main, .pricing-secondary, .pricing-note { padding-left: var(--s4); padding-right: var(--s4); }
}

@media (max-width: 460px) {
  .proof-strip, .proof-strip.four { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .nav .brand small { display: none; } /* garde le nom de Fares lisible sur petit écran */
}
