/* =========================================================
   UXOVA · Agents IA
   Dark, futuristic design system
   ========================================================= */

/* ---------- 0. Tokens ---------- */
:root {
  --bg: #07070f;
  --bg-2: #0a0a18;
  --bg-elev: #0e0e1c;
  --surface: rgba(20, 20, 42, 0.6);
  --surface-solid: #14142a;
  --surface-soft: rgba(108, 92, 255, 0.06);
  --surface-soft-2: rgba(108, 92, 255, 0.10);
  --ink: #f1eeff;
  --ink-2: #cfc9eb;
  --muted: #9a93c3;
  --muted-2: #6e6694;
  --border: rgba(139, 123, 255, 0.16);
  --border-strong: rgba(139, 123, 255, 0.32);

  --brand: #8b7bff;
  --brand-2: #6c5cff;
  --brand-3: #4e3df0;
  --brand-soft: rgba(108, 92, 255, 0.14);
  --brand-glow: rgba(139, 123, 255, 0.45);
  --accent: #d8b66a;
  --accent-2: #c4a553;
  --cyan: #7be3ff;

  --grad-hero:
    radial-gradient(60% 50% at 80% 0%, rgba(108, 92, 255, 0.40) 0%, transparent 65%),
    radial-gradient(55% 40% at 20% 100%, rgba(78, 61, 240, 0.28) 0%, transparent 70%),
    radial-gradient(50% 35% at 80% 100%, rgba(108, 92, 255, 0.20) 0%, transparent 75%);
  --grad-card: linear-gradient(135deg, #14112e 0%, #2a1f6e 60%, #4e3df0 130%);
  --grad-brand: linear-gradient(135deg, #6c5cff 0%, #a78bfa 100%);
  --grad-text: linear-gradient(135deg, #a78bfa 0%, #d8b6ff 50%, #7be3ff 100%);

  --grid-pattern:
    linear-gradient(rgba(139, 123, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 123, 255, 0.05) 1px, transparent 1px);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 25px 60px -20px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 40px rgba(108, 92, 255, 0.35);
  --shadow-card: 0 30px 80px -30px rgba(78, 61, 240, 0.55), 0 0 50px rgba(108, 92, 255, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --container: 1200px;
  --header-h: 95px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 1. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Disable the elastic "rubber-band" overscroll at the top of the page on
     mobile; otherwise pulling down at the top reveals the hidden mobile-nav
     (and its CTA button) sitting above the header. */
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

/* Subtle ambient gradient & grid backdrop */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(55% 40% at 50% 35%, rgba(108, 92, 255, 0.20), transparent 75%),
    radial-gradient(40% 30% at 100% 60%, rgba(78, 61, 240, 0.15), transparent 70%),
    radial-gradient(40% 30% at 0% 85%, rgba(123, 227, 255, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: var(--grid-pattern);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
body > * { position: relative; z-index: 1; }
#intro-splash.intro-screen { z-index: 10000; }

/* ---------- Intro splash (page d'accueil) ---------- */
/* Fond calqué sur hero accueil : --bg + dégradés body + continuum + hero--centered + grille */
body.intro-screen--active {
  overflow: hidden;
}
#intro-splash.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
#intro-splash.intro-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 40% at 50% 35%, rgba(108, 92, 255, 0.20), transparent 75%),
    radial-gradient(40% 30% at 100% 60%, rgba(78, 61, 240, 0.15), transparent 70%),
    radial-gradient(40% 30% at 0% 85%, rgba(123, 227, 255, 0.10), transparent 70%),
    radial-gradient(70% 45% at 50% 0%, rgba(108, 92, 255, 0.34) 0%, transparent 70%),
    radial-gradient(55% 40% at 50% 28%, rgba(108, 92, 255, 0.18) 0%, transparent 72%),
    radial-gradient(55% 70% at 50% -10%, rgba(108, 92, 255, 0.38) 0%, transparent 68%),
    radial-gradient(45% 50% at 15% 100%, rgba(78, 61, 240, 0.18) 0%, transparent 70%),
    radial-gradient(40% 45% at 85% 90%, rgba(123, 227, 255, 0.1) 0%, transparent 72%);
}
#intro-splash.intro-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grid-pattern);
  background-size: 60px 60px;
  opacity: 0.22;
}
.intro-screen__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vh, 48px);
  width: min(92vw, 520px);
  padding: 0 20px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.intro-screen__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 0;
}
#intro-splash .intro-screen__mark {
  display: block;
  height: clamp(108px, 18vh, 156px);
  width: auto;
  max-width: min(340px, 82vw);
  margin: 0;
  object-fit: contain;
  object-position: center center;
  background: none;
  /* Pas de drop-shadow : crée un voile clair sous le logo (artefact sur SVG rasterisé) */
}
.intro-screen__progress {
  width: min(320px, 80vw);
  margin: 0;
  flex-shrink: 0;
}
.intro-screen__progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(139, 123, 255, 0.22);
  overflow: hidden;
}
.intro-screen__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: var(--grad-brand);
  box-shadow: 0 0 14px rgba(139, 123, 255, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
  animation: intro-progress-fill 1.7s var(--ease) forwards;
}
@keyframes intro-progress-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
#intro-splash.intro-screen.intro-screen--exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
p { margin: 0; }
::selection { background: var(--brand); color: #fff; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -1000px; top: 0; padding: 10px 14px;
  background: var(--brand); color: #fff; border-radius: 0 0 8px 8px; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- 2. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  background: var(--grad-brand); color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  box-shadow: 0 8px 24px -6px rgba(108, 92, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 0.95rem; line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -6px rgba(108, 92, 255, 0.75), 0 0 30px rgba(139, 123, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.08);
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary, .hero-contact-btn { background: var(--grad-brand); color: #fff; }
.btn.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: none;
  filter: none;
}
.btn.btn--ghost::before { display: none; }
.btn.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 24px rgba(108, 92, 255, 0.25);
  filter: none;
}

/* ---------- 3. Header (aligné version Netlify / prod) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  box-sizing: border-box;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: linear-gradient(180deg, rgba(7, 7, 15, 0.85) 0%, rgba(7, 7, 15, 0.55) 70%, rgba(7, 7, 15, 0) 100%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: linear-gradient(180deg, rgba(7, 7, 15, 0.92) 0%, rgba(7, 7, 15, 0.85) 100%);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  min-height: var(--header-h);
  max-height: var(--header-h);
  box-sizing: border-box;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 57px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.93rem;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.25;
  position: relative;
  padding: 6px 2px;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
  box-shadow: 0 0 12px var(--brand-glow);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 0.88rem;
  line-height: 1.2;
}
.header-cta.btn {
  padding: 11px 20px;
}

.burger-btn {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
}
.burger-btn span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: var(--header-h) 0 auto 0;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  /* "visibility" is toggled with a delay so the menu stays clickable during
     its slide-out animation, but is fully hidden once closed.
     This prevents the menu (and its "Planifier un RDV" button) from being
     revealed when the user overscrolls / rubber-bands at the top of the page
     on mobile. */
  visibility: hidden;
  transition:
    transform .35s var(--ease),
    visibility 0s linear .35s;
  z-index: 80; padding: 24px 0 36px;
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  transition:
    transform .35s var(--ease),
    visibility 0s linear 0s;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; width: min(100% - 40px, var(--container)); margin: 0 auto; }
.mobile-nav li a {
  display: block; padding: 14px 16px; border-radius: 12px; font-weight: 500; font-size: 1.05rem;
  color: var(--ink-2);
}
.mobile-nav li a:hover { background: var(--surface-soft-2); color: var(--ink); }
.mobile-cta { margin-top: 14px; text-align: center; }

/* ---------- 4. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ---------- 5. HERO ---------- */
.hero {
  padding: 70px 0 60px;
  background:
    radial-gradient(70% 80% at 80% -25%, rgba(108, 92, 255, 0.42) 0%, transparent 70%),
    radial-gradient(60% 70% at 20% -15%, rgba(78, 61, 240, 0.22) 0%, transparent 75%);
  position: relative; overflow: hidden;
}
.hero--centered {
  padding: clamp(88px, 14vh, 128px) 0 clamp(72px, 10vh, 100px);
  text-align: center;
  background:
    radial-gradient(55% 70% at 50% -10%, rgba(108, 92, 255, 0.38) 0%, transparent 68%),
    radial-gradient(45% 50% at 15% 100%, rgba(78, 61, 240, 0.18) 0%, transparent 70%),
    radial-gradient(40% 45% at 85% 90%, rgba(123, 227, 255, 0.1) 0%, transparent 72%);
}
/* Page d'accueil : fond continu (glow + grille sur toute la hauteur) */
.home-page-continuum {
  position: relative;
  /* Pas de overflow:hidden ici : casse position:sticky du process + le scroll lié */
  isolation: isolate;
}
.home-page-continuum::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 45% at 50% 0%, rgba(108, 92, 255, 0.34) 0%, transparent 70%),
    radial-gradient(55% 40% at 50% 28%, rgba(108, 92, 255, 0.18) 0%, transparent 72%),
    radial-gradient(50% 38% at 50% 55%, rgba(78, 61, 240, 0.14) 0%, transparent 70%),
    radial-gradient(45% 35% at 15% 78%, rgba(78, 61, 240, 0.12) 0%, transparent 68%),
    radial-gradient(40% 32% at 88% 72%, rgba(123, 227, 255, 0.08) 0%, transparent 70%),
    radial-gradient(60% 40% at 50% 100%, rgba(108, 92, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.home-page-continuum::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grid-pattern);
  background-size: 60px 60px;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}
