/* ============================================================
   AAA CONSULTING · Feuille de style principale
   DA v2 « Mobbin-like » : fond blanc, encre quasi-noire,
   typographie grotesque serrée, boutons pilules, panneaux
   arrondis, apparitions douces au scroll.
   Tokens dans :root ci-dessous : source de vérité du design.
   ============================================================ */

:root {
  /* Palette */
  --bg:          #FFFFFF;
  --bg-soft:     #F6F6F4;   /* panneaux, nav, cartes teintées */
  --bg-softer:   #FAFAF9;
  --ink:         #0D0D0C;   /* texte principal + boutons noirs */
  --ink-panel:   #111110;   /* panneaux sombres */
  --gray:        #6F6F6C;   /* texte secondaire */
  --gray-light:  #9C9C98;
  --line:        #E8E8E5;   /* bordures */
  --line-dark:   rgba(255, 255, 255, .14);
  --accent:      #B87D4B;   /* cuivre : accent secondaire (anneau d'Aura) */

  /* Alias hérités (utilisés en inline dans le HTML/JS) */
  --navy:     var(--ink);
  --navy-deep: var(--ink-panel);
  --violet:      #6B6FAE;   /* violet principal : boutons, cartes, etats actifs */
  --violet-deep: #4E5288;   /* violet profond : grands panneaux et survols */
  --lavender: var(--gray-light);
  --copper:   #E5484D;      /* états d'erreur */
  --ivory:    var(--bg);
  --ivory-dk: var(--bg-soft);
  --white:    #FFFFFF;
  --ash:      var(--gray);

  /* Typo */
  --font-d: 'Inter Tight', 'Inter', system-ui, sans-serif;  /* titres */
  --font-b: 'Inter', system-ui, -apple-system, sans-serif;  /* corps */
  --font-m: 'Inter', system-ui, sans-serif;

  /* Géométrie & animation */
  --r-pill: 999px;
  --r-xl:   32px;
  --r-lg:   24px;
  --r-md:   16px;
  --r-sm:   12px;
  --ease:   cubic-bezier(.16, 1, .3, 1);
  --wrap:   1200px;
  --shadow-card: 0 1px 2px rgba(13, 13, 12, .04), 0 8px 24px rgba(13, 13, 12, .05);
  --shadow-pop:  0 2px 6px rgba(13, 13, 12, .06), 0 20px 48px rgba(13, 13, 12, .10);
}

/* ============ BASE ============ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;   /* la nav est fixe : les ancres ne doivent pas passer dessous */
  font-size: 16px;
}

html, body { overflow-x: hidden; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ REVEAL AU SCROLL ============ */

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  filter: blur(6px);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease),
    filter .9s var(--ease);
  will-change: opacity, transform, filter;
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ NAVIGATION ============ */
/* Barre pleine largeur transparente. Grille : liens / logo centré /
   liens + CTA. Voile blanc flouté estompé au scroll, effet « machine
   à sous » sur les libellés (main.js duplique les textes en .slot). */

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .9rem max(clamp(1.2rem, 4vw, 3rem), calc((100% - 1280px) / 2));
  background: transparent;
}

/* Voile au scroll : dégradé blanc flouté, estompé par un masque */
#mainNav::before {
  content: '';
  position: absolute;
  inset: 0 0 -24px 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 75%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
  mask-image: linear-gradient(to bottom, #000 55%, transparent);
}

#mainNav.scrolled::before { opacity: 1; }

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Logo centré, rétrécit au scroll */
.nav-logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  line-height: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height .4s var(--ease), transform .3s var(--ease);
}

#mainNav.scrolled .nav-logo img { height: 38px; }

.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links--left {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.nav-right {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.6rem);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .3s;
}

.nav-links a:hover { color: var(--ink); }

/* Effet « machine à sous » : libellé dupliqué sur 2 lignes qui glissent */
.slot {
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  height: 1.5em;
  line-height: 1.5;
  vertical-align: middle;
}

.slot > span {
  display: block;
  flex: 0 0 auto;
  height: 1.5em;
  line-height: 1.5;
  transition: transform .42s cubic-bezier(.76, 0, .24, 1);
}

.nav-links a:hover .slot > span,
.btn-nav:hover .slot > span { transform: translateY(-100%); }

/* CTA : contour à reflet métallique animé, se remplit d'encre au survol */
.btn-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem 1.35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.btn-nav:hover {
  background: var(--violet);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 13, 12, .22);
}

