@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   ORKESTROR — Feuille de style premium (refonte 2026)
   Palette navy/gold historique du produit, déclinée en variables.
   POURQUOI pile système uniquement : le site doit fonctionner
   100 % hors-ligne (aucune police externe, aucun CDN).
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Fonds sombres (hero, sections dark, footer) */
  --bg-dark: #081627;
  --bg-dark2: #0C1F38;
  /* Couleurs de marque */
  --navy: #0A4A7A;
  --navy-lt: #1565A0;
  --teal: #0E8C9E;
  --teal-lt: #16B3C7;
  --gold: #E8950C;
  --gold-lt: #FBBF24;
  --gold-bg: #FEF3C7;
  /* Couleurs d'accent fonctionnelles */
  --green: #16A34A;
  --blue: #2563EB;
  --purple: #7C3AED;
  --coral: #EF5350;
  /* Textes */
  --text: #13283C;
  --text-mid: #486484;
  --text-light: #8AA6C4;
  /* Fonds clairs */
  --sand: #F7F3EC;
  --lt-bg: #F2F7FB;
  --white: #FFFFFF;
  --border: #E2E8F0;
  /* Rayons et ombres douces (rendu "premium") */
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(8, 22, 39, .06);
  --shadow: 0 10px 34px rgba(8, 22, 39, .10);
  --shadow-lg: 0 24px 60px rgba(8, 22, 39, .16);
  --shadow-gold: 0 12px 40px rgba(232, 149, 12, .28);
  --max: 1200px;
  /* Pile 100 % système : aucune ressource distante à charger */
  --font: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

/* ─── Base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  /* POURQUOI : garde-fou contre tout débordement horizontal sur mobile */
  overflow-x: hidden;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; }
ul { list-style: none; }
/* POURQUOI : les ancres (#demo, #telecharger…) doivent s'arrêter
   SOUS le header fixe, pas derrière lui */
[id] { scroll-margin-top: 92px; }

/* Sprite d'icônes inline : jamais affiché directement */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Icônes SVG référencées via <use> : trait hérité de la couleur du texte */
.ico {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -.12em;
  flex-shrink: 0;
}

/* Lien d'évitement clavier (accessibilité) */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--gold); color: var(--bg-dark);
  padding: .6rem 1.2rem; font-weight: 700; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ─── Boutons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: .95rem; padding: .85rem 1.7rem;
  /* POURQUOI min-height 44px : cible tactile confortable — le site est
     consulté majoritairement depuis un téléphone (mobile-first) */
  min-height: 44px;
  border-radius: 12px; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap; font-family: inherit;
}
.btn .ico { font-size: 1.05em; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #D4860A); color: var(--bg-dark); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: .6rem 1.2rem; font-size: .88rem; }

/* ─── Header / navigation ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8, 22, 39, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s ease;
}
/* État condensé ajouté par JS après quelques pixels de scroll */
.site-header.scrolled { background: rgba(8, 22, 39, .97); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; transition: height .3s ease; }
.site-header.scrolled .nav-inner { height: 60px; }
.nav-logo {
  font-size: 1.35rem; font-weight: 800; color: #fff;
  display: inline-flex; align-items: center; gap: .6rem; letter-spacing: 1.5px;
}
.logo-mark { width: 34px; height: 34px; transition: width .3s ease, height .3s ease; }
.site-header.scrolled .logo-mark { width: 28px; height: 28px; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-menu a { color: rgba(255,255,255,.82); font-weight: 500; font-size: .95rem; transition: color .2s; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-lt); }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: -7px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-actions { display: flex; gap: .75rem; align-items: center; }
/* CTA dupliqués dans le panneau mobile : cachés sur desktop */
.nav-mobile-only { display: none; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  /* Cible tactile >= 44 px pour le pouce (usage mobile dominant) */
  min-width: 44px; min-height: 44px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
/* Croix animée quand le menu est ouvert (aria-expanded="true") */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── Hero (accueil) ─── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr;
  position: relative; background: var(--bg-dark); overflow: hidden;
}
/* Halos décoratifs : dégradés radiaux subtils dans la palette */
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 55%; height: 85%; border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 140, 158, .22), transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -8%;
  width: 42%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 149, 12, .13), transparent 70%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 3.5rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start;
  background: rgba(232, 149, 12, .14); color: var(--gold-lt);
  border: 1px solid rgba(232, 149, 12, .4); padding: .45rem 1.1rem;
  border-radius: 30px; font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.08;
  color: #fff; margin-bottom: 1.5rem; letter-spacing: -1px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.15rem; color: var(--text-light); margin-bottom: 2.2rem;
  max-width: 92%; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-proof { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.hero-proof-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--gold-lt); line-height: 1.1; }
