@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
/* ================================================================
   HAPTIC AGENCY — DA bleu nuit / dégradés / contrastes élevés
   ================================================================ */

@font-face {
  font-family: "Extenda";
  src: url("LOGOS/extenda-100-yotta.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #04060c;
  --bg-2: #070b16;
  --panel: #0a1120;
  --panel-2: #0d1526;
  --text: #f2f6ff;
  --muted: #a9b6d2;
  --muted-2: #7e8cab;
  --blue: #3b82f6;
  --blue-2: #60a5fa;
  --neon: #38bdf8;
  --cyan: #22d3ee;
  --line: rgba(136, 164, 236, 0.16);
  --line-strong: rgba(136, 164, 236, 0.32);
  --grad: linear-gradient(100deg, #38bdf8, #3b82f6 55%, #60a5fa);
  --radius: 20px;
  --font-display: "Extenda", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 700px at 15% -5%, rgba(59, 130, 246, 0.16), transparent 55%),
    radial-gradient(900px 600px at 110% 15%, rgba(34, 211, 238, 0.07), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Extenda n'a pas de glyphes pour les chiffres : classe utilitaire */
.num, .is-num {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(56, 189, 248, 0.35); }

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, .display, .section-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

h2:not(.section-title), h3 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
}

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 6, 12, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  height: 38px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}

.nav-links { display: flex; align-items: center; gap: 1.9rem; font-size: 0.92rem; }
.nav-links a { color: var(--muted); position: relative; padding: 0.3rem 0; transition: color 0.25s; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.9rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  color: #eaf6ff;
  background: linear-gradient(100deg, rgba(56, 189, 248, 0.16), rgba(59, 130, 246, 0.28));
  border: 1px solid rgba(96, 165, 250, 0.55);
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(100deg, rgba(56, 189, 248, 0.3), rgba(59, 130, 246, 0.45));
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  color: var(--text);
}
.nav-burger svg { display: block; }

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bfe3ff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.1);
  margin-bottom: 1.8rem;
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}

.scan-line {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 1.4rem;
  text-shadow: 0 0 60px rgba(59, 130, 246, 0.25);
}

.word-stack { display: inline-grid; vertical-align: baseline; }
.word-stack .rotating-word {
  grid-area: 1 / 1;
  background: linear-gradient(95deg, #7dd3fc, #38bdf8 40%, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.45));
  opacity: 0;
  transform: translateY(-0.4em);
  transition: opacity 0.55s ease, transform 0.55s ease;
  white-space: nowrap;
}
.word-stack .rotating-word.is-visible { opacity: 1; transform: translateY(0); }

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  max-width: 46ch;
  margin-bottom: 2.4rem;
}
.hero-sub strong { color: #d7e4fb; font-weight: 500; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn-primary {
  color: #061224;
  background: linear-gradient(100deg, #7dd3fc, #3b82f6);
  box-shadow: 0 10px 34px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(56, 189, 248, 0.55); }
.btn-ghost {
  color: #dbe7ff;
  border: 1px solid var(--line-strong);
  background: rgba(13, 21, 38, 0.5);
}
.btn-ghost:hover { border-color: rgba(96, 165, 250, 0.6); background: rgba(59, 130, 246, 0.12); transform: translateY(-2px); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.6rem;
  color: var(--muted-2);
  font-size: 0.88rem;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-proof svg { color: var(--neon); flex: none; }

/* ---- Visuel hero : vrais mockups téléphones ---- */

.hero-visual { position: relative; display: grid; place-items: center; min-height: 480px; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.orb-a { width: 380px; height: 380px; background: rgba(59, 130, 246, 0.28); top: 6%; left: 6%; }
.orb-b { width: 260px; height: 260px; background: rgba(34, 211, 238, 0.16); bottom: 4%; right: 8%; }

.phone-mock {
  position: relative;
  z-index: 3;
  width: min(292px, 60vw);
  border-radius: 34px;
  border: 1px solid rgba(136, 164, 236, 0.22);
  box-shadow: 0 34px 90px rgba(2, 6, 18, 0.85), 0 0 90px rgba(59, 130, 246, 0.25);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
/* Vitrine large (page solution) */
.mock-wide {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 34px 90px rgba(2, 6, 18, 0.75);
  display: block;
}

.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(13, 21, 38, 0.9);
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 40px rgba(2, 6, 18, 0.7);
  font-size: 0.85rem;
  color: #dce8fb;
  backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}
.chip-1 { top: 2%; right: -4%; animation-delay: -2s; }
.chip-2 { bottom: 5%; left: -8%; animation-delay: -4s; }
.chip .chip-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(56, 189, 248, 0.25), rgba(59, 130, 246, 0.35));
  color: var(--neon);
  flex: none;
}
.chip strong { color: #fff; }
.chip small { display: block; color: var(--muted-2); font-size: 0.72rem; }

/* ============ Bandeau défilant ============ */

.marquee {
  border-block: 1px solid var(--line);
  background: rgba(7, 11, 22, 0.6);
  overflow: hidden;
  padding: 0.95rem 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 20s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fa5cd;
  white-space: nowrap;
}
.marquee-track svg { color: var(--blue-2); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 1.75rem)); } }