.home-page .hero,
.home-page .hero--centered,
.home-page .demo-section,
.home-page .home-block,
.home-page .home-offer-teaser,
.home-page .process-scroll-section,
.home-page .home-usecases,
.home-page .home-final-cta {
  background: transparent;
  position: relative;
  z-index: 1;
}
.home-page .demo-section::before {
  display: none;
}
body:has(.home-page)::after {
  opacity: 0.22;
}
.home-page-continuum .hero--centered {
  padding-top: clamp(64px, 9vh, 92px);
  padding-bottom: 0;
}
.home-page-continuum .hero--centered .hero-pitch {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.home-page-continuum .hero--centered .hero-actions {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.home-page-continuum .demo-section {
  padding-top: 0;
  padding-bottom: clamp(40px, 5vh, 64px);
  margin-top: 0;
}
.home-page-continuum .demo-stage {
  margin-top: 0;
}
.hero-actions--demo {
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
  position: relative;
  z-index: 2;
}
.hero-actions--demo .btn {
  min-height: 50px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero--centered .hero-grid {
  display: block;
  max-width: 56rem;
  margin-inline: auto;
}
.hero--centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(1.85rem, 2.65vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--ink);
  text-shadow: 0 0 40px rgba(139, 123, 255, 0.22);
  white-space: normal;
  max-width: 22em;
  margin: 0;
}
.hero--centered .hero-content h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 28em;
  text-wrap: balance;
  text-shadow: 0 0 48px rgba(139, 123, 255, 0.28);
}
.hero-content h1 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(139, 123, 255, 0.5));
}
@media (max-width: 760px) {
  .hero-content h1 {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
    max-width: none;
  }
  .hero--centered .hero-content h1 {
    font-size: clamp(1.95rem, 6.2vw, 2.55rem);
    max-width: none;
  }
}
@media (max-width: 540px) {
  .hero-content h1 {
    font-size: clamp(1.65rem, 6.5vw, 2rem);
  }
  .hero--centered .hero-content h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.25rem);
  }
}
.animated-city {
  display: inline-block; position: relative;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.animated-city::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'><path d='M0 6 Q 50 0 100 6 T 200 6' fill='none' stroke='%238b7bff' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
  filter: drop-shadow(0 0 6px rgba(139, 123, 255, 0.8));
}
.hero-pitch {
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  color: var(--muted);
  margin: 18px 0 26px;
  max-width: 32em;
  line-height: 1.65;
}
.hero--centered .hero-pitch {
  font-size: clamp(1.05rem, 1.75vw, 1.2rem);
  line-height: 1.6;
  max-width: min(54rem, 100%);
  margin: clamp(22px, 3vw, 30px) auto 0;
  color: var(--ink-2);
}
@media (min-width: 960px) {
  .hero--centered .hero-pitch {
    white-space: nowrap;
    max-width: none;
  }
}
.hero--centered .hero-actions {
  justify-content: center;
  gap: 14px 16px;
  margin-top: 0;
}
.hero--centered .hero-actions .btn {
  min-height: 50px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  place-items: center;
  justify-self: end;
}
.hero-brand-visual {
  position: relative;
  width: min(100%, 400px);
  animation: float 6s ease-in-out infinite;
  isolation: isolate;
}
.hero-brand-visual::before {
  content: "";
  position: absolute;
  inset: 5% 0 8%;
  background: radial-gradient(circle at 50% 45%, rgba(108, 92, 255, 0.42) 0%, transparent 68%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.hero-brand-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 16px 40px rgba(108, 92, 255, 0.28));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- 6. TRUST SHOWCASE ---------- */
.trust-showcase-section {
  padding: 110px 0;
  background: var(--bg-2);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-showcase-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(108, 92, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.trust-showcase-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center;
  position: relative; z-index: 2;
}
.trust-showcase-content h2 {
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800;
}
.trust-showcase-title-line1, .trust-showcase-title-line2 { display: block; }
.trust-showcase-highlight {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(139, 123, 255, 0.55));
}
.trust-showcase-text { color: var(--muted); font-size: 1.07rem; margin-top: 22px; max-width: 520px; }

.trust-showcase-visual {
  position: relative; aspect-ratio: 1.05 / 1;
  display: grid; place-items: center;
}
.trust-showcase-glow {
  position: absolute; inset: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 255, 0.35), transparent 65%);
  filter: blur(30px);
}
.trust-showcase-mockups {
  position: relative; width: 100%; height: 100%;
  perspective: 1400px;
}
.trust-mockup {
  position: absolute; width: 70%;
  background: #f5f3ff; border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(139, 123, 255, 0.3), 0 0 50px rgba(108, 92, 255, 0.2);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.trust-mockup__chrome {
  display: flex; gap: 6px; padding: 10px 14px; background: #e8e3f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.trust-mockup__chrome span { width: 9px; height: 9px; border-radius: 50%; background: #d1cee0; }
.trust-mockup__chrome span:nth-child(1) { background: #ff6058; }
.trust-mockup__chrome span:nth-child(2) { background: #ffbd2e; }
.trust-mockup__chrome span:nth-child(3) { background: #28c941; }
.trust-mockup__body { padding: 18px; color: #1a1a2e; }

/* Carte principale */
.trust-mockup--primary {
  left: 4%; top: 18%; width: 62%; z-index: 3;
  transform: rotate(-3deg) translateY(0);
}
.trust-mockup--primary:hover { transform: rotate(-3deg) translateY(-6px); }
.trust-site-nav { display: flex; gap: 10px; font-size: 0.62rem; color: #6b6789; margin-bottom: 12px; }
.trust-site-nav span:first-child { color: #1a1a2e; font-weight: 600; }
.trust-site-hero {
  height: 90px; border-radius: 10px; margin-bottom: 12px;
  background: linear-gradient(135deg, #6c5cff 0%, #a78bfa 100%);
  display: flex; align-items: flex-end; padding: 10px; color: #fff; font-size: 0.65rem; font-weight: 600;
}
.trust-mockup--primary h3 { font-size: 0.95rem; margin-bottom: 4px; color: #1a1a2e; }
.trust-mockup--primary > .trust-mockup__body > p { font-size: 0.7rem; color: #6b6789; margin-bottom: 10px; }
.trust-site-cta {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--grad-brand); color: #fff; font-size: 0.62rem; font-weight: 600;
  margin-bottom: 12px;
}
.trust-site-rows div { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; font-size: 0.65rem; color: #6b6789; font-style: normal; }
.trust-site-rows div span { width: 12px; height: 12px; border-radius: 4px; background: var(--brand-soft); border: 2px solid var(--brand); }
.trust-site-rows em { font-style: normal; }

/* Carte secondaire */
.trust-mockup--secondary {
  right: 4%; top: 4%; width: 60%; z-index: 2;
  transform: rotate(4deg);
}
.trust-mockup--secondary:hover { transform: rotate(4deg) translateY(-6px); }
.trust-law-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.trust-law-brand { font-family: var(--font-display); font-weight: 700; color: #2d1f5e; font-size: 0.9rem; }
.trust-law-chip { padding: 3px 8px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-3); font-size: 0.6rem; font-weight: 600; }
.trust-law-banner {
  height: 50px; border-radius: 8px; margin-bottom: 10px;
  background: linear-gradient(135deg, #2d1f5e 0%, #6c5cff 100%);
}
.trust-law-copy { font-size: 0.65rem; color: #6b6789; margin-bottom: 10px; }
.trust-law-cards { display: flex; gap: 5px; }
.trust-law-cards span {
  flex: 1; padding: 6px 4px; text-align: center; border-radius: 6px;
  background: #efeaff; font-size: 0.55rem; color: #4e3df0; font-weight: 600;
}

/* Carte tertiaire */
.trust-mockup--back {
  right: 10%; bottom: 4%; width: 56%; z-index: 1;
  transform: rotate(-2deg);
  opacity: 0.95;
}
.trust-mini-top { display: flex; gap: 6px; margin-bottom: 10px; }
.trust-mini-top span { flex: 1; height: 6px; border-radius: 3px; background: #ddd8ee; }
.trust-mini-top span:first-child { background: var(--brand); width: 30%; flex: 0 0 30%; }
.trust-mini-hero { height: 60px; border-radius: 8px; background: linear-gradient(135deg, #efeaff 0%, #c4b5ff 100%); margin-bottom: 10px; }
.trust-mini-lines { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.trust-mini-lines span { height: 5px; border-radius: 3px; background: #ddd8ee; }
.trust-mini-lines span:first-child { width: 80%; }
.trust-mini-lines span:last-child { width: 55%; }
.trust-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.trust-mini-grid span { height: 28px; border-radius: 6px; background: linear-gradient(135deg, #d6cdff 0%, #a78bfa 100%); }

/* ---------- 7. HOME OFFER TEASER ---------- */
.home-offer-teaser {
  padding: 80px 0;
  background: transparent;
  position: relative;
}
.home-offer-teaser__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.home-offer-teaser__intro { order: 2; }
.home-offer-teaser__card-shell { order: 1; }
.home-offer-teaser__headline {
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800;
}
.home-offer-teaser__headline-line1, .home-offer-teaser__headline-line2 { display: block; }
.home-offer-teaser__headline-accent {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(139, 123, 255, 0.55));
}
.home-offer-teaser__subtitle { margin-top: 18px; color: var(--muted); font-size: 1.07rem; }

.home-offer-premium-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, #2a1d72 0%, #1d1450 55%, #14102e 100%);
  color: #fff;
  box-shadow:
    0 36px 70px -22px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(139, 123, 255, 0.35),
    0 0 70px -10px rgba(108, 92, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 38px 34px 32px;
  isolation: isolate;
  border: 1px solid rgba(167, 139, 250, 0.5);
}
.home-offer-premium-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--grid-pattern);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}
.home-offer-premium-card__sheen {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(123, 227, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.home-offer-premium-card__orb {
  position: absolute; width: 320px; height: 320px; right: -90px; top: -90px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.75) 0%, rgba(108, 92, 255, 0.35) 35%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.home-offer-premium-card__body { position: relative; z-index: 2; }
.home-offer-premium-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.home-offer-premium-card__mark {
  width: 50px; height: 50px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.28) 0%, rgba(108, 92, 255, 0.18) 100%);
  border: 1px solid rgba(167, 139, 250, 0.6);
  color: #fff;
  box-shadow:
    0 0 28px rgba(139, 123, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.home-offer-premium-card__title { font-size: 1.8rem; font-weight: 700; color: #fff; }
.home-offer-premium-card__subtitle { margin-top: 6px; opacity: 0.78; font-size: 0.95rem; }
.home-offer-premium-card__price-line {
  margin: 22px 0 18px; font-size: 1rem; opacity: 0.85;
}
.home-offer-premium-card__price-addon {
  margin: -10px 0 18px;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.78;
  color: var(--ink-2);
}
.home-offer-premium-card__price-num {
  display: inline;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  margin-left: 6px;
  color: #c4b5fd;
  text-shadow:
    0 0 28px rgba(167, 139, 250, 0.75),
    0 0 10px rgba(139, 123, 255, 0.45);
}
.home-offer-premium-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.home-offer-premium-card__list li {
  position: relative; padding-left: 26px; font-size: 0.95rem; line-height: 1.5; opacity: 0.92;
}
.home-offer-premium-card__list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(139, 123, 255, 0.20); border: 1.5px solid var(--brand);
  box-shadow: 0 0 10px rgba(139, 123, 255, 0.45);
}
.home-offer-premium-card__list li::after {
  content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.home-offer-premium-card__list-accent { font-weight: 600; color: var(--brand); }
.home-offer-premium-card__cta {
  display: flex; align-items: center; justify-content: center;
  width: fit-content; margin: 10px auto 0;
  padding: 15px 30px; border-radius: 999px; font-weight: 700;
  background: var(--grad-brand);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 36px rgba(139, 123, 255, 0.65),
    0 14px 28px -10px rgba(108, 92, 255, 0.7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.home-offer-premium-card__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 50px rgba(139, 123, 255, 0.85),
    0 18px 34px -10px rgba(108, 92, 255, 0.85);
}
.home-offer-premium-card__price-num--compact {
  font-size: 1.85rem;
}
/* Variante cyan (ex. accompagnement mensuel) - même structure, accent turquoise */
.home-offer-premium-card--cyan {
  background: linear-gradient(155deg, #0f2a3a 0%, #0c1f32 55%, #0a101e 100%);
  border-color: rgba(123, 227, 255, 0.45);
  box-shadow:
    0 36px 70px -22px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(123, 227, 255, 0.32),
    0 0 70px -10px rgba(123, 227, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.home-offer-premium-card--cyan .home-offer-premium-card__sheen {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(123, 227, 255, 0.22), transparent 60%);
}
.home-offer-premium-card--cyan .home-offer-premium-card__orb {
  background: radial-gradient(circle, rgba(123, 227, 255, 0.7) 0%, rgba(94, 212, 247, 0.35) 35%, transparent 70%);
}
.home-offer-premium-card--cyan .home-offer-premium-card__mark {
  background: linear-gradient(135deg, rgba(123, 227, 255, 0.26) 0%, rgba(94, 212, 247, 0.16) 100%);
  border-color: rgba(123, 227, 255, 0.55);
  box-shadow:
    0 0 28px rgba(123, 227, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.home-offer-premium-card--cyan .home-offer-premium-card__price-num {
  color: var(--cyan);
  text-shadow:
    0 0 28px rgba(123, 227, 255, 0.75),
    0 0 10px rgba(123, 227, 255, 0.45);
}
.home-offer-premium-card--cyan .home-offer-premium-card__list li::before {
  background: rgba(123, 227, 255, 0.18);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(123, 227, 255, 0.45);
}

/* ---------- 8. PROCESS ---------- */
.process-scroll-section {
  padding: 80px 0;
  position: relative;
}
.process-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.process-layout__left { position: sticky; top: calc(var(--header-h) + 30px); align-self: start; }
.process-scroll-head { margin-top: 40px; }
.process-scroll-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; }
@media (max-width: 960px) {
  .process-scroll-head { margin-top: 0; }
}
.process-title-line1, .process-title-line2 { display: block; }
.insight-kicker-accent {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(139, 123, 255, 0.55));
}
.process-intro { color: var(--muted); margin-top: 18px; font-size: 1.07rem; max-width: 460px; }

/* ---------- AI ORCHESTRATION VISUAL (process section) ----------
   Vertical flow : Input → Orchestrateur IA → Sous-agents → Résultat
   Dark theme · violet/cyan glows · premium feel.
------------------------------------------------------------------ */
.ai-orch {
  --ao-card: rgba(20, 20, 42, 0.72);
  --ao-card-active: rgba(28, 26, 56, 0.92);
  --ao-border: rgba(139, 123, 255, 0.18);
  --ao-border-strong: rgba(139, 123, 255, 0.45);
  --ao-cyan: #7be3ff;
  --ao-violet: #8b7bff;
  --ao-violet-deep: #6c5cff;
  --ao-glow-violet: 0 0 30px rgba(139, 123, 255, 0.32);
  --ao-glow-cyan: 0 0 26px rgba(123, 227, 255, 0.32);

  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 8px 4px 12px;
  isolation: isolate;
}
.ai-orch::before {
  content: "";
  position: absolute;
  inset: -10% -8% -6% -8%;
  background:
    radial-gradient(60% 40% at 50% 28%, rgba(108, 92, 255, 0.22), transparent 70%),
    radial-gradient(50% 35% at 50% 78%, rgba(123, 227, 255, 0.14), transparent 75%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}

/* Generic card */
.ai-orch-card {
  position: relative;
  background: var(--ao-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ao-border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 38px -22px rgba(0, 0, 0, 0.7);
  color: var(--ink);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.ai-orch-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 1. Input card */
.ai-orch-input { padding: 14px 16px 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ai-orch-input-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.ai-orch-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ao-violet) 0%, var(--ao-violet-deep) 100%);
  color: #fff; font-weight: 700; font-size: .78rem;
  box-shadow: 0 0 16px rgba(139, 123, 255, 0.45);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.ai-orch-input-meta { flex: 1; min-width: 0; }
.ai-orch-input-name { font-weight: 700; font-size: 1rem; color: var(--ink); margin: 0; }
.ai-orch-input-sub { font-size: .82rem; color: var(--muted); margin: 2px 0 0; letter-spacing: .02em; }
.ai-orch-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ao-cyan);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(123, 227, 255, 0.35);
  background: rgba(123, 227, 255, 0.06);
}
.ai-orch-input-text {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  min-height: 2.6em;
  font-style: italic;
}
.ai-orch-cursor {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--ao-cyan);
  margin-left: 2px;
  vertical-align: -2px;
  opacity: 0;
  box-shadow: 0 0 8px rgba(123, 227, 255, 0.7);
}
.ai-orch-cursor.is-typing { animation: aoCaret 1s steps(1) infinite; }
@keyframes aoCaret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* Vertical connecting link */
.ai-orch-link {
  width: 2px;
  height: 28px;
  margin: 0 auto;
  border-radius: 2px;
  background: linear-gradient(to bottom, rgba(139, 123, 255, 0) 0%, rgba(139, 123, 255, 0.4) 50%, rgba(123, 227, 255, 0.55) 100%);
  position: relative;
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: top;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.ai-orch-link.is-active { opacity: 1; transform: scaleY(1); }
.ai-orch-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ao-cyan);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(123, 227, 255, 0.85);
}

/* 2. Orchestrator core */
.ai-orch-core {
  position: relative;
  margin: 4px auto 0;
  width: 150px; height: 150px;
  display: grid; place-items: center;
}
.ai-orch-core-pulse {
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(139, 123, 255, 0.4);
  opacity: 0;
}
.ai-orch-core.is-active .ai-orch-core-pulse {
  animation: aoPulse 2.4s ease-out infinite;
}
.ai-orch-core.is-active .ai-orch-core-pulse--delay { animation-delay: 1.2s; }
@keyframes aoPulse {
  0%   { opacity: .7; transform: scale(.55); border-color: rgba(139, 123, 255, 0.6); }
  60%  { opacity: .25; }
  100% { opacity: 0; transform: scale(1.1); border-color: rgba(123, 227, 255, 0.2); }
}
.ai-orch-core-disc {
  position: relative;
  width: 86px; height: 86px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--ao-violet-deep) 0%, #2a1f6e 100%);
  display: grid; place-items: center;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(139, 123, 255, 0.6),
    0 0 38px rgba(108, 92, 255, 0.55),
    0 0 60px rgba(123, 227, 255, 0.12);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.ai-orch-core.is-active .ai-orch-core-disc {
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(139, 123, 255, 0.85),
    0 0 50px rgba(108, 92, 255, 0.75),
    0 0 80px rgba(123, 227, 255, 0.28);
}
.ai-orch-core-disc img {
  width: 58%; height: 58%; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(123, 227, 255, 0.55));
}
.ai-orch-core-label {
  position: absolute; left: 0; right: 0; bottom: -6px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .04em;
  color: var(--ink);
  margin: 0;
}
.ai-orch-core-sub {
  position: absolute; left: 0; right: 0; bottom: -24px;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ao-cyan);
  margin: 0;
  text-shadow: 0 0 12px rgba(123, 227, 255, 0.55);
}

/* 3. Flow wrapper : holds the fan-out lines and the agents grid */
.ai-orch-flow {
  position: relative;
  margin: 18px 0 4px;
  --ao-fanout: 72px; /* vertical room reserved above row 1 for the lines */
}
.ai-orch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}
.ai-orch-lines path {
  fill: none;
  stroke: url(#orchLineGrad);
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transition: stroke-dashoffset .85s var(--ease), opacity .4s var(--ease);
  filter: drop-shadow(0 0 4px rgba(123, 227, 255, 0.45));
}
.ai-orch-lines path.is-on {
  opacity: 1;
  stroke-dashoffset: 0;
}

/* 4. Agents grid : 3 cols desktop, 2 tablet, 1 mobile.
   padding-top reserves a fan-out zone above row 1 for the SVG lines. */
.ai-orch-agents {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: var(--ao-fanout, 72px);
}
@media (max-width: 760px) {
  .ai-orch-agents { grid-template-columns: 1fr 1fr; }
  .ai-orch-flow { --ao-fanout: 56px; }
}
@media (max-width: 480px) {
  .ai-orch-agents { grid-template-columns: 1fr; }
  .ai-orch-flow { --ao-fanout: 44px; }
}
.ai-orch-agent {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--ao-card);
  border: 1px solid var(--ao-border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(6px) scale(.98);
  transition: opacity .45s var(--ease), transform .45s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
/* Le 5e agent ne span plus toute la grille : il prend une cellule normale */
.ai-orch-agent.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.ai-orch-agent.is-active {
  background: var(--ao-card-active);
  border-color: var(--ao-border-strong);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.7), 0 0 22px rgba(139, 123, 255, 0.18);
}
.ai-orch-agent-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(139, 123, 255, 0.10);
  color: var(--ao-violet);
  flex-shrink: 0;
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.ai-orch-agent-icon svg { width: 19px; height: 19px; }
.ai-orch-agent.is-active .ai-orch-agent-icon {
  background: linear-gradient(135deg, rgba(139, 123, 255, 0.85) 0%, rgba(108, 92, 255, 0.9) 100%);
  color: #fff;
  box-shadow: 0 0 14px rgba(139, 123, 255, 0.6);
}
.ai-orch-agent-body { flex: 1; min-width: 0; }
.ai-orch-agent-body h4 {
  font-size: .92rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  letter-spacing: .01em;
}
.ai-orch-agent-body p {
  font-size: .78rem;
  margin: 3px 0 0;
  color: var(--muted);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ai-orch-agent.is-active .ai-orch-agent-body p { color: var(--ink-2); }
.ai-orch-agent-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(139, 123, 255, 0.3);
  color: rgba(139, 123, 255, 0.3);
  flex-shrink: 0;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ai-orch-agent-check svg { width: 11px; height: 11px; }
.ai-orch-agent.is-active .ai-orch-agent-check {
  background: linear-gradient(135deg, var(--ao-cyan) 0%, #5dc9ea 100%);
  color: #0a0a18;
  border-color: var(--ao-cyan);
  box-shadow: 0 0 14px rgba(123, 227, 255, 0.7);
  transform: scale(1.05);
}

/* 5. Result card */
.ai-orch-result { padding: 16px 20px 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.ai-orch-result-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ai-orch-result-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ao-cyan) 0%, var(--ao-violet) 100%);
  color: #0a0a18;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(123, 227, 255, 0.55);
}
.ai-orch-result-icon svg { width: 16px; height: 16px; }
.ai-orch-result-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  letter-spacing: .01em;
}
.ai-orch-result-sub {
  font-size: .82rem;
  color: var(--ao-cyan);
  margin: 3px 0 0;
  letter-spacing: .04em;
}
.ai-orch-result-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 18px;
}
.ai-orch-result-list li {
  position: relative;
  padding-left: 20px;
  font-size: .9rem;
  color: var(--ink-2);
}
.ai-orch-result-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ao-cyan), var(--ao-violet));
  box-shadow: 0 0 8px rgba(123, 227, 255, 0.6);
}

@media (max-width: 720px) {
  .ai-orch { margin-top: 24px; }
  .ai-orch-core { width: 130px; height: 130px; }
  .ai-orch-core-disc { width: 74px; height: 74px; }
  .ai-orch-flow { margin: 14px 0 2px; }
  .ai-orch-result-list { grid-template-columns: 1fr 1fr; }
  .ai-orch-agent-body p { white-space: normal; }
}
@media (max-width: 560px) {
  .ai-orch-result-list { grid-template-columns: 1fr; }
}

/* ---------- "Les agents IA" page · selector + showcase ---------- */
.agents-showcase {
  padding-top: 30px;
  padding-bottom: 80px;
  position: relative;
}

/* Tabs grid : 4 cols on desktop (one per agent), 2 cols tablet, 1 col mobile */
.agents-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
.agent-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  color: #14142a;
  font: inherit;
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.45);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.agent-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -18px rgba(0, 0, 0, 0.55), 0 0 22px rgba(139, 123, 255, 0.25);
  border-color: rgba(139, 123, 255, 0.45);
}
.agent-tab:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.agent-tab.is-active {
  border-color: transparent;
  background: #ffffff;
  box-shadow:
    0 0 0 2px var(--brand),
    0 0 32px rgba(139, 123, 255, 0.5),
    0 16px 36px -18px rgba(0, 0, 0, 0.55);
}
.agent-tab__icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: 0 0 12px rgba(139, 123, 255, 0.45);
  flex-shrink: 0;
  transition: box-shadow .3s var(--ease);
}
.agent-tab__icon svg { width: 18px; height: 18px; }
.agent-tab.is-active .agent-tab__icon {
  box-shadow: 0 0 18px rgba(139, 123, 255, 0.85);
}
.agent-tab__body { min-width: 0; flex: 1; }
.agent-tab__body h3 {
  font-size: .92rem;
  font-weight: 700;
  margin: 0;
  color: #14142a;
  letter-spacing: .01em;
}
.agent-tab__body p {
  font-size: .72rem;
  color: #6e6694;
  margin: 3px 0 0;
  letter-spacing: .02em;
}

/* Demo block (header + stage) */
.agents-demo { position: relative; }
.agents-demo__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.agents-demo__kicker {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
  text-shadow: 0 0 14px rgba(123, 227, 255, 0.5);
}
.agents-demo__title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--ink);
}
.agents-demo__desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 620px;
}
.agents-demo__stage {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.agents-demo__stage::before {
  content: "";
  position: absolute;
  inset: -50px -5% -30px;
  background:
    radial-gradient(50% 35% at 50% 20%, rgba(108, 92, 255, 0.18), transparent 75%),
    radial-gradient(45% 30% at 50% 80%, rgba(123, 227, 255, 0.12), transparent 75%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}

/* Bottom CTA on the agents page */
.agents-cta {
  text-align: center;
  margin-top: 70px;
}
.agents-cta p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 auto 20px;
  max-width: 560px;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .agents-selector { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 44px; }
  .agent-tab { padding: 12px 14px; }
}
@media (max-width: 560px) {
  .agents-selector { grid-template-columns: 1fr; }
  .agents-showcase { padding-bottom: 60px; }
}

/* ---------- Page Les agents IA · FAQ accordéon (compact) ---------- */
.agents-faq-section {
  padding: 52px 0 48px;
}
.agents-faq-section > .container {
  max-width: min(100% - 32px, 900px);
}
.agents-faq-intro {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 18px;
}
.agents-faq-title {
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.agents-faq-title .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.agents-faq-subtitle {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}
.agents-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agents-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(139, 123, 255, 0.22);
  background: rgba(18, 16, 38, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px -18px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition:
    border-color 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    background 0.32s var(--ease);
}
.agents-faq-item:not(.is-open):hover {
  border-color: rgba(123, 227, 255, 0.32);
  box-shadow:
    0 10px 32px -18px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(123, 227, 255, 0.12),
    0 0 22px -10px rgba(123, 227, 255, 0.18);
}
.agents-faq-item.is-open {
  border-color: rgba(123, 227, 255, 0.38);
  background: rgba(22, 20, 44, 0.58);
  box-shadow:
    0 14px 40px -20px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(139, 123, 255, 0.28),
    0 0 32px -14px rgba(108, 92, 255, 0.28);
}
.agents-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 0;
  max-height: 76px;
  padding: 14px 24px;
  text-align: left;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: background 0.28s var(--ease), padding 0.32s var(--ease);
}
.agents-faq-item.is-open .agents-faq-trigger {
  max-height: none;
  padding: 22px 24px 12px;
}
.agents-faq-trigger:hover {
  background: rgba(108, 92, 255, 0.06);
}
.agents-faq-item.is-open .agents-faq-trigger:hover {
  background: rgba(108, 92, 255, 0.05);
}
.agents-faq-trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}
.agents-faq-q {
  flex: 1;
  min-width: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.agents-faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: rgba(123, 227, 255, 0.95);
  background: rgba(123, 227, 255, 0.06);
  border: 1px solid rgba(123, 227, 255, 0.18);
  transition:
    transform 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.agents-faq-chevron svg {
  width: 15px;
  height: 15px;
}
.agents-faq-item.is-open .agents-faq-chevron {
  transform: rotate(180deg);
  background: rgba(123, 227, 255, 0.1);
  border-color: rgba(123, 227, 255, 0.28);
}
.agents-faq-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
.agents-faq-item.is-open .agents-faq-panel-wrap {
  grid-template-rows: 1fr;
}
.agents-faq-panel {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s var(--ease), visibility 0s linear 0.35s;
}
.agents-faq-item.is-open .agents-faq-panel {
  visibility: visible;
  opacity: 1;
  padding: 0 24px 24px;
  transition: opacity 0.32s var(--ease) 0.06s, visibility 0s linear 0s;
}
.agents-faq-panel p {
  margin: 0;
  max-width: 58rem;
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(214, 218, 237, 0.88);
}
.agents-faq-panel a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.agents-faq-panel a:hover {
  color: var(--cyan);
}
.agents-faq-cta {
  text-align: center;
  max-width: 560px;
  margin: 40px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.agents-faq-cta-title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--brand);
}
.agents-faq-cta-text {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}
.agents-faq-cta-btn {
  display: inline-flex;
}
@media (max-width: 560px) {
  .agents-faq-section {
    padding: 40px 0 36px;
  }
  .agents-faq-intro {
    margin-bottom: 14px;
  }
  .agents-faq-list {
    gap: 6px;
  }
  .agents-faq-trigger {
    padding: 12px 16px;
    max-height: 72px;
    gap: 10px;
  }
  .agents-faq-item.is-open .agents-faq-trigger {
    padding: 18px 16px 10px;
  }
  .agents-faq-q {
    font-size: 1rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }
  .agents-faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }
  .agents-faq-chevron svg {
    width: 14px;
    height: 14px;
  }
  .agents-faq-panel {
    padding: 0 16px;
  }
  .agents-faq-item.is-open .agents-faq-panel {
    padding: 0 16px 18px;
  }
  .agents-faq-panel p {
    font-size: 0.9375rem;
    line-height: 1.58;
  }
  .agents-faq-cta {
    margin-top: 32px;
    padding: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .agents-faq-panel-wrap,
  .agents-faq-panel,
  .agents-faq-chevron,
  .agents-faq-item,
  .agents-faq-trigger {
    transition: none !important;
  }
  .agents-faq-item.is-open .agents-faq-chevron {
    transform: rotate(180deg);
  }
}

/* Process scroll items */
.process-scroll-wrap { position: relative; z-index: 1; padding-left: 60px; }
.process-progress-rail {
  position: absolute; left: 20px; top: 12px; bottom: 12px; width: 2px;
  background: rgba(139, 123, 255, 0.15);
  border-radius: 2px;
}
.process-progress-fill {
  position: absolute; left: 0; top: 0; right: 0; height: 0%;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: height .4s var(--ease);
  box-shadow: 0 0 12px var(--brand-glow);
}
.process-item {
  position: relative; padding: 36px 0;
  display: flex; align-items: flex-start; gap: 20px;
}
.process-item-number {
  position: absolute; left: -56px; top: 32px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-solid); color: var(--muted-2);
  border: 2px solid var(--border);
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  opacity: 0.55;
  transform: scale(0.96);
  transition:
    background .4s var(--ease),
    color .4s var(--ease),
    border-color .4s var(--ease),
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    opacity .4s var(--ease);
}
.process-item.is-active .process-item-number {
  opacity: 1;
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 0 18px rgba(108, 92, 255, 0.45);
}
.process-item.is-current .process-item-number {
  transform: scale(1.08);
  box-shadow: 0 0 24px var(--brand-glow), 0 14px 28px -10px rgba(108, 92, 255, 0.65);
}
.process-item-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px 26px; border-radius: var(--radius-md);
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  flex: 1;
  opacity: 0.42;
  transform: translateY(6px) scale(0.985);
  transition:
    opacity .4s var(--ease),
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    border-color .4s var(--ease);
}
.process-item.is-active .process-item-card {
  opacity: 0.72;
  transform: translateY(0) scale(1);
  border-color: rgba(139, 123, 255, 0.28);
  box-shadow: 0 14px 36px -18px rgba(108, 92, 255, 0.28);
}
.process-item.is-current .process-item-card {
  opacity: 1;
  transform: translateY(-3px) scale(1);
  border-color: var(--border-strong);
  box-shadow: 0 20px 50px -16px rgba(108, 92, 255, 0.4), 0 0 30px rgba(139, 123, 255, 0.18);
}
.process-step-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
  margin: 0 0 6px;
}
.process-item-card h3 {
  margin: 6px 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2bd9ff 0%, #7be3ff 55%, #b6f1ff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(43, 217, 255, 0.45));
}
.process-item-card p { color: var(--muted); font-size: 0.97rem; }
.process-text-accent { color: var(--accent); font-weight: 700; letter-spacing: .04em; text-shadow: 0 0 12px rgba(216, 182, 106, 0.45); }
.process-left-cta { text-align: left; margin: 28px 0 0; }
.process-cta { background: var(--grad-brand); padding: 16px 30px; }
@media (max-width: 960px) {
  .process-left-cta { text-align: center; }
}

/* ---------- 9. REALISATIONS ---------- */
.realisations-section {
  padding: 80px 0;
  background: transparent;
  position: relative;
}
.realisations-head { text-align: center; margin-bottom: 50px; }
.realisations-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; }
.realisations-title-accent {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(139, 123, 255, 0.55));
}
.realisations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.real-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.real-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.8), 0 0 40px rgba(108, 92, 255, 0.35);
}
.real-card-frame { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.real-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.real-card:hover .real-thumb { transform: scale(1.06); }
.real-card-overlay {
  position: absolute; inset: 0; display: grid; place-items: end stretch;
  cursor: pointer;
}
.real-card-overlay[aria-disabled="true"] { cursor: not-allowed; }
.real-card-overlay__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 15, 0.92) 100%);
  transition: background .4s var(--ease);
}
.real-card:hover .real-card-overlay__shade {
  background: linear-gradient(180deg, rgba(7, 7, 15, 0.15) 0%, rgba(7, 7, 15, 0.95) 100%);
}
.real-card-overlay__inner {
  position: relative; z-index: 2; padding: 22px;
  color: #fff;
}
.real-card-overlay__title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.real-card-overlay__tag { display: inline-block; margin-top: 6px; padding: 3px 10px; border-radius: 999px; background: rgba(139, 123, 255, 0.25); backdrop-filter: blur(6px); font-size: 0.75rem; font-weight: 500; border: 1px solid rgba(139, 123, 255, 0.4); }
.real-card-overlay__url { display: block; margin-top: 8px; font-size: 0.85rem; opacity: 0.85; }
.realisations-cta-wrap { text-align: center; margin-top: 50px; }