/* Anneau à reflet : dégradé masqué en liseré, balayé en continu */
.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  background-image: linear-gradient(100deg,
    #0D0D0C 0%, #4A4A47 12%, #8C8C88 22%, #DEDED9 30%, #8C8C88 38%,
    #4A4A47 50%, #0D0D0C 62%, #8C8C88 82%, #4A4A47 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: btn-reflet 5s linear infinite;
}

@keyframes btn-reflet { to { background-position: -200% 0; } }

/* Repli navigateurs sans mask-composite : bordure simple */
@supports not ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
  .btn-nav::before { display: none; }
  .btn-nav { border: 1.5px solid var(--ink); }
}

.hamburger {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}

/* Responsive nav : burger à gauche, logo centré, CTA à droite */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #mainNav { padding-top: .7rem; padding-bottom: .7rem; }
  .nav-logo img { height: 40px; }
  #mainNav.scrolled .nav-logo img { height: 34px; }
}

@media (max-width: 560px) {
  .btn-nav { font-size: .68rem; padding: .5rem .9rem; letter-spacing: .08em; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-nav::before { animation: none; }
}

/* ============ NAV MOBILE ============ */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav a {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  padding: .55rem 1.4rem;
  border-radius: var(--r-pill);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .25s;
}

.mobile-nav.open a { opacity: 1; transform: none; }
.mobile-nav.open a:nth-child(2) { transition-delay: .05s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .10s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .15s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .20s; }
.mobile-nav.open a:nth-child(6) { transition-delay: .25s; }

.mobile-nav a:hover { background: var(--bg-soft); }

.mobile-nav .m-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .25s var(--ease);
}

.mobile-nav .m-close:hover { transform: rotate(90deg); }

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg,
.hero-triangles,
.hero-line { display: none; }

/* Fond animé : grille de points scintillants (canvas piloté par main.js),
   estompée derrière le titre pour préserver la lisibilité */
.hero-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 58% 52% at 50% 40%, transparent 10%, rgba(0, 0, 0, .55) 50%, #000 82%);
  mask-image: radial-gradient(ellipse 58% 52% at 50% 40%, transparent 10%, rgba(0, 0, 0, .55) 50%, #000 82%);
}

.hero .wrap,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Entrée au chargement, en cascade */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: none;             filter: none; }
}

.hero-eyebrow,
.hero-h1,
.hero-sub,
.hero-btns,
.hero-stats {
  opacity: 0;
  animation: heroUp .9s var(--ease) forwards;
}

.hero-eyebrow { animation-delay: .05s; }
.hero-h1      { animation-delay: .15s; }
.hero-sub     { animation-delay: .28s; }
.hero-btns    { animation-delay: .40s; }
.hero-stats   { animation-delay: .55s; }

/* ── Aura, l'effigie : animations de la sphère ──
   Utilisées par la section « Découvrez Aura ». */

.aura-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: auraFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 22px 22px rgba(15, 52, 96, .22));
  will-change: transform;
}

@keyframes auraFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-1.2deg); }
}

/* Clignement périodique des yeux de lumière */
.aura-eyes {
  transform-box: fill-box;
  transform-origin: center;
  animation: auraBlink 5s infinite;
}

@keyframes auraBlink {
  0%, 91%, 96%, 100% { transform: scaleY(1); }
  93.5%              { transform: scaleY(.08); }
}

@media (prefers-reduced-motion: reduce) {
  .aura-svg, .aura-eyes { animation: none; }
}

/* Surtitre éditorial : petites capitales espacées, sans puce ni fond */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(2.7rem, 6.4vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 1.6rem;
  text-wrap: balance;
}

.hero-h1 em {
  font-style: normal;
  color: inherit;
}

/* Surlignage minimaliste : nappe cuivre translucide derrière les mots clés */
.hero-h1 .ul {
  position: relative;
  white-space: nowrap;
  z-index: 0;
}

.hero-h1 .ul::after {
  content: '';
  position: absolute;
  left: -.1em;
  right: -.1em;
  top: .04em;
  bottom: -.02em;
  z-index: -1;
  background: var(--accent);
  opacity: .22;
  border-radius: .12em;
  transform: scaleX(0);
  transform-origin: left;
  animation: ulIn .8s var(--ease) 1s forwards;
}

@keyframes ulIn { to { transform: scaleX(1); } }

.hero-sub {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ BOUTONS ============ */

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  background: var(--violet);
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  transition: transform .3s var(--ease), background .25s, box-shadow .3s var(--ease);
}

.btn-p:hover {
  background: var(--violet-deep);
  transform: scale(1.035);
  box-shadow: 0 10px 28px rgba(13, 13, 12, .18);
}