/* ============ Sections communes ============ */

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: linear-gradient(180deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.015)); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
}
.section-head.center .eyebrow::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
.section-title .accent {
  background: linear-gradient(95deg, #7dd3fc, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 58ch; }
.section-head.center .section-sub { margin-inline: auto; }

/* ============ Problème : comparatif ============ */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.compare-card {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(13, 21, 38, 0.75), rgba(7, 11, 22, 0.55));
  position: relative;
  overflow: hidden;
}
.compare-card.haptic {
  border-color: rgba(96, 165, 250, 0.45);
  background:
    radial-gradient(110% 120% at 100% 0%, rgba(59, 130, 246, 0.2), transparent 55%),
    linear-gradient(170deg, rgba(13, 27, 51, 0.9), rgba(7, 11, 22, 0.6));
  box-shadow: 0 24px 70px rgba(59, 130, 246, 0.14);
}
.compare-card .compare-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.6rem;
}
.compare-card h3 { font-size: 1.35rem; margin-bottom: 1.4rem; color: #eaf1ff; }
.compare-card.haptic h3 { color: #fff; }

.compare-list { list-style: none; display: grid; gap: 0.9rem; }
.compare-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--muted); font-size: 0.97rem; }
.compare-list .ico { flex: none; margin-top: 0.15rem; }
.compare-list .bad .ico { color: #f87171; }
.compare-list .good .ico { color: var(--neon); }
.compare-list .good { color: #cddcf5; }

.compare-card .pill-ghost {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted-2);
}
.compare-card.haptic .pill-ghost {
  color: #bfe3ff;
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(59, 130, 246, 0.12);
}

/* ============ Fonctionnement : étapes ============ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}

.step {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(13, 21, 38, 0.7), rgba(7, 11, 22, 0.4));
  padding: 2.2rem 1.9rem 1.9rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(96, 165, 250, 0.45); }
.step::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.22), transparent);
  pointer-events: none;
}
.step-num {
  font-size: 2.6rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: #eef4ff; }
.step p { color: var(--muted); font-size: 0.96rem; }

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neon);
}

/* ============ Fonctionnalités ============ */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(13, 21, 38, 0.7), rgba(7, 11, 22, 0.45));
  padding: 1.9rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(56, 189, 248, 0.18), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: var(--neon);
  margin-bottom: 1.2rem;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 0.55rem; color: #eef4ff; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ============ Ownership + dashboard mockup ============ */

