/* ==========================================================================
   DAXANS — Feuille de style principale
   Charte graphique officielle : Bleu Nuit #0F172A · Bleu Électrique #2563EB
   Blanc #FFFFFF · Gris Clair #F4F7FA · Gris Texte #64748B · Typo Inter
   ========================================================================== */

/* --- 1. Variables ------------------------------------------------------- */
:root {
  /* Couleurs officielles */
  --navy:        #0F172A;
  --blue:        #2563EB;
  --white:       #FFFFFF;
  --gray-light:  #F4F7FA;
  --gray-text:   #64748B;

  /* Déclinaisons de travail (dérivées de la palette officielle) */
  --navy-700:    #1E293B;
  --navy-600:    #334155;
  --slate-400:   #94A3B8;
  --border:      #E2E8F0;
  --border-soft: #EEF2F7;
  --blue-dark:   #1D4ED8;
  --blue-soft:   #EFF6FF;
  --green:       #0E9F6E;
  --amber:       #B45309;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow:    0 4px 16px rgba(15, 23, 42, .07);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, .12);

  --wrap: 1180px;
  --font: "Inter", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --- 2. Base ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.01em; }
h4 { font-size: 1rem; letter-spacing: 0; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

img, svg { max-width: 100%; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .45);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* --- 3. Structure ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--light { background: var(--gray-light); }
.section--navy { background: var(--navy); color: #CBD5E1; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--gray-text); font-size: 1.06rem; margin-bottom: 0; }
.section--navy .section-head p { color: var(--slate-400); }

.eyebrow {
  display: inline-block;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section--navy .eyebrow { color: #60A5FA; }

.lead { font-size: 1.14rem; color: var(--gray-text); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- 4. Boutons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  font-family: var(--font); font-size: .96rem; font-weight: 600; line-height: 1.2;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 2px 10px rgba(37, 99, 235, .25); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; box-shadow: 0 6px 18px rgba(37, 99, 235, .32); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { background: var(--gray-light); border-color: var(--slate-400); color: var(--navy); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- 5. En-tête --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand svg, .brand img { width: 34px; height: 34px; display: block; }
.brand-name {
  font-size: 1.16rem; font-weight: 700; letter-spacing: .085em; color: var(--navy);
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 13px; border-radius: 7px;
  color: var(--navy-600); font-size: .935rem; font-weight: 500; text-decoration: none;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--gray-light); color: var(--navy); text-decoration: none; }
.nav a.is-active { color: var(--blue); font-weight: 600; }
.nav a.btn-primary, .nav a.btn-primary:hover { background: var(--blue); color: #fff; }
.nav a.btn-primary:hover { background: var(--blue-dark); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-switch { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; }
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font); font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--gray-text); padding: 7px 10px;
  transition: background .15s, color .15s;
}
.lang-switch button:hover { background: var(--gray-light); color: var(--navy); }
.lang-switch button.is-active { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* --- 6. Hero ------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% -12%, rgba(37, 99, 235, .16), transparent 62%),
    linear-gradient(180deg, #FFFFFF 0%, var(--gray-light) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 84px 24px 88px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.18rem; max-width: 40em; margin-bottom: 28px; }

.badge-line {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37, 99, 235, .09); color: var(--blue-dark);
  border: 1px solid rgba(37, 99, 235, .18);
  padding: 6px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; margin-bottom: 22px;
}
.badge-line .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.hero-note { margin-top: 22px; font-size: .87rem; color: var(--gray-text); }

/* Aperçu de fiche dans le hero */
.hero-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-card-top {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--navy); color: #fff;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
}
.hero-card-top .dots { display: flex; gap: 5px; margin-right: 6px; }
.hero-card-top .dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); display: block; }
.hero-card-body { padding: 20px; }
.hero-card-body .hc-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.hero-card-body .hc-meta { font-size: .82rem; color: var(--gray-text); margin-bottom: 16px; }
.hc-rows { display: grid; gap: 9px; }
.hc-row { display: flex; justify-content: space-between; align-items: center; font-size: .87rem; padding-bottom: 9px; border-bottom: 1px solid var(--border-soft); }
.hc-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hc-row span:first-child { color: var(--gray-text); }
.hc-row span:last-child { color: var(--navy); font-weight: 600; }
.hc-bar { display: inline-block; vertical-align: middle; height: 6px; border-radius: 999px; background: var(--border); overflow: hidden; width: 96px; }
.hc-bar i { display: block; height: 100%; background: var(--blue); border-radius: 999px; }

/* --- 7. Bandeau de chiffres --------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat { background: #fff; padding: 26px 22px; }
.stat .num { font-size: 1.85rem; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; line-height: 1.1; }
.stat .lbl { font-size: .86rem; color: var(--gray-text); margin-top: 6px; }
.section--navy .stat { background: var(--navy-700); }
.section--navy .stats { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.section--navy .stat .num { color: #60A5FA; }
.section--navy .stat .lbl { color: var(--slate-400); }

/* --- 8. Cartes ---------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #CBD5E1; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .95rem; color: var(--gray-text); }
.card-flat:hover { transform: none; box-shadow: var(--shadow-sm); }

.icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon-box svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.section--navy .icon-box { background: rgba(96, 165, 250, .14); color: #93C5FD; }

/* Carte offre */
.offer { display: flex; flex-direction: column; height: 100%; }
.offer .offer-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.offer ul { padding-left: 0; list-style: none; margin: 16px 0 0; }
.offer li { position: relative; padding-left: 24px; font-size: .91rem; color: var(--navy-600); margin-bottom: 8px; }
.offer li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 13px; height: 8px; border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.offer .offer-foot { margin-top: auto; padding-top: 20px; }
.offer .offer-price { font-size: .86rem; color: var(--gray-text); font-weight: 500; }

/* Étapes numérotées */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 22px; border-top: 2px solid var(--border); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -13px; left: 0;
  background: #fff; padding-right: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; color: var(--blue);
}
.section--light .step::before { background: var(--gray-light); }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--gray-text); margin: 0; }