.btn-p svg { transition: transform .3s var(--ease); }
.btn-p:hover svg { transform: translateX(3px); }

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  background: var(--bg);
  color: var(--ink);
  font-size: .98rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: transform .3s var(--ease), border-color .25s, background .25s;
}

.btn-s:hover {
  border-color: var(--ink);
  transform: scale(1.035);
}

.btn-s svg { transition: transform .3s var(--ease); }
.btn-s:hover svg { transform: translateX(3px); }

/* ============ STATS HERO ============ */

.hero-stats {
  max-width: 720px;
  margin: 4.5rem auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.stat-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 0 2rem;
  text-align: center;
}

.stat-box + .stat-box { border-left: 1px solid var(--line); }

.stat-n {
  font-family: var(--font-d);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}

.stat-l {
  font-size: .85rem;
  color: var(--gray);
}

/* ============ BANDEAU CONFIANCE (masqué) ============ */

.trust { padding: 3rem 0; }

.trust-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.trust-track-wrap { overflow: hidden; }

.trust-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: trustScroll 40s linear infinite;
}

.trust-track:hover { animation-play-state: paused; }

@keyframes trustScroll {
  to { transform: translateX(-50%); }
}

.trust-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-light);
  white-space: nowrap;
  transition: color .25s;
}

.trust-name:hover { color: var(--ink); }

/* ============ TÊTES DE SECTION ============ */

.sec-head { max-width: 720px; margin-bottom: 3.2rem; }

.sec-eye {
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem;
  margin-bottom: 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.sec-h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.sec-h2 em { font-style: normal; color: inherit; }

.sec-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gray);
}

/* ============ SUR-MESURE : offre phare ============ */
/* Deux colonnes : l'argumentaire à gauche, la scène Aura à droite.
   La sphère au centre, les icônes des modèles d'IA flottent autour. */

.sm-section {
  padding: 6.5rem 0 5.5rem;
  background: var(--bg);
}

.sm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.sm-copy .sec-h2 { max-width: 12ch; }

/* Surlignage cuivre sur les mots clés, comme dans le hero */
.sm-copy .sec-h2 em {
  position: relative;
  font-style: normal;
  z-index: 0;
}

.sm-copy .sec-h2 em::after {
  content: '';
  position: absolute;
  left: -.1em;
  right: -.1em;
  top: .04em;
  bottom: -.02em;
  z-index: -1;
  background: var(--accent);
  opacity: .22;
  border-radius: .12em;
}

.sm-sub {
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

.sm-points {
  list-style: none;
  margin-bottom: 2rem;
}

.sm-points li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: .8rem;
}

.sm-points li strong {
  font-weight: 600;
  color: var(--ink);
}

.sm-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .4em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D0D0C' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
  border: 1px solid var(--line);
}

.sm-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .9rem;
}

.sm-cta-note {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--gray-light);
  max-width: 42ch;
}

.aura-stage {
  position: relative;
  height: clamp(340px, 44vw, 470px);
  max-width: 920px;
  margin: 0 auto;
}

/* Dans la colonne de droite, la scène est plus compacte que sur toute la largeur */
.sm-visual .aura-stage {
  height: clamp(320px, 32vw, 440px);
  max-width: 540px;
}

.aura-stage-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(210px, 28vw, 280px);
}

/* Icônes d'IA : squircles flottants, chacun sa cadence */
.ai-icon {
  position: absolute;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24%;
  box-shadow: var(--shadow-card);
  animation: aiFloat 7s ease-in-out infinite;
  will-change: transform;
}

.ai-icon svg,
.ai-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

/* Tuile pleine (l'image occupe tout le squircle) */
.ai-icon--tile { background: none; border: none; overflow: hidden; }
.ai-icon--tile img { width: 100%; height: 100%; object-fit: cover; }

.ai-icon--gemini {
  left: 10%;
  top: 10%;
  width: clamp(56px, 7.5vw, 80px);
  height: clamp(56px, 7.5vw, 80px);
  animation-duration: 6.4s;
}

.ai-icon--openai {
  right: 8%;
  top: 24%;
  width: clamp(62px, 8.5vw, 90px);
  height: clamp(62px, 8.5vw, 90px);
  animation-duration: 8.2s;
  animation-delay: .8s;
}

.ai-icon--claude {
  left: 16%;
  bottom: 8%;
  width: clamp(50px, 6.5vw, 70px);
  height: clamp(50px, 6.5vw, 70px);
  border-radius: 24%;
  animation-duration: 7.1s;
  animation-delay: .4s;
}

@keyframes aiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}

