/* ============================================================
   COMPONENTS — boutons, cursor, hero, stats, phone, services, etc.
   ============================================================ */

/* ════════════════════════════════════════════════════
   CURSEUR CUSTOM
   ════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  display: none;
}
body.has-custom-cursor .cursor { display: block; }

.cursor__dot,
.cursor__ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.cursor__dot {
  width: 8px; height: 8px;
  background: var(--c-red);
  transform: translate(-50%, -50%);
  transition: width var(--t-fast) var(--ease-out),
              height var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(227,6,19,0.4);
  transform: translate(-50%, -50%);
  transition: width var(--t) var(--ease-out),
              height var(--t) var(--ease-out),
              border-color var(--t) var(--ease-out),
              opacity var(--t) var(--ease-out);
}
/* Hover sur élément interactif → réticule */
body.cursor-hover .cursor__dot {
  width: 0; height: 0;
}
body.cursor-hover .cursor__ring {
  width: 56px; height: 56px;
  border-color: var(--c-red);
  border-radius: 4px;
  border-width: 1.5px;
  /* effet réticule : on simule des coins ouverts via box-shadow inset interrompue → on garde un carré simple */
}

/* ════════════════════════════════════════════════════
   BOUTONS
   ════════════════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 1.65rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t) var(--ease-out),
              color var(--t) var(--ease-out);
  isolation: isolate;
}
.btn > span { position: relative; z-index: 2; }
.btn__arrow {
  display: inline-block;
  transition: transform var(--t) var(--ease-out);
}

/* Primary : rouge plein */
.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-red-dark);
  transform: translateX(-101%);
  transition: transform var(--t-slow) var(--ease-out);
  z-index: 1;
}
.btn--primary:hover::before { transform: translateX(0); }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

/* Ghost : transparent, bordure */
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(249,250,250,0.3);
}
.btn--ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249,250,250,0.08);
  transform: translateX(-101%);
  transition: transform var(--t-slow) var(--ease-out);
  z-index: 1;
}
.btn--ghost:hover::before { transform: translateX(0); }
.btn--ghost:hover { border-color: var(--c-white); }

/* Large */
.btn--large {
  padding: 1.2rem 2.25rem;
  font-size: 1.0625rem;
}

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--c-white);
  background: var(--c-black);
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.6) brightness(0.55);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(15,15,16,0.2) 0%, rgba(15,15,16,0.85) 70%, rgba(15,15,16,0.96) 100%),
    linear-gradient(180deg, rgba(15,15,16,0.4) 0%, transparent 30%, rgba(15,15,16,0.92) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1080px;
  width: 100%;
  padding: var(--container-pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.hero__pin {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(227,6,19,0.45));
  animation: pin-bob 4s var(--ease-in-out) infinite;
}
.pin-svg {
  width: 100%;
  height: auto;
}
.pin-svg--large {
  width: 92px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-hero);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--accent { color: var(--c-red); }

.hero__subtitle {
  max-width: 56ch;
  font-size: var(--size-lede);
  color: rgba(249,250,250,0.78);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(249,250,250,0.7);
  font-size: .75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--t) var(--ease-out);
}
.hero__scroll:hover { color: var(--c-white); }
.hero__scroll-track {
  position: relative;
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(249,250,250,0.2);
  overflow: hidden;
}
.hero__scroll-fill {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-red);
  animation: scroll-drip 2.4s var(--ease-in-out) infinite;
}

@keyframes pin-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes scroll-drip {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ════════════════════════════════════════════════════
   CONSTAT
   ════════════════════════════════════════════════════ */
.constat__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}
@media (min-width: 900px) {
  .constat__stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
}

.stat {
  position: relative;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(249,250,250,0.1);
}
.stat__big {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  font-family: var(--font-display);
  line-height: 0.85;
  color: var(--c-white);
  letter-spacing: -0.06em;
}
.stat__prefix {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: rgba(249,250,250,0.4);
  margin-right: .25rem;
}
.stat__number {
  font-size: var(--size-stat);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.stat__unit {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: rgba(249,250,250,0.5);
  margin-left: .5rem;
}
.stat__label {
  margin-top: var(--space-md);
  font-size: var(--size-body);
  line-height: 1.4;
  color: rgba(249,250,250,0.65);
  max-width: 36ch;
}
.stat__strike {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-red);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 600ms var(--ease-out) 200ms;
}
.stat.is-revealed .stat__strike { transform: scaleX(0.45); }

