/* ===========================================================================
   HUMANOVA — Overrides (par-dessus landing.css IANOVATION)
   Refonte v2 : positionnement omnicanal + 3 canaux live au même niveau
   + bouton appel flottant animé + chat BORN-style idle preview
   =========================================================================== */

/* ===========================================================================
   AUDIT v2.7 FIXES (skip-link, burger nav, logo text HUMANOVA, avatar badge,
   floating call mobile, light contrasts, OG, a11y)
   =========================================================================== */

/* Skip link a11y — invisible sauf au focus clavier */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #7c5cff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 0 0 8px 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Logo nav remplacé par texte inline (plus de PNG IANOVATION hérité) */
.nav-logo { text-decoration: none; }
.nav-logo__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #fff 0%, #b8a4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: filter 0.2s ease;
}
.nav-logo__text span { color: #06d4ff; -webkit-text-fill-color: #06d4ff; }
.nav-logo:hover .nav-logo__text { filter: brightness(1.2); }

html[data-theme="light"] .nav-logo__text {
  background: linear-gradient(120deg, #1a1a2e 0%, #5840d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-theme="light"] .nav-logo__text span { color: #06a8d4; -webkit-text-fill-color: #06a8d4; }

/* Burger menu mobile */
.nav-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
html[data-theme="light"] .nav-burger span { background: rgba(26, 26, 46, 0.85); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0.6rem;
    background: rgba(15, 15, 35, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.2rem;
    border-radius: 0 0 14px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 220px;
    border: 1px solid rgba(124, 92, 255, 0.25);
    border-top: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { width: 100%; padding: 0.7rem 1rem; text-align: left; }

  html[data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(124, 92, 255, 0.2);
    box-shadow: 0 12px 32px rgba(124, 92, 255, 0.15);
  }
}

/* Badge "Avatar personnalisable" sur la card avatar */
.avatar-customizable-badge {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 0.35rem 0.8rem;
  background: rgba(124, 92, 255, 0.85);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(124, 92, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Floating call mobile : plus petit + body padding pour ne pas chevaucher */
@media (max-width: 767px) {
  .floating-call {
    bottom: 0.9rem;
    right: 0.9rem;
  }
  .floating-call__btn {
    width: 54px;
    height: 54px;
  }
  .floating-call__pulse {
    width: 54px;
    height: 54px;
  }
  .floating-call__label { display: none; }
  body { padding-bottom: 70px; }
}

/* Light mode contrast fixes (audit MAJ-4) */
html[data-theme="light"] .hero-omni-sub { color: rgba(26, 26, 46, 0.78); }
html[data-theme="light"] .canaux-live-sub { color: rgba(26, 26, 46, 0.72); }
html[data-theme="light"] .hardware-section-sub { color: rgba(26, 26, 46, 0.75); }
html[data-theme="light"] .ws-sub { color: rgba(26, 26, 46, 0.72); }

/* Footer legal links + footer cleanup */
footer .footer-legal {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: #06d4ff; }
html[data-theme="light"] footer .footer-legal { color: rgba(26, 26, 46, 0.55); }
html[data-theme="light"] .footer-link { color: rgba(26, 26, 46, 0.7); }
html[data-theme="light"] .footer-link:hover { color: #06a8d4; }

/* ===========================================================================
   LIGHT MODE — overrides pour tous les composants Humanova spécifiques
   (les styles dark restent la base ; on bascule ici quand data-theme="light")
   =========================================================================== */
html[data-theme="light"] {
  --hm-text: #1a1a2e;
  --hm-text-muted: rgba(26, 26, 46, 0.65);
  --hm-text-soft: rgba(26, 26, 46, 0.5);
  --hm-card-bg: rgba(255, 255, 255, 0.95);
  --hm-card-border: rgba(124, 92, 255, 0.18);
  --hm-card-hover-border: rgba(124, 92, 255, 0.45);
  --hm-section-bg: rgba(248, 248, 252, 0.5);
  --hm-bubble-bot: #f0f0f8;
  --hm-bubble-bot-text: #1a1a2e;
  --hm-input-bg: rgba(245, 245, 250, 0.8);
  --hm-input-border: rgba(124, 92, 255, 0.2);
  --hm-input-text: rgba(26, 26, 46, 0.5);
}

/* Hero */
html[data-theme="light"] .hero-omni-line1 { color: rgba(26, 26, 46, 0.92); }
html[data-theme="light"] .hero-omni-tagline { color: rgba(26, 26, 46, 0.78); }
html[data-theme="light"] .hero-omni-sub { color: rgba(26, 26, 46, 0.6); }
html[data-theme="light"] .hero-omni-sub strong { color: rgba(26, 26, 46, 0.88); }
html[data-theme="light"] .cta-secondary {
  color: rgba(26, 26, 46, 0.8);
  border-color: rgba(26, 26, 46, 0.2);
}
html[data-theme="light"] .cta-secondary:hover {
  background: rgba(26, 26, 46, 0.04);
  border-color: rgba(26, 26, 46, 0.35);
}

/* Orbite */
html[data-theme="light"] .orbit-ring { border-color: rgba(124, 92, 255, 0.35); }
html[data-theme="light"] .orbit-ring--2 { border-color: rgba(6, 212, 255, 0.3); }
html[data-theme="light"] .orbit-channel {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(124, 92, 255, 0.2);
  color: rgba(26, 26, 46, 0.85);
  box-shadow: 0 2px 8px rgba(124, 92, 255, 0.15);
}

/* 3 Canaux Live */
html[data-theme="light"] .canaux-live-eyebrow { color: #5840d0; }
html[data-theme="light"] .canaux-live-title { color: #1a1a2e; }
html[data-theme="light"] .canaux-live-sub { color: rgba(26, 26, 46, 0.65); }
html[data-theme="light"] .canaux-live-footnote { color: rgba(26, 26, 46, 0.6); }
html[data-theme="light"] .canaux-live-footnote strong { color: #06a8d4; }

html[data-theme="light"] .canal-live {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(124, 92, 255, 0.15);
  box-shadow: 0 4px 18px rgba(124, 92, 255, 0.06);
}
html[data-theme="light"] .canal-live--chat {
  background: linear-gradient(180deg, rgba(80, 180, 140, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}
html[data-theme="light"] .canal-live--phone {
  background: linear-gradient(180deg, rgba(6, 212, 255, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
}

html[data-theme="light"] .canal-live-title { color: #1a1a2e; }
html[data-theme="light"] .canal-live-desc { color: rgba(26, 26, 46, 0.65); }
html[data-theme="light"] .canal-live-badge { color: #2da670; }
html[data-theme="light"] .canal-live-badge--coming { color: #06a8d4; }

/* Chat card */
html[data-theme="light"] .text-preview-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(80, 180, 140, 0.25);
  color: #1a1a2e;
}
html[data-theme="light"] .text-preview-card__header {
  background: rgba(80, 230, 180, 0.12);
  border-bottom-color: rgba(80, 230, 180, 0.2);
}
html[data-theme="light"] .text-preview-card__name { color: #1a1a2e; }
html[data-theme="light"] .text-preview__bubble--bot {
  background: #f0f0f8;
  color: #1a1a2e;
}
html[data-theme="light"] .text-preview__input {
  background: rgba(245, 245, 250, 0.7);
  border-color: rgba(26, 26, 46, 0.08);
  color: rgba(26, 26, 46, 0.5);
}

/* Phone card */
html[data-theme="light"] .phone-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 92, 255, 0.2);
  color: #1a1a2e;
}

/* Teaser */
html[data-theme="light"] .teaser-title { color: #1a1a2e; }
html[data-theme="light"] .teaser-body { color: rgba(26, 26, 46, 0.7); }
html[data-theme="light"] .teaser-number { color: rgba(124, 92, 255, 0.4); }

/* Usecases */
html[data-theme="light"] .usecases-title { color: #1a1a2e; }
html[data-theme="light"] .usecases-eyebrow { color: #5840d0; }
html[data-theme="light"] .usecase {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 92, 255, 0.12);
  box-shadow: 0 2px 12px rgba(124, 92, 255, 0.06);
}
html[data-theme="light"] .usecase:hover { background: rgba(255, 255, 255, 1); border-color: rgba(124, 92, 255, 0.3); }
html[data-theme="light"] .usecase h3 { color: #1a1a2e; }
html[data-theme="light"] .usecase p { color: rgba(26, 26, 46, 0.7); }

/* Hardware (2 cards : LCD + holo) */
html[data-theme="light"] .hardware-section-eyebrow { color: #5840d0; }
html[data-theme="light"] .hardware-section-title { color: #1a1a2e; }
html[data-theme="light"] .hardware-section-sub { color: rgba(26, 26, 46, 0.7); }
html[data-theme="light"] .hardware-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(124, 92, 255, 0.18);
  box-shadow: 0 4px 18px rgba(124, 92, 255, 0.08);
}
html[data-theme="light"] .hardware-card__title { color: #1a1a2e; }
html[data-theme="light"] .hardware-card__desc { color: rgba(26, 26, 46, 0.72); }
html[data-theme="light"] .hardware-card__features li { color: rgba(26, 26, 46, 0.78); }
html[data-theme="light"] .hardware-card__price-label,
html[data-theme="light"] .hardware-card__price-note { color: rgba(26, 26, 46, 0.55); }
html[data-theme="light"] .hardware-card__price-value { color: #1a1a2e; }

/* Modals — restent dark même en light (immersifs) */

/* Floating call : pas de changement, le bouton violet/cyan marche en light comme en dark */

/* ===========================================================================
   FIN LIGHT MODE
   =========================================================================== */


/* ──────────────────────────────────────────────────────────────────────────
   1) HERO OMNICANAL
   ────────────────────────────────────────────────────────────────────────── */
.hero.hero--omnicanal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  min-height: auto;
}

@media (max-width: 900px) {
  .hero.hero--omnicanal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 1.5rem 2rem;
  }
}

.hero-omni-content { display: flex; flex-direction: column; gap: 1.3rem; }

.hero-omni-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-omni-line1 {
  display: block;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-omni-line2 {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4rem);
  background: linear-gradient(120deg, #7c5cff 0%, #06d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback Firefox */
}

.hero-omni-line2 em {
  font-style: italic;
  font-weight: 900;
  /* FIX bug invisibilité : color: inherit héritait du transparent du gradient parent.
     On force ici une couleur SOLIDE blanche pour que "TOUS" soit visible + glow cyan */
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 0 24px rgba(6, 212, 255, 0.75), 0 0 8px rgba(124, 92, 255, 0.5);
  padding: 0 0.1em;
}

html[data-theme="light"] .hero-omni-line2 em {
  color: #1a1a2e !important;
  -webkit-text-fill-color: #1a1a2e !important;
  text-shadow: 0 0 24px rgba(6, 168, 212, 0.55);
}

.hero-omni-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.hero-omni-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
  max-width: 540px;
}

.hero-omni-sub strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-omni-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: linear-gradient(135deg, #7c5cff 0%, #06d4ff 100%);
  color: #0a0a1a;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.35);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 92, 255, 0.5);
}

.cta-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ──────────────────────────────────────────────────────────────────────────
   2) ORBIT VISUAL (canaux orbitant le cerveau IA)
   ────────────────────────────────────────────────────────────────────────── */
.hero-omni-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: relative;
  width: 100%;
  height: 100%;
}

.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #06d4ff 0%, #7c5cff 60%, #1a0d3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 60px rgba(124, 92, 255, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.orbit-core__label {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.orbit-core__pulse {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 255, 0.4);
  animation: orbit-core-pulse 2.5s ease-out infinite;
}

@keyframes orbit-core-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(124, 92, 255, 0.25);
  transform: translate(-50%, -50%);
}

.orbit-ring--1 {
  width: 60%;
  height: 60%;
  animation: orbit-rotate 28s linear infinite;
}

.orbit-ring--2 {
  width: 100%;
  height: 100%;
  animation: orbit-rotate 42s linear infinite reverse;
  border-color: rgba(6, 212, 255, 0.2);
}

@keyframes orbit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-channel {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease, background 0.3s ease;
}

.orbit-channel:hover {
  transform: scale(1.15);
  background: rgba(124, 92, 255, 0.25);
  border-color: rgba(124, 92, 255, 0.5);
}

/* Ring 1 (3 channels) — positions à 0°, 120°, 240° */
.orbit-ring--1 .orbit-channel--1 { top: -24px; left: calc(50% - 24px); }
.orbit-ring--1 .orbit-channel--2 { bottom: 13%; left: -24px; }
.orbit-ring--1 .orbit-channel--3 { bottom: 13%; right: -24px; }

/* Ring 2 (4 channels) — positions à 45°, 135°, 225°, 315° */
.orbit-ring--2 .orbit-channel--4 { top: 15%; left: -24px; }
.orbit-ring--2 .orbit-channel--5 { top: 15%; right: -24px; }
.orbit-ring--2 .orbit-channel--6 { bottom: 15%; left: -24px; }
.orbit-ring--2 .orbit-channel--7 { bottom: 15%; right: -24px; }

@media (max-width: 600px) {
  .hero-omni-visual { max-width: 320px; }
  .orbit-core { width: 80px; height: 80px; font-size: 1.4rem; }
  .orbit-channel { width: 38px; height: 38px; }
}

/* ──────────────────────────────────────────────────────────────────────────
   3) 3 CANAUX LIVE — au même niveau visuel
   ────────────────────────────────────────────────────────────────────────── */
.canaux-live {
  padding: 5rem 2rem;
  max-width: 1380px;
  margin: 0 auto;
}

.canaux-live-header {
  text-align: center;
  margin-bottom: 3rem;
}

.canaux-live-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #06d4ff;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.canaux-live-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.canaux-live-sub {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.canaux-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .canaux-live-grid { grid-template-columns: 1fr; }
}

.canal-live {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.05) 0%, rgba(124, 92, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.canaux-live-grid { align-items: stretch; }

/* === Hauteur uniforme : la zone "contenu live" (sous le header) doit faire ~340px sur les 3 cards === */
.canal-live > .text-preview-card,
.canal-live > .phone-card,
.canal-live--avatar .assistant-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* AVATAR : vidéo idle remplit toute la hauteur dispo */
.canal-live--avatar .assistant-panel { min-height: 420px; }

/* Avatar frame en FORMAT TÉLÉPHONE (portrait 9:16) — pas en 16/9 paysage */
.canal-live--avatar .avatar-frame {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 280px;
  max-height: 460px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #0a0a1a;
}

.canal-live--avatar .idle-video,
.canal-live--avatar #avatar-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.canal-live--avatar #pane-activate { display: none !important; }

.canal-live--avatar .panel-tabs {
  padding: 0.3rem;
  gap: 0.3rem;
}
.canal-live--avatar .panel-tabs .tab {
  font-size: 0.78rem;
  padding: 0.4rem 0.5rem;
}
.canal-live--avatar .panel-tabs .tab[disabled] { opacity: 0.35; }

/* CHAT : la conversation prend la hauteur restante */
.canal-live--chat .text-preview-card { min-height: 420px; }
.canal-live--chat .text-preview { flex: 1; }
.canal-live--chat .text-preview__conversation { flex: 1; min-height: 240px; }

/* PHONE : visuel agrandi pour matcher visuellement */
.canal-live--phone .phone-card { min-height: 420px; justify-content: space-between; }
.canal-live--phone .phone-visual { max-width: 220px; flex-shrink: 0; }

.canal-live:hover {
  border-color: rgba(124, 92, 255, 0.4);
  transform: translateY(-4px);
}

.canal-live--chat {
  background: linear-gradient(180deg, rgba(80, 230, 180, 0.05) 0%, rgba(80, 230, 180, 0.01) 100%);
}

.canal-live--chat:hover {
  border-color: rgba(80, 230, 180, 0.4);
}

.canal-live--phone {
  background: linear-gradient(180deg, rgba(6, 212, 255, 0.05) 0%, rgba(6, 212, 255, 0.01) 100%);
  border-color: rgba(6, 212, 255, 0.2);
}

.canal-live--phone:hover {
  border-color: rgba(124, 92, 255, 0.4);
}

.canal-live-header { padding: 0.2rem 0.4rem; }

.canal-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #50e6b4;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.canal-live-badge--coming {
  color: #06d4ff;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50e6b4;
  box-shadow: 0 0 0 0 rgba(80, 230, 180, 0.7);
  animation: badge-pulse 1.8s infinite;
}

.badge-pulse--gold {
  background: #06d4ff;
  box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.7);
  animation-name: badge-pulse-gold;
}

@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(80, 230, 180, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(80, 230, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(80, 230, 180, 0); }
}

@keyframes badge-pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(124, 92, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 92, 255, 0); }
}

.canal-live-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.canal-live-desc {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.canal-live-cta {
  margin-top: auto;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, #7c5cff 0%, #06d4ff 100%);
  color: #0a0a1a;
  border-radius: 12px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.canal-live--chat .canal-live-cta {
  background: linear-gradient(135deg, #50e6b4 0%, #06d4ff 100%);
}

.canal-live-cta--gold {
  background: linear-gradient(135deg, #06d4ff 0%, #7c5cff 100%) !important;
}

.canal-live:hover .canal-live-cta {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.35);
}

/* ──────────────────────────────────────────────────────────────────────────
   4) CARTE CHAT (BORN-style idle preview)
   ────────────────────────────────────────────────────────────────────────── */
.text-preview-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: rgba(10, 20, 30, 0.45);
  border: 1px solid rgba(80, 230, 180, 0.2);
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #fff;
  text-align: left;
  width: 100%;
  transition: border-color 0.3s ease;
}

.text-preview-card:hover {
  border-color: rgba(80, 230, 180, 0.5);
}

.text-preview-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(80, 230, 180, 0.08);
  border-bottom: 1px solid rgba(80, 230, 180, 0.15);
  font-size: 0.85rem;
}

.text-preview-card__avatar-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #50e6b4 0%, #06d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.text-preview-card__avatar-mini .status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #50e6b4;
  border: 2px solid #0a141e;
  border-radius: 50%;
}

.text-preview-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex: 1;
}

.text-preview-card__status {
  font-size: 0.75rem;
  color: #50e6b4;
  font-weight: 500;
}

.text-preview { padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.text-preview__conversation { display: flex; flex-direction: column; gap: 0.5rem; min-height: 180px; }

.text-preview__bubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  animation: bubble-in 0.5s ease-out backwards;
}

.text-preview__bubble--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
  color: rgba(255, 255, 255, 0.92);
}

.text-preview__bubble--user {
  align-self: flex-end;
  background: linear-gradient(135deg, #50e6b4 0%, #06d4ff 100%);
  color: #0a141e;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.text-preview__bubble {
  animation: bubble-cycle 9s ease-in-out infinite;
}
.text-preview__bubble:nth-child(1) { animation-delay: 0s; }
.text-preview__bubble:nth-child(2) { animation-delay: 1.5s; }
.text-preview__bubble:nth-child(3) { animation-delay: 3s; }

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cycle infini : les bulles apparaissent en cascade, restent visibles, puis se réinitialisent */
@keyframes bubble-cycle {
  0%, 4%   { opacity: 0; transform: translateY(15px) scale(0.95); }
  10%, 80% { opacity: 1; transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

/* Indicateur "is typing..." sous la dernière bulle pendant le cycle */
.text-preview__conversation::after {
  content: '';
  display: inline-flex;
  align-self: flex-start;
  width: 50px;
  height: 24px;
  background-image:
    radial-gradient(circle, rgba(80, 230, 180, 0.8) 3px, transparent 3.5px),
    radial-gradient(circle, rgba(80, 230, 180, 0.8) 3px, transparent 3.5px),
    radial-gradient(circle, rgba(80, 230, 180, 0.8) 3px, transparent 3.5px);
  background-size: 8px 8px;
  background-position: 8px center, 24px center, 40px center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0 6px;
  margin-top: 0.3rem;
  animation: typing-cycle 9s ease-in-out infinite;
}

@keyframes typing-cycle {
  0%, 84%, 100% { opacity: 0; transform: scale(0.9); }
  88%, 95%      { opacity: 0.85; transform: scale(1); }
}

.text-preview__input {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: auto;
}

.text-preview__input span { flex: 1; font-style: italic; }

.text-preview__send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #50e6b4 0%, #06d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a141e;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ──────────────────────────────────────────────────────────────────────────
   5) CARTE TÉLÉPHONE — visuel animé
   ────────────────────────────────────────────────────────────────────────── */
.phone-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background: rgba(20, 25, 50, 0.35);
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  color: #fff;
  text-align: center;
  width: 100%;
  transition: border-color 0.3s ease;
}

.phone-card:hover { border-color: rgba(124, 92, 255, 0.5); }

.phone-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 255, 0.4);
}

.phone-ring--1 { animation: phone-ring 2.2s ease-out infinite; }
.phone-ring--2 { animation: phone-ring 2.2s ease-out 0.6s infinite; }
.phone-ring--3 { animation: phone-ring 2.2s ease-out 1.2s infinite; }

@keyframes phone-ring {
  0%   { transform: scale(0.6); opacity: 1; border-color: rgba(124, 92, 255, 0.6); }
  100% { transform: scale(1.4); opacity: 0; border-color: rgba(124, 92, 255, 0); }
}

.phone-handset {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff 0%, #06d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(124, 92, 255, 0.55);
  animation: phone-shake 3s ease-in-out infinite;
}

@keyframes phone-shake {
  0%, 92%, 100% { transform: rotate(0deg); }
  93% { transform: rotate(-8deg); }
  95% { transform: rotate(8deg); }
  97% { transform: rotate(-6deg); }
  99% { transform: rotate(4deg); }
}

.phone-number-preview {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0;
}

.phone-number-mock {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #06d4ff;
}

.phone-number-status {
  font-size: 0.8rem;
  color: rgba(124, 92, 255, 0.7);
  font-style: italic;
}

/* ──────────────────────────────────────────────────────────────────────────
   6) ÉCOSYSTÈME 7 CANAUX
   ────────────────────────────────────────────────────────────────────────── */
.ecosystem {
  padding: 5rem 2rem;
  max-width: 1380px;
  margin: 0 auto;
  text-align: center;
}

.ecosystem-header { margin-bottom: 3rem; }

.ecosystem-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #7c5cff;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.ecosystem-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.ecosystem-sub {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.8rem;
  margin: 2.5rem 0 1.5rem;
}

@media (max-width: 1100px) { .channel-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .channel-grid { grid-template-columns: repeat(2, 1fr); } }

.channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0.8rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.channel-item:hover {
  border-color: rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.04);
  transform: translateY(-2px);
}

.channel-item__icon {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.channel-item--active .channel-item__icon { color: #50e6b4; }
.channel-item--special .channel-item__icon { color: #7c5cff; }

.channel-item__name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.channel-item__status {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}

.channel-item--active .channel-item__status {
  background: rgba(80, 230, 180, 0.15);
  color: #50e6b4;
}

.channel-item--special .channel-item__status {
  background: rgba(124, 92, 255, 0.18);
  color: #b8a4ff;
}

.ecosystem-footnote {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-footnote strong { color: #06d4ff; font-weight: 600; }

/* ──────────────────────────────────────────────────────────────────────────
   7) HARDWARE — 2 TECHNOLOGIES D'AFFICHAGE DISTINCTES (LCD vs HOLO)
   ────────────────────────────────────────────────────────────────────────── */
.hardware-section {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hardware-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hardware-section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #7c5cff;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hardware-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.hardware-section-sub {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.hardware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .hardware-grid { grid-template-columns: 1fr; }
}

.hardware-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.hardware-card:hover { transform: translateY(-4px); }

.hardware-card--lcd { border-color: rgba(124, 92, 255, 0.2); }
.hardware-card--lcd:hover { border-color: rgba(124, 92, 255, 0.5); }

.hardware-card--holo {
  border-color: rgba(6, 212, 255, 0.25);
  background: linear-gradient(180deg, rgba(6, 212, 255, 0.04) 0%, rgba(124, 92, 255, 0.02) 100%);
}
.hardware-card--holo:hover { border-color: rgba(6, 212, 255, 0.5); }

.hardware-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8a4ff;
  margin-bottom: 0.2rem;
  align-self: flex-start;
}

.hardware-card__badge--premium { color: #06d4ff; }

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.badge-dot--holo {
  animation: hologram-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes hologram-dot-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.2); }
}

/* === VISUEL : Totem LCD classique === */
.hardware-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  margin: 0.5rem 0 0.8rem;
}

.lcd-totem {
  position: relative;
  width: 130px;
  height: 250px;
}

.lcd-totem__screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, #2a2a4a 0%, #1a1a2e 100%);
  border-radius: 10px 10px 4px 4px;
  border: 3px solid #383850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  box-shadow: inset 0 0 20px rgba(124, 92, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lcd-totem__avatar {
  color: #b8a4ff;
  background: rgba(124, 92, 255, 0.18);
  border-radius: 50%;
  padding: 0.8rem;
}

.lcd-totem__lines {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 80%;
}

.lcd-totem__lines span {
  display: block;
  height: 4px;
  background: rgba(124, 92, 255, 0.4);
  border-radius: 2px;
}

.lcd-totem__lines span:nth-child(2) { width: 70%; }
.lcd-totem__lines span:nth-child(3) { width: 50%; }

.lcd-totem__base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 36px;
  background: linear-gradient(180deg, #383850 0%, #1a1a2e 100%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* === VISUEL : Borne holographique 3D === */
.hologram-totem {
  position: relative;
  width: 160px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-totem__beam {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 180px;
  background:
    linear-gradient(180deg,
      rgba(6, 212, 255, 0.08) 0%,
      rgba(6, 212, 255, 0.18) 50%,
      rgba(6, 212, 255, 0.32) 100%);
  border-radius: 60% 60% 8px 8px / 30% 30% 8px 8px;
  filter: blur(2px);
  animation: hologram-beam-shimmer 3.5s ease-in-out infinite;
}

@keyframes hologram-beam-shimmer {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleY(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scaleY(1.02); }
}

.hologram-totem__avatar {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #06d4ff;
  background: rgba(6, 212, 255, 0.18);
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 0 28px rgba(6, 212, 255, 0.6);
  animation: hologram-avatar-float 4s ease-in-out infinite;
}

@keyframes hologram-avatar-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

.hologram-totem__scanlines {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 180px;
  border-radius: 60% 60% 8px 8px / 30% 30% 8px 8px;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(6, 212, 255, 0.15) 3px,
    rgba(6, 212, 255, 0.15) 4px
  );
  pointer-events: none;
  animation: hologram-scan-shift 2.5s linear infinite;
  z-index: 2;
}

@keyframes hologram-scan-shift {
  0%   { background-position: 0 0; }
  100% { background-position: 0 14px; }
}

.hologram-totem__base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 50px;
  background: linear-gradient(180deg, #38386a 0%, #1a1a2e 100%);
  border-radius: 50% / 30% 30% 50% 50%;
  border: 2px solid rgba(6, 212, 255, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 0 16px rgba(6, 212, 255, 0.2);
}

.hologram-totem__base-glow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(6, 212, 255, 0.8) 0%, transparent 70%);
  filter: blur(3px);
  animation: hologram-base-pulse 2s ease-in-out infinite;
}

@keyframes hologram-base-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.hologram-totem__particles {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #06d4ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #06d4ff;
  opacity: 0;
}

.particle--1 { left: 30%; animation: particle-rise 4s ease-in 0s infinite; }
.particle--2 { left: 60%; animation: particle-rise 4s ease-in 1s infinite; }
.particle--3 { left: 45%; animation: particle-rise 4s ease-in 2s infinite; }
.particle--4 { left: 75%; animation: particle-rise 4s ease-in 3s infinite; }

@keyframes particle-rise {
  0%   { bottom: 0; opacity: 0; }
  20%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { bottom: 100%; opacity: 0; }
}

/* === Contenu commun cards hardware === */
.hardware-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.hardware-card__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hardware-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hardware-card__features li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 1.2em;
  position: relative;
}

.hardware-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7c5cff;
  font-weight: 700;
}

.hardware-card--holo .hardware-card__features li::before { color: #06d4ff; }

.hardware-card__contact {
  margin-top: auto;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: #b8a4ff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.hardware-card--holo .hardware-card__contact {
  background: rgba(6, 212, 255, 0.12);
  border-color: rgba(6, 212, 255, 0.3);
  color: #06d4ff;
}

html[data-theme="light"] .hardware-card__contact {
  background: rgba(124, 92, 255, 0.08);
  color: #5840d0;
}
html[data-theme="light"] .hardware-card--holo .hardware-card__contact {
  background: rgba(6, 168, 212, 0.08);
  color: #06a8d4;
}

/* ──────────────────────────────────────────────────────────────────────────
   7-OLD) Anciennes classes hardware-bornes — conservées pour compat (vide)
   ────────────────────────────────────────────────────────────────────────── */
.hardware-bornes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hardware-bornes { grid-template-columns: 1fr; gap: 2rem; }
}

.hardware-bornes__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #7c5cff;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.hardware-bornes__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.2;
}

.hardware-bornes__body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.hardware-bornes__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hardware-bornes__features li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
}

.hardware-bornes__visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-frame {
  position: relative;
  width: 200px;
  height: 320px;
}

.hologram-screen {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.15) 0%, rgba(6, 212, 255, 0.08) 100%);
  border: 1px solid rgba(124, 92, 255, 0.5);
  border-radius: 14px;
  box-shadow: inset 0 0 40px rgba(124, 92, 255, 0.2), 0 0 60px rgba(124, 92, 255, 0.3);
}

.hologram-screen::after {
  content: '';
  position: absolute;
  inset: 20px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(6, 212, 255, 0.06) 4px,
      rgba(6, 212, 255, 0.06) 5px
    );
  border-radius: 8px;
  animation: hologram-scan 4s linear infinite;
}

@keyframes hologram-scan {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.hologram-stand {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.3) 0%, rgba(124, 92, 255, 0.05) 100%);
  border-radius: 8px 8px 4px 4px;
}