@media (max-width: 900px) {
  .sm-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .sm-copy .sec-h2 { max-width: none; }
  .sm-visual { order: -1; }
  .sm-visual .aura-stage { max-width: 460px; }
}

@media (max-width: 768px) {
  .aura-stage,
  .sm-visual .aura-stage { height: 300px; }
  .ai-icon--gemini { left: 2%; top: 6%; }
  .ai-icon--openai { right: 1%; top: 20%; }
  .ai-icon--claude { left: 6%; bottom: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-icon { animation: none; }
}

/* ============ AGENTS : CARROUSEL ============ */

.agents-section {
  padding: 6.5rem 0;
  background: var(--bg);
}

.agents-section .sec-head { margin-left: auto; margin-right: auto; }

.agents-carousel-wrap {
  position: relative;
  height: 510px;
  margin-top: 1rem;
}

.agents-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.agent-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 94%);
  padding: 2.1rem 2.2rem 1.9rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition:
    transform .65s var(--ease),
    opacity .65s var(--ease),
    box-shadow .35s var(--ease),
    border-color .25s;
}

.agent-card:hover { border-color: #D6D6D2; }

.agent-card[data-pos="0"] {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
}

.agent-card[data-pos="0"]:hover {
  box-shadow: var(--shadow-pop);
  transform: translate(-50%, -50.6%) scale(1.008);
}

.agent-card[data-pos="1"] {
  transform: translate(calc(-50% + 400px), -50%) scale(.86);
  opacity: .38;
  z-index: 3;
  filter: saturate(.4);
}

.agent-card[data-pos="-1"] {
  transform: translate(calc(-50% - 400px), -50%) scale(.86);
  opacity: .38;
  z-index: 3;
  filter: saturate(.4);
}

.agent-card[data-pos="2"] {
  transform: translate(calc(-50% + 640px), -50%) scale(.75);
  opacity: 0;
  z-index: 1;
}

.agent-card[data-pos="-2"] {
  transform: translate(calc(-50% - 640px), -50%) scale(.75);
  opacity: 0;
  z-index: 1;
}

.agent-tag {
  display: inline-block;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.agent-name {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: .35rem;
}

.agent-name strong { font-weight: 700; }

/* « Aura <em>Vocale</em> » : le nom de l'agent en italique, comme sur les plaquettes */
.agent-name em,
.agent-modal-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gray);
}

.agent-tagline {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .7rem;
}

.agent-desc {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 1.1rem;
}

.agent-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.4rem;
}

.agent-sector {
  padding: .3rem .75rem;
  font-size: .76rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
}

.agent-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  margin-bottom: 1.2rem;
}

.agent-kpi { text-align: left; }

.agent-kpi-n {
  display: block;
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
}

.agent-kpi-l {
  display: block;
  font-size: .74rem;
  color: var(--gray);
  margin-top: .2rem;
  line-height: 1.35;
}

.agent-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: fit-content;
  margin-inline: auto;          /* centre le bouton en bas de carte */
  text-decoration: none;
  cursor: pointer;
  padding: .65rem 1.25rem;
  background: var(--violet);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  transition: transform .3s var(--ease), background .25s;
}

.agent-card-cta:hover {
  background: var(--violet-deep);
  transform: scale(1.04);
}

/* Navigation du carrousel */

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .25s, color .25s, transform .25s var(--ease), border-color .25s;
}

.carousel-btn:hover {
  background: var(--violet);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.06);
}

.carousel-dots { display: flex; gap: .5rem; }

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: var(--line);
  border: none;
  border-radius: var(--r-pill);
  transition: background .3s, width .3s var(--ease);
}

.carousel-dot.active {
  width: 24px;
  background: var(--violet);
}

.agents-cta-row {
  max-width: 680px;
  margin: 3.5rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.agents-cta-note {
  font-size: .98rem;
  line-height: 1.65;
  color: var(--gray);
}

/* ============ MODALE AGENT ============ */

.agent-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13, 13, 12, .45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}

.agent-modal-overlay.open { opacity: 1; visibility: visible; }

.agent-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  padding: 2.6rem 2.6rem 2.2rem;
  background: var(--bg);
  border-radius: 28px;
  box-shadow: var(--shadow-pop);
  transform: translateY(24px) scale(.97);
  transition: transform .45s var(--ease);
}

.agent-modal-overlay.open .agent-modal { transform: none; }

.agent-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .25s, transform .25s var(--ease);
}

.agent-modal-close:hover { color: var(--ink); transform: rotate(90deg); }