/* ---------- 10. FOOTER ---------- */
.site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(4, 4, 10, 0.85) 35%, #04040a 100%);
  color: rgba(241, 238, 255, 0.78);
  padding: 110px 0 28px;
  margin-top: 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 1025px) {
  .footer-grid {
    align-items: center;
  }
  .footer-col:not(.footer-brand) {
    align-self: start;
  }
  .footer-brand {
    padding-left: 28px;
  }
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-logo {
  height: 58px;
  width: auto;
}
.footer-tagline { margin-top: 16px; color: rgba(241, 238, 255, 0.55); font-size: 0.95rem; max-width: 280px; }
.footer-col h3 { font-size: 0.95rem; color: #fff; margin-bottom: 18px; font-weight: 700; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a { color: rgba(241, 238, 255, 0.65); font-size: 0.93rem; transition: color .2s var(--ease); }
.footer-list a:hover { color: var(--brand); }
.footer-muted { color: rgba(241, 238, 255, 0.45); font-size: 0.85rem; margin-bottom: 14px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(139, 123, 255, 0.1);
  color: var(--brand); flex-shrink: 0;
  border: 1px solid var(--border);
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-contact-icon--linkedin { background: #0a66c2; color: #fff; border-color: rgba(255, 255, 255, 0.1); }
.footer-contact-link { color: rgba(241, 238, 255, 0.82); font-size: 0.92rem; transition: color .2s var(--ease); }
.footer-contact-link:hover { color: var(--brand); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 123, 255, 0.1);
  text-align: center;
  color: rgba(241, 238, 255, 0.4);
  font-size: 0.85rem;
}

/* ---------- 11. COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  max-width: 460px;
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(108, 92, 255, 0.25);
  padding: 22px 24px;
  z-index: 100;
  transform: translateY(150%);
  transition: transform .5s var(--ease);
  color: var(--ink);
  backdrop-filter: blur(14px);
}
.cookie-banner.is-visible { transform: translateY(0); }
.is-hidden { display: none !important; }
.cookie-banner.is-hidden { display: none; }
.cookie-banner-kicker { color: var(--brand); font-size: 0.75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.cookie-banner-title { font-size: 1.15rem; margin: 8px 0 10px; color: var(--ink); }
.cookie-banner-text { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.cookie-banner-text a { color: var(--brand); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 16px; border-radius: 10px; font-weight: 600; font-size: 0.85rem;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.cookie-btn-light {
  background: rgba(139, 123, 255, 0.12); color: var(--ink);
  border: 1px solid var(--border);
}
.cookie-btn-light:hover { background: rgba(139, 123, 255, 0.22); }
.cookie-btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 0 18px rgba(108, 92, 255, 0.45);
}
.cookie-btn-primary:hover { box-shadow: 0 0 28px rgba(108, 92, 255, 0.65); transform: translateY(-1px); }

.cookie-modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  z-index: 110; padding: 20px;
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.cookie-modal-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.cookie-modal-card {
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  width: min(560px, 100%);
  max-height: min(80vh, 720px); overflow-y: auto;
  padding: 28px 28px 24px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(108, 92, 255, 0.25);
  color: var(--ink);
}
.cookie-modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cookie-modal-head h2 { font-size: 1.3rem; color: var(--ink); }
.cookie-modal-close { font-size: 1.6rem; line-height: 1; color: var(--muted); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; }
.cookie-modal-close:hover { background: var(--surface-soft-2); color: var(--ink); }
.cookie-modal-intro { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.cookie-category {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px; border-radius: 14px; border: 1px solid var(--border); margin-bottom: 10px;
  background: rgba(139, 123, 255, 0.04);
}
.cookie-category h3 { font-size: 0.98rem; margin-bottom: 4px; color: var(--ink); }
.cookie-category p { font-size: 0.84rem; color: var(--muted); }
.cookie-always-on { color: #4ade80; font-weight: 600; font-size: 0.82rem; white-space: nowrap; }
.cookie-toggle-group { display: flex; gap: 4px; background: rgba(7, 7, 15, 0.5); border-radius: 12px; padding: 4px; border: 1px solid var(--border); }
.cookie-toggle-btn {
  padding: 7px 12px; border-radius: 8px; font-size: 0.82rem; font-weight: 600; color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cookie-toggle-btn.is-selected { background: var(--grad-brand); color: #fff; box-shadow: 0 0 12px rgba(108, 92, 255, 0.4); }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; justify-content: flex-end; }

/* ---------- 12. Generic page styles ---------- */
.page-hero {
  padding: 90px 0 50px;
  position: relative;
  background:
    radial-gradient(70% 80% at 80% -30%, rgba(108, 92, 255, 0.45) 0%, transparent 70%),
    radial-gradient(60% 70% at 20% -20%, rgba(78, 61, 240, 0.22) 0%, transparent 75%);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800;
  text-shadow: 0 0 50px rgba(139, 123, 255, 0.3);
}
.page-hero h1 .accent {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.about-hero-title-br {
  display: none;
}
.about-hero-title-accent {
  white-space: nowrap;
}
@media (min-width: 721px) {
  .about-hero-title-accent {
    margin-left: 0.3em;
  }
}
.page-hero p { color: var(--muted); margin-top: 18px; font-size: 1.1rem; max-width: 640px; }

/* ---------- 12b. Tarifs (tarifs.html) : sections + cartes prix ---------- */
.offre-section {
  padding: 56px 0 64px;
}
.offre-section__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 32px;
}
.offre-section__head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.offre-section__sub {
  margin: 12px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}
.offre-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.offre-price-grid .home-offer-premium-card {
  height: 100%;
  margin: 0;
}
.offre-price-grid .home-offer-premium-card__list {
  margin-bottom: 0;
}
.offre-price-grid .offre-price-card {
  display: flex;
  flex-direction: column;
}
.offre-price-card {
  border-radius: 18px;
  border: 1px solid rgba(139, 123, 255, 0.22);
  background: rgba(18, 16, 38, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 26px 24px 24px;
  box-shadow: 0 16px 44px -24px rgba(0, 0, 0, 0.72);
  min-width: 0;
}
.offre-price-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.offre-price-card__price {
  margin: 0 0 14px;
  font-size: 1.65rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(139, 123, 255, 0.35));
}
.offre-price-card__intro {
  margin: 0 0 16px;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--muted);
}
.offre-price-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offre-price-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--ink-2);
}
.offre-price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  box-shadow: 0 0 8px rgba(123, 227, 255, 0.45);
}
.offre-price-note {
  text-align: center;
  max-width: 40rem;
  margin: 22px auto 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.offre-price-cta-wrap {
  text-align: center;
  margin-top: 20px;
}
.offre-price-cta-wrap .btn {
  min-height: 48px;
  padding-inline: 28px;
}
@media (max-width: 720px) {
  .about-hero-title-br {
    display: block;
  }
  .page-section:has(.about-grid) {
    padding-top: 44px;
    padding-bottom: 8px;
  }
  .page-section:has(.about-grid) .about-content p:last-child {
    margin-bottom: 0;
  }
  .page-section:has(.about-grid) .about-grid {
    gap: 28px;
  }
  .page-section:has(.about-grid) + .about-mission-section {
    padding-top: 12px;
    padding-bottom: 32px;
  }
  .page-section:has(.about-grid) + .about-mission-section .about-kicker {
    margin-bottom: 8px;
  }
  .about-mission-section .about-mission-text:last-of-type {
    margin-bottom: 0;
  }
  .about-mission-section + .page-section:has(.about-values-head) {
    padding-top: 40px;
  }
  .about-mission-section + .page-section .about-values-head {
    margin-bottom: 22px;
  }
  .offre-section {
    padding: 44px 0 52px;
  }
  .offre-section__head {
    margin-bottom: 24px;
  }
  .offre-price-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .offre-price-card {
    padding: 22px 18px 20px;
  }
}

.page-section { padding: 80px 0; }
.card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.6);
  padding: 30px;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.7), 0 0 30px rgba(108, 92, 255, 0.15);
}
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--ink); }
.legal-content p { color: var(--muted); margin-bottom: 12px; }
.legal-content a { color: var(--brand); }
.legal-content a:hover { color: #a78bfa; text-shadow: 0 0 12px var(--brand-glow); }
.legal-content strong { color: var(--ink); }

/* Contact · calendar embed */
.calendar-section { padding-top: 20px; padding-bottom: 30px; }
.calendar-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.calendar-kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
  text-shadow: 0 0 14px rgba(123, 227, 255, 0.5);
}
.calendar-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}
.calendar-head .calendar-sub {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}
.calendar-embed {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 25px 60px -25px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(108, 92, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.calendar-embed::before {
  content: "";
  position: absolute;
  inset: -40px -10%;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(108, 92, 255, 0.25), transparent 75%),
    radial-gradient(40% 30% at 50% 100%, rgba(123, 227, 255, 0.15), transparent 75%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  background: #ffffff;
  border-radius: var(--radius-lg);
}
@media (max-width: 720px) {
  .calendar-embed iframe { min-height: 720px; }
}

/* ---------- Page contact (cartes + formulaire, style UXOVA) ---------- */
.contact-page-section {
  padding: 72px 0 100px;
}
.contact-page-hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 40px;
}
.contact-page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-shadow: 0 0 40px rgba(139, 123, 255, 0.22);
}
.contact-gradient-word {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.45));
}
.contact-page-lead {
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 2.1vw, 1.12rem);
  line-height: 1.65;
  color: var(--muted);
}
.contact-page-cta-hero {
  margin: clamp(32px, 5vw, 48px) 0 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 44px;
}
.contact-info-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
}
.contact-reassurance-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 0;
  list-style: none;
}
.contact-reassurance-list li {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139, 123, 255, 0.22);
  background: rgba(18, 16, 38, 0.4);
}
.contact-page-section .contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(139, 123, 255, 0.22);
  background: rgba(18, 16, 38, 0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px -24px rgba(0, 0, 0, 0.72);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-page-section .contact-info-card:hover {
  border-color: rgba(123, 227, 255, 0.32);
  box-shadow: 0 18px 48px -22px rgba(0, 0, 0, 0.78), 0 0 28px -12px rgba(123, 227, 255, 0.14);
  transform: translateY(-2px);
}
.contact-page-section .contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  background: rgba(123, 227, 255, 0.08);
  color: var(--cyan);
  border: 1px solid rgba(123, 227, 255, 0.22);
  box-shadow: 0 0 20px -8px rgba(123, 227, 255, 0.35);
}
.contact-page-section .contact-info-icon--calendar {
  background: rgba(108, 92, 255, 0.12);
  color: var(--brand);
  border-color: rgba(139, 123, 255, 0.35);
  box-shadow: 0 0 22px -8px rgba(108, 92, 255, 0.4);
}
.contact-page-section .contact-info-icon--linkedin {
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.25);
}
.contact-page-section .contact-info-icon--mail {
  background: rgba(108, 92, 255, 0.1);
  color: var(--brand);
  border-color: rgba(139, 123, 255, 0.32);
  box-shadow: 0 0 22px -8px rgba(108, 92, 255, 0.38);
}
.contact-info-img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}
.contact-info-svg {
  width: 22px;
  height: 22px;
}
.contact-info-svg--linkedin {
  width: 20px;
  height: 20px;
}
.contact-info-label {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.4vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 6px 0 0;
}
.contact-info-sub {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted-2);
  max-width: 16rem;
}
.contact-info-action {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}
.contact-info-action:hover {
  color: var(--ink);
}
.contact-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 8px;
}
.contact-form-or {
  text-align: center;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact-form-heading {
  text-align: center;
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 22px;
}
.contact-form--page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  padding: 28px 26px 26px;
  border-radius: 20px;
  border: 1px solid rgba(139, 123, 255, 0.2);
  background: rgba(12, 10, 28, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.85), 0 0 40px -18px rgba(108, 92, 255, 0.15);
}
.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form--page .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  min-width: 0;
}
.contact-form--page input,
.contact-form--page textarea {
  width: 100%;
  max-width: 100%;
}
.contact-form--page .form-group--full {
  grid-column: 1 / -1;
}
.contact-form--page label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
}
.contact-required {
  color: var(--brand);
  font-weight: 700;
}
.contact-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 4px;
}
.contact-submit-wrap .contact-submit {
  align-self: center;
  min-width: min(100%, 280px);
  justify-content: center;
}
.contact-form-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted-2);
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}
.contact-form-note a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form-note a:hover {
  color: var(--cyan);
}
@media (max-width: 960px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .contact-page-section {
    padding: 48px 0 64px;
  }
  .contact-page-hero {
    margin-bottom: 28px;
  }
  .contact-reassurance-list {
    margin-bottom: 24px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }
  .contact-form-wrap {
    padding-top: 0;
    max-width: 100%;
  }
  .contact-form-or {
    margin-bottom: 6px;
  }
  .contact-form-heading {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
  .contact-form-intro {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
  .contact-form--page,
  .contact-form.contact-form--page {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 14px 14px;
  }
  .contact-form--page .form-group {
    min-width: 0;
  }
  .contact-form--page input,
  .contact-form--page textarea {
    width: 100%;
    max-width: 100%;
  }
  .contact-form--page textarea {
    min-height: 96px;
  }
  .contact-submit-wrap {
    gap: 10px;
    margin-top: 0;
  }
  .contact-submit-wrap .contact-submit {
    align-self: stretch;
    width: 100%;
    min-width: 0;
  }
  .contact-form-note {
    font-size: 0.78rem;
    line-height: 1.45;
    padding-inline: 2px;
  }
}

/* Contact form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: var(--ink-2); font-weight: 500; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-size: 0.97rem;
  background: rgba(7, 7, 15, 0.5);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238b7bff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.contact-form select option { background: #14142a; color: var(--ink); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(108, 92, 255, 0.2), 0 0 20px rgba(139, 123, 255, 0.25);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }
.contact-form.contact-form--page .btn {
  align-self: center;
  margin-top: 0;
}
.contact-info-card { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-soft); color: var(--brand);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 4px; color: var(--ink); }
.contact-info-item p, .contact-info-item a { color: var(--muted); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--brand); }

/* Offre details */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { display: flex; flex-direction: column; gap: 14px; }
.offer-card h3 { font-size: 1.3rem; color: var(--ink); }
.offer-card ul li {
  position: relative; padding-left: 26px; font-size: 0.95rem; color: var(--ink-2); margin-bottom: 8px;
}
.offer-card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--brand-soft); border: 1.5px solid var(--brand);
}
.offer-card ul li::after {
  content: ""; position: absolute; left: 3px; top: 10px; width: 8px; height: 4px;
  border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg);
}
.offer-price {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  filter: drop-shadow(0 0 12px rgba(139, 123, 255, 0.4));
}