/* ════════════════════════════════════════════════════
   BASCULE
   ════════════════════════════════════════════════════ */
.bascule {
  text-align: center;
  background: var(--c-black);
  overflow: hidden;
  isolation: isolate;
}
.bascule__phrase {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-white);
}
.bascule__line {
  display: block;
  overflow: hidden;
}
.bascule__line--accent { color: var(--c-red); }
.bascule__flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.bascule.is-flashing .bascule__flash {
  animation: flash-pulse 320ms var(--ease-flash);
}
@keyframes flash-pulse {
  0%   { opacity: 0; }
  10%  { opacity: 0.92; }
  100% { opacity: 0; }
}

/* ════════════════════════════════════════════════════
   PARCOURS — sticky scene
   ════════════════════════════════════════════════════ */
.parcours {
  background: var(--c-black);
  color: var(--c-white);
  position: relative;
  /* Hauteur totale qui pilote la progression du sticky */
  min-height: 340vh;
}
.parcours__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parcours__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .parcours__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Phone container */
.parcours__phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9/19;
  max-width: 90vw;
}
@media (min-width: 600px) {
  .phone { width: 320px; }
}
.phone--small { width: 240px; }

.phone__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(180deg, #2a2a2c 0%, #1a1a1c 100%);
  box-shadow:
    0 0 0 2px #0a0a0b,
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #0a0a0b;
  border-radius: 999px;
  z-index: 5;
}
.phone__screen {
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t) var(--ease-out),
              transform var(--t) var(--ease-out);
  pointer-events: none;
}
.phone__screen.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.phone__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(227,6,19,0.32) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--t-slow) var(--ease-out);
}
.phone.is-flashing .phone__glow { opacity: 1; }

/* Écran 1 : SCAN */
.phone-scan {
  flex: 1;
  background: linear-gradient(180deg, #1a1a1c 0%, #0a0a0b 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.phone-scan__camera {
  position: relative;
  width: 180px;
  max-width: 80%;
  aspect-ratio: 1;
}
.phone-scan__qr {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(227,6,19,0.3);
}
.phone-scan__viewfinder {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vf {
  position: absolute;
  width: 24px; height: 24px;
  border: 2.5px solid var(--c-red);
}
.vf--tl { top: 0;    left: 0;    border-right: 0; border-bottom: 0; }
.vf--tr { top: 0;    right: 0;   border-left: 0;  border-bottom: 0; }
.vf--bl { bottom: 0; left: 0;    border-right: 0; border-top: 0;    }
.vf--br { bottom: 0; right: 0;   border-left: 0;  border-top: 0;    }
.phone-scan__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-red) 50%, transparent);
  box-shadow: 0 0 12px var(--c-red);
  animation: scan-line 2.2s var(--ease-in-out) infinite;
}
@keyframes scan-line {
  0%, 100% { top: 0;    opacity: 1; }
  50%      { top: 100%; opacity: 1; }
}
.phone-scan__hint {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: .8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Écran 2 : SELECT PROFIL */
.phone-profile {
  flex: 1;
  padding: 36px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFF7EF;
}
.phone-profile__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-anthracite);
  text-align: center;
}
.phone-profile__welcome {
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--c-anthracite);
  text-align: center;
}
.phone-profile__sub {
  font-size: .8125rem;
  line-height: 1.4;
  color: rgba(26,26,26,0.65);
  text-align: center;
  margin-bottom: 8px;
}
.phone-profile__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .9375rem;
  cursor: default;
  transition: transform var(--t) var(--ease-out),
              background var(--t) var(--ease-out),
              box-shadow var(--t) var(--ease-out);
}
.phone-profile__btn--ghost {
  background: rgba(0,0,0,0.04);
  color: var(--c-anthracite);
}
.phone-profile__btn--active {
  background: #2B5BA8;
  color: #fff;
  transform: scale(1);
  position: relative;
}
.phone__screen--2.is-pulse .phone-profile__btn--active {
  animation: btn-pulse 1.2s var(--ease-out);
}
@keyframes btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(43,91,168,0.6); transform: scale(1); }
  40%  { box-shadow: 0 0 0 14px rgba(43,91,168,0); transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0 rgba(43,91,168,0); transform: scale(1); }
}
.phone-profile__btn-icon {
  display: inline-flex;
  width: 18px;
  font-size: 1rem;
}