.agent-modal-tag {
  display: inline-block;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.agent-modal-name {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: .4rem;
}

.agent-modal-tagline {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.6rem;
}

.agent-modal-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-bottom: 1.8rem;
}

.agent-modal-kpi {
  padding: 1rem 1.1rem;
  background: var(--bg-soft);
  border-radius: var(--r-md);
}

.agent-modal-kpi .kpi-n {
  display: block;
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
}

.agent-modal-kpi .kpi-l {
  display: block;
  font-size: .76rem;
  color: var(--gray);
  margin-top: .3rem;
  line-height: 1.4;
}

.agent-modal-section-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: .8rem;
}

.agent-modal-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.agent-modal-features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .93rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: .6rem;
}

.agent-modal-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .48em;
  width: 14px;
  height: 14px;
  background: var(--ink);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat, linear-gradient(#000 0 0);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.agent-modal-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.5rem;
}

/* Encart de réassurance repris des plaquettes (« il propose, vous décidez »…) */
.agent-modal-note {
  padding: .95rem 1.15rem;
  margin-bottom: 2rem;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--gray);
  background: var(--bg-soft);
  border-left: 2px solid var(--accent);
  border-radius: var(--r-sm);
}

.agent-modal-sector {
  padding: .35rem .8rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
}

.agent-modal-cta { display: flex; justify-content: center; }

/* ============ SIMULATEUR ROI ============ */

.audit-section {
  padding: 3rem 0 6.5rem;
  background: var(--bg);
}

.audit-section > .wrap {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 4.5rem clamp(1.5rem, 5vw, 5rem) 4.5rem;
}

.audit-section .sec-head { margin-left: auto; margin-right: auto; margin-bottom: 2.6rem; }
.audit-section .sec-eye { background: var(--bg); }

.audit-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.4rem 2.4rem 2.2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.audit-progress { margin-bottom: 2rem; }

.audit-progress-bar-wrap {
  height: 6px;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.audit-progress-bar {
  height: 100%;
  width: 20%;
  background: var(--violet);
  border-radius: var(--r-pill);
  transition: width .5s var(--ease);
}

.audit-progress-label {
  margin-top: .6rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-light);
}

.audit-step { display: none; }
.audit-step.active { display: block; animation: stepIn .5s var(--ease); }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.audit-q-title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.audit-q-sub {
  font-size: .92rem;
  color: var(--gray);
  margin: -.8rem 0 1.4rem;
}

.roi-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
}

.roi-options-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.roi-option {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.05rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}

.roi-option:hover {
  border-color: var(--gray-light);
  transform: translateY(-1px);
}

.roi-option.selected {
  border-color: var(--ink);
  background: var(--bg-softer);
  box-shadow: 0 0 0 1px var(--ink);
}

.roi-option input { display: none; }

.roi-option-text {
  flex: 1;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.roi-option-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: border-color .25s, background .25s;
}

.roi-option.selected .roi-option-check {
  background: var(--violet);
  border-color: var(--ink);
}

.roi-option.selected .roi-option-check::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

.audit-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
}

.audit-next-btn {
  padding: .8rem 1.6rem;
  background: var(--violet);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease), background .25s, opacity .25s;
}

.audit-next-btn:hover { background: var(--violet-deep); transform: scale(1.03); }
.audit-next-btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }

.audit-prev-btn {
  padding: .8rem 1.3rem;
  background: none;
  color: var(--gray);
  font-size: .92rem;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: color .25s, border-color .25s;
}

.audit-prev-btn:hover { color: var(--ink); border-color: var(--ink); }

/* Coordonnées */

.roi-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.roi-contact-fields input[type="text"]:last-child { grid-column: 1 / -1; }

.roi-contact-fields input {
  padding: .95rem 1.15rem;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color .25s, background .25s;
}

.roi-contact-fields input:focus {
  background: var(--bg);
  border-color: var(--ink);
}

.roi-contact-fields input::placeholder { color: var(--gray-light); }

.roi-submit-row {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.roi-submit-btn {
  padding: .95rem 2rem;
  background: var(--violet);
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease), background .25s, box-shadow .3s var(--ease);
}

.roi-submit-btn:hover {
  background: var(--violet-deep);
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(13, 13, 12, .16);
}

.roi-legal-note {
  font-size: .74rem;
  color: var(--gray-light);
  text-align: center;
  max-width: 420px;
}

.roi-legal-note a { text-decoration: underline; }

/* Résultats */

.roi-results-header { text-align: center; margin-bottom: 2rem; }

.roi-results-eyebrow {
  display: inline-block;
  padding: .32rem .9rem;
  margin-bottom: .9rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
}

