/* ============ NEEGUI — landing vitrine modernisée ============ */

:root {
  /* DA CRÈME + OR + NEUTRES — vert réduit au strict minimum.
     Les noms green-* sont conservés (compat) mais pointent désormais vers
     des neutres chauds (surfaces) et de l'or (accents). */
  --green-950: #002414;   /* charcoal chaud — bandes sombres */
  --green-900: #003d22;
  --green-850: #074a2b;
  --green-800: #0b5a35;   /* charcoal moyen */
  /* Accents (texte/icônes) = OR */
  --green-700: #137a48;   /* or profond — texte/accents sur crème */
  --green-600: #1f8a5b;   /* or accent (checks, eyebrow, liens) */
  --green-glow: #6e5c18;

  /* Or / doré — charte app (brandGold #D9A928) */
  --gold: #d9a928;
  --gold-bright: #f0c64e;
  --gold-deep: #a67c00;
  --gold-text: #e3c069;

  /* Neutres chauds (crème) */
  --ink: #211c12;        /* texte principal — brun-noir chaud (sans vert) */
  --ink-soft: #564f43;   /* texte secondaire — assez foncé pour rester lisible */
  --ink-faint: #857b6b;
  --paper: #ffffff;       /* cartes */
  --cream: #fbf7ec;       /* fond de page crème */
  --cream-2: #f3ebd8;     /* crème plus soutenu (sections) */
  --mist: #f1e9d6;        /* sections "tint" — un cran plus soutenu pour que le blanc ressorte */
  --mist-2: #faf6ec;
  --line: #e3d8c0;        /* bordures plus visibles */

  /* Accents domaines */
  --commerce: #1f8a5b;
  --pharma: #5b8fde;
  --resto: #d8ab4c;
  --salon: #c777b8;
  --immo: #5bb6c2;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 30px 60px -28px rgba(13, 42, 21, 0.45);
  --shadow-soft: 0 18px 40px -24px rgba(13, 42, 21, 0.30);
  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
}

/* ============ NAV (pleine largeur) ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(100deg, #003D22 0%, #0B5A35 52%, #6E5C18 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,.5);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: rgba(217,169,40,.3);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green-600), var(--green-850));
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 8px 18px -10px rgba(13,42,21,.7);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand b { color: var(--green-700); }
.brand i { color: var(--gold-deep); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(233,244,234,.75);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
  font-size: 13px;
}
.lang button {
  position: relative;
  z-index: 1;
  border: none; background: none;
  min-width: 38px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  font-weight: 700;
  transition: color .25s var(--ease);
}
.lang button.on { color: #0f0f0f; }
.lang-slider {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  width: calc((100% - 6px) / 3);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 4px 12px -4px rgba(217,169,40,.7);
  transition: transform .32s var(--ease);
  z-index: 0;
}
.link-ghost {
  font-weight: 600;
  font-size: 15px;
  color: rgba(233,244,234,.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.link-ghost:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 13px;
  padding: 13px 22px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #3a2c06;
  box-shadow: 0 14px 30px -12px rgba(196, 152, 47, 0.7), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(196, 152, 47, 0.8), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-green {
  background: var(--green-800);
  color: #eafff0;
  box-shadow: 0 14px 30px -16px rgba(13, 42, 21, 0.8);
}
.btn-green:hover { transform: translateY(-2px); background: var(--green-700); }
.btn-outline {
  background: rgba(255,255,255,.04);
  color: #eafff0;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-outline:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* burger */
.burger {
  display: none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  width: 42px; height: 42px;
  padding: 0;
  align-items: center; justify-content: center;
}
.burger span { width: 18px; height: 2px; background: #fff; position: relative; display: block; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  /* Dégradé SIGNATURE Neegui (charte app/vitrine) : vert profond (haut-droite)
     → crème → or (bas-gauche). Le texte (gauche) tombe sur crème/or = lisible,
     le visuel (droite) sur le vert = il ressort, comme l'aperçu caisse de la vitrine. */
  background: linear-gradient(to bottom left, #003d22 0%, #0b5a35 36%, #FFF8E6 66%, #D9A928 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(236,238,244,0), var(--mist));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: 96px 132px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(217, 169, 40, 0.28);
  color: var(--ink);
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.badge svg { width: 15px; height: 15px; color: var(--gold-bright); }

.hero h1 {
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 46px);
  margin: 22px 0 0;
  max-width: 14ch;
}
.hero h1 .accent {
  background: linear-gradient(92deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-faint);
  font-size: 13.5px;
  font-weight: 600;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,.18); }
.hero-trust b { color: var(--ink); font-weight: 800; }
.pioneer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
}