/* Écran 3 : DASHBOARD */
.phone-dash {
  flex: 1;
  padding: 36px 18px 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-dash__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--c-anthracite);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-gray-light);
}
.phone-dash__back { color: var(--c-gray); font-size: 1.1rem; }
.phone-dash__title { font-weight: 700; font-size: .875rem; }

.phone-dash__product {
  display: flex;
  gap: 12px;
  align-items: center;
}
.phone-dash__product-img {
  width: 56px;
  height: 76px;
  background: linear-gradient(180deg, #f4f4f5 0%, #e5e5e7 100%);
  border-radius: 6px;
  position: relative;
}
.phone-dash__product-img::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: linear-gradient(180deg, #fff 0%, #d4d4d6 100%);
  border-radius: 3px;
}
.phone-dash__product-meta { flex: 1; font-size: .75rem; }
.phone-dash__meta-line { color: rgba(26,26,26,0.7); margin-bottom: 2px; }
.phone-dash__meta-line strong { color: var(--c-anthracite); font-weight: 600; }
.phone-dash__meta-ok { color: #1A8A4A !important; font-weight: 600 !important; }

.phone-dash__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.phone-dash__action {
  padding: 12px;
  background: #2B5BA8;
  color: #fff;
  border-radius: 10px;
  font-size: .8125rem;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.phone__screen--3.is-active .phone-dash__action {
  opacity: 1;
  transform: translateY(0);
}
.phone__screen--3.is-active .phone-dash__action:nth-child(1) { transition-delay: 120ms; }
.phone__screen--3.is-active .phone-dash__action:nth-child(2) { transition-delay: 220ms; }
.phone__screen--3.is-active .phone-dash__action:nth-child(3) { transition-delay: 320ms; }

/* Steps texte droite */
.parcours__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.parcours__step {
  display: flex;
  gap: var(--space-md);
  opacity: 0.32;
  transition: opacity var(--t) var(--ease-out);
  padding-left: 0;
}
.parcours__step.is-active { opacity: 1; }
.parcours__num {
  flex-shrink: 0;
  width: 48px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-red);
  position: relative;
  padding-top: 2px;
}
.parcours__num::after {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--c-red);
  margin-top: 12px;
  transform: scaleX(1);
  transform-origin: left;
  transition: width var(--t) var(--ease-out);
}
.parcours__step.is-active .parcours__num::after { width: 32px; }
.parcours__step h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--c-white);
}
.parcours__step p {
  font-size: .9375rem;
  color: rgba(249,250,250,0.65);
  line-height: 1.55;
  max-width: 42ch;
}

.parcours__progress {
  position: relative;
  height: 2px;
  background: rgba(249,250,250,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: var(--space-md);
}
.parcours__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--c-red);
  border-radius: 2px;
  transition: width 250ms var(--ease-out);
}