/* Process page steps */
.process-page-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-page-card { display: flex; flex-direction: column; gap: 10px; padding: 26px; }
.process-page-card h3 { color: var(--ink); }
.process-page-card p { color: var(--muted); font-size: 0.96rem; }
.process-page-card .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; margin-bottom: 8px;
  box-shadow: 0 0 20px var(--brand-glow);
}

/* A-propos */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(108, 92, 255, 0.3);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  background: var(--bg-2);
}
.about-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
  text-shadow: 0 0 14px rgba(123, 227, 255, 0.45);
}
.about-founder-wrap { text-align: center; }
.about-founder-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(108, 92, 255, 0.28);
  background:
    radial-gradient(70% 55% at 50% 20%, rgba(123, 227, 255, 0.18), transparent 65%),
    radial-gradient(60% 50% at 80% 90%, rgba(108, 92, 255, 0.35), transparent 55%),
    linear-gradient(165deg, rgba(20, 25, 56, 0.95), rgba(7, 7, 15, 0.98));
  overflow: hidden;
}
.about-founder-visual > * {
  grid-area: 1 / 1;
}
.about-founder-visual img.about-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  box-shadow: none;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  border: none;
  aspect-ratio: auto;
  min-height: 100%;
}
.about-founder-monogram {
  place-self: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 6.5rem);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(139, 123, 255, 0.45));
}
.about-founder-role {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.about-founder-visual:has(> .about-photo) .about-founder-monogram {
  display: none;
}
.about-mission-section { padding-top: 40px; }
.about-mission-inner {
  max-width: 760px;
  margin-inline: auto;
}
.about-mission-quote {
  margin: 0 0 22px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 18px 44px -24px rgba(0, 0, 0, 0.65);
  border-left: 4px solid var(--cyan);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}
.about-mission-quote .about-quote-mark {
  color: var(--cyan);
  font-weight: 800;
}
.about-mission-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}
.about-mission-text + .about-mission-text {
  margin-top: 14px;
}
.about-values-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.about-values-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 12px;
  color: var(--ink);
}
.about-values-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-value-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.about-value-card h3 {
  font-size: 1.12rem;
  margin: 0;
  color: var(--ink);
}
.about-value-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.65;
}
.about-value-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 0 18px rgba(108, 92, 255, 0.35);
}
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: 44px;
}
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; color: var(--ink); }
.about-content p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.about-content p em { color: var(--brand); font-style: normal; font-weight: 600; }
@media (max-width: 900px) {
  .about-values-grid { grid-template-columns: 1fr; }
}

