/* ============ ELIAM'S DIGITAL — landing ============ */
:root {
  --navy-950: #050b1d;
  --navy-900: #081129;
  --navy-800: #0c1a3d;
  --navy-700: #12244f;
  --blue-600: #1e56c8;
  --blue-500: #2f6fe4;
  --blue-400: #4f8cff;
  --blue-300: #7fb0ff;
  --ink: #eaf1ff;
  --ink-dim: #a8b8d8;
  --ink-faint: #6b7ca0;
  --wa: #25d366;
  --wa-dark: #1baa52;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(127, 176, 255, 0.14);
  --radius: 18px;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.grad {
  background: linear-gradient(92deg, var(--blue-400), var(--blue-300) 60%, #b9d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-wa {
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #052e14;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(37, 211, 102, 0.4); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--blue-400); background: rgba(79, 140, 255, 0.08); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(5, 11, 29, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(127, 176, 255, 0.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--blue-400);
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.btn) {
  color: var(--ink-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.nav-links > a:not(.btn):hover { color: var(--ink); }
.btn-nav { padding: 10px 20px; font-size: 0.88rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(30, 86, 200, 0.35), transparent 65%);
  top: -180px; right: -120px;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.16), transparent 65%);
  bottom: -220px; left: -140px;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127, 176, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 176, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
  border: 1px solid var(--card-border);
  background: rgba(79, 140, 255, 0.07);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 10px var(--blue-400);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.lead {
  font-size: 1.12rem;
  color: var(--ink-dim);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-dim);
}
.hero-badges svg { color: var(--wa); flex-shrink: 0; }

/* hero visual — fake dashboard */
.hero-visual { position: relative; }
.dash-card {
  background: linear-gradient(160deg, rgba(18, 36, 79, 0.85), rgba(8, 17, 41, 0.95));
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(3, 8, 22, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(1.5deg);
  backdrop-filter: blur(6px);
}
.dash-head { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.dash-dot:first-child { background: #ff5f57; }
.dash-dot:nth-child(2) { background: #febc2e; }
.dash-dot:nth-child(3) { background: #28c840; }
.dash-title { margin-left: 10px; font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--ink-dim); }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(127, 176, 255, 0.1);
  border-radius: 12px;
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kpi-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.kpi-value { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.kpi-trend { font-size: 0.72rem; font-weight: 700; }
.kpi-trend.up { color: var(--wa); }

.dash-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(127, 176, 255, 0.08);
  border-radius: 12px;
  padding: 10px 6px 0;
  margin-bottom: 16px;
}
.dash-chart svg { width: 100%; height: 110px; }

.dash-rows { display: flex; flex-direction: column; gap: 8px; }
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 9px 13px;
}
.pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.pill-green { background: rgba(37, 211, 102, 0.14); color: #5fe294; }
.pill-blue { background: rgba(79, 140, 255, 0.16); color: var(--blue-300); }

.mini-card {
  position: absolute;
  background: linear-gradient(160deg, rgba(23, 44, 92, 0.95), rgba(10, 20, 47, 0.98));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(3, 8, 22, 0.6);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mini-crm { top: -26px; left: -34px; transform: rotate(-3deg); animation: float 5.5s ease-in-out infinite; }
.mini-app {
  bottom: -22px; right: -18px;
  transform: rotate(2.5deg);
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--blue-300);
  animation: float 6.5s ease-in-out 0.8s infinite;
}
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.mini-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); font-weight: 700; }
.mini-value { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); }
.mini-sub { font-size: 0.75rem; color: var(--ink-dim); line-height: 1.4; }

/* ---------- strip ---------- */
.strip { border-block: 1px solid rgba(127, 176, 255, 0.1); background: rgba(255, 255, 255, 0.015); }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 26px 0;
}
.strip-item { display: flex; flex-direction: column; text-align: center; gap: 1px; }
.strip-item strong { font-family: var(--font-display); font-size: 0.95rem; }
.strip-item span { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- sections ---------- */
.section { padding: 110px 0; position: relative; }
.section-alt {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(30, 86, 200, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.015);
  border-block: 1px solid rgba(127, 176, 255, 0.08);
}
.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub { color: var(--ink-dim); font-size: 1.05rem; }

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 20% 0%, rgba(79, 140, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(127, 176, 255, 0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(79, 140, 255, 0.4); background: rgba(79, 140, 255, 0.05); }
.service-tag {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-300);
  background: rgba(79, 140, 255, 0.14);
  border: 1px solid rgba(79, 140, 255, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
}
.service-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 111, 228, 0.25), rgba(79, 140, 255, 0.08));
  border: 1px solid rgba(127, 176, 255, 0.25);
  color: var(--blue-300);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.28rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 18px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--ink-dim);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: rgba(79, 140, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(127, 176, 255, 0.4);
}
.service-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-400);
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(127, 176, 255, 0.3); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--blue-400);
  display: inline-block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--ink-dim); }