.roi-results-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.2;
}

.roi-metrics-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: .8rem;
  margin-bottom: 1rem;
}

.roi-metric {
  padding: 1.4rem 1.3rem;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.roi-metric--main {
  background: var(--violet-deep);
}

.roi-metric-label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.roi-metric--main .roi-metric-label { color: rgba(255, 255, 255, .75); }

.roi-metric-value {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.15;
}

.roi-metric--main .roi-metric-value { color: #fff; font-size: 1.7rem; }

.roi-metric-sub {
  font-size: .76rem;
  color: var(--gray);
  line-height: 1.4;
}

.roi-metric--main .roi-metric-sub { color: rgba(255, 255, 255, .75); }

.roi-restart-btn {
  padding: .45rem .9rem;
  background: none;
  color: var(--gray-light);
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: color .25s, border-color .25s;
}

.roi-restart-btn:hover { color: var(--ink); border-color: var(--ink); }

.roi-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}

.roi-cta-primary,
.roi-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1.05rem 2.1rem;
  background: var(--violet);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: transform .3s var(--ease), background .25s, box-shadow .3s var(--ease);
}

.roi-cta-hero:hover {
  background: var(--violet-deep);
  transform: scale(1.035);
  box-shadow: 0 12px 32px rgba(13, 13, 12, .2);
}

.roi-cta-arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}

.roi-cta-hero:hover .roi-cta-arrow { transform: translateX(4px); }

.roi-cta-sub {
  font-size: .82rem;
  color: var(--gray-light);
}

/* ============ MODALE DIAGNOSTIC ============ */

.audit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13, 13, 12, .45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}

.audit-modal-overlay.open { opacity: 1; visibility: visible; }

.audit-modal {
  width: min(560px, 100%);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 28px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  transform: translateY(24px) scale(.97);
  transition: transform .45s var(--ease);
}

.audit-modal-overlay.open .audit-modal { transform: none; }

.audit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.audit-modal-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}

.audit-modal-title-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30C463;
  box-shadow: 0 0 0 3px rgba(48, 196, 99, .18);
}

.audit-modal-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .25s, transform .25s var(--ease);
}

.audit-modal-close:hover { color: var(--ink); transform: rotate(90deg); }

.audit-modal-body {
  padding: 1.8rem 1.6rem;
  overflow-y: auto;
}

.audit-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

.audit-modal-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.audit-modal-loading p {
  font-size: .9rem;
  color: var(--gray);
}

.audit-modal-response {
  display: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.audit-modal-response.visible { display: block; opacity: 1; }

.audit-modal-response-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
}

.audit-modal-response-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30C463;
}

.audit-modal-response-content {
  font-size: .93rem;
  line-height: 1.65;
  color: var(--gray);
}

.audit-modal-response-content p { margin-bottom: .75rem; }
.audit-modal-response-content strong { color: var(--ink); }

.audit-modal-footer {
  padding: 1.1rem 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.audit-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  background: var(--violet);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease), background .25s;
}

.audit-modal-cta:hover { background: var(--violet-deep); transform: scale(1.03); }

/* ============ APPROCHE ============ */

.approach {
  padding: 6.5rem 0;
  background: var(--bg);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-visual {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 1rem;
}

.pillars {
  display: flex;
  flex-direction: column;
}

.pillar {
  display: flex;
  gap: 1.4rem;
  padding: 1.5rem 0;
}

.pillar + .pillar { border-top: 1px solid var(--line); }

.p-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.p-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: .35rem;
}

.p-desc {
  font-size: .93rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ============ TÉMOIGNAGE ============ */

.testimonial {
  padding: 3rem 0 6.5rem;
  background: var(--bg);
  position: relative;
}

.testi-bg { display: none; }

.testi-inner {
  background: var(--violet-deep);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.8rem, 6vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testi-qm {
  display: block;
  font-family: var(--font-d);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: .6;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.2rem;
}

.testi-text {
  max-width: 820px;
  margin: 0 auto 2.4rem;
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.45;
  color: #fff;
}

.testi-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.testi-div {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, .75);
  border-radius: 2px;
  margin-bottom: .8rem;
}

.testi-name {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}

.testi-role {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
}

/* ============ ÉQUIPE (masquée) ============ */

.team { padding: 6.5rem 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card { }

.team-photo-w {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.team-card:hover .team-photo { transform: scale(1.04); }

.team-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(13, 13, 12, .35), transparent 45%);
  opacity: 0;
  transition: opacity .35s;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-li {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
}

.team-info { padding: .9rem .2rem 0; }

.team-name {
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
}

.team-role {
  font-size: .82rem;
  color: var(--gray);
}

/* ============ INSIGHTS (masqués) ============ */

.insights { padding: 6.5rem 0; }

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

.ins-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.ins-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

.ins-thumb-w { overflow: hidden; }

.ins-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.ins-card:hover .ins-thumb { transform: scale(1.04); }

.ins-body { padding: 1.4rem 1.5rem 1.6rem; }

.ins-meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .8rem;
}

.ins-cat {
  padding: .25rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--bg-soft);
  border-radius: var(--r-pill);
}