/* ---------- 13. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero--centered .hero-grid { max-width: 44rem; }
  .hero-actions--demo {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    margin-top: 36px;
  }
  .hero-actions--demo .btn { width: 100%; }
  .trust-showcase-grid { grid-template-columns: 1fr; gap: 50px; }
  .home-offer-teaser__wrap { grid-template-columns: 1fr; gap: 40px; }
  .home-offer-teaser__intro { order: 1; text-align: center; }
  .home-offer-teaser__card-shell { order: 2; max-width: 480px; margin-inline: auto; }
  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-layout__left { position: static; }
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .offer-grid { grid-template-columns: 1fr; }
  .process-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .burger-btn { display: inline-flex; }
  .mobile-nav { display: block; }
  .hero { padding: 40px 0 80px; }
  .hero--centered { padding: 64px 0 72px; }
  .home-page-continuum .hero--centered {
    padding-top: 52px;
    padding-bottom: 0;
  }
  .home-page-continuum .hero--centered .hero-pitch {
    margin-bottom: 10px;
  }
  .home-page-continuum .hero--centered .hero-actions {
    margin-bottom: 40px;
  }
  .home-page-continuum .demo-section {
    padding-top: 28px;
    padding-bottom: 48px;
    margin-top: 0;
  }
  .home-page-continuum .demo-stage {
    margin-top: 0;
  }
  .hero-actions--demo { margin-top: 28px; }
  .trust-showcase-section,
  .realisations-section { padding: 70px 0; }
  .home-page .home-why.home-block {
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .home-page .home-why .home-block__head {
    margin-bottom: 24px;
  }
  .home-page .home-offer-teaser {
    padding: 28px 0 28px;
  }
  .home-page .home-offer-teaser__wrap {
    gap: 20px;
  }
  .home-page .home-offer-teaser__subtitle {
    margin-top: 12px;
  }
  .home-page .home-offer-premium-card__list {
    margin-bottom: 18px;
  }
  .home-page .process-scroll-section {
    padding: 28px 0 56px;
  }
  .home-page .process-layout {
    gap: 24px;
  }
  .home-page .process-scroll-head .process-intro {
    margin-top: 12px;
  }
  .home-page .process-reassurance {
    margin-top: 10px;
  }
  .home-page .process-left-cta {
    margin-top: 14px;
  }
  .realisations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .home-offer-premium-card { padding: 30px 24px 26px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .cookie-btn { width: 100%; }
  .process-page-grid { grid-template-columns: 1fr; }
  .trust-showcase-visual { aspect-ratio: 1 / 0.9; }
  .process-scroll-wrap { padding-left: 50px; }
  .process-item-number { left: -46px; width: 30px; height: 30px; font-size: 0.75rem; }
  .process-progress-rail { left: 14px; }
  body::after { background-size: 40px 40px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.1rem; }
  .hero--centered .hero-content h1 { font-size: 1.85rem; }
  .hero--centered .hero-pitch { font-size: 1rem; }
  .home-offer-premium-card__title { font-size: 1.5rem; }
  .home-offer-premium-card__price-num { font-size: 1.8rem; }
  .home-offer-premium-card__price-num--compact { font-size: 1.55rem; }
}

/* ---------- 13b. DEMO ANIMATION (Plumber case, DA UXOVA) ---------- */
.demo-section {
  --d-bg-900: #0b0a1c;
  --d-bg-800: #14102e;
  --d-bg-700: #1d1745;
  --d-violet: #8b7bff;
  --d-violet-deep: #6c5cff;
  --d-violet-soft: rgba(139, 123, 255, 0.18);
  --d-violet-glow: rgba(139, 123, 255, 0.55);
  --d-gold: #d8b66a;
  --d-gold-glow: rgba(216, 182, 106, 0.55);
  --d-paper: rgba(250, 248, 255, 0.97);
  --d-paper-soft: #efebff;
  --d-ink: #15102e;
  --d-muted: #6a6585;

  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139, 123, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 123, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.demo-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
  position: relative; z-index: 2;
}
.demo-kicker {
  color: var(--d-violet); font-size: 0.78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  text-shadow: 0 0 14px rgba(139, 123, 255, 0.55);
}
.demo-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff; margin-top: 14px;
}
.demo-accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(139, 123, 255, 0.55));
}
.demo-subtitle {
  color: var(--muted); margin-top: 18px; font-size: 1.05rem;
}