/* ════════════════════════════════════════════════════
   SERVICES — bento style "On Est Là"
   (image bg + voile + backdrop blur + texte expandable au hover)
   ════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
@media (min-width: 720px) {
  .services__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
  }
  .service { grid-column: span 2; }
  .service--big { grid-column: span 3; }
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-anthracite);
  cursor: pointer;
  transition: transform 500ms var(--ease-out),
              box-shadow 500ms var(--ease-out);
}
@media (min-width: 720px) {
  .service { min-height: 420px; }
  .service--big { min-height: 460px; }
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Image de fond (data-service-img sera converti en background-image par JS) */
.service__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* fallback gradient si pas d'image */
  background-color: var(--c-anthracite);
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(227,6,19,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #1A1A1C 0%, #0a0a0b 100%);
  transition: transform 1.2s var(--ease-out),
              filter 600ms var(--ease-out);
}
.service:hover .service__bg {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* Voile sombre permanent pour la lisibilité du texte */
.service__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,15,16,0.0) 0%, rgba(15,15,16,0.35) 45%, rgba(15,15,16,0.88) 100%);
  transition: opacity var(--t) var(--ease-out);
}

/* Bandeau flouté en bas de carte, derrière le texte */
.service__backdrop {
  position: absolute;
  inset: 50% 0 0 0;
  z-index: 2;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  background: linear-gradient(180deg, rgba(15,15,16,0) 0%, rgba(15,15,16,0.5) 60%, rgba(15,15,16,0.7) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%);
  mask-image: linear-gradient(180deg, transparent 0%, black 40%);
}

.service__content {
  position: relative;
  z-index: 3;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--c-white);
}

.service__head {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: background var(--t) var(--ease-out),
              transform var(--t) var(--ease-out);
}
.service__icon svg {
  width: 28px;
  height: 28px;
}
.service:hover .service__icon {
  background: var(--c-red);
  transform: scale(1.05);
}

.service__titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service__kicker {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.service__title {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-white);
  line-height: 1.15;
}
.service--big .service__title {
  font-size: clamp(1.4rem, 2vw, 1.875rem);
}

/* Description : repliée par défaut, déployée au hover (grid trick) */
.service__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms var(--ease-out);
}
.service__body > p {
  overflow: hidden;
  font-size: .9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin: 0;
}
.service:hover .service__body,
.service:focus-within .service__body {
  grid-template-rows: 1fr;
}
.service:hover .service__body > p,
.service:focus-within .service__body > p {
  padding-top: 0;
  margin-top: 4px;
}

/* CTA "En savoir plus" en bas de carte */
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-white);
  position: relative;
  align-self: flex-start;
  padding-bottom: 4px;
}
.service__cta > span:first-child::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-out);
}
.service:hover .service__cta > span:first-child::after {
  transform: scaleX(1);
}
.service__cta-arrow {
  display: inline-block;
  color: var(--c-red);
  transition: transform var(--t) var(--ease-out);
}
.service:hover .service__cta-arrow {
  transform: translateX(4px);
}

/* Badge "Indispensable" */
.service__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--c-red);
  color: var(--c-white);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(227,6,19,0.4);
}

/* Featured = bordure rouge subtile */
.service--featured {
  outline: 1px solid rgba(227,6,19,0.4);
  outline-offset: -1px;
}

/* Scan line au hover */
.service__scanline {
  position: absolute;
  top: 0; left: -100%;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(227,6,19,0.18), transparent);
  z-index: 4;
  transition: left 900ms var(--ease-out);
  pointer-events: none;
}
.service:hover .service__scanline { left: 150%; }

/* ════════════════════════════════════════════════════
   VIDEO DEMO
   ════════════════════════════════════════════════════ */
.video-demo__player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-black);
  box-shadow: var(--shadow-lg);
  transition: transform var(--t) var(--ease-out);
  isolation: isolate;
}
.video-demo__player:hover { transform: scale(1.005); }

.video-demo__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  /* fallback color si image manquante */
  background:
    radial-gradient(ellipse at 30% 50%, rgba(227,6,19,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1c 0%, #0a0a0b 100%);
}
.video-demo__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,15,16,0.2) 0%, rgba(15,15,16,0.55) 100%);
}
.video-demo__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(227,6,19,0.45);
  transition: transform var(--t) var(--ease-out);
}
.video-demo__play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(227,6,19,0.4);
  border-radius: 50%;
  animation: play-pulse 2.2s var(--ease-in-out) infinite;
}
@keyframes play-pulse {
  0%   { transform: scale(1);    opacity: .8; }
  100% { transform: scale(1.4);  opacity: 0;  }
}
.video-demo__play svg {
  width: 32px; height: 32px;
  fill: #fff;
  margin-left: 4px;
}
.video-demo__player:hover .video-demo__play { transform: translate(-50%, -50%) scale(1.06); }