.hero-proof-stat small { color: var(--text-light); font-size: .82rem; }
.hero-sep { width: 1px; height: 40px; background: rgba(255,255,255,.18); }

/* Visuel de droite : maquette SVG + badge flottant */
.hero-right {
  position: relative; z-index: 2; display: flex;
  align-items: center; justify-content: center; padding: 8rem 3rem 3.5rem;
}
.hero-shot { position: relative; width: 100%; max-width: 520px; }
.hero-shot .mockup { transform: rotate(-2deg); }
.badge-float {
  position: absolute; top: -18px; left: -22px; background: #fff;
  border-radius: 12px; padding: .6rem .95rem; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; color: var(--text);
  transform: rotate(-3deg); z-index: 3;
}
.badge-float .ico { color: var(--gold); font-size: 1.05rem; }
.badge-float-b {
  top: auto; left: auto; bottom: -16px; right: -14px;
  transform: rotate(2deg); color: var(--green);
}
.badge-float-b .ico { color: var(--green); }

/* ─── Bande d'arguments dorée ─── */
.strip { background: linear-gradient(90deg, var(--gold), #D4860A); padding: 1rem 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.strip-item { display: inline-flex; align-items: center; gap: .6rem; color: var(--bg-dark); font-weight: 700; font-size: .97rem; }
.strip-item .ico { font-size: 1.15rem; }

/* ─── Sections génériques ─── */
.section { padding: 6rem 0; position: relative; }
.section-sand { background: var(--sand); }
.section-light { background: var(--lt-bg); }
.section-dark { background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark2)); color: #fff; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  display: inline-block; color: var(--teal); font-weight: 700;
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-dark .section-eyebrow { color: var(--gold-lt); }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--navy); line-height: 1.15; letter-spacing: -.5px; margin-bottom: 1rem;
}
.section-dark .section-title { color: #fff; }
.section-sub { font-size: 1.1rem; color: var(--text-mid); }
.section-dark .section-sub { color: var(--text-light); }

/* ─── Cartes 3 interfaces ─── */
.interfaces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.iface-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.iface-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.iface-top { padding: 2rem; color: #fff; }
.iface-top.web { background: linear-gradient(135deg, var(--blue), #1E40AF); }
.iface-top.mobile { background: linear-gradient(135deg, var(--teal), #0A6E7C); }
.iface-top.desktop { background: linear-gradient(135deg, var(--gold), #B8780A); }
.iface-icon { font-size: 2.4rem; margin-bottom: .8rem; display: block; }
.iface-top h3 { font-size: 1.4rem; font-weight: 800; }
.iface-who {
  display: inline-block; background: rgba(255,255,255,.22);
  padding: .25rem .8rem; border-radius: 20px; font-size: .78rem; font-weight: 700; margin-top: .6rem;
}
.iface-body { padding: 1.8rem; }
.iface-body li { display: flex; align-items: flex-start; gap: .7rem; padding: .5rem 0; color: var(--text-mid); font-size: .95rem; }
.iface-body li .ico { color: var(--teal); margin-top: .3rem; }

/* Bandeau "source unique de données" */
.data-unity {
  margin-top: 2.5rem; text-align: center; background: var(--navy); color: #fff;
  padding: 1.5rem 2rem; border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.data-unity .ico { font-size: 1.6rem; color: var(--gold-lt); }
.data-unity strong { color: var(--gold-lt); }

/* ─── Section Télécharger (badges stores SVG) ─── */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.dl-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.dl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dl-ico { font-size: 2.3rem; margin-bottom: .6rem; display: inline-block; }
.dl-card h3 { margin-bottom: .35rem; font-size: 1.15rem; color: var(--navy); }
.dl-card p { color: var(--text-mid); font-size: .9rem; margin-bottom: 1.3rem; }
.dl-badges { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.store-badge { display: inline-block; border-radius: 10px; transition: transform .25s, box-shadow .25s; line-height: 0; }
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dl-note { color: var(--text-light); font-size: .78rem; margin-top: .9rem; }
.dl-login { text-align: center; color: var(--text-mid); font-size: .9rem; margin-top: 1.8rem; }
.dl-login a { color: var(--gold); font-weight: 700; }
.dl-login a:hover { text-decoration: underline; }

/* ─── Maquettes d'application (SVG "captures d'écran") ─── */
.shots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.mockup {
  margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 44px rgba(10, 74, 122, .14); border: 1px solid rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
}
.mockup:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mockup svg { display: block; width: 100%; height: auto; }
.mockup figcaption { padding: .95rem 1.2rem 1.1rem; }
.mockup figcaption strong { color: var(--navy); font-size: 1.02rem; }
.mockup figcaption span { display: block; color: var(--text-mid); font-size: .84rem; margin-top: .15rem; }

/* ─── Mode hors-ligne (split 4 étapes + panneau flotte) ─── */
.offline-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.offline-flow { display: flex; flex-direction: column; gap: 1.2rem; }
.flow-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.flow-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
}
.flow-gold { background: var(--gold); }
.flow-teal { background: var(--teal); }
.flow-blue { background: var(--blue); }
.flow-green { background: var(--green); }
.flow-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.flow-step p { font-size: .92rem; color: var(--text-mid); }
.offline-visual {
  background: linear-gradient(135deg, var(--bg-dark), var(--navy));
  border-radius: var(--radius-lg); padding: 2.5rem; color: #fff;
  position: relative; overflow: hidden;
}
.offline-visual::after {
  content: ''; position: absolute; top: -30%; right: -15%; width: 250px; height: 250px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232, 149, 12, .18), transparent 70%);
}
.offline-visual > * { position: relative; z-index: 2; }
.offline-visual h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 1rem; display: flex; align-items: center; gap: .7rem; }
.offline-visual h3 .ico { color: var(--gold-lt); }
.offline-visual .lead { color: rgba(255,255,255,.82); margin-bottom: 1.2rem; }
.offline-list li { display: flex; align-items: center; gap: .8rem; padding: .65rem 0; color: rgba(255,255,255,.9); }
.offline-list li .ico { color: var(--gold-lt); font-size: 1.15rem; }
.fleet-badge {
  margin-top: 1.5rem; background: rgba(232, 149, 12, .14); border: 1px solid rgba(232, 149, 12, .35);
  border-radius: 12px; padding: 1rem 1.3rem; display: flex; align-items: center; gap: .8rem;
}
.fleet-badge .ico { font-size: 1.5rem; color: var(--gold-lt); }
.fleet-badge span { font-size: .9rem; color: rgba(255,255,255,.9); }

/* ─── Cartes duo (Mobile Money / notifications) ─── */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.duo-card {
  background: var(--bg-dark2); border-radius: var(--radius-lg); padding: 2.2rem; color: #fff;
  border: 1px solid rgba(255,255,255,.08); transition: transform .3s;
}
.duo-card:hover { transform: translateY(-6px); }
.duo-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.duo-ico { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.duo-ico-green { background: rgba(22, 163, 74, .2); color: #4ADE80; }
.duo-ico-chat { background: rgba(37, 211, 102, .18); color: #25D366; }
.duo-head h3 { font-size: 1.3rem; font-weight: 800; }
.duo-head p { font-size: .85rem; color: var(--text-light); }
.duo-list li { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; color: rgba(255,255,255,.88); font-size: .95rem; }
.duo-list li .ico { color: #4ADE80; }

/* ─── Profils (Promoteur + 6 rôles) ─── */
.promoteur-hero {
  background: linear-gradient(135deg, var(--bg-dark), var(--navy));
  border-radius: var(--radius-lg); padding: 2.5rem; color: #fff;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.8rem;
  margin-bottom: 1.5rem; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.promoteur-hero::after {
  content: ''; position: absolute; top: -40%; right: -5%; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232, 149, 12, .2), transparent 70%);
}
.promoteur-hero > * { position: relative; z-index: 2; }
.promoteur-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gold-lt);
}
.promoteur-text h3 { font-size: 1.5rem; font-weight: 800; color: var(--gold-lt); margin-bottom: .3rem; }
.promoteur-text h3 span { color: var(--text-light); font-size: .95rem; font-weight: 400; font-style: italic; }
.promoteur-text p { color: rgba(255,255,255,.85); font-size: .98rem; }
.promoteur-badge {
  background: var(--gold); color: var(--bg-dark); padding: .6rem 1.2rem;
  border-radius: 30px; font-weight: 800; font-size: .85rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .5rem;
}
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.role-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.role-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.role-ico {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.role-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.role-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }

/* Pastilles de couleur réutilisées (icônes rôles / modules) */
.tint-navy { background: #DBEAFE; color: var(--navy); }
.tint-blue { background: #DBEAFE; color: var(--blue); }
.tint-gold { background: var(--gold-bg); color: var(--gold); }
.tint-purple { background: #EDE9FE; color: var(--purple); }
.tint-teal { background: #D5F4F8; color: var(--teal); }
.tint-green { background: #DCFCE7; color: var(--green); }
.tint-coral { background: #FEE2E2; color: var(--coral); }

/* ─── Grille de modules ─── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.4rem; text-align: center; transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-ico {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
}
.feature-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .4rem; }
.feature-card p { font-size: .85rem; color: var(--text-mid); }

/* ─── Étapes de déploiement ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-card { text-align: center; }
.process-num { font-size: 3rem; font-weight: 800; color: var(--gold); opacity: .25; line-height: 1; margin-bottom: .5rem; }
.process-ico {
  width: 68px; height: 68px; border-radius: 50%; background: var(--lt-bg);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  color: var(--navy); margin: 0 auto 1rem;
}
.section-sand .process-ico { background: #fff; box-shadow: var(--shadow-sm); }
.process-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.process-card p { font-size: .88rem; color: var(--text-mid); }

/* ─── Tarifs ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; display: flex; flex-direction: column; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
/* Formule du milieu légèrement agrandie + liseré doré = mise en avant */
.price-card.popular { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: scale(1.03); }
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.price-pop-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #D4860A); color: var(--bg-dark);
  padding: .4rem 1.3rem; border-radius: 20px; font-weight: 800; font-size: .8rem; white-space: nowrap;
}
.price-name { font-size: 1.5rem; font-weight: 800; margin-bottom: .3rem; }
.price-teal { color: var(--teal); }
.price-gold { color: var(--gold); }
.price-navy { color: var(--navy); }
.price-tag { color: var(--text-mid); font-size: .92rem; margin-bottom: 1.2rem; }
.price-cap { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.price-cap small { font-size: .9rem; font-weight: 500; color: var(--text-mid); }
.price-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.price-features { margin-bottom: 2rem; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: .7rem; padding: .5rem 0; font-size: .92rem; }
.price-features li .ico { color: var(--green); margin-top: .3rem; }
.pricing-note { text-align: center; color: var(--text-mid); margin-top: 2.2rem; font-style: italic; }

/* Tableau comparatif */
.table-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; }
.compare-table th { background: var(--bg-dark); color: #fff; padding: 1.1rem 1.3rem; font-weight: 700; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table th.col-pop { color: var(--gold-lt); }
.compare-table td { padding: .9rem 1.3rem; border-bottom: 1px solid var(--border); text-align: center; }
.compare-table td:first-child { text-align: left; }
.compare-table tbody tr:nth-child(even) { background: var(--lt-bg); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.cell-yes { color: var(--green); font-weight: 800; }
.cell-no { color: #CBD5E1; }
.cell-gold { color: var(--gold); font-weight: 700; }

/* ─── CTA final ─── */
.cta-final {
  background: linear-gradient(135deg, var(--bg-dark), var(--navy));
  border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center;
  color: #fff; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(14, 140, 158, .25), transparent 70%);
}
.cta-final::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 350px; height: 350px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232, 149, 12, .15), transparent 70%);
}
.cta-final > * { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; }
.cta-final p { font-size: 1.12rem; color: var(--text-light); margin-bottom: 2rem; }
.cta-final .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ─── En-tête de sous-page ─── */
.page-header {
  background: linear-gradient(135deg, var(--bg-dark), var(--navy));
  padding: 10rem 0 4.5rem; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; top: -30%; right: -8%; width: 350px; height: 350px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232, 149, 12, .15), transparent 70%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -.5px; }
.page-header p { font-size: 1.18rem; color: var(--text-light); max-width: 680px; margin: 0 auto; }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.contact-form .lead { color: var(--text-mid); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1rem; border: 2px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
  background: #fff; color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14, 140, 158, .15);
}
.form-success {
  display: none; align-items: flex-start; gap: .6rem; margin-top: 1rem;
  padding: 1rem 1.2rem; background: #DCFCE7; color: var(--green);
  border-radius: 10px; font-weight: 600;
}
.form-success.show { display: flex; }
.form-success .ico { font-size: 1.25rem; margin-top: .15rem; }
.contact-info-card {
  background: linear-gradient(135deg, var(--bg-dark), var(--navy));
  border-radius: var(--radius-lg); padding: 2.5rem; color: #fff; margin-bottom: 1.5rem;
}
.contact-info-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-ico {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(232, 149, 12, .18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-info-item p, .contact-info-item a { color: var(--text-light); font-size: .92rem; }
.contact-info-item a:hover { color: var(--gold-lt); }
.contact-side-card { background: #fff; border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-side-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; }
.contact-side-head .ico { color: var(--gold); font-size: 1.3rem; }
.contact-side-head strong { color: var(--navy); font-size: 1.05rem; }
.contact-side-card li { display: flex; align-items: flex-start; gap: .55rem; padding: .3rem 0; color: var(--text-mid); font-size: .92rem; }
.contact-side-card li .ico { color: var(--green); margin-top: .3rem; }

/* ─── FAQ (accordéon accessible) ─── */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.faq-q {
  width: 100%; padding: 1.3rem 1.6rem; font-weight: 700; font-size: 1rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; text-align: left; font-family: inherit; color: var(--text);
}
.faq-q .ico { color: var(--teal); transition: transform .3s; font-size: 1.1rem; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { padding: 0 1.6rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; color: var(--text-mid); }
.faq-item.open .faq-a { padding: 0 1.6rem 1.3rem; max-height: 400px; }

/* ─── Footer ─── */
.footer { background: var(--bg-dark); color: var(--text-light); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; letter-spacing: 1.5px; }
.footer-col h2 { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { display: block; color: var(--text-light); padding: .35rem 0; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-col a .ico { margin-right: .4rem; }
.footer-desc { font-size: .92rem; line-height: 1.7; max-width: 92%; }
.footer-badges { display: flex; gap: .8rem; margin-top: 1.2rem; flex-wrap: wrap; }
.footer-badge { background: rgba(255,255,255,.08); padding: .4rem .8rem; border-radius: 8px; font-size: .75rem; color: rgba(255,255,255,.7); }
.footer-brand { margin-top: .8rem; font-size: .85rem; }
.footer-brand strong { color: #fff; }
.footer-brand a { display: inline; padding: 0; color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem;
}

/* ─── Apparition au scroll ───
   POURQUOI le sélecteur commence par html.js : si JavaScript est absent
   (ou IntersectionObserver non supporté), la classe "js" n'est jamais posée
   et le contenu reste visible — repli garanti. */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
html.js .reveal-delay-1 { transition-delay: .1s; }
html.js .reveal-delay-2 { transition-delay: .2s; }
html.js .reveal-delay-3 { transition-delay: .3s; }
/* Respect de la préférence utilisateur "réduire les animations" */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .iface-card, .role-card, .feature-card, .price-card, .duo-card, .mockup, .dl-card { transition: none; }
}

/* ═══ RESPONSIVE ═══ */
/* Tablette et petits laptops */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding: 0 2rem 4rem; }
  .hero-left { padding: 8rem 2rem 3rem; }
  .features-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .interfaces-grid, .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Passage au menu hamburger */
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-dark); padding: 1.2rem 1.5rem 1.6rem; gap: .2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 40px rgba(0,0,0,.4);
  }
  .nav-menu.open li a { display: block; padding: .7rem .2rem; font-size: 1.05rem; }
  .nav-menu.open a.active::after { display: none; }
  .nav-mobile-only { display: block; margin-top: .6rem; }
  .nav-mobile-only .btn { width: 100%; justify-content: center; }
}
/* Tablette portrait */
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .offline-split, .duo-grid, .contact-grid, .pricing-grid, .shots-grid { grid-template-columns: 1fr; }
  .promoteur-hero { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
  .promoteur-icon { margin: 0 auto; }
  .promoteur-badge { justify-self: center; }
  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-8px); }
  .page-header { padding: 8.5rem 0 3.5rem; }
  .cta-final { padding: 3rem 1.8rem; }
  .badge-float { left: 0; }
  .badge-float-b { right: 0; }
}
/* Mobile */
@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .hero-left { padding: 7rem 1.2rem 2.5rem; }
  .hero-right { padding: 0 1.2rem 3.5rem; }
  .hero-sub { max-width: 100%; }
  .features-grid, .process-grid, .interfaces-grid, .roles-grid, .footer-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: .9rem 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .btn-lg { padding: .95rem 1.6rem; font-size: .98rem; }
  .hero-proof { gap: 1.1rem; }
  .contact-form { padding: 1.8rem 1.4rem; }
  .hero-shot .mockup { transform: none; }
}
