/* ============ NEEGUI — landing vitrine modernisée ============ */

:root {
  /* Greens */
  --green-950: #0a2412;
  --green-900: #0c2a15;
  --green-850: #103118;
  --green-800: #16391f;
  --green-700: #1f4a28;
  --green-600: #2a5e35;
  --green-glow: #6e5c18;

  /* Or / doré */
  --gold: #d9b65a;
  --gold-bright: #ecca6e;
  --gold-deep: #c4982f;
  --gold-text: #ddbb73;

  /* Neutres */
  --ink: #13241a;
  --ink-soft: #4a5a4f;
  --ink-faint: #788579;
  --paper: #ffffff;
  --mist: #eceef4;
  --mist-2: #f5f6fa;
  --line: #e3e6ee;

  /* Accents domaines */
  --commerce: #3fa86a;
  --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(--paper);
  -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 ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    radial-gradient(120% 130% at 88% 78%, rgba(150,122,28,.4) 0%, rgba(40,70,30,0) 46%),
    linear-gradient(118deg, var(--green-900) 0%, var(--green-800) 52%, #1d4220 100%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: rgba(255,255,255,.10);
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 76px;
}
.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 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 13.5px;
}
.lang button {
  border: none; background: none;
  padding: 6px 10px;
  border-radius: 8px;
  color: rgba(233,244,234,.55);
  font-weight: 700;
  transition: all .2s var(--ease);
}
.lang button.on {
  color: #fff;
  background: rgba(255,255,255,.14);
}
.link-ghost {
  font-weight: 600;
  font-size: 15px;
  color: rgba(233,244,234,.82);
  padding: 10px 6px;
}

/* ============ 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: #eef6ef;
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 88% 78%, rgba(150, 122, 28, 0.55) 0%, rgba(40, 70, 30, 0) 46%),
    radial-gradient(90% 90% at 12% 8%, rgba(63, 168, 106, 0.18) 0%, rgba(0,0,0,0) 50%),
    linear-gradient(118deg, var(--green-900) 0%, var(--green-800) 52%, #1d4220 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.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e8f3e9;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.badge svg { width: 15px; height: 15px; color: var(--gold-bright); }

.hero h1 {
  color: #fff;
  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: rgba(233, 244, 234, 0.82);
  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: rgba(233, 244, 234, 0.66);
  font-size: 13.5px;
  font-weight: 600;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }
.hero-trust b { color: #fff; font-weight: 800; }
.pioneer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(233,244,234,.75); font-weight: 500;
}

/* ---------- dashboard mockup ---------- */
.mock {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(165deg, #0b2011, #081a0d);
  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(63,168,106,.2); border-color: rgba(63,168,106,.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: 104px 0; }
.section.tint { background: var(--mist); }
.section.tint-2 { background: var(--mist-2); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.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(196px, auto);
  gap: 20px;
}
.cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  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: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(63,168,106,.12); color: var(--green-600);
}
.cell .ic svg { width: 23px; height: 23px; }
.cell h3 { font-size: 20px; }
.cell p { margin-top: 9px; color: var(--ink-soft); font-size: 15px; }
.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), #0b2011);
  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: 30px; max-width: 14ch; }
.cell.hero-cell p { color: rgba(233,244,234,.8); font-size: 16px; 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), #0b2011);
  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), #0b2011);
  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(63,168,106,.22), transparent 55%),
    linear-gradient(135deg, var(--green-900), #14391c);
}
.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: var(--green-950); color: rgba(233,244,234,.7); padding: 72px 0 36px; }
.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(63,168,106,.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 {
  background: var(--green-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
}
.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 { transform: translateY(24px); transition: transform .7s var(--ease); }
.reveal.in { 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: 76px 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; }
  .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: 900px; margin: 0 auto; padding: 56px 24px 80px; }

/* ── Hero section ────────────────────────────────────────── */
.feat-hero {
  background:
    radial-gradient(90% 90% at 10% 10%, rgba(63,168,106,.15) 0%, transparent 55%),
    linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 48px;
  color: #fff;
}
.feat-hero-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.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: 36px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; color: #fff; }
.feat-hero p   { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 560px; margin: 0; }
.feat-hero-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Alerte info ─────────────────────────────────────────── */
.feat-alert {
  background: rgba(63,168,106,.07);
  border: 1px solid rgba(63,168,106,.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(2, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.feat-item {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 22px;
}
.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(63,168,106,.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: 28px 32px;
  margin-bottom: 48px;
}
.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: 40px;
  text-align: center;
}
.feat-cta-block h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.feat-cta-block p  { font-size: 16px; color: var(--ink-soft); margin-bottom: 24px; }

/* ── 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: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-hero { padding: 28px 20px; border-radius: var(--radius-md); }
  .feat-hero h1 { font-size: 26px; }
  .feat-page { padding: 32px 16px 60px; }
  .feat-steps { padding: 20px 18px; }
  .feat-cta-block { padding: 28px 20px; }
}