.video-demo__duration {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,15,16,0.72);
  backdrop-filter: blur(8px);
  color: var(--c-white);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.video-demo__scanline {
  position: absolute;
  top: 0; left: -100%;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(227,6,19,0.2), transparent);
  z-index: 2;
  transition: left 1s var(--ease-out);
  pointer-events: none;
}
.video-demo__player:hover .video-demo__scanline { left: 150%; }

/* ════════════════════════════════════════════════════
   MODAL VIDEO
   ════════════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--container-pad);
}
.video-modal[hidden] { display: none; }
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(8px);
  animation: fade-in 200ms var(--ease-out);
}
.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  animation: modal-in 320ms var(--ease-out);
}
.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease-out);
}
.video-modal__close:hover { background: var(--c-red); }
.video-modal__close svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.video-modal__player {
  position: absolute;
  inset: 0;
}
.video-modal__player iframe {
  width: 100%; height: 100%;
  border: 0;
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════════════════════════════
   DEMO LIVE
   ════════════════════════════════════════════════════ */
.demo-live__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-md);
}
@media (min-width: 900px) {
  .demo-live__split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}
.demo-live__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.demo-live__label-card {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--r);
  padding: 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
  font-family: 'Courier New', monospace;
}
.demo-live__label-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-gray-light);
  margin-bottom: 16px;
}
.demo-live__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-red);
}
.demo-live__product {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--c-anthracite);
  padding: 4px 10px;
}
.demo-live__label-mid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.demo-live__qr {
  position: relative;
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--t) var(--ease-out);
  cursor: pointer;
}
.demo-live__qr:hover { transform: scale(1.04); }
.demo-live__qr-svg {
  width: 100%; height: 100%;
}
.demo-live__qr-scan {
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-red) 50%, transparent);
  box-shadow: 0 0 14px var(--c-red);
  animation: scan-line 2.4s var(--ease-in-out) infinite;
}
.demo-live__qr-cta {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}
.demo-live__qr-cta::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--c-red);
}
.demo-live__specs {
  font-size: .6875rem;
  line-height: 1.5;
  color: rgba(26,26,26,0.7);
}
.demo-live__specs p { margin-bottom: 4px; }
.demo-live__specs strong { color: var(--c-anthracite); font-weight: 700; }
.demo-live__label-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--c-gray-light);
  font-size: .6875rem;
  color: rgba(26,26,26,0.6);
}
.demo-live__caption {
  text-align: center;
  font-size: .9375rem;
  color: var(--c-gray);
  max-width: 36ch;
}
.demo-live__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.demo-live__phone .phone {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
}

/* ════════════════════════════════════════════════════
   ROADMAP
   ════════════════════════════════════════════════════ */
.roadmap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
@media (min-width: 720px) {
  .roadmap__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}
.roadmap__col {
  background: var(--c-gray-soft);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
}
.roadmap__col--soon {
  background: var(--c-white);
  border: 1px solid var(--c-gray-light);
}
.roadmap__col-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: var(--space-md);
}
.roadmap__col-head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.roadmap__dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-gray-light);
  position: relative;
}
.roadmap__dot--on {
  background: var(--c-red);
}
.roadmap__dot--on::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--c-red);
  animation: dot-pulse 2.4s var(--ease-out) infinite;
}
@keyframes dot-pulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  100% { transform: scale(1.8);  opacity: 0;   }
}

.roadmap__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.roadmap__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: var(--r);
  background: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-anthracite);
  transition: transform var(--t) var(--ease-out),
              box-shadow var(--t) var(--ease-out);
}
.roadmap__list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.roadmap__col--soon .roadmap__list li { background: var(--c-gray-soft); color: rgba(26,26,26,0.65); }
.roadmap__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}
.roadmap__clock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-gray-light);
  color: var(--c-gray);
  font-size: .875rem;
}