/* Listes public cible */
.audience { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.audience:last-child { border-bottom: 0; }
.audience .icon-box { margin-bottom: 0; flex-shrink: 0; }
.audience h3 { font-size: 1.05rem; margin-bottom: 5px; }
.audience p { font-size: .94rem; color: var(--gray-text); margin: 0; }

/* Encadré citation / mise en garde */
.callout {
  border-left: 3px solid var(--blue); background: var(--blue-soft);
  padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem; color: var(--navy-700);
}
.callout--warn { border-left-color: var(--amber); background: #FFFBEB; color: #78350F; }

/* --- 9. Module Registry (recherche d'entreprises) ----------------------- */
.demo-banner {
  background: #FFFBEB; border: 1px solid #FDE68A; color: #78350F;
  padding: 13px 18px; border-radius: var(--radius-sm);
  font-size: .89rem; display: flex; gap: 11px; align-items: flex-start;
}
.demo-banner svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.searchbar { display: flex; gap: 10px; margin: 26px 0 18px; }
.searchbar .field { position: relative; flex: 1; }
.searchbar .field svg {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; stroke: var(--gray-text); fill: none; stroke-width: 2; pointer-events: none;
}
.searchbar input[type="search"], .searchbar input[type="text"] {
  width: 100%; padding: 15px 16px 15px 44px;
  font-family: var(--font); font-size: 1rem; color: var(--navy);
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.searchbar input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filters select, .filters-bar select {
  width: auto; min-width: 150px; flex: 0 0 auto;
  font-family: var(--font); font-size: .89rem; color: var(--navy);
  padding: 9px 34px 9px 13px; border: 1px solid var(--border); border-radius: 7px; background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748B'%3E%3Cpath d='M4.5 6.5 8 10l3.5-3.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 16px;
  cursor: pointer;
}
.filters select:focus, .filters-bar select:focus { outline: none; border-color: var(--blue); }
.filters .reset, .filters-bar .reset { background: none; border: 0; color: var(--blue); font-family: var(--font); font-size: .87rem; font-weight: 600; cursor: pointer; padding: 6px; }

.result-count { font-size: .88rem; color: var(--gray-text); margin: 18px 0 14px; }
.result-count strong { color: var(--navy); }

.company-list { display: grid; gap: 12px; }
.company-item {
  display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; cursor: pointer; text-align: left; width: 100%;
  font-family: var(--font);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.company-item:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-1px); }
.ci-name { display: block; font-size: 1.03rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.ci-meta { display: block; font-size: .85rem; color: var(--gray-text); }
.ci-meta span + span::before { content: "·"; margin: 0 7px; color: var(--border); }
.ci-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }

.pill {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .01em;
  background: var(--gray-light); color: var(--navy-600); border: 1px solid var(--border);
}
.pill--ok { background: #ECFDF5; color: #065F46; border-color: #A7F3D0; }
.pill--blue { background: var(--blue-soft); color: var(--blue-dark); border-color: #BFDBFE; }
.pill--warn { background: #FFFBEB; color: #92400E; border-color: #FDE68A; }

.score { display: inline-flex; align-items: baseline; gap: 4px; font-weight: 700; color: var(--navy); }
.score .max { font-size: .74rem; color: var(--gray-text); font-weight: 500; }

.empty-state { text-align: center; padding: 56px 20px; color: var(--gray-text); }
.empty-state h3 { color: var(--navy); }

/* Fiche entreprise (panneau) */
.sheet-backdrop {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(3px); z-index: 90;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
}
.sheet-backdrop.is-open { opacity: 1; visibility: visible; }
.sheet {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(620px, 100%);
  background: #fff; z-index: 91; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(15, 23, 42, .18);
}
.sheet.is-open { transform: none; }
.sheet-head { position: sticky; top: 0; background: var(--navy); color: #fff; padding: 24px 28px; z-index: 2; }
.sheet-head h2 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; padding-right: 40px; }
.sheet-head .sh-sub { font-size: .87rem; color: var(--slate-400); }
.sheet-close {
  position: absolute; top: 20px; right: 20px;
  width: 34px; height: 34px; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,.12); border: 0; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.sheet-close:hover { background: rgba(255,255,255,.22); }
.sheet-body { padding: 26px 28px 40px; }
.sheet-section { margin-bottom: 30px; }
.sheet-section h3 {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--border);
}
.kv { display: grid; grid-template-columns: 190px 1fr; gap: 10px 18px; font-size: .92rem; }
.kv dt { color: var(--gray-text); }
.kv dd { margin: 0; color: var(--navy); font-weight: 500; }

.fin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.fin-table th, .fin-table td { padding: 10px 12px; text-align: right; border-bottom: 1px solid var(--border-soft); }
.fin-table th:first-child, .fin-table td:first-child { text-align: left; }
.fin-table thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-text); font-weight: 600; }
.fin-table tbody td { color: var(--navy); font-variant-numeric: tabular-nums; }
.table-scroll { overflow-x: auto; }

.locked {
  position: relative; border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center; background: var(--gray-light);
}
.locked .icon-box { margin: 0 auto 14px; background: #fff; }
.locked h4 { margin-bottom: 6px; }
.locked p { font-size: .9rem; color: var(--gray-text); margin-bottom: 16px; }

/* --- 10. Formulaires ---------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group.full { grid-column: 1 / -1; }
label { font-size: .875rem; font-weight: 600; color: var(--navy); }
label .opt { font-weight: 400; color: var(--gray-text); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  font-family: var(--font); font-size: .96rem; color: var(--navy);
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .87rem; color: var(--gray-text); font-weight: 400; }
.check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--blue); }
.form-note { font-size: .82rem; color: var(--gray-text); }
.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .92rem; }
.form-status.ok { display: block; background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-status.err { display: block; background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* Bloc inscription liste d'attente */
.waitlist {
  background: var(--navy); color: #CBD5E1; border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.waitlist h2 { color: #fff; font-size: 1.7rem; }
.waitlist p { color: var(--slate-400); font-size: .98rem; }
.waitlist form { display: grid; gap: 12px; }
.waitlist input {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff;
}
.waitlist input::placeholder { color: #7F8EA3; }
.waitlist input:focus { background: rgba(255,255,255,.12); border-color: #60A5FA; box-shadow: 0 0 0 3px rgba(96,165,250,.2); }
.waitlist .form-note { color: #7F8EA3; }

/* --- 11. CTA final ------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1B2C4E 100%);
  border-radius: var(--radius-lg); padding: 52px 48px; text-align: center; color: #CBD5E1;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(37,99,235,.35), transparent 68%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { max-width: 620px; margin: 0 auto 26px; color: var(--slate-400); }
.cta-band .btn-row { justify-content: center; }

/* --- 12. Pied de page --------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--slate-400); padding: 62px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .88rem; margin-top: 14px; max-width: 30em; }
.footer-tagline { color: #60A5FA; font-size: .82rem; font-weight: 600; margin-top: 10px; }
.site-footer h4 { color: #fff; font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--slate-400); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem;
}

/* --- 13. Pages de contenu ----------------------------------------------- */
.page-head { background: var(--gray-light); border-bottom: 1px solid var(--border); padding: 62px 0 56px; }
.page-head h1 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 14px; }
.page-head p { max-width: 44em; color: var(--gray-text); font-size: 1.08rem; margin: 0; }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; }
.prose ul { padding-left: 1.2em; }
.prose li { font-size: .98rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .93rem; }
.prose th, .prose td { padding: 11px 14px; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--gray-light); color: var(--navy); font-weight: 600; }

/* --- 14. Utilitaires ---------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
/* L'attribut hidden doit l'emporter sur les display: flex des composants
   (bandeau de démonstration, bouton « afficher plus »…). */
[hidden] { display: none !important; }
.nowrap { white-space: nowrap; }
[data-i18n-hidden] { visibility: hidden; }

/* --- 15. Responsive ----------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 68px; }
  .hero-card { max-width: 460px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .waitlist { grid-template-columns: 1fr; padding: 32px; gap: 26px; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 14px 24px 20px; box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 8px; font-size: 1rem; border-radius: 8px; }
  .nav .btn { margin-top: 8px; }
  .header-actions { margin-left: auto; }
  .header-inner { gap: 12px; position: relative; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .kv { grid-template-columns: 1fr; gap: 3px 0; }
  .kv dd { margin-bottom: 10px; }
  .cta-band { padding: 38px 24px; }
  .company-item { grid-template-columns: 1fr; gap: 12px; }
  .ci-right { flex-direction: row; align-items: center; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .sheet-head, .sheet-body { padding-left: 20px; padding-right: 20px; }
  .searchbar { flex-direction: column; }
  .filters select, .filters-bar select { width: 100%; min-width: 0; flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .lang-switch { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* --- 16. Accueil-annuaire ------------------------------------------------ */
.reg-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 50% -30%, rgba(37, 99, 235, .45), transparent 65%),
    linear-gradient(180deg, #0F172A 0%, #16233F 100%);
  color: #CBD5E1;
  padding: 62px 0 56px;
}
.reg-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}
.reg-hero .wrap { position: relative; }
.reg-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.9vw, 2.9rem); margin-bottom: 14px; text-wrap: balance; }
.reg-hero .lead { color: var(--slate-400); font-size: 1.08rem; max-width: 46em; }
.reg-hero .eyebrow { color: #60A5FA; }
.reg-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.searchbar--hero { margin: 30px 0 16px; }
.searchbar--hero input[type="search"] {
  padding: 19px 18px 19px 52px; font-size: 1.06rem;
  border-color: transparent; box-shadow: 0 14px 40px rgba(2, 8, 23, .35);
}
.searchbar--hero .field svg { left: 19px; width: 21px; height: 21px; }

.sector-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 6px; }
.sector-chips a {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: .84rem; font-weight: 500; text-decoration: none;
  color: #CBD5E1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  transition: background .15s, color .15s, border-color .15s;
}
.sector-chips a:hover { background: rgba(255,255,255,.16); color: #fff; text-decoration: none; border-color: rgba(255,255,255,.3); }

.reg-maj { margin-top: 18px; font-size: .84rem; color: var(--slate-400); }

.ci-figure { display: block; margin-top: 7px; font-size: .87rem; color: var(--gray-text); }
.ci-figure strong { color: var(--navy); }
.ci-figure--none { font-style: italic; }

.reg-more-wrap { text-align: center; margin-top: 26px; }

.filters-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 16px 0 4px;
}

/* --- 17. Pages solutions ------------------------------------------------- */
.sol-switch { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.sol-switch a {
  padding: 9px 16px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  color: var(--navy-600); background: #fff; border: 1px solid var(--border); text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.sol-switch a:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.sol-switch a.is-current { background: var(--navy); border-color: var(--navy); color: #fff; }

.usecase { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.usecase:last-child { border-bottom: 0; }
.usecase .uc-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .84rem; font-weight: 700;
}
.usecase h3 { font-size: 1.03rem; margin-bottom: 4px; }
.usecase p { font-size: .94rem; color: var(--gray-text); margin: 0; }

.faq details {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 10px; background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy); font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; font-size: .95rem; color: var(--gray-text); }

@media (max-width: 860px) {
  .reg-hero { padding: 44px 0 40px; }
  .searchbar--hero input[type="search"] { padding: 16px 16px 16px 46px; font-size: 1rem; }
  .searchbar--hero .field svg { left: 16px; }
}

/* Tableau autonome (hors .prose) */
.prose-table { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; }
.prose-table th, .prose-table td { padding: 13px 16px; border: 1px solid var(--border); text-align: left; }
.prose-table th { background: var(--navy); color: #fff; font-weight: 600; font-size: .88rem; }