/* Stage layout */
.demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  min-height: 520px;
  z-index: 2;
}

/* Connection lines */
.demo-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.demo-lines path {
  stroke: url(#demoLineGrad);
  stroke-width: 0.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  transition: stroke-dashoffset .65s var(--ease);
  filter: drop-shadow(0 0 1.4px rgba(139, 123, 255, 0.85));
}
.demo-lines path.is-active { stroke-dashoffset: 0; }

/* ---- LEFT: message card ---- */
.demo-left { position: relative; z-index: 2; }
.demo-card {
  background: var(--d-paper);
  border-radius: 24px;
  border: 1px solid rgba(139, 123, 255, 0.25);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55), 0 0 50px rgba(108, 92, 255, 0.14);
  color: var(--d-ink);
  padding: 24px;
}
.demo-message-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--d-paper-soft);
  margin-bottom: 18px;
}
.demo-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--d-violet-deep), var(--d-violet));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(108, 92, 255, 0.7);
}
.demo-message-head > div:nth-child(2) { flex: 1; min-width: 0; }
.demo-message-name {
  font-weight: 700; font-size: 1rem; color: var(--d-ink); margin: 0;
  font-family: var(--font-display);
}
.demo-message-meta { font-size: 0.8rem; color: var(--d-muted); margin: 2px 0 0; }
.demo-message-channel {
  padding: 4px 10px; border-radius: 999px;
  background: rgba(108, 92, 255, 0.12); color: var(--d-violet-deep);
  font-size: 0.68rem; font-weight: 700; letter-spacing: .12em;
  border: 1px solid rgba(108, 92, 255, 0.32);
}
.demo-message-text {
  font-size: 1rem; line-height: 1.6; color: var(--d-ink);
  font-weight: 500; margin: 0;
  min-height: 4.6em;
}
.demo-message-cursor {
  display: inline-block; width: 2px; height: 1.15em;
  background: var(--d-violet-deep);
  vertical-align: text-bottom; margin-left: 2px;
  opacity: 0;
  box-shadow: 0 0 6px var(--d-violet);
}
.demo-message-cursor.is-visible {
  opacity: 1;
  animation: demoBlink 1s steps(2) infinite;
}
@keyframes demoBlink { 50% { opacity: 0; } }

/* ---- CENTER: orchestrator ---- */
.demo-center {
  display: grid; place-items: center;
  position: relative; z-index: 2;
}
.demo-orchestrator {
  width: 210px; height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, var(--d-bg-700) 0%, var(--d-bg-900) 75%);
  display: grid; place-items: center;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(139, 123, 255, 0.22),
    0 0 50px rgba(108, 92, 255, 0.22);
  transition: box-shadow .6s var(--ease);
}
.demo-orchestrator.is-active {
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(139, 123, 255, 0.5),
    0 0 80px rgba(108, 92, 255, 0.55);
}
.demo-orch-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(139, 123, 255, 0.55);
  opacity: 0;
  pointer-events: none;
}
.demo-orchestrator.is-active .demo-orch-pulse {
  animation: demoOrchPulse 2.4s ease-out infinite;
}
.demo-orchestrator.is-active .demo-orch-pulse--delay {
  animation-delay: 1.2s;
}
@keyframes demoOrchPulse {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.65); opacity: 0; }
}
.demo-orch-core {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(139, 123, 255, 0.14);
  border: 1px solid rgba(139, 123, 255, 0.5);
  color: var(--d-violet);
  display: grid; place-items: center;
  transform: translateY(-8px);
  box-shadow: 0 0 24px rgba(108, 92, 255, 0.3), inset 0 0 18px rgba(139, 123, 255, 0.18);
}
.demo-orch-core svg,
.demo-orch-core img { width: 60%; height: 60%; object-fit: contain; }
.demo-orch-label {
  position: absolute; left: 0; right: 0; bottom: 44px;
  text-align: center; color: #fff; font-weight: 700; font-size: 0.98rem;
  font-family: var(--font-display);
}
.demo-orch-logo {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: auto;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(139, 123, 255, 0.45));
}

/* ---- RIGHT: agents ---- */
.demo-right {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 2;
}
.demo-agent {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--d-paper);
  border-radius: 18px;
  border: 1px solid rgba(139, 123, 255, 0.18);
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.5);
  color: var(--d-ink);
  opacity: 0.4;
  transform: translateX(10px);
  transition:
    opacity .5s var(--ease),
    transform .5s var(--ease),
    box-shadow .5s var(--ease),
    border-color .5s var(--ease);
}
.demo-agent.is-active {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(139, 123, 255, 0.5);
  box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.55), 0 0 30px rgba(108, 92, 255, 0.25);
}
.demo-agent-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #efebff, #ded6ff);
  color: var(--d-violet-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.demo-agent-icon svg { width: 20px; height: 20px; }
.demo-agent.is-active .demo-agent-icon {
  background: linear-gradient(135deg, var(--d-violet), var(--d-violet-deep));
  color: #fff;
  box-shadow: 0 0 18px rgba(108, 92, 255, 0.55);
}
.demo-agent-body { min-width: 0; }
.demo-agent-body h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--d-ink); margin: 0;
  font-family: var(--font-display);
}
.demo-agent-status {
  font-size: 0.83rem; color: var(--d-muted); margin: 2px 0 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.demo-agent-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: #efebff;
  color: transparent;
  display: grid; place-items: center;
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  flex-shrink: 0;
}
.demo-agent-check svg { width: 14px; height: 14px; }
.demo-agent.is-done .demo-agent-check {
  background: linear-gradient(135deg, var(--d-violet), var(--d-violet-deep));
  color: #fff;
  box-shadow: 0 0 18px rgba(108, 92, 255, 0.6);
}

/* ---- RESULT card ---- */
.demo-result {
  margin-top: 60px;
  display: grid; place-items: center;
  position: relative; z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.demo-result.is-visible { opacity: 1; transform: none; }
.demo-result-card {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(216, 182, 106, 0.18), transparent 70%),
    linear-gradient(135deg, #2a1d6e 0%, #15102e 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px 44px;
  border: 1px solid rgba(139, 123, 255, 0.4);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7), 0 0 60px rgba(108, 92, 255, 0.3);
  max-width: 580px;
  text-align: center;
}
.demo-result-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--d-gold) 0%, #efd28e 100%);
  color: #2a1d6e;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 30px rgba(216, 182, 106, 0.6);
}
.demo-result-icon svg { width: 30px; height: 30px; }
.demo-result-title {
  font-size: 1.4rem; color: #fff; margin: 0 0 4px;
  font-family: var(--font-display); font-weight: 800;
}
.demo-result-time {
  color: rgba(216, 182, 106, 0.9); font-size: 0.88rem; margin-bottom: 20px;
  letter-spacing: .04em;
  text-shadow: 0 0 10px rgba(216, 182, 106, 0.35);
}
.demo-result-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 28px; text-align: left;
  max-width: 420px; margin: 0 auto;
}
.demo-result-list li {
  position: relative; padding-left: 24px;
  font-size: 0.95rem; color: rgba(241, 238, 255, 0.88);
}
.demo-result-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--d-gold);
  box-shadow: 0 0 10px rgba(216, 182, 106, 0.75);
}