.ins-date {
  font-size: .78rem;
  color: var(--gray-light);
}

.ins-h3 {
  font-family: var(--font-d);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: .6rem;
}

.ins-excerpt {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 1rem;
}

.ins-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  transition: gap .25s var(--ease);
}

.ins-cta:hover { gap: .65rem; }

/* ============ EXPERTISES ============ */

.expertise {
  padding: 6.5rem 0;
  background: var(--bg);
}

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

.exp-card {
  position: relative;
  padding: 2rem 1.9rem 2.1rem;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
}

.exp-card::before { display: none; }

.exp-card:hover {
  background: var(--bg);
  border-color: var(--line);
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}

.exp-num {
  position: absolute;
  top: 1.7rem;
  right: 1.8rem;
  font-family: var(--font-d);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-light);
}

.exp-ico {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .4s var(--ease);
}

.exp-card:hover .exp-ico { transform: scale(1.06) rotate(-3deg); }

.exp-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
}

.exp-title {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: .55rem;
}

.exp-desc {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--gray);
}

.exp-lnk {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.exp-lnk:hover { gap: .65rem; }

/* ============ CTA FINAL ============ */

.cta-final {
  padding: 3rem 0 6.5rem;
  background: var(--bg);
  position: relative;
}

.cta-final-bg { display: none; }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  background: var(--violet-deep);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
}

.cta-left { color: #fff; }

.cta-h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.2rem;
}

.cta-h2 em { font-style: normal; color: inherit; }

.cta-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.8rem;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .78);
}

.cta-perk::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* CTA : bouton clair sur panneau sombre */
.cta-left .btn-p {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.cta-left .btn-p:hover {
  background: var(--bg-soft);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
}

.cta-form {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-pop);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.form-group { margin-bottom: .9rem; }

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
}

.req { color: var(--copper); margin-left: .1rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color .25s, background .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--bg);
  border-color: var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }

.form-group textarea {
  min-height: 96px;
  resize: vertical;
}

.form-consent { margin: .9rem 0 1.1rem; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: .2rem;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--ink);
}

.consent-label span {
  font-size: .76rem;
  line-height: 1.5;
  color: var(--gray);
}

.consent-label span a { text-decoration: underline; }

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  background: var(--violet);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease), background .25s, box-shadow .3s var(--ease);
}

.btn-submit:hover {
  background: var(--violet-deep);
  transform: scale(1.015);
  box-shadow: 0 10px 28px rgba(13, 13, 12, .16);
}

/* ============ PAGE DÉMOS ============ */

.page-hero {
  padding: 10.5rem 0 3.5rem;
  background: var(--bg);
}

.demo-block {
  padding: 3.5rem 0;
  background: var(--bg);
}

.demo-panel {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.demo-panel--reverse .demo-info { order: 2; }
.demo-panel--reverse .demo-visual { order: 1; }

.demo-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 1rem 0 .4rem;
}

.demo-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .8rem;
}

.demo-desc {
  font-size: .98rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.demo-features {
  list-style: none;
  margin-bottom: 1.8rem;
}

.demo-features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .93rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: .55rem;
}

.demo-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D0D0C' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
  border: 1px solid var(--line);
}

.demo-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
}

.demo-note {
  font-size: .8rem;
  color: var(--gray-light);
  max-width: 380px;
}

/* Fenêtre navigateur autour de la capture */
.browser-frame {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.browser-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pop);
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem .9rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.bf-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #DDDDD8;
}

.bf-url {
  margin-left: .6rem;
  padding: .22rem .8rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.browser-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Carte d'appel : démo Aura Vocale (pas de capture d'écran à montrer) */
.call-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2.6rem, 5vw, 3.6rem) clamp(1.6rem, 4vw, 3rem);
  background: var(--violet-deep);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

.call-card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.4rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.call-card-eye {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: .9rem;
}

.call-card-number {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s var(--ease);
}

.call-card-number:hover { color: rgba(255, 255, 255, .78); }