/* ---------- dashboard mockup ---------- */
.mock {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(165deg, #003d22, #03190f);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.mock-glow {
  position: absolute;
  inset: auto -40px -60px auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(217,182,90,.4), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lights { display: flex; gap: 7px; }
.lights i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.lights i:nth-child(1) { background: #ec6a5e; }
.lights i:nth-child(2) { background: #f3bd4f; }
.lights i:nth-child(3) { background: #61c454; }
.mock-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.82); letter-spacing: .01em; }
.mock-tabs { margin-left: auto; display: flex; gap: 7px; }
.mock-tab {
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  transition: all .2s var(--ease);
}
.mock-tab[data-k="commerce"].on { color: #bdf0d2; background: rgba(217,169,40,.2); border-color: rgba(217,169,40,.45); }
.mock-tab[data-k="pharma"].on   { color: #cfe0ff; background: rgba(91,143,222,.2); border-color: rgba(91,143,222,.45); }
.mock-tab[data-k="resto"].on    { color: #f6e2ad; background: rgba(216,171,76,.22); border-color: rgba(216,171,76,.5); }

.mock-body { padding: 20px; position: relative; z-index: 1; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kpi {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 16px 17px;
}
.kpi .lbl { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600; }
.kpi .val {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 25px;
  color: #fff;
  margin-top: 7px;
  letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.kpi .val small { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.45); margin-left: 4px; }
.kpi .meta { font-size: 11.5px; margin-top: 6px; color: rgba(255,255,255,.5); font-weight: 600; }
.kpi .meta.up { color: #6fd396; }
.kpi .meta.warn { color: #e7b86a; }

.ops { margin-top: 18px; }
.ops-h { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 700; margin-bottom: 10px; }
.op {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
}
.op .pip { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.op .amt { margin-left: auto; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

/* ---------- POS caisse mockup ---------- */
.pos-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.pos-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
}
.pos-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pos-name { flex: 1; font-size: 13px; color: rgba(233,244,234,.88); font-weight: 500; }
.pos-qty  { font-size: 11.5px; color: rgba(233,244,234,.42); font-weight: 600; }
.pos-price { font-size: 13px; color: rgba(233,244,234,.85); font-weight: 700; font-variant-numeric: tabular-nums; }
.pos-sep { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }
.pos-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0;
}
.pos-total-row > span:first-child {
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  color: rgba(233,244,234,.45); text-transform: uppercase;
}
.pos-total-amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px; font-weight: 800; color: var(--gold-bright); letter-spacing: -.02em;
}
.pos-pay-row { display: flex; gap: 7px; }
.pos-pay-btn {
  flex: 1; padding: 8px 4px; border-radius: 8px; border: 1px solid;
  font-size: 10px; font-weight: 700; cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
}
.pos-encaisser {
  width: 100%; height: 42px; border: none; border-radius: 10px;
  background: linear-gradient(92deg, var(--gold-bright), var(--gold));
  color: #2d1a00; font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: .1em; cursor: pointer;
}

/* ============ generic section ============ */
.section { padding: 72px 0; }
.section.tint { background: var(--mist); }
.section.tint-2 { background: var(--mist-2); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  margin-top: 12px;
}
.section-head p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- domaines ---------- */
.domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.domain {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  position: relative;
  overflow: hidden;
}
.domain:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: transparent; }
.domain .ic {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.domain .ic svg { width: 24px; height: 24px; }
.domain h3 { font-size: 21px; }
.domain p { margin-top: 9px; color: var(--ink-soft); font-size: 15px; }
.domain .tag {
  margin-top: 16px;
  display: inline-flex;
  font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
}

/* ---------- bento fonctionnalités ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}
.cell {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.cell .ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 12px;
  color: var(--mc, var(--green-600));
  background: color-mix(in srgb, var(--mc, var(--green-600)) 15%, transparent);
}
.cell .ic svg { width: 21px; height: 21px; }
.cell h3 { font-size: 17px; }
.cell p { margin-top: 7px; color: var(--ink-soft); font-size: 13.5px; }
.cell.span2 { grid-column: span 2; }
.cell.hero-cell {
  grid-column: span 2;
  grid-row: span 2;
  color: #eef6ef;
  background:
    radial-gradient(100% 100% at 85% 80%, rgba(150,122,28,.5), transparent 55%),
    linear-gradient(140deg, var(--green-850), #052413);
  border-color: transparent;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.cell.hero-cell .ic { background: rgba(255,255,255,.1); color: var(--gold-bright); }
.cell.hero-cell h3 { color: #fff; font-size: 23px; max-width: 14ch; }
.cell.hero-cell p { color: rgba(233,244,234,.8); font-size: 14.5px; max-width: 38ch; }
.offline-badge {
  position: absolute;
  top: 28px; right: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #d6f3df; white-space: nowrap;
}
.offline-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: #6fd396; box-shadow: 0 0 0 0 rgba(111,211,150,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111,211,150,.6);} 70%{ box-shadow: 0 0 0 9px rgba(111,211,150,0);} 100%{ box-shadow: 0 0 0 0 rgba(111,211,150,0);} }

/* ---------- stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .n { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 48px; color: var(--green-700); letter-spacing: -.02em; }
.stat .n .u { color: var(--gold-deep); }
.stat .l { margin-top: 6px; color: var(--ink-soft); font-weight: 600; font-size: 15px; }

/* ---------- tarifs ---------- */
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin: 22px auto 0;
}
.toggle button {
  border: none; background: none;
  padding: 9px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.toggle button.on { background: var(--green-800); color: #eafff0; }
.toggle .save { font-size: 11.5px; color: var(--green-600); font-weight: 800; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.plan.featured {
  background: linear-gradient(165deg, var(--green-850), #052413);
  border-color: transparent;
  color: #eef6ef;
  position: relative;
  box-shadow: var(--shadow-card);
}
.plan .pname { font-weight: 800; font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; }
.plan.featured .ribbon {
  position: absolute; top: 26px; right: 26px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #3a2c06; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  padding: 6px 12px; border-radius: 999px;
}
.plan .pdesc { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }
.plan.featured .pdesc { color: rgba(233,244,234,.7); }
.plan .price { margin-top: 22px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .amt { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 44px; letter-spacing: -.02em; }
.plan .price .cur { font-weight: 700; font-size: 16px; color: var(--ink-soft); }
.plan.featured .price .cur { color: rgba(233,244,234,.65); }
.plan .price .per { font-size: 14px; color: var(--ink-faint); font-weight: 600; }
.plan.featured .price .per { color: rgba(233,244,234,.55); }
.plan ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.plan li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.plan.featured li { color: rgba(233,244,234,.85); }
.plan li svg { width: 18px; height: 18px; flex: none; color: var(--green-600); margin-top: 1px; }
.plan.featured li svg { color: var(--gold-bright); }
.plan .plan-cta { margin-top: 28px; padding-top: 0; }
.plan .spacer { flex: 1; }

/* ---------- témoignages ---------- */
.quotes { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex; flex-direction: column;
}
.quote.big {
  background: linear-gradient(160deg, var(--green-850), #052413);
  color: #eef6ef; border-color: transparent;
}
.quote .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.quote .stars svg { width: 18px; height: 18px; }
.quote blockquote { margin: 0; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 24px; line-height: 1.32; letter-spacing: -.01em; }
.quote.big blockquote { font-size: 27px; color: #fff; }
.quote .who { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 13px; }
.quote .av { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 800; color: #fff; font-family: "Bricolage Grotesque", sans-serif; }
.quote .who .nm { font-weight: 800; font-size: 15px; }
.quote .who .rl { font-size: 13px; color: var(--ink-faint); }
.quote.big .who .rl { color: rgba(233,244,234,.6); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa button {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  background: none; border: none;
  padding: 24px 4px;
  text-align: left;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 19px; color: var(--ink);
}
.qa .sign { margin-left: auto; flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); }
.qa .sign::before, .qa .sign::after { content: ""; position: absolute; background: var(--green-600); border-radius: 2px; }
.qa .sign::before { top: 12px; left: 4px; width: 18px; height: 2px; }
.qa .sign::after { left: 12px; top: 4px; width: 2px; height: 18px; transition: opacity .3s var(--ease); }
.qa.open .sign { transform: rotate(180deg); }
.qa.open .sign::after { opacity: 0; }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.qa .ans p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px; max-width: 64ch; }

/* ---------- CTA final ---------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 72px 56px;
  color: #eef6ef;
  text-align: center;
  background:
    radial-gradient(110% 120% at 85% 80%, rgba(150,122,28,.55), transparent 50%),
    radial-gradient(80% 90% at 10% 10%, rgba(217,169,40,.22), transparent 55%),
    linear-gradient(135deg, var(--green-900), var(--green-800));
}
.cta h2 { color: #fff; font-size: clamp(24px, 3vw, 40px); max-width: 20ch; margin-inline: auto; }
.cta p { margin: 16px auto 0; font-size: 15px; color: rgba(233,244,234,.82); max-width: 52ch; }
.cta-actions { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer {
  background: linear-gradient(180deg, #0b5a35 0%, #003d22 55%, #6E5C18 100%);
  border-top: 1px solid var(--gold);
  color: rgba(233,244,234,.72);
  padding: 72px 0 36px;
}
.footer-brand { display: inline-block; margin-bottom: 16px; }
.footer-wordmark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 30px; letter-spacing: -0.02em; line-height: 1;
  color: #fff;
}
.footer-wordmark b { color: var(--gold); font-weight: 800; }
.footer-contact-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(217,169,40,.6);
  color: var(--gold-bright); font-weight: 700; font-size: 14px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer-contact-btn:hover { background: rgba(217,169,40,.12); border-color: var(--gold-bright); }
.footer-contact-btn svg { width: 16px; height: 16px; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-actions .footer-contact-btn { margin-top: 0; }
.footer-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #3a2c06; font-weight: 800; font-size: 14px;
  transition: filter .2s var(--ease), transform .2s var(--ease);
}
.footer-btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.footer-btn-gold i { font-size: 13px; }
.footer-bottom .socials a.wa { background: rgba(37,211,102,.16); color: #25d366; }
.footer-bottom .socials a.wa:hover { background: rgba(37,211,102,.26); color: #25d366; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand b, .footer .brand i { color: #fff; }
.footer-about { font-size: 14.5px; max-width: 34ch; line-height: 1.6; }
.footer h5 { color: #fff; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(233,244,234,.62); transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--gold-bright); }
.footer-bottom {
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(233,244,234,.5);
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: all .2s var(--ease); }
.footer-bottom .socials a:hover { background: rgba(255,255,255,.14); color: var(--gold-bright); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ---------- domain available/soon badges ---------- */
.domain-available {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; margin-bottom: 10px;
  background: rgba(217,169,40,.12); color: var(--commerce);
}
.domain-soon {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; margin-bottom: 10px;
  background: var(--mist); color: var(--ink-faint);
}

/* ---------- plan badge + 4 cols + feature lines ---------- */
.plan-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 999px; margin-bottom: 10px;
}
.plans-4 { grid-template-columns: repeat(4, 1fr); }
.plan ul li.inc svg { stroke: var(--commerce); }
.plan ul li.exc { color: var(--ink-faint); }
.plan ul li.exc svg { stroke: var(--ink-faint); }
.plan.featured .plan-badge { background: rgba(213,169,77,.15); color: var(--gold-bright); }
.plan.featured ul li.inc svg { stroke: var(--gold-bright); }

/* ---------- testimonials placeholder ---------- */
.testimonials-placeholder {
  text-align: center; padding: 40px 24px;
  background: var(--mist-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); max-width: 520px; margin: 0 auto;
}
.testimonials-placeholder p {
  font-size: 16px; color: var(--ink-soft);
  font-style: italic;
}

/* ---------- domain cta link ---------- */
.domain-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-600);
  text-decoration: none;
  transition: color .2s var(--ease), gap .2s var(--ease);
  gap: 4px;
}
.domain-cta:hover { color: var(--green-700); gap: 8px; }

/* ---------- footer legal mention ---------- */
.footer-legal {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 20px;
  font-size: 13px;
  color: rgba(233,244,234,.42);
  line-height: 1.7;
}
.footer-legal strong { color: rgba(233,244,234,.65); font-weight: 700; }
.footer-legal a { color: rgba(233,244,234,.55); text-decoration: underline; transition: color .2s; }
.footer-legal a:hover { color: var(--gold-bright); }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--green-950);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(233,244,234,.72);
  box-shadow: 0 -8px 24px rgba(0,0,0,.3);
  transition: transform .3s var(--ease);
}
.cookie-banner.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-text { flex: 1; min-width: 260px; line-height: 1.5; }
.cookie-text strong { color: #fff; font-weight: 700; }
.cookie-text a { color: var(--gold-bright); text-decoration: underline; margin-left: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-refuse {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(233,244,234,.75);
  padding: 8px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .2s var(--ease);
}
.cookie-btn-refuse:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.cookie-btn-accept {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border: none;
  color: #3a2c06;
  padding: 8px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: filter .2s var(--ease);
}
.cookie-btn-accept:hover { filter: brightness(1.08); }

/* ---------- legal pages (shared) ---------- */
.legal-nav {
  position: sticky; top: 0; z-index: 80;
  background: linear-gradient(100deg, #003D22 0%, #0B5A35 52%, #6E5C18 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,.5);
}
.legal-nav .wrap {
  display: flex; align-items: center; height: 64px; gap: 16px;
}
.legal-nav-logo img { height: 36px; display: block; }
.legal-nav-back {
  margin-left: auto;
  font-size: 14px; font-weight: 600;
  color: rgba(233,244,234,.75);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  transition: all .2s;
}
.legal-nav-back:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-body h1 { font-family: "Bricolage Grotesque", sans-serif; font-size: 34px; font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -.02em; }
.legal-body .legal-date { font-size: 13px; color: var(--ink-faint); margin-bottom: 40px; display: block; }
.legal-body h2 { font-family: "Bricolage Grotesque", sans-serif; font-size: 19px; font-weight: 800; color: var(--ink); margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 2px solid rgba(42,94,53,.2); }
.legal-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 6px; }
.legal-body a { color: var(--green-600); text-decoration: underline; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-highlight {
  background: rgba(42,94,53,.07);
  border-left: 3px solid var(--green-600);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.legal-highlight p { margin-bottom: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 66px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 40px 28px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 79;
  box-shadow: 0 24px 40px -28px rgba(13,42,21,.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 4px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-actions { display: flex; gap: 12px; margin-top: 14px; }
.mobile-menu .mm-actions .btn { flex: 1; }

/* ============ responsive ============ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 60px 100px; }
  .hero h1 { max-width: none; }
  /* En 1 colonne le texte s'empile EN HAUT : il doit tomber sur du clair.
     Le dégradé desktop "to bottom left" plaçait le texte sur le vert foncé
     = illisible. On bascule en dégradé vertical : crème en haut (texte lisible)
     → vert profond en bas, derrière le visuel (qui ressort). */
  .hero { background: linear-gradient(to bottom, #FFF8E6 0%, #FAF2DC 52%, #0b5a35 100%); }
  .mock { max-width: 540px; margin: 0 auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell.hero-cell { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-right { margin-left: auto; gap: 8px; }
  .link-ghost { font-size: 13px; }
}
@media (max-width: 480px) {
  .lang { display: none; }
}
@media (max-width: 860px) {
  .wrap { padding-inline: 18px; }
  /* domaines : 2 colonnes même sur tablette */
  .domains { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .plans, .plans-4 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .quotes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .section { padding: 60px 0; }
  .cta { padding: 44px 22px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 14px; }
  .section { padding: 48px 0; }

  /* Hero */
  .hero-grid { padding-block: 44px 64px; gap: 28px; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-sub { font-size: 16px; margin-top: 16px; }
  .hero-cta { margin-top: 24px; gap: 10px; }
  .hero-cta .btn { flex: 1; }
  .hero-trust { margin-top: 20px; font-size: 12.5px; gap: 10px; }

  /* Dashboard mock — compact */
  .mock { border-radius: 16px; }
  .mock-bar { padding: 10px 14px; gap: 8px; flex-wrap: nowrap; }
  .mock-title { display: none; }
  .mock-tab { font-size: 10.5px; padding: 5px 9px; }
  .mock-body { padding: 10px 12px 12px; }
  .kpis { grid-template-columns: 1fr 1fr; gap: 8px; } /* 2 colonnes, pas 1 */
  .kpi { padding: 10px 11px; border-radius: 10px; }
  .kpi .lbl { font-size: 10px; }
  .kpi .val { font-size: 17px; margin-top: 4px; }
  .kpi .meta { font-size: 10px; margin-top: 3px; }
  .ops { display: none; } /* masque "dernières opérations" sur petit écran */

  /* Domaines — 2 colonnes compactes */
  .domains { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .domain { padding: 16px 14px; border-radius: 14px; }
  .domain .ic { width: 40px; height: 40px; margin-bottom: 12px; }
  .domain h3 { font-size: 15px; }
  .domain p { font-size: 13px; margin-top: 6px; }
  .domain .tag { font-size: 10.5px; padding: 3px 8px; margin-top: 10px; }
  .domain-cta { font-size: 12.5px; margin-top: 10px; }

  /* Bento — 2 colonnes, pas 1 */
  .bento { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cell { padding: 18px 14px; border-radius: 14px; }
  .cell.hero-cell { grid-column: span 2; padding: 20px 16px; }
  .cell.span2 { grid-column: span 2; }
  .cell h3 { font-size: 15px; }
  .cell p { font-size: 13px; margin-top: 6px; }
  .cell .ic { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 10px; }
  .offline-badge { top: 14px; right: 14px; font-size: 11px; padding: 5px 10px; }
  .cell.hero-cell h3 { font-size: 20px; }

  /* Stats */
  .stat .n { font-size: 36px; }
  .stat .l { font-size: 13px; }

  /* Plans — carousel horizontal */
  .plans {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    max-width: none;
    margin: 0;
    /* masque la scrollbar sur webkit */
    scrollbar-width: none;
  }
  .plans::-webkit-scrollbar { display: none; }
  .plan {
    min-width: min(82vw, 300px);
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 22px 18px;
  }
  /* indicateur de scroll */
  .plans::after {
    content: '';
    min-width: 6px;
    flex-shrink: 0;
  }

  /* CTA */
  .cta { padding: 36px 16px; border-radius: 18px; }
  .cta h2 { font-size: clamp(22px, 6vw, 30px); }
  .cta-actions .btn { flex: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-about { max-width: none; font-size: 13px; }

  /* Cookie banner */
  .cookie-banner { padding: 12px 16px; gap: 12px; }
  .cookie-text { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   PAGES DÉTAIL MODULES  –  classes partagées
   Utilisent uniquement les variables déjà définies ci-dessus.
   ═══════════════════════════════════════════════════════════ */

/* ── Lien retour dans la navbar ──────────────────────────── */
.nav-back {
  font-size: 14px; font-weight: 600;
  color: rgba(233,244,234,.70);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav-back:hover { color: #fff; }

/* ── Layout page ─────────────────────────────────────────── */
.feat-page { max-width: 1120px; margin: 0 auto; padding: 36px 24px 64px; }

/* ── Hero section ────────────────────────────────────────── */
.feat-hero {
  background:
    radial-gradient(80% 120% at 90% 8%, rgba(217,169,40,.22) 0%, transparent 55%),
    radial-gradient(70% 90% at 8% 10%, rgba(217,169,40,.18) 0%, transparent 55%),
    linear-gradient(135deg, #003d22 0%, #0b5a35 100%);
  border-radius: var(--radius-lg);
  padding: 34px 34px;
  margin-bottom: 32px;
  color: #fff;
}
.feat-hero-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feat-hero-icon svg {
  width: 28px; height: 28px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.feat-hero h1  { font-size: 28px; font-weight: 800; margin-bottom: 10px; line-height: 1.15; color: #fff; }
.feat-hero p   { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.65; max-width: 640px; margin: 0; }
.feat-hero-cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Alerte info ─────────────────────────────────────────── */
.feat-alert {
  background: rgba(217,169,40,.07);
  border: 1px solid rgba(217,169,40,.22);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.feat-alert p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.7; }

/* ── Titre de section ────────────────────────────────────── */
.feat-section-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; color: var(--ink); }

/* ── Grille fonctionnalités ──────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.feat-item {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 18px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.feat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feat-item-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.feat-item-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.feat-item-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.feat-item-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* couleurs d'icônes par domaine */
.ic-commerce { background: rgba(217,169,40,.12); }
.ic-commerce svg { stroke: var(--commerce); }
.ic-pharma   { background: rgba(91,143,222,.12); }
.ic-pharma svg   { stroke: var(--pharma); }
.ic-resto    { background: rgba(216,171,76,.12); }
.ic-resto svg    { stroke: var(--resto); }
.ic-neutral  { background: rgba(120,133,121,.10); }
.ic-neutral svg  { stroke: var(--ink-soft); }

/* ── Étapes ──────────────────────────────────────────────── */
.feat-steps {
  background: var(--mist-2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.feat-step { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; }
.feat-step:last-child { padding-bottom: 0; }
.feat-step + .feat-step { border-top: 1px solid var(--line); padding-top: 20px; }
.feat-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(196,152,47,.16);
  color: var(--gold-deep);
  font-weight: 800; font-size: 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-step-body strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.feat-step-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ── Bloc CTA bas de page ────────────────────────────────── */
.feat-cta-block {
  background: linear-gradient(135deg, rgba(217,182,90,.09), rgba(217,182,90,.03));
  border: 1px solid rgba(217,182,90,.28);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.feat-cta-block h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.feat-cta-block p  { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.feat-footer-inner { max-width: 1120px !important; }

/* ── Footer simplifié (pages détail) ─────────────────────── */
.feat-footer { background: var(--green-950); padding: 26px 0; margin-top: 64px; }
.feat-footer-inner {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.feat-footer-copy { font-size: 13px; color: rgba(233,244,234,.50); }
.feat-footer-links { display: flex; gap: 20px; }
.feat-footer-links a { font-size: 13px; color: rgba(233,244,234,.50); transition: color .2s var(--ease); }
.feat-footer-links a:hover { color: var(--gold-text); }

/* ── Icônes modules futurs ───────────────────────────────── */
.ic-bar      { background: rgba(196,152,47,.14); }
.ic-bar svg  { stroke: var(--gold-deep); }
.ic-livraison     { background: rgba(255,149,0,.12); }
.ic-livraison svg { stroke: #e08800; }
.ic-immo     { background: rgba(91,182,194,.14); }
.ic-immo svg { stroke: var(--immo); }

/* ── Bannière "bientôt disponible" ───────────────────────── */
.feat-soon-banner {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(196,152,47,.07);
  border: 1px solid rgba(196,152,47,.22);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 40px;
}
.feat-soon-badge {
  flex-shrink: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(196,152,47,.16); color: var(--gold-deep);
  border-radius: 6px; padding: 3px 8px; margin-top: 2px;
}
.feat-soon-banner p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.7; }
.feat-soon-banner strong { color: var(--ink); }

/* ── Responsive pages détail ─────────────────────────────── */
@media (max-width: 860px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-hero { padding: 26px 20px; border-radius: var(--radius-md); }
  .feat-hero h1 { font-size: 24px; }
  .feat-page { padding: 28px 16px 56px; }
  .feat-steps { padding: 20px 18px; }
  .feat-cta-block { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   REFONTE 2026 — DA noir & blanc + or
   Nouveaux composants : reveal+, phone carousel, démo vidéo,
   téléchargement, étapes, couverture Afrique.
   ═══════════════════════════════════════════════════════════ */

/* reveal — variantes mouvement */
.reveal[data-rv="left"]  { transform: translateX(-30px); }
.reveal[data-rv="right"] { transform: translateX(30px); }
.reveal[data-rv="zoom"]  { transform: scale(.94); }
.reveal[data-rv].in      { transform: none; }
.reveal[data-d="5"] { transition-delay: .35s; }
.reveal[data-d="6"] { transition-delay: .42s; }

/* halo doré qui flotte (hero / sections sombres) */
@keyframes floatGlow {
  0%, 100% { transform: translate3d(0,0,0); opacity: .9; }
  50%      { transform: translate3d(0,-18px,0); opacity: 1; }
}

/* ---------- HERO : badge pays + tweaks ---------- */
.badge .flag { font-size: 15px; line-height: 1; }
.hero-eyebrow-mark { color: var(--gold-bright); }

/* ---------- PHONE MOCKUP CAROUSEL ---------- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-stage .mock-glow {
  inset: 10% -10% -10% auto;
  width: 320px; height: 320px;
  animation: floatGlow 7s var(--ease) infinite;
}
.phone {
  position: relative;
  width: 290px;
  max-width: 78vw;
  aspect-ratio: 290 / 600;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #074a2b, #02140a);
  box-shadow:
    0 60px 110px -40px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 0 0 1px rgba(255,255,255,.04);
  z-index: 1;
}
.phone::before { /* encoche */
  content: "";
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px;
  background: #02140a;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-viewport {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #04190f;
}
.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.phone-screen.on { opacity: 1; transform: none; pointer-events: auto; }
.scr-top {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.scr-top .scr-title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 14px; color: #fff; }
.scr-top .scr-pill { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: rgba(217,169,40,.16); color: var(--gold-bright); }
.scr-body { flex: 1; padding: 14px; overflow: hidden; }

/* dots du carousel */
.phone-dots { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.phone-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0;
  background: rgba(255,255,255,.28); transition: all .25s var(--ease);
}
.phone-dots button.on { width: 24px; background: var(--gold); }

/* mini-écran stock (réutilise look app) */
.stk-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.stk-ic { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; font-size: 14px; }
.stk-name { flex: 1; font-size: 12.5px; color: rgba(255,255,255,.85); font-weight: 600; }
.stk-qty { font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.stk-qty.low { color: #ff7a6b; }
.stk-qty.ok { color: #6fd396; }

/* ---------- DÉMO VIDÉO (compacte, encastrée à côté du texte) ---------- */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.demo-text h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 10px; }
.demo-text p { color: var(--ink-soft); margin-top: 12px; font-size: 15px; }
.demo-wrap { max-width: 440px; margin: 0; width: 100%; }
@media (max-width: 920px) {
  .demo-grid { grid-template-columns: 1fr; gap: 22px; }
  .demo-wrap { max-width: 460px; margin: 0 auto; }
}
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(90% 120% at 80% 10%, rgba(217,169,40,.18), transparent 55%),
    linear-gradient(160deg, #003d22, #02140a);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.video-card video, .video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.video-overlay { position: relative; z-index: 2; text-align: center; color: #fff; padding: 20px; }
.play-btn {
  width: 58px; height: 58px; border-radius: 50%;
  border: none; margin: 0 auto 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 20px 50px -16px rgba(217,169,40,.7);
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 30px; height: 30px; fill: #2d1a00; margin-left: 4px; }
.video-overlay .vtxt { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(18px,2.4vw,26px); }
.video-overlay .vsub { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.7); }
.video-soon-tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(0,0,0,.45); color: var(--gold-bright);
  border: 1px solid rgba(217,169,40,.4); padding: 5px 11px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- TÉLÉCHARGEMENT ---------- */
.download { position: relative; overflow: hidden; }
.dl-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.dl-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.dl-card.dark {
  color: #eee;
  border-color: transparent;
  background:
    radial-gradient(100% 120% at 85% 15%, rgba(217,169,40,.22), transparent 55%),
    linear-gradient(150deg, #003d22, #03190f);
  box-shadow: var(--shadow-card);
}
.dl-os {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-family: "Bricolage Grotesque", sans-serif; font-size: 20px;
}
.dl-card.dark .dl-os { color: #fff; }
.dl-os svg { width: 26px; height: 26px; }
.dl-sub { margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,.72); }
.dl-card:not(.dark) .dl-sub { color: var(--ink-soft); }
.dl-btns { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.dl-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #fff; transition: all .2s var(--ease);
}
.dl-btn:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.dl-btn.primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border-color: transparent; color: #2d1a00;
  box-shadow: 0 16px 34px -14px rgba(217,169,40,.7);
}
.dl-btn.primary:hover { filter: brightness(1.05); }
.dl-btn .dl-ic { width: 26px; height: 26px; flex: none; display: grid; place-items: center; }
.dl-btn .dl-ic svg { width: 24px; height: 24px; }
.dl-btn .dl-main { display: block; font-weight: 800; font-size: 15px; line-height: 1.2; }
.dl-btn .dl-meta { display: block; margin-top: 3px; font-size: 11.5px; opacity: .7; font-weight: 600; line-height: 1.35; }
.dl-btn .dl-arrow { margin-left: auto; font-size: 18px; opacity: .6; }
.dl-note {
  margin-top: 18px; font-size: 12.5px; line-height: 1.6;
  color: rgba(255,255,255,.55);
  display: flex; gap: 8px; align-items: flex-start;
}
.dl-note svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--gold-bright); }

/* colonne droite : web app + stores */
.dl-side { display: flex; flex-direction: column; gap: 22px; }
.dl-web {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--mist-2);
  display: flex; flex-direction: column;
}
.dl-web .dl-os { color: var(--ink); }
.dl-web .dl-sub { color: var(--ink-soft); }
.dl-web .spacer { flex: 1; }
.store-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.store-badge {
  position: relative;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border-radius: 13px;
  border: 1px solid var(--line); background: #fff;
  opacity: .7;
}
.store-badge.disabled { cursor: not-allowed; }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-small { font-size: 10px; color: var(--ink-faint); font-weight: 600; line-height: 1; }
.store-badge .sb-big { font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.1; margin-top: 2px; }
.store-badge .sb-soon {
  position: absolute; top: -8px; right: 8px;
  font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: var(--ink); color: #fff; padding: 2px 7px; border-radius: 999px;
}

/* ---------- COMMENT ÇA MARCHE (3 étapes home) ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step3 {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px 24px;
}
.step3 .s-num {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 15px; width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(217,169,40,.14); color: var(--gold-deep);
}
.step3 h3 { font-size: 18px; }
.step3 p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- COUVERTURE AFRIQUE ---------- */
.coverage { text-align: center; }
.country-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 760px; margin: 0 auto;
}
.country-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: 14px; font-weight: 700; color: var(--ink);
}
.country-pill .flag { font-size: 16px; }
.country-pill.more { background: var(--ink); color: #fff; border-color: transparent; }

/* ═══════════════════════════════════════════════════════════
   TOUCHE FUTURISTE — halos animés, grille, dégradés, néon
   ═══════════════════════════════════════════════════════════ */

/* grille technique en fond des sections sombres */
.hero .btn-outline {
  background: rgba(255,255,255,.6);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.14);
}
.hero .btn-outline:hover { background: #fff; border-color: rgba(0,0,0,.24); }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

/* eyebrow néon */
.eyebrow-glow {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(217,169,40,.5);
}

/* badge hero : léger glow */
.badge { box-shadow: 0 0 0 1px rgba(217,169,40,.12), 0 8px 30px -12px rgba(217,169,40,.35); }

/* CTA or : halo pulsé */
.hero-cta .btn-gold { position: relative; }
.hero-cta .btn-gold::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  box-shadow: 0 0 36px 2px rgba(217,169,40,.45);
  opacity: .6; z-index: -1; animation: ctaPulse 3.2s var(--ease) infinite;
}
@keyframes ctaPulse { 50% { opacity: 1; box-shadow: 0 0 52px 6px rgba(217,169,40,.6); } }

/* ---------- ÉCOSYSTÈME / VISION ---------- */
.eco {
  position: relative;
  overflow: hidden;
  color: #eaeaea;
  background:
    radial-gradient(70% 90% at 15% 0%, rgba(217,169,40,.16), transparent 55%),
    radial-gradient(70% 90% at 90% 100%, rgba(217,169,40,.18), transparent 55%),
    linear-gradient(180deg, #0a0a0a, #050505);
}
.eco::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 50%, #000, transparent 80%);
  mask-image: radial-gradient(90% 80% at 50% 50%, #000, transparent 80%);
  pointer-events: none;
}
.eco .wrap { position: relative; z-index: 1; }
.eco .section-head h2 { color: #fff; }
.eco .section-head p { color: rgba(255,255,255,.66); }

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.eco-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.eco-card::before { /* liseré dégradé qui s'allume au survol */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--gold), transparent 40%, transparent 60%, var(--green-600));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s var(--ease);
}
.eco-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.eco-card:hover::before { opacity: 1; }
.eco-tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(217,169,40,.12);
  border: 1px solid rgba(217,169,40,.3); border-radius: 999px; padding: 3px 9px;
}
.eco-ic {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
}
.eco-ic svg { width: 24px; height: 24px; stroke: var(--gold-bright); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.eco-card h3 { color: #fff; font-size: 19px; }
.eco-card h3 b { color: var(--gold-bright); font-weight: 800; }
.eco-card p { margin-top: 8px; color: rgba(255,255,255,.62); font-size: 14px; }
.eco-note { text-align: center; margin-top: 34px; font-size: 13px; color: rgba(255,255,255,.45); font-weight: 600; }

/* bouton "me prévenir" dans les cartes écosystème */
.eco-notify {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 10px;
  transition: all .2s var(--ease);
}
.eco-notify:hover { background: rgba(217,169,40,.16); border-color: rgba(217,169,40,.5); color: var(--gold-bright); }
.eco-notify svg { width: 14px; height: 14px; }

/* formulaire liste d'attente */
.waitlist {
  position: relative; z-index: 1;
  max-width: 620px; margin: 40px auto 0;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  backdrop-filter: blur(8px);
}
.wl-head { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 4px; }
.wl-head b { color: var(--gold-bright); }
.wl-sub { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.wl-row { display: flex; gap: 10px; }
.wl-row input[type="email"] {
  flex: 1; min-width: 0;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 13px 16px;
  color: #fff; font-family: inherit; font-size: 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.wl-row input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.wl-row input[type="email"]:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,169,40,.18); }
.wl-msg { margin-top: 12px; font-size: 13.5px; font-weight: 600; min-height: 18px; }
.wl-msg.ok { color: #6fd396; }
.wl-msg.err { color: #ff7a6b; }

/* shimmer sur l'accent doré du hero */
.hero h1 .accent {
  background: linear-gradient(92deg, var(--gold-bright) 0%, #fff5d6 30%, var(--gold) 60%, var(--gold-bright) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 220% 0; } }

/* particules flottantes (sections sombres) */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particles i {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,169,40,.9), rgba(217,169,40,0) 70%);
  opacity: .5; animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(20px) scale(.6); opacity: 0; }
  15%  { opacity: .6; }
  85%  { opacity: .5; }
  100% { transform: translateY(-120px) scale(1); opacity: 0; }
}

/* parallax : suivi pointeur du téléphone (désactivé si reduced-motion) */
.phone-stage { transition: transform .25s var(--ease); will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .hero h1 .accent { animation: none; }
  .particles { display: none; }
  .phone-stage { transform: none !important; }
}

/* ---------- MODAL AUTH (connexion / inscription) ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,10,.62);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  animation: mFade .25s var(--ease);
}
.modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px 28px 26px;
  box-shadow: 0 44px 100px -34px rgba(0,0,0,.55);
  animation: mIn .3s var(--ease);
}
@keyframes mFade { from { opacity: 0; } }
@keyframes mIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; color: var(--ink-soft);
  transition: background .2s var(--ease);
}
.modal-close:hover { background: var(--mist); }
.modal-close svg { width: 17px; height: 17px; }
.modal-logo { height: 34px; margin-bottom: 20px; }
.modal-tabs {
  display: flex; gap: 4px;
  background: var(--mist); border-radius: 999px;
  padding: 4px; margin-bottom: 22px;
}
.modal-tab {
  flex: 1; border: none; background: none;
  padding: 10px; border-radius: 999px;
  font-weight: 700; font-size: 14px; color: var(--ink-soft);
  cursor: pointer; transition: all .2s var(--ease);
}
.modal-tab.on { background: #fff; color: var(--ink); box-shadow: 0 4px 12px -6px rgba(0,0,0,.3); }
.modal-pane { display: none; }
.modal-pane.on { display: block; animation: mFade .25s var(--ease); }
.modal-pane h3 { font-size: 22px; margin-bottom: 6px; }
.modal-pane .sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  font-weight: 700; font-size: 15px; color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.btn-google:hover { background: var(--mist); border-color: #d4d4d6; }
.btn-google svg { width: 18px; height: 18px; }
.modal-or { display: flex; align-items: center; gap: 12px; color: var(--ink-faint); font-size: 12px; font-weight: 700; margin: 2px 0; }
.modal-or::before, .modal-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.modal-foot { margin-top: 18px; text-align: center; font-size: 13px; color: var(--ink-faint); }
.modal-foot a { color: var(--green-700); font-weight: 800; cursor: pointer; }
.modal-foot a:hover { text-decoration: underline; }

/* ---------- responsive nouveaux blocs ---------- */
@media (max-width: 920px) {
  .dl-grid { grid-template-columns: 1fr; }
  .steps3 { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .eco-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .phone { width: 250px; }
  .phone-stage .mock-glow { width: 220px; height: 220px; }
  .dl-card, .dl-web { padding: 22px 18px; }
  .video-card { border-radius: var(--radius-md); }
  .play-btn { width: 62px; height: 62px; }
  .country-pill { padding: 7px 12px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   LANDING UNIVERSELLE 2026 — composants écosystème
   ═══════════════════════════════════════════════════════════ */

/* secondaire "bord vert" dans le hero (ADN) */
.hero .btn-outline { background: #fff; color: var(--green-800); border: 1.5px solid var(--green-700); }
.hero .btn-outline:hover { background: var(--mist); border-color: var(--green-800); }

/* Font Awesome — intégration dans les conteneurs d'icônes */
.cell .ic i, .domain .ic i { font-size: 21px; line-height: 1; }
.pain-ic { color: var(--green-600); display: inline-flex; }
.pain-ic i { font-size: 22px; }
.eh-chip i { color: var(--green-700); margin-right: 5px; }
.hero-chip i { color: var(--gold-deep); margin-right: 2px; font-size: 12px; }
.fin-point .fp-ic i, .off-list i { line-height: 1; }

/* hero chips */
.hero-chips { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--green-700);
  background: rgba(217,169,40,.07); border: 1px solid rgba(217,169,40,.16);
  padding: 7px 13px; border-radius: 999px;
}
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- HERO VISUEL ÉCOSYSTÈME ---------- */
.eco-hero-visual { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 420px; margin: 0 auto; }
.eh-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.eh-lines line { stroke: rgba(217,169,40,.30); stroke-width: .4; stroke-dasharray: 3.5 3; }
.eh-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 62%; max-width: 290px; z-index: 2;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 16px; box-shadow: 0 34px 70px -34px rgba(0,40,22,.4);
}
.eh-core-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.eh-core-title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 13px; }
.eh-sync { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; color: var(--green-600); background: rgba(217,169,40,.1); padding: 3px 8px; border-radius: 999px; }
.eh-sync-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 0 rgba(217,169,40,.5); animation: pulse 2s infinite; }
.eh-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.eh-kpi { background: var(--mist); border-radius: 12px; padding: 9px 11px; }
.eh-kpi .k-l { display: block; font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.eh-kpi .k-v { display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 18px; color: var(--ink); margin-top: 3px; font-variant-numeric: tabular-nums; }
.eh-bars { display: flex; align-items: flex-end; gap: 5px; height: 54px; }
.eh-bars i { flex: 1; height: var(--h); background: linear-gradient(180deg, #E6C24E, #1f8a5b); border-radius: 4px 4px 0 0; transform-origin: bottom; transform: scaleY(0); transition: transform .8s var(--ease); }
/* Les barres montent à l'apparition de la carte (et non cachées au chargement) */
.eco-hero-visual.in .eh-bars i { transform: scaleY(1); }
.eco-hero-visual.in .eh-bars i:nth-child(1) { transition-delay: .10s; }
.eco-hero-visual.in .eh-bars i:nth-child(2) { transition-delay: .17s; }
.eco-hero-visual.in .eh-bars i:nth-child(3) { transition-delay: .24s; }
.eco-hero-visual.in .eh-bars i:nth-child(4) { transition-delay: .31s; }
.eco-hero-visual.in .eh-bars i:nth-child(5) { transition-delay: .38s; }
.eco-hero-visual.in .eh-bars i:nth-child(6) { transition-delay: .45s; }
.eco-hero-visual.in .eh-bars i:nth-child(7) { transition-delay: .52s; }
/* Cartes KPI : légère entrée à l'apparition (en plus du count-up des chiffres) */
.eh-kpi { opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.eco-hero-visual.in .eh-kpi { opacity: 1; transform: none; }
.eco-hero-visual.in .eh-kpi:nth-child(2) { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
  .eh-bars i, .eh-kpi { transform: none; opacity: 1; transition: none; }
}
.eh-chip {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%,-50%);
  white-space: nowrap; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 13px; font-size: 12.5px; font-weight: 700; color: var(--ink);
  box-shadow: 0 12px 26px -16px rgba(0,40,22,.4);
  animation: floatGlow 6s var(--ease) infinite;
}
.eco-hero-visual .eh-chip:nth-child(4) { animation-delay: -.8s; }
.eco-hero-visual .eh-chip:nth-child(5) { animation-delay: -1.6s; }
.eco-hero-visual .eh-chip:nth-child(6) { animation-delay: -2.4s; }
.eco-hero-visual .eh-chip:nth-child(7) { animation-delay: -3.2s; }
.eco-hero-visual .eh-chip:nth-child(8) { animation-delay: -4s; }

/* ---------- RÉALITÉS TERRAIN — carrousel défilant, chaque carte sa couleur ---------- */
.pain-marquee {
  position: relative; overflow: hidden; margin-bottom: 56px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.pain-track { display: flex; gap: 16px; width: max-content; animation: painScroll 38s linear infinite; }
.pain-marquee:hover .pain-track { animation-play-state: paused; }
@keyframes painScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pain-card {
  flex: 0 0 282px; width: 282px;
  background: #fff; border: 1px solid var(--line);
  border-top: 3px solid var(--c, var(--green-600));
  border-radius: var(--radius-md); padding: 22px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pain-card .pain-ic, .pain-card .pain-ic i { color: var(--c, var(--green-600)); }
.pain-card h4 { font-family: "Bricolage Grotesque", sans-serif; font-size: 16px; margin: 12px 0 6px; }
.pain-card p { font-size: 14px; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) {
  .pain-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .pain-card[aria-hidden="true"] { display: none; }
}

/* flow connecté */
.flow-head { text-align: center; margin-bottom: 26px; }
.flow-head h3 { font-size: clamp(20px,2.4vw,28px); }
.flow-head p { color: var(--ink-soft); margin-top: 8px; }
/* frise "tout est connecté" — bandeau défilant en boucle */
.flow-marquee {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.flow-track { display: flex; align-items: center; gap: 10px; width: max-content; animation: painScroll 30s linear infinite; }
.flow-marquee:hover .flow-track { animation-play-state: paused; }
.flow-node {
  display: inline-flex; align-items: center; gap: 8px; flex: none; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; font-weight: 700; font-size: 14px; box-shadow: var(--shadow-soft);
}
.flow-node i { color: var(--green-600); font-size: 13px; }
.flow-node.gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #3a2c06; border-color: transparent; box-shadow: 0 10px 26px -10px rgba(217,169,40,.7); }
.flow-node.gold i { color: #3a2c06; }
.flow-arrow { color: var(--green-600); font-weight: 800; flex: none; }
@media (prefers-reduced-motion: reduce) {
  .flow-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .flow-node[aria-hidden="true"], .flow-arrow[aria-hidden="true"], .flow-loop { display: none; }
}

/* ---------- SECTEURS (onglets) ---------- */
.sectors { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 10px; box-shadow: var(--shadow-soft); }
.sector-tabs { display: flex; gap: 6px; flex-wrap: wrap; background: var(--mist); border-radius: 999px; padding: 5px; }
.sector-tab { flex: 1; min-width: 110px; border: none; background: none; padding: 11px 14px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--ink-soft); cursor: pointer; transition: all .2s var(--ease); }
.sector-tab.on { background: var(--green-800); color: #fff; box-shadow: 0 8px 18px -10px rgba(0,40,22,.6); }
.sector-body { padding: 28px 18px 18px; }
.sector-pane { display: none; }
.sector-pane.on { display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center; animation: mFade .3s var(--ease); }
.sector-info h3 { font-size: clamp(20px,2.4vw,26px); }
.soon-inline { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--gold-deep); background: rgba(217,169,40,.14); padding: 3px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px; }
.sector-info > p { color: var(--ink-soft); margin-top: 8px; font-size: 15px; }
.sector-feats { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sector-feats li { background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; font-size: 13px; font-weight: 600; }
.domain-cta.muted { color: var(--ink-faint); cursor: default; }
.domain-cta.muted:hover { gap: 4px; color: var(--ink-faint); }
/* cadre secteur — contient un mini-écran (remplaçable par une vraie capture) */
.sector-mock {
  aspect-ratio: 4/3; border-radius: var(--radius-md);
  display: grid; place-items: center; padding: 20px; overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 100% at 80% 0%, rgba(217,169,40,.14), transparent 55%),
    linear-gradient(160deg, var(--cream-2), var(--mist));
}
/* image réelle (quand fournie) : <img class="shot" ...> remplace .mini */
.shot { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 20px 44px -22px rgba(0,40,22,.4); }

/* mini-écran d'app (mock provisoire) */
.mini {
  width: 100%; max-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 22px 46px -24px rgba(0,40,22,.4);
  overflow: hidden; font-size: 12px;
}
.mini-bar { display: flex; align-items: center; gap: 5px; padding: 9px 12px; background: var(--mist); border-bottom: 1px solid var(--line); }
.mini-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d8d2c4; }
.mini-bar i:nth-child(1) { background: #ec6a5e; }
.mini-bar i:nth-child(2) { background: #f3bd4f; }
.mini-bar i:nth-child(3) { background: #61c454; }
.mini-bar span { margin-left: 6px; font-weight: 800; font-family: "Bricolage Grotesque", sans-serif; font-size: 11px; color: var(--ink); }
.mini-body { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.mini-row { display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 8px; background: var(--mist-2); border: 1px solid var(--line); }
.mini-row .d { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.mini-row .n { flex: 1; color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-row .v { font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.mini-badge { font-size: 9.5px; font-weight: 800; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.mini-badge.ok { background: rgba(217,169,40,.12); color: var(--green-600); }
.mini-badge.warn { background: rgba(255,59,48,.12); color: #d23b30; }
.mini-total { display: flex; justify-content: space-between; align-items: center; padding-top: 7px; margin-top: 1px; border-top: 1px solid var(--line); }
.mini-total span { font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--ink-faint); text-transform: uppercase; }
.mini-total b { font-family: "Bricolage Grotesque", sans-serif; font-size: 16px; color: var(--gold-deep); }
.mini-cta { margin-top: 3px; text-align: center; font-weight: 800; font-size: 11px; letter-spacing: .08em; color: #3a2c06; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-radius: 8px; padding: 9px; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mini-tile { aspect-ratio: 1.3; border-radius: 8px; display: grid; place-items: center; font-size: 11px; font-weight: 800; border: 1px solid var(--line); color: var(--ink-soft); background: var(--mist-2); }
.mini-tile.busy { background: rgba(217,169,40,.16); border-color: rgba(217,169,40,.4); color: var(--gold-deep); }
.mini-note { font-size: 11px; color: var(--ink-soft); font-weight: 600; }

/* ---------- FINANCE CLAIRE ---------- */
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.fin-points { margin-top: 22px; display: grid; gap: 16px; }
.fin-point { display: flex; gap: 12px; align-items: flex-start; }
.fp-ic { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(217,169,40,.14); color: var(--green-600); font-weight: 800; display: grid; place-items: center; font-size: 13px; margin-top: 2px; }
.fin-point b { font-size: 15px; }
.fin-point p { color: var(--ink-soft); font-size: 14px; margin-top: 2px; }
.pnl { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-card); }
.pnl-title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.pnl-row { display: grid; grid-template-columns: 76px 1fr auto; gap: 12px; align-items: center; margin-bottom: 10px; font-size: 13px; }
.pnl-row > span { color: var(--ink-soft); font-weight: 600; }
.pnl-row b { font-variant-numeric: tabular-nums; font-weight: 800; }
.pnl-bar { height: 8px; background: var(--mist); border-radius: 999px; overflow: hidden; }
.pnl-bar i { display: block; height: 100%; width: var(--w); background: var(--c); border-radius: 999px; animation: barW 1.1s var(--ease) both; }
@keyframes barW { from { width: 0; } }
.pnl-note { margin-top: 6px; font-size: 12.5px; color: var(--ink-faint); }

/* ---------- OFFLINE BAND ---------- */
.off-band {
  position: relative; overflow: hidden; color: #eae6da;
  background:
    radial-gradient(70% 90% at 12% 0%, rgba(217,169,40,.22), transparent 55%),
    radial-gradient(70% 90% at 90% 100%, rgba(217,169,40,.18), transparent 55%),
    linear-gradient(160deg, #0b5a35 0%, #003d22 100%);
}
.off-band .wrap { position: relative; z-index: 1; }
.off-band .section-head h2 { color: #fff; }
.off-band .section-head p { color: rgba(255,255,255,.66); }
.off-grid { display: grid; grid-template-columns: 260px 1fr; gap: 34px; align-items: center; margin-bottom: 30px; }
.off-phone { display: flex; justify-content: center; }
.off-screen { width: 100%; max-width: 250px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 15px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.off-row { margin-bottom: 14px; }
.off-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; background: rgba(255,122,107,.15); color: #ff9a8c; border: 1px solid rgba(255,122,107,.3); transition: all .4s var(--ease); }
.off-pill.synced { background: rgba(111,211,150,.15); color: #8fe3b4; border-color: rgba(111,211,150,.35); }
.op-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.off-line { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.07); font-size: 13.5px; color: rgba(255,255,255,.82); }
.off-line b { color: #fff; font-variant-numeric: tabular-nums; }
.off-foot { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.5); transition: color .4s var(--ease); }
.off-foot.synced { color: #8fe3b4; }
.off-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.off-list li { position: relative; padding-left: 26px; font-size: 15px; color: rgba(255,255,255,.8); }
.off-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-bright); font-weight: 800; }
.off-list b { color: #fff; }
.off-grow h3 { color: #fff; font-size: 20px; }
.off-grow p { color: rgba(255,255,255,.66); margin-top: 8px; font-size: 14.5px; }

/* offline & croissance — 2 cartes séparées */
.off2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.off2-card {
  border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--line); background: #fff;
  display: flex; flex-direction: column;
}
.off2-card.dark {
  color: #eae6da; border-color: transparent;
  background:
    radial-gradient(90% 120% at 88% 8%, rgba(217,169,40,.22), transparent 55%),
    linear-gradient(160deg, #0b5a35, #003d22);
  box-shadow: var(--shadow-card);
}
.off2-tag {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(217,169,40,.16); color: var(--gold-bright); border: 1px solid rgba(217,169,40,.32);
}
.off2-tag.green { background: rgba(217,169,40,.12); color: var(--green-700); border-color: rgba(217,169,40,.28); }
.off2-card h3 { font-size: 20px; margin: 12px 0 14px; }
.off2-card.dark h3 { color: #fff; }
.off2-card > p { color: var(--ink-soft); font-size: 14.5px; }
.off2-card .off-screen { max-width: none; margin-bottom: 16px; }
.off2-card .off-list { margin: 0; }

/* barres de croissance animées */
.grow-steps { display: flex; align-items: flex-end; gap: 14px; height: 168px; margin-top: 22px; }
.grow-step { flex: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.gs-bar { width: 100%; height: var(--h); border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transform-origin: bottom; animation: barGrow 1.1s var(--ease) both; }
.grow-step:nth-child(2) .gs-bar { animation-delay: .12s; }
.grow-step:nth-child(3) .gs-bar { animation-delay: .24s; }
.grow-step:nth-child(4) .gs-bar { background: linear-gradient(180deg, #E6C24E, var(--green-600)); animation-delay: .36s; }
.gs-lbl { margin-top: 10px; font-size: 11px; font-weight: 700; color: var(--ink-soft); display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; line-height: 1.2; }
.gs-lbl i { color: var(--green-600); font-size: 15px; }
@media (max-width: 920px) { .off2-grid { grid-template-columns: 1fr; } }

/* ---------- RAPPORTS ---------- */
.reports { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.report-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.rep-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 12px; color: #fff; letter-spacing: .03em; }
.rep-ic.pdf { background: #c0392b; }
.rep-ic.xls { background: #C8971F; }
.report-card b { font-size: 15px; }
.report-card p { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }

/* ---------- PARTENAIRES ---------- */
.partners {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  border-radius: var(--radius-lg); padding: 46px 42px; color: #fff;
  background:
    radial-gradient(80% 130% at 92% 8%, rgba(217,169,40,.30), transparent 55%),
    linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: var(--shadow-card);
}
.partners-copy { max-width: 620px; }
.partners h2 { color: #fff; font-size: clamp(22px,2.6vw,30px); margin-top: 10px; }
.partners-copy p { color: rgba(255,255,255,.78); margin-top: 10px; font-size: 15px; }
.eyebrow-on-dark { color: var(--gold-bright); }
.partners-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-dark { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-outline-dark:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ---------- responsive landing universelle ---------- */
@media (max-width: 920px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .fin-grid { grid-template-columns: 1fr; gap: 30px; }
  .off-grid { grid-template-columns: 1fr; gap: 28px; }
  .sector-pane.on { grid-template-columns: 1fr; gap: 22px; }
  .sector-mock { order: -1; }
  .reports { grid-template-columns: 1fr; }
  .partners { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .pain-grid { grid-template-columns: 1fr; }
  .eco-hero-visual { max-width: 340px; }
  .eh-chip { font-size: 11px; padding: 6px 10px; }
  .flow-node { font-size: 12.5px; padding: 8px 12px; }
  .sector-tab { min-width: 0; flex: 1 0 auto; font-size: 13px; padding: 9px 12px; }
  .partners { padding: 30px 22px; }
}

/* ═══════════════════════════════════════════════════════════
   AUDIT — contraste cartes, lisibilité, cliquables, tabbar
   ═══════════════════════════════════════════════════════════ */

/* 1) Cartes qui DÉCOLLENT du fond crème (bordure visible + ombre douce) */
.cell, .pain-card, .report-card, .step3, .feat-item, .domain,
.sectors, .pnl, .dl-web, .off2-card, .about-card, .video-card,
.eco-card, .dl-card, .testimonials-placeholder {
  box-shadow: 0 12px 30px -20px rgba(60,42,12,.35), 0 2px 6px -4px rgba(60,42,12,.12);
}
.off2-card.dark, .dl-card.dark, .video-card { box-shadow: var(--shadow-card); }

/* 2) Liens cliquables clairement identifiables */
.domain-cta { color: var(--gold-deep); }
.domain-cta:hover { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a, .feat-alert a { text-decoration: underline; text-underline-offset: 2px; }
a:not(.btn):not(.dl-btn):not(.btn-google):not(.btn-green):not(.btn-gold):not(.tab):not(.brand):not(.footer-brand):not(.nav-links a):focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* 3) Frise "tout est connecté" = DÉCORATIVE (pas des boutons cliquables) */
.flow-marquee, .flow-node, .flow-arrow { cursor: default; }
.flow-node { box-shadow: 0 4px 12px -8px rgba(60,42,12,.25); }

/* 4) TABBAR pilule flottante en bas (style app) */
.tabbar {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 90;
  display: flex; gap: 4px; padding: 7px;
  background: linear-gradient(100deg, rgba(0,61,34,.95) 0%, rgba(11,90,53,.92) 58%, rgba(110,92,24,.95) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  box-shadow: 0 22px 50px -22px rgba(0,36,20,.6), inset 0 1px 0 rgba(255,255,255,.08);
}
.tabbar .tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 15px; border-radius: 999px; border: none; background: none; cursor: pointer;
  color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; font-family: inherit;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.tabbar .tab i { font-size: 16px; }
.tabbar .tab span { line-height: 1; }
.tabbar .tab:hover { color: #fff; background: rgba(255,255,255,.09); }
.tabbar .tab-cta { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #3a2c06; }
.tabbar .tab-cta:hover { color: #3a2c06; filter: brightness(1.06); }
@media (max-width: 560px) {
  .tabbar { bottom: 10px; gap: 2px; padding: 6px; }
  .tabbar .tab { padding: 7px 11px; font-size: 10px; }
  .tabbar .tab i { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════
   RTL — arabe
   ═══════════════════════════════════════════════════════════ */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .hero-grid, [dir="rtl"] .fin-grid, [dir="rtl"] .off2-grid,
[dir="rtl"] .demo-grid, [dir="rtl"] .dl-grid, [dir="rtl"] .sector-pane.on { direction: rtl; }
[dir="rtl"] .nav-links, [dir="rtl"] .hero-cta, [dir="rtl"] .hero-chips,
[dir="rtl"] .cta-actions, [dir="rtl"] .partners-actions, [dir="rtl"] .footer-actions,
[dir="rtl"] .hero-trust, [dir="rtl"] .dl-btns, [dir="rtl"] .sector-feats { flex-direction: row-reverse; }
[dir="rtl"] .cell, [dir="rtl"] .pain-card, [dir="rtl"] .feat-item, [dir="rtl"] .off2-card,
[dir="rtl"] .pnl, [dir="rtl"] .sector-info, [dir="rtl"] .fin-copy, [dir="rtl"] .partners-copy,
[dir="rtl"] .step3, [dir="rtl"] .report-card, [dir="rtl"] .dl-card, [dir="rtl"] .legal-body,
[dir="rtl"] .feat-hero, [dir="rtl"] .about-card { text-align: right; }
[dir="rtl"] .lang { direction: ltr; } /* garder l'ordre FR · EN · عر */
[dir="rtl"] .report-card, [dir="rtl"] .fin-point, [dir="rtl"] .off-list li { direction: rtl; }
[dir="rtl"] .off-list li { padding-left: 0; padding-right: 26px; }
[dir="rtl"] .off-list li::before { left: auto; right: 0; }
[dir="rtl"] .flow-arrow { transform: scaleX(-1); }

/* ═══════════════════════════════════════════════════════════
   DÉTAIL AU CLIC — KPI / blocs / cartes interactifs (popover)
   ═══════════════════════════════════════════════════════════ */
.np-clickable { cursor: pointer; }
.cell.np-clickable { transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.cell.np-clickable:hover { transform: translateY(-4px); box-shadow: 0 24px 54px -24px rgba(60,42,12,.42); }
.cell.np-clickable::after {
  content: "\24D8"; /* ⓘ */ position: absolute; top: 10px; right: 12px;
  font-size: 13px; color: var(--green-600); opacity: .35; transition: opacity .2s var(--ease);
}
.cell.np-clickable:hover::after { opacity: .85; }
.eh-chip.np-clickable { transition: box-shadow .2s var(--ease); }
.eh-chip.np-clickable:hover { box-shadow: 0 8px 20px -8px rgba(0,0,0,.4); }

.np-pop {
  position: fixed; z-index: 300; max-width: 290px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; font-size: 13.5px; line-height: 1.5;
  box-shadow: 0 22px 60px -18px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.np-pop.show { opacity: 1; transform: none; }
.np-pop b { display: block; margin-bottom: 5px; color: var(--green-700); font-size: 13.5px; font-weight: 800; }
@media (prefers-reduced-motion: reduce) { .cell.np-clickable, .np-pop { transition: none; } }

/* Détail au clic — extension à tous les blocs marqués */
.report-card, .pain-card { position: relative; }
.report-card.np-clickable, .pain-card.np-clickable { transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.report-card.np-clickable:hover, .pain-card.np-clickable:hover { transform: translateY(-3px); box-shadow: 0 20px 46px -24px rgba(60,42,12,.4); }
.report-card.np-clickable::after { content: "\24D8"; position: absolute; top: 9px; right: 11px; font-size: 12px; color: var(--green-600); opacity: .4; }
.eh-chip.np-clickable, .flow-node.np-clickable, .off-line.np-clickable, .grow-step.np-clickable, .hero-chip.np-clickable { transition: filter .2s var(--ease); }
.eh-chip.np-clickable:hover, .flow-node.np-clickable:hover, .off-line.np-clickable:hover, .grow-step.np-clickable:hover, .hero-chip.np-clickable:hover { filter: brightness(1.05); }
/* frises : pause au survol pour pouvoir cliquer une carte */
.pain-track:hover, .flow-track:hover { animation-play-state: paused; }

/* ═══ Familles de l'écosystème (Opérations / Pilotage / Socle) ═══ */
.fam-head { margin: 40px 0 18px; }
.fam-head h3 { font-size: clamp(20px, 3vw, 24px); margin-top: 8px; }
.fam-head p { color: var(--ink-soft); margin-top: 4px; font-size: 14.5px; max-width: 56ch; }
.fam-tag { display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px; }
.fam-op { background: rgba(31,138,91,.14);  color: #1f8a5b; }
.fam-pi { background: rgba(217,169,40,.18);  color: var(--gold-deep); }
.fam-so { background: rgba(48,102,190,.14);  color: #3066be; }

/* Douleurs + frise : statiques (affichées une seule fois, sans défilement) */
.pain-track, .flow-track { animation: none !important; width: auto !important; flex-wrap: wrap; justify-content: center; }
.pain-marquee, .flow-marquee { overflow: visible; -webkit-mask: none !important; mask: none !important; }

/* Secteurs — volet "Vue d'ensemble" : mini-carte de l'écosystème (4 niveaux) */
.eco-map { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.eco-fam { position: relative; padding: 14px 14px 14px 18px; border-radius: 14px; background: #fff; border: 1px solid rgba(0,61,34,.10); box-shadow: 0 6px 18px rgba(0,61,34,.06); }
.eco-fam::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-radius: 14px 0 0 14px; background: var(--ef, #1f8a5b); }
.eco-fam .ef-n { font-weight: 800; color: var(--ef, #1f8a5b); font-size: .95rem; }
.eco-fam b { display: block; margin: 3px 0 4px; font-size: 1rem; color: #0f2e20; }
.eco-fam i { display: block; font-style: normal; font-size: .8rem; line-height: 1.35; color: #5a6b62; }
.eco-fam.f1 { --ef: #1f8a5b; }
.eco-fam.f2 { --ef: #5b8fde; }
.eco-fam.f3 { --ef: var(--gold-deep, #b8860b); }
.eco-fam.f4 { --ef: #2bb0a3; }
@media (max-width: 560px) { .eco-map { grid-template-columns: 1fr; } }