.step-final {
  background: linear-gradient(150deg, rgba(37, 211, 102, 0.09), rgba(37, 211, 102, 0.02));
  border-color: rgba(37, 211, 102, 0.3);
}
.step-final .step-num { color: var(--wa); }
.step-final strong { color: #5fe294; }

/* ---------- partenaires ---------- */
#partenaires .section-head { margin-bottom: 40px; }
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding-block: 10px;
}
.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: scroll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(calc(-50% - 13px)); } }
.logo-card {
  flex-shrink: 0;
  width: 190px;
  height: 104px;
  background: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(3, 8, 22, 0.45);
  transition: transform 0.25s ease;
}
.logo-card:hover { transform: translateY(-4px) scale(1.03); }
.logo-card img { max-height: 68px; width: auto; max-width: 100%; object-fit: contain; }

/* ---------- contact ---------- */
.section-contact { padding-bottom: 130px; }
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(79, 140, 255, 0.14), transparent 70%),
    linear-gradient(160deg, rgba(18, 36, 79, 0.7), rgba(8, 17, 41, 0.9));
  border: 1px solid rgba(127, 176, 255, 0.2);
  border-radius: 28px;
  padding: 60px 56px;
  overflow: hidden;
}
.contact-card h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.contact-copy > p { color: var(--ink-dim); font-size: 1.05rem; margin-bottom: 28px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.contact-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.contact-highlight { display: grid; place-items: center; }
.highlight-box {
  text-align: center;
  border: 1px dashed rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.06);
  border-radius: 22px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  rotate: 2deg;
}
.highlight-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: #5fe294;
  line-height: 1;
}
.highlight-label { font-size: 0.95rem; color: var(--ink-dim); font-weight: 600; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid rgba(127, 176, 255, 0.1); background: var(--navy-900); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding: 54px 0 34px;
}
.footer-brand p { margin-top: 14px; color: var(--ink-faint); font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  width: fit-content;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--ink); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact span { color: var(--ink-faint); font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(127, 176, 255, 0.08);
  padding: 20px 0 26px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6); }

/* ---------- nav active link ---------- */
.nav-links > a.active {
  color: var(--ink);
  position: relative;
}
.nav-links > a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-400), transparent);
}

/* ---------- page header (sous-pages) ---------- */
.page-header {
  position: relative;
  padding: 170px 0 70px;
  overflow: hidden;
}
.page-header h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 18ch;
}
.page-header .lead { margin-bottom: 0; }