.hologram-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(124, 92, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: hologram-glow 3s ease-in-out infinite;
}

@keyframes hologram-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ──────────────────────────────────────────────────────────────────────────
   8) USECASES (compact)
   ────────────────────────────────────────────────────────────────────────── */
.usecases {
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.usecases-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #7c5cff;
  text-align: center;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.usecases-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5rem;
  color: #fff;
}

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

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

.usecase {
  padding: 1.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.usecase:hover {
  border-color: rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.04);
}

.usecase h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.6rem;
}

.usecase p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   9) BOUTON APPEL FLOTTANT — toujours visible (sauf en section #canaux)
   ────────────────────────────────────────────────────────────────────────── */
.floating-call {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-call--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
}

.floating-call__btn {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff 0%, #06d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.5);
  transition: transform 0.2s ease;
  animation: floating-call-shake 4s ease-in-out infinite;
}

.floating-call:hover .floating-call__btn {
  transform: scale(1.08);
}

@keyframes floating-call-shake {
  0%, 90%, 100% { transform: rotate(0deg); }
  91% { transform: rotate(-12deg); }
  93% { transform: rotate(12deg); }
  95% { transform: rotate(-8deg); }
  97% { transform: rotate(6deg); }
}

.floating-call__pulse {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 255, 0.6);
  z-index: 1;
}