.call-card-sub {
  margin-top: 1rem;
  max-width: 30ch;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .74);
}

/* CTA final de la page démos */
.demos-cta { padding: 3.5rem 0 6.5rem; }

.demos-cta-panel {
  background: var(--violet-deep);
  border-radius: var(--r-xl);
  padding: clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
}

.demos-cta-panel .cta-sub { margin-bottom: 2rem; }

.demos-cta-btns {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.demos-cta-btns .btn-p {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.demos-cta-btns .btn-p:hover { background: var(--bg-soft); }

.demos-cta-btns .btn-s {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.demos-cta-btns .btn-s:hover { border-color: #fff; }

@media (max-width: 900px) {
  .page-hero { padding: 8.5rem 0 2.5rem; }

  .demo-panel { grid-template-columns: 1fr; gap: 1.8rem; }
  .demo-panel--reverse .demo-info { order: 1; }
  .demo-panel--reverse .demo-visual { order: 2; }

  .demo-block { padding: 2.5rem 0; }
}

/* ============ FOOTER ============ */

footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.ft-brand p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--gray);
  max-width: 340px;
}

.ft-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 1.1rem;
}

.ft-col h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.ft-col ul { list-style: none; }

.ft-col ul li { margin-bottom: .55rem; }

.ft-col ul a {
  font-size: .92rem;
  color: var(--gray);
  transition: color .25s;
}

.ft-col ul a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.footer-copy {
  font-size: .8rem;
  color: var(--gray-light);
}

.footer-copy a:hover { color: var(--ink); }

.footer-copy a.footer-credit {
  color: var(--accent);
  font-weight: 500;
}

.footer-copy a.footer-credit:hover {
  color: #9A6438;
  text-decoration: underline;
}

.footer-socials { display: flex; gap: .6rem; }

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .25s, background .25s, transform .25s var(--ease);
}

.social-link:hover {
  color: #fff;
  background: var(--violet);
  border-color: var(--ink);
  transform: scale(1.08);
}

/* ============ BANDEAU COOKIES ============ */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 4000;
  width: min(680px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-pop);
  transform: translate(-50%, calc(100% + 2rem));
  transition: transform .6s var(--ease);
}

.cookie-banner.visible { transform: translate(-50%, 0); }

.cookie-text {
  flex: 1;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--gray);
}

.cookie-text a { color: var(--ink); text-decoration: underline; }

.cookie-btns {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept {
  padding: .6rem 1.2rem;
  background: var(--violet);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  transition: background .25s, transform .25s var(--ease);
}

.cookie-accept:hover { background: var(--violet-deep); transform: scale(1.03); }

.cookie-refuse {
  padding: .6rem 1.2rem;
  background: none;
  color: var(--gray);
  font-size: .84rem;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: color .25s, border-color .25s;
}

.cookie-refuse:hover { color: var(--ink); border-color: var(--ink); }

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }

  .agent-card[data-pos="1"]  { transform: translate(calc(-50% + 330px), -50%) scale(.84); }
  .agent-card[data-pos="-1"] { transform: translate(calc(-50% - 330px), -50%) scale(.84); }

  .approach-inner { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .hero { padding: 8.5rem 0 4rem; }

  .approach-inner { grid-template-columns: 1fr; }

  .cta-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .ins-grid { grid-template-columns: 1fr; }

  .agent-card[data-pos="1"],
  .agent-card[data-pos="-1"] { opacity: 0; }
}

@media (max-width: 768px) {
  .hero-stats { max-width: 100%; }
  .stat-box { padding: 0 1rem; }
  .stat-n { font-size: 1.7rem; }
  .stat-l { font-size: .76rem; }

  .agents-carousel-wrap { height: 640px; }

  .agent-card {
    padding: 1.7rem 1.5rem 1.6rem;
  }

  .audit-section > .wrap {
    border-radius: var(--r-lg);
    padding: 2.8rem 1.1rem;
    margin: 0 .75rem;
  }

  .audit-form-wrap { padding: 1.6rem 1.2rem 1.5rem; }

  .roi-metrics-grid { grid-template-columns: 1fr; }

  .roi-contact-fields { grid-template-columns: 1fr; }
  .roi-contact-fields input[type="text"]:last-child { grid-column: 1; }

  .cta-form { padding: 1.6rem 1.3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-grid { grid-template-columns: 1fr; }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .roi-options-grid.two-col { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn-p,
  .hero-btns .btn-s { justify-content: center; }

  .agents-carousel-wrap { height: 660px; }

  .exp-grid { grid-template-columns: 1fr; }
}