/* ════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════ */
.cta-final {
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-black);
  color: var(--c-white);
  padding-block: clamp(6rem, 12vw, 11rem);
}
.cta-final__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(227,6,19,0.18) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.cta-final__pin {
  display: inline-block;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 12px 40px rgba(227,6,19,0.5));
  animation: pin-bob 4s var(--ease-in-out) infinite;
}
.cta-final__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-md);
}
.cta-final__sub {
  font-size: var(--size-lede);
  color: rgba(249,250,250,0.7);
  max-width: 56ch;
  margin: 0 auto var(--space-lg);
}

/* ════════════════════════════════════════════════════
   HERO KICKER (remplace l'ancien pin "On est là")
   ════════════════════════════════════════════════════ */
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
}
.hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.6);
  animation: kicker-pulse 2s var(--ease-out) infinite;
}
@keyframes kicker-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(227, 6, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}

/* ════════════════════════════════════════════════════
   UTILITAIRES
   ════════════════════════════════════════════════════ */
.container--narrow {
  max-width: 880px;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::before {
  display: none;
}
.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-red);
  margin-left: 8px;
}
.eyebrow--center::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-red);
  margin-right: 8px;
}

/* ════════════════════════════════════════════════════
   CTA FINAL — QR background décoratif
   ════════════════════════════════════════════════════ */
.cta-final {
  isolation: isolate;
}
.cta-final__qr-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.04;
  color: rgba(255, 255, 255, 0.9);
}
.cta-final__qr-bg svg {
  width: min(70vw, 680px);
  height: auto;
}
.cta-final .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-final .eyebrow--center {
  margin-bottom: var(--space-md);
}
.cta-final .btn--large {
  margin-top: var(--space-sm);
}

/* ════════════════════════════════════════════════════
   FAQ — <details> natifs, customisés
   ════════════════════════════════════════════════════ */
.faq {
  background: var(--c-white);
  color: var(--c-anthracite);
}
.faq .section-title {
  text-align: center;
  margin-inline: auto;
}
.faq .eyebrow {
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-lg);
}

.faq__item {
  border: 1px solid var(--c-gray-light);
  border-radius: var(--r);
  background: var(--c-white);
  overflow: hidden;
  transition: border-color var(--t) var(--ease-out),
              box-shadow var(--t) var(--ease-out);
}
.faq__item:hover {
  border-color: rgba(227, 6, 19, 0.3);
}
.faq__item[open] {
  border-color: var(--c-red);
  box-shadow: 0 8px 32px rgba(15, 15, 16, 0.06);
}

/* Cache le marqueur natif */
.faq__item summary {
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--t) var(--ease-out);
}
.faq__q:hover {
  background: rgba(227, 6, 19, 0.03);
}
.faq__q-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-anthracite);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.faq__q-icon {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(15, 15, 16, 0.06);
  transition: background var(--t) var(--ease-out),
              transform var(--t) var(--ease-out);
}
.faq__q-icon::before,
.faq__q-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-anthracite);
  border-radius: 1px;
  transition: transform var(--t) var(--ease-out),
              background var(--t) var(--ease-out);
}
.faq__q-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__q-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__q-icon {
  background: var(--c-red);
}
.faq__item[open] .faq__q-icon::before,
.faq__item[open] .faq__q-icon::after {
  background: var(--c-white);
}
.faq__item[open] .faq__q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.75);
}
.faq__a p {
  max-width: 64ch;
}
.faq__a a {
  color: var(--c-red);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: opacity var(--t-fast) var(--ease-out);
}
.faq__a a:hover { opacity: .7; }

/* Animation d'ouverture : utilise les keyframes details-content-reveal */
.faq__item[open] .faq__a {
  animation: faq-fade-in 360ms var(--ease-out);
}
@keyframes faq-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__more {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: .9375rem;
  color: var(--c-gray);
}
.faq__more a {
  color: var(--c-red);
  font-weight: 600;
  margin-left: 6px;
  transition: opacity var(--t-fast) var(--ease-out);
}
.faq__more a:hover { opacity: .75; }

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