/* ---------- split (image + texte) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-img { order: 2; }
.split-reverse .split-copy { order: 1; }
.split-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 24px 60px rgba(3, 8, 22, 0.55);
}
.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 86, 200, 0.18), transparent 55%);
  pointer-events: none;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.split-copy > p { color: var(--ink-dim); margin-bottom: 16px; }
.split-copy .btn { margin-top: 12px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 14px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-dim);
  font-size: 0.97rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.45);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 8px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--wa);
  border-bottom: 2px solid var(--wa);
  transform: rotate(-45deg);
}

/* ---------- teaser cards (accueil) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.teaser-card:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 176, 255, 0.35);
  background: rgba(79, 140, 255, 0.05);
}
.teaser-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.teaser-card p { font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 18px; flex-grow: 1; }
.teaser-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-300);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.teaser-card:hover .teaser-link { color: var(--blue-400); }
.teaser-link.muted { color: var(--ink-faint); }

/* ---------- stats (à propos) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}
.stat { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.stat-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(92deg, var(--blue-400), var(--blue-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- values grid (à propos) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(127, 176, 255, 0.3); }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin: 4px 0 8px; }
.value-card p { font-size: 0.9rem; color: var(--ink-dim); }

/* ---------- partners grid (à propos) ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partners-grid .logo-card { width: auto; height: 110px; }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-tile {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.contact-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(127, 176, 255, 0.35);
}
.contact-tile h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.contact-tile p { font-size: 0.92rem; color: var(--ink-dim); margin-bottom: 18px; flex-grow: 1; }
.tile-wa { border-color: rgba(37, 211, 102, 0.35); background: rgba(37, 211, 102, 0.05); }
.tile-wa .service-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.06));
  border-color: rgba(37, 211, 102, 0.4);
  color: #5fe294;
}
.tile-wa .teaser-link { color: #5fe294; }
.tile-wa:hover { border-color: rgba(37, 211, 102, 0.6); }

/* ---------- FAQ ---------- */
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 0 26px;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(127, 176, 255, 0.3); }
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue-300);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 0 22px; color: var(--ink-dim); font-size: 0.95rem; }
.faq-item strong { color: #5fe294; }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .mini-crm, .mini-app { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero { padding-top: 140px; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .mini-crm { left: -8px; }
  .mini-app { right: -6px; }
  .strip-inner { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; padding: 48px 40px; }
  .contact-highlight { justify-items: start; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-img { order: 0; }
  .split-reverse .split-copy { order: 0; }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .page-header { padding-top: 140px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    background: rgba(5, 11, 29, 0.97);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a:not(.btn) { font-size: 1.3rem; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .kpi:last-child { display: none; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .contact-card { padding: 40px 26px; }
  .mini-crm { top: -18px; }
  .teaser-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid .logo-card { height: 92px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .faq-item { padding: 0 18px; }
}

/* ================= v2 — profondeur & personnalité ================= */

/* grain global */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E") repeat;
}

/* sélection & scrollbar */
::selection { background: var(--blue-500); color: #fff; }
html { scrollbar-color: var(--navy-700) var(--navy-950); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 8px;
  border: 2px solid var(--navy-950);
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-600); }

/* aurora — dérive lente des halos du hero */
.hero .orb-1 { animation: drift1 22s ease-in-out infinite alternate; }
.hero .orb-2 { animation: drift2 28s ease-in-out infinite alternate; }
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-90px, 60px) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(80px, -50px) scale(1.1); }
}

/* dashboard vivant */
.hero-visual { perspective: 1100px; }
.dash-card {
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
  will-change: transform;
}
.mini-card { transition: transform 0.3s ease-out; }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.row-new { animation: rowIn 0.5s ease; }
.pill { transition: background 0.4s ease, color 0.4s ease; }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); color: #7fb0ff; }
  100% { transform: scale(1); }
}
.bump { animation: bump 0.5s ease; display: inline-block; }

/* filigranes de section */
.has-wm { overflow: hidden; }
.wm {
  position: absolute;
  top: 30px;
  right: -8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  line-height: 1;
  color: rgba(127, 176, 255, 0.045);
  -webkit-text-stroke: 1.5px rgba(127, 176, 255, 0.09);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* photo d'ambiance dans les en-têtes de page */
.ph-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: saturate(0.65);
  -webkit-mask-image: linear-gradient(180deg, black 30%, transparent 96%);
  mask-image: linear-gradient(180deg, black 30%, transparent 96%);
}
.page-header .container { position: relative; }

/* halo qui suit le curseur */
.spot { position: relative; }
.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(79, 140, 255, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.spot:hover::after { opacity: 1; }

/* chips livrables */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 20px; }
.chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-300);
  background: rgba(79, 140, 255, 0.08);
  border: 1px solid var(--card-border);
  padding: 6px 13px;
  border-radius: 999px;
}

/* avant / après */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-card {
  border-radius: var(--radius);
  padding: 34px 32px;
  border: 1px solid var(--card-border);
  background: var(--card);
}
.compare-before { border-color: rgba(255, 107, 107, 0.25); background: rgba(255, 107, 107, 0.04); }
.compare-after { border-color: rgba(37, 211, 102, 0.3); background: rgba(37, 211, 102, 0.05); }
.compare-card h3 { font-size: 1.15rem; margin-bottom: 20px; }
.compare-before h3 { color: #ff9c9c; }
.compare-after h3 { color: #5fe294; }
.compare-card .check-list { margin: 0; }
.cross-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cross-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-dim);
  font-size: 0.97rem;
}
.cross-list li::before {
  content: "✕";
  position: absolute;
  left: 3px;
  top: 0;
  color: #ff8080;
  font-weight: 700;
}

/* secteurs métiers */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1000px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .wm { font-size: 4rem; top: 20px; }
}
@media (max-width: 720px) {
  .sector-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .spot::after { display: none; }
  .hero .orb-1, .hero .orb-2 { animation: none; }
  .row-new, .bump { animation: none; }
}