.own-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.own-points { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.own-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(13, 21, 38, 0.55);
}
.own-points .ico {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(56, 189, 248, 0.18), rgba(59, 130, 246, 0.3));
  color: var(--neon);
}
.own-points strong { display: block; color: #eef4ff; margin-bottom: 0.15rem; }
.own-points span { color: var(--muted); font-size: 0.93rem; }

.dash-mock {
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, #0c1425, #070b16);
  box-shadow: 0 40px 100px rgba(2, 6, 18, 0.75), 0 0 80px rgba(59, 130, 246, 0.12);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 17, 32, 0.8);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: #26355a; }
.dash-dot:nth-child(1) { background: #38bdf8; }
.dash-dot:nth-child(2) { background: #3b82f6; }
.dash-dot:nth-child(3) { background: #26355a; }
.dash-url {
  margin-left: 0.8rem;
  font-size: 0.72rem;
  color: var(--muted-2);
  background: rgba(7, 11, 22, 0.9);
  border: 1px solid var(--line);
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
}

.dash-body { display: grid; grid-template-columns: 56px 1fr; }
.dash-side {
  border-right: 1px solid var(--line);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  background: rgba(8, 13, 25, 0.6);
}
.dash-side span {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid; place-items: center;
  color: #5f7398;
}
.dash-side span.on { background: rgba(59, 130, 246, 0.22); color: var(--neon); }

.dash-main { padding: 1.4rem 1.5rem 1.6rem; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 1.3rem; }
.kpi {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: rgba(13, 21, 38, 0.6);
}
.kpi small { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.35rem; }
.kpi strong { font-size: 1.25rem; color: #fff; }
.kpi em { font-style: normal; font-size: 0.72rem; color: #4ade80; margin-left: 0.4rem; }

.dash-chart {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 0.9rem;
  background: rgba(13, 21, 38, 0.6);
  margin-bottom: 1.1rem;
}
.dash-chart small { display: block; font-size: 0.72rem; color: var(--muted-2); margin-bottom: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 90px; }
.bars i {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.9), rgba(59, 130, 246, 0.35));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.bars i.dim { background: rgba(96, 165, 250, 0.18); }

.dash-rows { display: grid; gap: 0.65rem; }
.dash-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  background: rgba(13, 21, 38, 0.45);
}
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(140deg, #38bdf8, #3b82f6);
  color: #061224;
  display: grid; place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex: none;
}
.dash-row .name { font-size: 0.85rem; color: #dbe7ff; }
.dash-row .meta { font-size: 0.72rem; color: var(--muted-2); }
.dash-row .spacer { flex: 1; }
.dash-row .status {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.status.ok { color: #86efac; background: rgba(74, 222, 128, 0.12); border: 1px solid rgba(74, 222, 128, 0.25); }
.status.warn { color: #fcd34d; background: rgba(252, 211, 77, 0.1); border: 1px solid rgba(252, 211, 77, 0.22); }

/* ============ Cibles ============ */

.targets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.target {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(13, 21, 38, 0.7), rgba(7, 11, 22, 0.45));
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.target:hover { transform: translateY(-5px); border-color: rgba(96, 165, 250, 0.45); }
.target .feature-icon { margin-inline: auto; }
.target h3 { font-size: 1.05rem; color: #eef4ff; margin-bottom: 0.3rem; }
.target p { color: var(--muted-2); font-size: 0.87rem; }

/* ============ FAQ ============ */

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 0.9rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 21, 38, 0.55);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq details[open] { border-color: rgba(96, 165, 250, 0.45); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 500;
  color: #e8f0ff;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--neon);
  transition: transform 0.3s, background 0.3s;
}
.faq details[open] .plus { transform: rotate(45deg); background: rgba(59, 130, 246, 0.18); }
.faq .faq-body { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.95rem; }

/* ============ CTA final ============ */

.final-cta { position: relative; overflow: hidden; }
.cta-box {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  background:
    radial-gradient(120% 160% at 50% -30%, rgba(59, 130, 246, 0.35), transparent 55%),
    linear-gradient(170deg, #0c1631, #070b16);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  box-shadow: 0 40px 100px rgba(2, 6, 18, 0.6), 0 0 90px rgba(59, 130, 246, 0.15);
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(120, 150, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 150, 235, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.cta-box p { color: var(--muted); max-width: 52ch; margin: 0 auto 2.2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============ Footer ============ */

.site-footer { border-top: 1px solid var(--line); background: rgba(6, 9, 17, 0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.2rem 0 2.4rem;
}
.footer-brand .brand-name { font-size: 1.1rem; }
.footer-brand p { color: var(--muted-2); font-size: 0.9rem; margin-top: 1rem; max-width: 30ch; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfe0ff;
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col a { color: var(--muted-2); font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--neon); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted-2);
}
.footer-bottom a:hover { color: var(--neon); }

/* ============ Page démo ============ */

.demo-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.demo-form {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(175deg, rgba(13, 21, 38, 0.85), rgba(7, 11, 22, 0.6));
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: 0 30px 80px rgba(2, 6, 18, 0.55);
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.15rem; }
.form-field label { font-size: 0.84rem; font-weight: 500; color: #cfe0ff; letter-spacing: 0.03em; }
.form-field input, .form-field textarea, .form-field select {
  font: inherit;
  color: var(--text);
  background: rgba(6, 10, 20, 0.8);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: rgba(96, 165, 250, 0.7);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.form-field select option { background: #0a1120; }

.demo-side h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1.1rem; }
.demo-side .lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }
.demo-perks { list-style: none; display: grid; gap: 1rem; }
.demo-perks li { display: flex; gap: 0.9rem; align-items: flex-start; color: #cddcf5; }
.demo-perks .ico { color: var(--neon); flex: none; margin-top: 0.2rem; }

/* ============ Mentions légales ============ */

.legal-page { max-width: 780px; margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) 0; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: #fff; margin-bottom: 2.2rem; }
.legal-page h2 { font-size: 1.2rem; color: #dce8fb; margin: 2.4rem 0 0.8rem; }
.legal-page h2::after { content: ""; display: block; width: 42px; height: 2px; background: var(--grad); border-radius: 2px; margin-top: 0.55rem; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.96rem; margin-bottom: 0.65rem; }
.legal-page ul { padding-left: 1.25rem; }

/* ============ Reveal au scroll ============ */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone-mock, .chip { animation: none; }
}

/* ============ Responsive ============ */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: auto; margin-top: 1rem; }
  .own-grid { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  .targets { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 8, 15, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.2rem 1rem;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  body.nav-open .nav-cta { display: inline-flex; margin-top: 1rem; justify-content: center; }
}

@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .targets { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .scan-line { font-size: clamp(1.55rem, 7.5vw, 2.2rem); }
  .word-stack .rotating-word { white-space: normal; }
  .scan-line { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .kpi:last-child { display: none; }
  .hero-visual { min-height: auto; padding: 1.5rem 0 1rem; }
  .phone-mock { width: min(250px, 62vw); }
  .chip-1 { right: 2%; top: -2%; }
  .chip-2 { left: 2%; }
}

/* ============ Custom Tables & Layouts ============ */
.dual-system { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.system-card { background: rgba(13, 21, 38, 0.55); border: 1px solid var(--line); border-radius: 16px; padding: 2rem; }
.system-card h3 { color: #fff; margin-bottom: 1rem; font-size: 1.4rem; }
.system-card ul { list-style: none; margin-bottom: 1.5rem; }
.system-card li { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); margin-bottom: 0.5rem; }
.system-card li svg { color: var(--neon); }
.system-card .best-for { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); padding: 0.8rem; border-radius: 8px; color: #bfe3ff; font-size: 0.9rem; }

.push-offer { display: flex; align-items: center; gap: 2rem; background: linear-gradient(170deg, rgba(13, 21, 38, 0.75), rgba(7, 11, 22, 0.55)); border: 1px solid var(--line); border-radius: 20px; padding: 2rem; }
.push-offer-visual { flex: 1; text-align: center; }
.push-offer-visual img { max-width: 250px; border-radius: 20px; display: inline-block; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.push-offer-content { flex: 1; }
.push-offer-content h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.push-offer-content p { color: var(--muted); margin-bottom: 1rem; }

.client-table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: 12px; border: 1px solid var(--line); background: rgba(10, 17, 32, 0.6); }
.client-table { width: 100%; border-collapse: collapse; text-align: left; }
.client-table th, .client-table td { padding: 1rem; border-bottom: 1px solid var(--line); }
.client-table th { color: var(--muted-2); font-weight: 500; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.client-table td { color: #dce8fb; font-size: 0.95rem; }
.client-table tr:last-child td { border-bottom: none; }
.client-table .status { padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.75rem; }
.client-table .status.actif { background: rgba(74, 222, 128, 0.15); color: #86efac; border: 1px solid rgba(74, 222, 128, 0.25); }
.client-table .status.inactif { background: rgba(248, 113, 113, 0.15); color: #fca5a5; border: 1px solid rgba(248, 113, 113, 0.25); }

@media (max-width: 860px) {
  .dual-system { grid-template-columns: 1fr; }
  .push-offer { flex-direction: column; }
}