/* Responsive demo */
@media (max-width: 980px) {
  .demo-section { padding: 80px 0; }
  .demo-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }
  .demo-lines { display: none; }
  .demo-center { order: 2; }
  .demo-left { order: 1; }
  .demo-right { order: 3; }
  .demo-orchestrator { width: 170px; height: 170px; }
  .demo-orch-core { width: 64px; height: 64px; transform: translateY(-6px); }
  .demo-orch-core svg { width: 28px; height: 28px; }
  .demo-orch-label { bottom: 34px; font-size: 0.9rem; }
  .demo-orch-logo { bottom: 18px; height: 24px; }
}
@media (max-width: 540px) {
  .demo-message-text { font-size: 0.95rem; }
  .demo-agent { padding: 12px 14px; gap: 12px; border-radius: 14px; }
  .demo-agent-icon { width: 36px; height: 36px; border-radius: 10px; }
  .demo-result-card { padding: 26px 22px; }
  .demo-result-list { grid-template-columns: 1fr; gap: 8px; }
  .demo-result-title { font-size: 1.15rem; }
}

/* ==============================================================
   13.b. PROCESS SNAKE: premium serpentine timeline (process.html)
   ============================================================== */
.process-snake {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* --- Header --- */
.process-snake__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.process-snake__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 18px;
  text-shadow: 0 0 50px rgba(139, 123, 255, 0.3);
}
.process-snake__title .accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.process-snake__desc {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Track : SVG path + 5 steps in a 1000x2400 grid --- */
.process-snake__track {
  position: relative;
  max-width: 1100px;
  height: 2400px;
  margin: 0 auto;
}

/* Ambient backdrop : violet / cyan washes around the snake */
.process-snake__track::before {
  content: "";
  position: absolute;
  inset: -120px -10% -80px;
  background:
    radial-gradient(40% 14% at 18% 12%, rgba(108, 92, 255, 0.22), transparent 75%),
    radial-gradient(40% 14% at 82% 35%, rgba(108, 92, 255, 0.20), transparent 75%),
    radial-gradient(40% 14% at 18% 58%, rgba(123, 227, 255, 0.15), transparent 75%),
    radial-gradient(40% 14% at 82% 80%, rgba(108, 92, 255, 0.18), transparent 75%);
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
}

/* SVG snake : background trail + animated fill */
.process-snake__path {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.process-snake__path-bg {
  fill: none;
  stroke: rgba(139, 123, 255, 0.18);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Static "glow" path : a wider semi-transparent stroke under the fill.
   Same d + same dasharray/offset as the fill (synced by JS); no SVG filter
   so the line stays buttery smooth while scrolling. */
.process-snake__path-glow {
  fill: none;
  stroke: rgba(139, 123, 255, 0.35);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.55;
  will-change: stroke-dashoffset;
}
.process-snake__path-fill {
  fill: none;
  stroke: url(#snakeGrad);
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1; /* set by JS via getTotalLength */
  stroke-dashoffset: 1;
  will-change: stroke-dashoffset;
}

/* --- Steps --- */
.process-snake__steps {
  position: relative;
  z-index: 2;
  height: 100%;
  margin: 0; padding: 0;
  list-style: none;
}
.process-snake__step {
  position: absolute;
  left: 0; right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transform-origin: center;
}
/* Y positions : nodes are at 10%, 30%, 50%, 70%, 90% of the 2400px track */
.process-snake__step[data-step="1"] {
  top: 10%;
  --step-color: #a78bfa;
  --step-color-soft: rgba(167, 139, 250, 0.6);
  --step-color-strong: rgba(167, 139, 250, 0.95);
}
.process-snake__step[data-step="2"] {
  top: 30%;
  --step-color: #9983fc;
  --step-color-soft: rgba(153, 131, 252, 0.6);
  --step-color-strong: rgba(153, 131, 252, 0.95);
}
.process-snake__step[data-step="3"] {
  top: 50%;
  --step-color: #8b7bff;
  --step-color-soft: rgba(139, 123, 255, 0.6);
  --step-color-strong: rgba(139, 123, 255, 0.95);
}
.process-snake__step[data-step="4"] {
  top: 70%;
  --step-color: #83afff;
  --step-color-soft: rgba(131, 175, 255, 0.6);
  --step-color-strong: rgba(131, 175, 255, 0.95);
}
.process-snake__step[data-step="5"] {
  top: 90%;
  --step-color: #7be3ff;
  --step-color-soft: rgba(123, 227, 255, 0.6);
  --step-color-strong: rgba(123, 227, 255, 0.95);
}

.process-snake__step.is-visible { opacity: 1; }
.process-snake__step[data-side="left"]  { transform: translate(-22px, -50%); }
.process-snake__step[data-side="right"] { transform: translate(22px, -50%); }
.process-snake__step.is-visible[data-side="left"],
.process-snake__step.is-visible[data-side="right"] { transform: translate(0, -50%); }

/* Node wrap : sits at X=25% (left) or X=75% (right) on the snake path */
.process-snake__node-wrap {
  position: absolute;
  top: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
}
.process-snake__step[data-side="left"]  .process-snake__node-wrap { left: 18%; }
.process-snake__step[data-side="right"] .process-snake__node-wrap { left: 82%; }

.process-snake__node {
  position: relative;
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
              linear-gradient(135deg, #2a1f6e 0%, #0f0b24 100%);
  border: 1px solid rgba(139, 123, 255, 0.45);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px -8px rgba(0, 0, 0, 0.7);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.process-snake__node-num {
  position: relative; z-index: 2;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
  transition: color .45s var(--ease), text-shadow .45s var(--ease);
}
.process-snake__node-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--step-color-soft, rgba(139, 123, 255, 0.5));
  opacity: 0;
  pointer-events: none;
}

/* "is-reached" : the curve has flowed up to (or past) this bubble.
   The bubble takes on the exact gradient color sampled at its Y position,
   so the serpentine curve visually melts into the bubble. Sticky state. */
.process-snake__step.is-reached .process-snake__node {
  border-color: var(--step-color-strong);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--step-color-soft) 0%, #0f0b24 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1.5px var(--step-color),
    0 0 30px var(--step-color-soft),
    0 0 14px var(--step-color-soft);
}
.process-snake__step.is-reached .process-snake__node-num {
  color: var(--step-color);
  text-shadow: 0 0 16px var(--step-color-soft);
}

/* "is-active" : the step currently centered on the viewport. Adds emphasis on
   top of "is-reached" (slightly stronger glow + animated pulse ring). */
.process-snake__step.is-active .process-snake__node {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1.5px var(--step-color),
    0 0 42px var(--step-color-soft),
    0 0 18px var(--step-color-soft);
}
.process-snake__step.is-active .process-snake__node-pulse {
  border-color: var(--step-color-strong);
  animation: snakePulse 2.2s ease-out infinite;
}
@keyframes snakePulse {
  0%   { opacity: .75; transform: scale(.7); }
  60%  { opacity: .25; }
  100% { opacity: 0; transform: scale(1.6); }
}

/* Cards : placed beside the node on the opposite side */
.process-snake__card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 460px;
  padding: 24px 26px;
  border-radius: 18px;
  background:
    linear-gradient(155deg, #2d2370 0%, #20184e 55%, #181140 100%);
  border: 1px solid rgba(167, 139, 250, 0.32);
  box-shadow:
    0 24px 50px -22px rgba(0, 0, 0, 0.7),
    0 0 32px -16px rgba(108, 92, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: opacity;
}
.process-snake__step[data-side="left"]  .process-snake__card { left: calc(18% + 56px); right: 4%; }
.process-snake__step[data-side="right"] .process-snake__card { right: calc(18% + 56px); left: 4%; }

.process-snake__step.is-active .process-snake__card {
  border-color: var(--step-color-strong);
  box-shadow:
    0 32px 60px -22px rgba(0, 0, 0, 0.75),
    0 0 0 1px var(--step-color-soft),
    0 0 60px -10px var(--step-color-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.process-snake__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.process-snake__card-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(139, 123, 255, 0.20) 0%, rgba(108, 92, 255, 0.12) 100%);
  border: 1px solid rgba(139, 123, 255, 0.35);
  color: #fff;
  box-shadow: 0 0 18px rgba(139, 123, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}
.process-snake__card-icon svg { width: 19px; height: 19px; }
.process-snake__step.is-active .process-snake__card-icon {
  background: linear-gradient(135deg, var(--step-color-soft) 0%, rgba(108, 92, 255, 0.32) 100%);
  border-color: var(--step-color-strong);
  box-shadow: 0 0 26px var(--step-color-soft), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.process-snake__step-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}
.process-snake__card h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2bd9ff 0%, #7be3ff 55%, #b6f1ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(43, 217, 255, 0.45));
}
.process-snake__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.process-snake__cta {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 4;
}

/* --- Tablet --- */
@media (max-width: 960px) {
  .process-snake__track { height: 2000px; max-width: 760px; }
  .process-snake__card { max-width: 360px; padding: 20px 22px; }
  .process-snake__node-wrap { width: 54px; height: 54px; }
  .process-snake__node { width: 54px; height: 54px; font-size: 0.92rem; }
  .process-snake__step[data-side="left"]  .process-snake__node-wrap { left: 16%; }
  .process-snake__step[data-side="right"] .process-snake__node-wrap { left: 84%; }
  .process-snake__step[data-side="left"]  .process-snake__card { left: calc(16% + 44px); right: 3%; }
  .process-snake__step[data-side="right"] .process-snake__card { right: calc(16% + 44px); left: 3%; }
}

/* --- Mobile : simplified vertical timeline (line on left, all cards on right) --- */
@media (max-width: 720px) {
  .process-snake__track {
    height: auto;
    padding-left: 60px;
  }
  .process-snake__path { display: none; }
  .process-snake__track::after {
    content: "";
    position: absolute;
    left: 26px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom,
      rgba(167, 139, 250, 0.55) 0%,
      rgba(139, 123, 255, 0.45) 50%,
      rgba(123, 227, 255, 0.45) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(139, 123, 255, 0.45);
    z-index: 0;
    pointer-events: none;
  }
  .process-snake__steps { display: flex; flex-direction: column; gap: 36px; }
  .process-snake__step,
  .process-snake__step[data-side="left"],
  .process-snake__step[data-side="right"] {
    position: relative;
    top: auto;
    transform: translate(0, 12px);
    left: 0; right: 0;
    padding-left: 0;
    opacity: 0;
    transition: opacity .55s var(--ease), transform .55s var(--ease);
  }
  .process-snake__step.is-visible { transform: translate(0, 0); opacity: 1; }
  .process-snake__node-wrap,
  .process-snake__step[data-side="left"]  .process-snake__node-wrap,
  .process-snake__step[data-side="right"] .process-snake__node-wrap {
    position: absolute;
    top: 24px;
    left: -34px;
    transform: none;
    width: 44px; height: 44px;
  }
  .process-snake__node { width: 44px; height: 44px; font-size: 0.82rem; }
  .process-snake__card,
  .process-snake__step[data-side="left"]  .process-snake__card,
  .process-snake__step[data-side="right"] .process-snake__card {
    position: relative;
    top: auto;
    transform: none;
    left: 0; right: 0;
    max-width: none;
  }
}

/* ---------- 14. Misc ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .process-item,
  .process-item-card,
  .process-item-number {
    opacity: 1;
    transform: none;
  }
  .process-snake__step { opacity: 1; transform: translate(0, -50%); }
  .process-snake__path-fill { stroke-dashoffset: 0; }
}

/* ---------- V2 Home blocks ---------- */
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; align-items: center; justify-content: flex-start; }
.hero-actions.hero-actions--demo {
  justify-content: center;
  width: 100%;
  margin-inline: auto;
}
.home-block { padding: 72px 0; }
/* « Le quotidien qui vous ralentit » - titre gauche, cartes quinconce droite */
.home-problem-section {
  padding-top: clamp(80px, 10vh, 104px);
  padding-bottom: clamp(80px, 10vh, 104px);
}
.home-problem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  max-width: 1180px;
  margin-inline: auto;
}
.home-problem__intro {
  text-align: left;
  max-width: 26rem;
  align-self: start;
  padding-top: 0;
}
.home-problem__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
.home-problem__intro h2 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.home-problem__accent {
  display: block;
  width: 52px;
  height: 3px;
  margin: clamp(16px, 2vw, 22px) 0 clamp(18px, 2.2vw, 24px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-2) 0%, var(--brand) 55%, rgba(123, 227, 255, 0.85) 100%);
  box-shadow: 0 0 20px rgba(139, 123, 255, 0.55);
}
.home-problem__lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 22rem;
}
.home-problem__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: clamp(360px, 42vw, 440px);
}
.home-problem-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: min(100%, 28rem);
  padding: 20px 22px 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 123, 255, 0.38);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(139, 123, 255, 0.06),
    0 0 32px -8px rgba(108, 92, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.home-problem-card:hover {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.12),
    0 0 40px -6px rgba(108, 92, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.home-problem-card--1 {
  margin-left: 0;
  margin-top: 0;
}
.home-problem-card--2 {
  margin-left: clamp(28px, 5vw, 56px);
  margin-top: clamp(22px, 3.5vw, 36px);
}
.home-problem-card--3 {
  margin-left: clamp(48px, 8vw, 88px);
  margin-top: clamp(22px, 3.5vw, 36px);
}
.home-problem-card__dot {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(139, 123, 255, 0.95);
}
.home-problem-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 4px;
  margin-left: 6px;
  border-radius: 50%;
  border: 1px solid rgba(139, 123, 255, 0.45);
  color: #c4b5fd;
  box-shadow: 0 0 18px rgba(139, 123, 255, 0.2);
}
.home-problem-card__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
.home-problem-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(123, 227, 255, 0.35);
}
.home-problem-card__body p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #a99fd4;
  max-width: 34ch;
}