.floating-call__pulse--1 { animation: floating-pulse 2.2s ease-out infinite; }
.floating-call__pulse--2 { animation: floating-pulse 2.2s ease-out 0.7s infinite; }
.floating-call__pulse--3 { animation: floating-pulse 2.2s ease-out 1.4s infinite; }

@keyframes floating-pulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.floating-call__label {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.85);
  color: #06d4ff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(124, 92, 255, 0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
}

.floating-call:hover .floating-call__label,
.floating-call:focus .floating-call__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .floating-call { bottom: 1rem; right: 1rem; }
  .floating-call__label { display: none; }
}

/* ──────────────────────────────────────────────────────────────────────────
   10) MODALS (téléphone + chat)
   ────────────────────────────────────────────────────────────────────────── */
.modal-phone, .modal-chat {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-phone__backdrop, .modal-chat__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 15, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-phone__content, .modal-chat__content {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: linear-gradient(145deg, #1a1438 0%, #0f0c24 100%);
  border-radius: 22px;
  padding: 2rem 2rem 1.8rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.modal-phone__content {
  border: 1px solid rgba(124, 92, 255, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 80px rgba(124, 92, 255, 0.1);
}

.modal-chat__content {
  border: 1px solid rgba(80, 230, 180, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 80px rgba(80, 230, 180, 0.08);
  text-align: left;
}

.modal-phone__close, .modal-chat__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  transition: color 0.2s ease;
}

.modal-phone__close:hover, .modal-chat__close:hover { color: #fff; }

.modal-phone__icon {
  display: flex;
  justify-content: center;
  color: #06d4ff;
  margin-bottom: 0.8rem;
}

.modal-phone__content h3, .modal-chat__header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #06d4ff;
}

.modal-chat__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-chat__header h3 { color: #50e6b4; }

.modal-chat__status-dot {
  width: 10px;
  height: 10px;
  background: #50e6b4;
  border-radius: 50%;
  animation: badge-pulse 1.8s infinite;
}

.modal-phone__content p, .modal-chat__msg {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.2rem;
}

.modal-chat__messages {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
}

.modal-chat__msg--bot {
  background: rgba(80, 230, 180, 0.08);
  border-left: 2px solid #50e6b4;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin: 0;
}

.modal-phone__form, .modal-chat__form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-phone__form input, .modal-chat__form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.modal-phone__form input:focus { border-color: rgba(124, 92, 255, 0.5); }
.modal-chat__form input:focus { border-color: rgba(80, 230, 180, 0.5); }

.modal-phone__form button {
  padding: 0.8rem 1.3rem;
  background: linear-gradient(135deg, #7c5cff 0%, #06d4ff 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-chat__form button {
  padding: 0.8rem 1.3rem;
  background: linear-gradient(135deg, #50e6b4 0%, #06d4ff 100%);
  color: #0a141e;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-phone__form button:hover,
.modal-chat__form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 92, 255, 0.35);
}

.modal-phone__success, .modal-chat__success {
  margin-top: 1rem;
  color: #50e6b4;
  font-weight: 500;
}