/* Mobile / tablette - après les styles desktop (sinon la grille 2 colonnes repasse) */
@media (max-width: 1024px) {
  .home-problem {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }
  .home-problem__intro {
    max-width: none;
  }
  .home-problem__lead {
    max-width: none;
  }
  .home-problem__cards {
    min-height: 0;
    width: 100%;
    align-items: stretch;
    gap: 14px;
  }
  .home-problem-card,
  .home-problem-card--1,
  .home-problem-card--2,
  .home-problem-card--3 {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: 0;
  }
  .home-problem-card__body p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .home-problem-section {
    padding-top: 56px;
    padding-bottom: 28px;
  }
  .home-problem {
    gap: 24px;
  }
  .home-problem__intro {
    text-align: center;
    padding-top: 0;
  }
  .home-problem__intro h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.15;
  }
  .home-problem__accent {
    margin-left: auto;
    margin-right: auto;
  }
  .home-problem__lead {
    text-align: center;
    font-size: 1rem;
  }
  .home-problem__cards {
    gap: 12px;
  }
  .home-problem-card {
    padding: 16px 16px 16px 14px;
    gap: 12px;
  }
  .home-problem-card__icon {
    width: 40px;
    height: 40px;
    margin-left: 4px;
  }
  .home-problem-card__body h3 {
    font-size: 1rem;
  }
  .home-problem-card__body p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
}

.home-pillars--stack,
.home-steps--stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-block__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.home-block__head h2 { font-size: clamp(1.75rem, 3.5vw, 2.35rem); margin: 0 0 12px; }
.home-block__head h2 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.home-block__lead { color: var(--muted); margin: 0; line-height: 1.65; }
.home-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; margin: 0; padding: 0; }
.home-pillar { padding: 22px 20px; }
.home-pillars--why .home-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 22px 24px;
}
.home-pillar__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 0 16px;
  filter: drop-shadow(0 6px 16px rgba(139, 123, 255, 0.45));
}
.home-pillar h3 { margin: 0 0 8px; font-size: 1.05rem; }
.home-pillar p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.home-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; margin: 0 0 28px; padding: 0; counter-reset: none; }
.home-step { padding: 22px 20px; position: relative; }
.home-step__num { display: inline-flex; width: 32px; height: 32px; border-radius: 10px; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; margin-bottom: 10px; background: var(--brand-soft); color: var(--brand); border: 1px solid var(--border); }
.home-step h3 { margin: 0; font-size: 1rem; line-height: 1.45; }
.home-block__cta { text-align: center; margin: 0; }
.home-usecases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.home-usecase { padding: 22px 18px; text-align: center; }
.home-usecase h3 { margin: 0 0 10px; font-size: 1.02rem; }
.home-usecase__result { margin: 0; font-weight: 700; color: var(--cyan); font-size: 0.95rem; }
.home-final-cta { padding: 80px 0 100px; text-align: center; }
.home-final-cta__inner { max-width: 640px; margin: 0 auto; padding: 40px 28px; border-radius: 22px; border: 1px solid var(--border); background: rgba(20, 20, 42, 0.55); box-shadow: var(--shadow-glow); }
.home-final-cta h2 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2rem); }
.home-final-cta p { color: var(--muted); margin: 0 0 22px; }
.process-reassurance { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.process-reassurance li { font-size: 0.9rem; color: var(--cyan); font-weight: 600; }
.process-reassurance li::before { content: "✓ "; }
.footer-reassurance {
  color: var(--muted-2);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 12px 0 0;
  max-width: 22rem;
}
.footer-brand .footer-reassurance { text-align: left; }
.page-hero:has(+ .agents-catalog-section) {
  padding-bottom: 28px;
}
.agents-catalog-section {
  padding-top: 28px;
}
.agents-catalog-head {
  text-align: left;
  max-width: 720px;
  margin: 0 0 24px;
}
.agents-catalog-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-shadow: 0 0 40px rgba(139, 123, 255, 0.2);
}
.agents-catalog-head h2 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(139, 123, 255, 0.55));
}
.agents-results-disclaimer {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted-2);
  font-style: italic;
}
.agents-catalog-note {
  text-align: left;
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.agents-catalog-section .home-block__cta {
  margin-top: 72px;
}
.agents-catalog-foot {
  text-align: center;
  color: var(--muted-2);
  margin-top: 18px;
  font-size: 0.95rem;
}
.agents-bubbles-wrap {
  max-width: 1120px;
  margin: 0 auto;
}
.agents-bubbles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.agent-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 172px;
  padding: 22px 12px 18px;
  border-radius: 18px;
  border: 1px solid rgba(139, 123, 255, 0.28);
  background: rgba(18, 16, 38, 0.55);
  color: var(--ink);
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.agent-bubble:hover {
  border-color: rgba(123, 227, 255, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -18px rgba(0, 0, 0, 0.75), 0 0 28px -12px rgba(108, 92, 255, 0.25);
}
.agent-bubble.is-active {
  border-color: rgba(123, 227, 255, 0.55);
  background: rgba(108, 92, 255, 0.14);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.8), 0 0 32px -10px rgba(123, 227, 255, 0.22);
}
.agent-bubble:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.agent-bubble__icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(90%) saturate(1800%) hue-rotate(218deg) brightness(1.12)
    drop-shadow(0 6px 16px rgba(139, 123, 255, 0.45));
}
.agent-bubble.is-active .agent-bubble__icon {
  filter: brightness(0) saturate(100%) invert(62%) sepia(95%) saturate(2000%) hue-rotate(218deg) brightness(1.2)
    drop-shadow(0 8px 22px rgba(167, 139, 250, 0.55));
}
.agent-bubble__title {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(123, 227, 255, 0.25);
}
.agent-bubble.is-active .agent-bubble__title {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(123, 227, 255, 0.4);
}
.agents-detail {
  margin-top: 22px;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(139, 123, 255, 0.28);
  min-height: 0;
}
.agents-detail-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agents-detail-panel.is-hidden {
  display: none;
}
.agents-detail-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.agents-detail-panel__head h3 {
  margin: 0;
  font-size: 1.15rem;
}
.agents-detail-panel__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(52%) sepia(90%) saturate(1800%) hue-rotate(218deg) brightness(1.12);
}
.agents-detail-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.agents-detail-panel p.agent-catalog-card__result,
.agent-catalog-card__result {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 0 20px rgba(123, 227, 255, 0.2);
}
.agents-detail-panel p.agent-catalog-card__result {
  margin-top: 4px;
}
.agent-catalog-card__ideal {
  font-size: 0.82rem;
  color: var(--muted-2);
  margin-top: 4px;
}
.agent-catalog-card__ideal strong {
  color: var(--ink-2);
}
/* legacy grid cards (accueil) */
.agents-catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.agent-catalog-card { padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.agent-catalog-card h3 { margin: 0; font-size: 1.1rem; }
.agent-catalog-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.page-hero + #comment-ca-marche {
  padding-top: 36px;
}
#comment-ca-marche .home-block__head {
  margin-bottom: 28px;
}
#comment-ca-marche .home-block__head h2 {
  color: var(--brand);
  text-shadow: 0 0 32px rgba(139, 123, 255, 0.35);
}
.how-it-works-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; margin: 0; padding: 0; }
.how-step { padding: 20px 16px; text-align: center; }
.how-step__num { font-weight: 800; color: var(--brand); display: block; margin-bottom: 8px; }
.contact-form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.contact-form-intro {
  margin: 0 0 20px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--muted);
}
.contact-success {
  padding: 0;
  margin: 0 0 16px;
  background: none;
  border: none;
  color: var(--ink);
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.5;
}
.about-founder-photo-placeholder { width: 100%; max-width: 280px; aspect-ratio: 1; border-radius: 50%; margin: 0 auto; display: grid; place-items: center; background: linear-gradient(135deg, #6c5cff 0%, #7be3ff 100%); border: 2px solid rgba(139, 123, 255, 0.45); box-shadow: 0 0 40px rgba(108, 92, 255, 0.35); }
.about-founder-photo-placeholder .about-founder-monogram { font-size: 3rem; font-weight: 800; color: #fff; }
.about-photo-caption { text-align: center; font-size: 0.82rem; color: var(--muted-2); margin-top: 10px; }
.tarifs-highlight { text-align: center; max-width: 520px; margin: 24px auto 0; padding: 20px; border-radius: 16px; border: 1px dashed rgba(139, 123, 255, 0.35); background: rgba(108, 92, 255, 0.08); }
.tarifs-variable-costs {
  text-align: center;
  max-width: 640px;
  margin: 20px auto 0;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(123, 227, 255, 0.28);
  background: rgba(123, 227, 255, 0.06);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.tarifs-no-engage { font-weight: 700; color: var(--cyan); margin-top: 20px; text-align: center; }
@media (max-width: 900px) {
  .home-pillars:not(.home-pillars--stack), .home-steps:not(.home-steps--stack), .home-usecases-grid, .how-it-works-steps { grid-template-columns: 1fr 1fr; }
  .agents-catalog-grid { grid-template-columns: 1fr; }
  .agents-bubbles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .agents-bubbles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .agent-bubble {
    min-height: 152px;
    padding: 18px 10px 14px;
  }
  .agent-bubble__icon {
    width: 76px;
    height: 76px;
  }
  .agent-bubble__title {
    font-size: 0.92rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  #intro-splash.intro-screen {
    display: none !important;
  }
  .intro-screen__progress-bar {
    animation: none;
  }
  .agent-bubble,
  .agents-detail-panel {
    transition: none;
  }
}
@media (max-width: 560px) {
  .home-pillars:not(.home-pillars--stack), .home-steps:not(.home-steps--stack), .home-usecases-grid, .how-it-works-steps { grid-template-columns: 1fr; }
  .home-pillar__icon {
    width: 68px;
    height: 68px;
  }
}
