body.voice-page {
  background:
    radial-gradient(circle at 20% 10%, rgba(210, 240, 220, 0.45), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(235, 245, 210, 0.35), transparent 40%),
    linear-gradient(180deg, #f4f1e9 0%, #edf4ea 45%, #f6f1e8 100%);
}

.voice-hero {
  padding-top: 110px;
  padding-bottom: 48px;
  overflow: clip;
}

.voice-hero-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.voice-hero-copy {
  max-width: 560px;
}

.voice-hero-copy .lead {
  max-width: 560px;
}

/* ===========================
   Hero Visual — Stage canvas
   =========================== */

.voice-hero-visual {
  position: relative;
  min-height: 560px;
  width: 100%;
  isolation: isolate;
}

/* Soft stage glow — zones colorées selon les personnages */
.voice-hero-visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(ellipse 72% 55% at 55% 48%, rgba(215, 238, 224, 0.48) 0%, transparent 65%),
    radial-gradient(ellipse 40% 36% at 18% 78%, rgba(232, 222, 255, 0.24) 0%, transparent 55%),
    radial-gradient(ellipse 36% 34% at 84% 22%, rgba(255, 238, 208, 0.26) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}

/* Grille de points — texture réseau IA subtile */
.voice-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(110, 155, 130, 0.18) 1.5px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 72% at 55% 46%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 72% at 55% 46%, black 10%, transparent 72%);
}

/* ===========================
   Orbites
   =========================== */

.voice-hero-orbits {
  position: absolute;
  inset: 12% 10% 8%;
  pointer-events: none;
  z-index: 1;
}

.voice-hero-orbits span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(142, 178, 156, 0.18);
}

.voice-hero-orbits span:nth-child(1) {
  transform: scale(0.52);
  border-color: rgba(142, 178, 156, 0.30);
}

.voice-hero-orbits span:nth-child(2) {
  transform: scale(0.77);
  border-color: rgba(142, 178, 156, 0.18);
}

.voice-hero-orbits span:nth-child(3) {
  transform: scale(1);
  border-color: rgba(142, 178, 156, 0.10);
}

/* ===========================
   Personnages — Positionnement & Float
   =========================== */

.voice-character {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.voice-character-1 {
  top: 30px;
  left: 0;
  animation: float-gentle 6.4s ease-in-out infinite;
}

.voice-character-2 {
  top: 0;
  right: 0;
  animation: float-gentle-alt 7.2s ease-in-out infinite 1.8s;
}

.voice-character-4 {
  left: 0;
  bottom: 56px;
  animation: float-gentle-alt 6.8s ease-in-out infinite 3.2s;
}

.voice-character-5 {
  right: 0;
  bottom: 30px;
  animation: float-gentle 7.6s ease-in-out infinite 0.9s;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes float-gentle-alt {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ===========================
   Character Core (cercle)
   =========================== */

.voice-character-core {
  position: relative;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 22px 70px rgba(44, 53, 44, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  z-index: 1;
}

/* Halo coloré derrière chaque avatar */
.voice-character-core::before {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 999px;
  opacity: 0.28;
  filter: blur(36px);
  z-index: -1;
  transition: opacity 0.45s ease, inset 0.45s ease;
  pointer-events: none;
}

.voice-core-sage::before   { background: radial-gradient(circle, rgba(128, 195, 116, 0.80), transparent 68%); }
.voice-core-gold::before   { background: radial-gradient(circle, rgba(235, 188, 68,  0.75), transparent 68%); }
.voice-core-coral::before  { background: radial-gradient(circle, rgba(255, 135, 85,  0.70), transparent 68%); }
.voice-core-lilac::before  { background: radial-gradient(circle, rgba(168, 136, 250, 0.65), transparent 68%); }

/* Hover : amplifier le halo + légère élévation */
.voice-character:hover .voice-character-core {
  transform: scale(1.05);
  box-shadow:
    0 28px 85px rgba(44, 53, 44, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.96);
}

.voice-character:hover .voice-character-core::before {
  opacity: 0.52;
  inset: -42px;
}

.voice-character-ring {
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(226, 220, 208, 0.7);
}

.voice-character-illustration {
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border-radius: 999px;
  overflow: hidden;
  background: #0d1a10;
}

.voice-character-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Vidéos avatar dans les cercles — portrait 9:16 cadré sur le visage */
.voice-character-illustration img,
.voice-character-illustration video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.voice-core-sage  { background: rgba(228, 242, 222, 0.72); }
.voice-core-gold  { background: rgba(255, 243, 220, 0.76); }
.voice-core-coral { background: rgba(255, 234, 226, 0.76); }
.voice-core-lilac { background: rgba(242, 234, 255, 0.76); }

/* ===========================
   Disposition des émotions
   =========================== */

.voice-emotions {
  position: relative;
  display: grid;
  gap: 16px;
}

.voice-emotions::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  width: 82px;
  border-top: 2px dashed rgba(255, 138, 72, 0.24);
  border-bottom: 2px dashed rgba(255, 138, 72, 0.24);
  opacity: 0.9;
}

.voice-emotions-left::before {
  right: -74px;
  border-left: 0;
  border-right: 0;
  border-radius: 0 999px 999px 0;
}

.voice-emotions-right::before {
  left: -74px;
  border-left: 0;
  border-right: 0;
  border-radius: 999px 0 0 999px;
}

/* ===========================
   Bulles d'émotions (chips)
   =========================== */

.voice-emotion-chip {
  position: relative;
  min-height: 40px;
  padding: 0 11px 0 13px;
  border: 1px solid rgba(230, 220, 206, 0.95);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow:
    0 8px 22px rgba(31, 31, 31, 0.07),
    0 2px 6px rgba(31, 31, 31, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #181818;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.voice-emotion-chip::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  border-top: 2px dashed rgba(255, 138, 72, 0.34);
  transform: translateY(-50%);
}

.voice-emotions-left .voice-emotion-chip::before {
  right: -25px;
}

.voice-emotions-right .voice-emotion-chip::before {
  left: -25px;
}

.voice-emotion-chip:hover,
.voice-emotion-chip:focus-visible {
  transform: scale(1.05) translateY(-1px);
  box-shadow:
    0 14px 32px rgba(31, 31, 31, 0.12),
    0 4px 8px rgba(31, 31, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 95, 46, 0.25);
  outline: none;
}

.voice-emotion-chip.is-playing {
  background: rgba(255, 95, 46, 0.07);
  border-color: rgba(255, 95, 46, 0.42);
  box-shadow:
    0 0 0 3px rgba(255, 95, 46, 0.12),
    0 0 0 6px rgba(255, 95, 46, 0.05),
    0 12px 28px rgba(31, 31, 31, 0.08);
  transform: scale(1.06) translateY(-1px);
}

.voice-emotion-chip:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.voice-emotion-chip svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: var(--orange);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.voice-emotion-chip.is-playing svg {
  animation: chip-wave 0.55s ease-in-out infinite alternate;
}

@keyframes chip-wave {
  from { transform: scaleY(0.82); opacity: 0.65; }
  to   { transform: scaleY(1.12); opacity: 1; }
}

/* ===========================
   Bénéfices
   =========================== */

.voice-hero-benefits {
  margin-top: 22px;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: 0 20px 60px rgba(16, 16, 16, 0.05);
  backdrop-filter: blur(10px);
}

.voice-benefit-card {
  min-height: 110px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.voice-benefit-card + .voice-benefit-card {
  border-left: 1px solid rgba(16, 16, 16, 0.08);
}

.voice-benefit-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 95, 46, 0.08);
  color: var(--orange);
}

.voice-benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voice-benefit-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.voice-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ===========================
   Comparaison
   =========================== */

.voice-compare-section {
  background: transparent;
}

.voice-compare-head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}

.voice-compare-head .tag {
  margin-bottom: 18px;
}

.voice-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.voice-compare-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(16,16,16,0.07);
  box-shadow: 0 16px 48px rgba(16,16,16,0.07);
}

.voice-compare-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.voice-compare-card-head h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.voice-compare-card-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.voice-compare-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.voice-compare-icon::before,
.voice-compare-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.voice-compare-icon-negative {
  background: rgba(255, 95, 46, 0.08);
}

.voice-compare-icon-negative::before {
  width: 15px;
  height: 2px;
  background: rgba(255, 95, 46, 0.72);
  transform: translate(-50%, -50%) rotate(45deg);
}

.voice-compare-icon-negative::after {
  width: 15px;
  height: 2px;
  background: rgba(255, 95, 46, 0.72);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.voice-compare-icon-positive {
  background: rgba(46, 184, 76, 0.10);
}

.voice-compare-icon-positive::before {
  width: 14px;
  height: 2px;
  background: rgba(30, 140, 60, 0.82);
  transform: translate(-24%, 92%) rotate(-45deg);
}

.voice-compare-icon-positive::after {
  width: 8px;
  height: 2px;
  background: rgba(30, 140, 60, 0.82);
  transform: translate(-102%, 136%) rotate(45deg);
}

.voice-compare-list {
  display: grid;
}

.voice-compare-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(16,16,16,0.06);
}

.voice-compare-item:first-child {
  border-top: 0;
}

.voice-compare-item strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.voice-compare-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.52;
}

.voice-compare-bullet {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 6px;
  flex: 0 0 auto;
}

.voice-compare-bullet::before,
.voice-compare-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform-origin: center;
}

.voice-compare-bullet.negative {
  background: rgba(255, 95, 46, 0.08);
}

.voice-compare-bullet.negative::before,
.voice-compare-bullet.negative::after {
  width: 11px;
  height: 2px;
  background: rgba(255, 95, 46, 0.70);
}

.voice-compare-bullet.negative::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.voice-compare-bullet.negative::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.voice-compare-bullet.positive {
  background: rgba(46, 184, 76, 0.10);
}

.voice-compare-bullet.positive::before {
  width: 10px;
  height: 2px;
  background: rgba(30, 140, 60, 0.80);
  transform: translate(-14%, 58%) rotate(-45deg);
}

.voice-compare-bullet.positive::after {
  width: 6px;
  height: 2px;
  background: rgba(30, 140, 60, 0.80);
  transform: translate(-96%, 100%) rotate(45deg);
}

.voice-compare-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 24px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.voice-compare-pill.negative {
  color: rgba(255, 95, 46, 0.90);
  background: rgba(255, 95, 46, 0.08);
}

.voice-compare-pill.positive {
  color: #1d7a33;
  background: rgba(46, 184, 76, 0.12);
}

/* ===========================
   Morphing vocal
   =========================== */

.voice-morph-section {
  background: transparent;
  overflow: hidden;
}

.voice-morph-head {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.voice-morph-head .tag {
  margin-bottom: 18px;
}

.morph-process {
  position: relative;
  min-height: 480px;
  margin-top: 54px;
  overflow: visible;
}

.morph-process-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.morph-process-line path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 16;
  opacity: 0.62;
  animation: dashFlow 1.8s linear infinite;
}

.morph-step-1 {
  left: 4%;
  top: 180px;
  --bubble-rot: -2deg;
}

.morph-step-2 {
  left: calc(50% - 109px);
  top: 48px;
  --bubble-rot: 2deg;
}

.morph-step-3 {
  right: 4%;
  top: 180px;
  --bubble-rot: -2deg;
}

.morph-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: center;
  margin-top: 8px;
  padding: 4px 10px 4px 7px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 95, 46, 0.10);
  color: var(--orange);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.morph-play-btn svg {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  fill: currentColor;
}

.morph-play-btn:hover,
.morph-play-btn:focus-visible,
.morph-play-btn.is-playing {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

.voice-morph-summary {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 26px 30px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(16,16,16,0.08);
  box-shadow: 0 18px 50px rgba(16,16,16,0.06);
}

.voice-morph-summary-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voice-morph-summary p:last-child {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

/* ===========================
   Final CTA
   =========================== */

body.voice-page .final {
  background:
    radial-gradient(circle at 18% 14%, rgba(214, 242, 222, 0.18), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(236, 246, 216, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(24, 40, 30, 0.92), rgba(18, 28, 22, 0.96));
  color: #f7f3eb;
}

body.voice-page .final p {
  color: rgba(247, 243, 235, 0.74);
}

body.voice-page .final .btn {
  background: #f5efe5;
  color: #16241b;
}

/* ===========================
   Responsive — Tablette
   =========================== */

@media (max-width: 1220px) {
  .voice-hero {
    padding-top: 84px;
  }

  .voice-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .voice-hero-copy {
    max-width: 100%;
  }

  .voice-hero-visual {
    min-height: 660px;
    max-width: 760px;
    margin: 0 auto;
  }

  .voice-character-1 {
    top: 12px;
    left: 8px;
  }

  .voice-character-2 {
    top: 0;
    right: 8px;
  }

  .voice-character-4 {
    left: 0;
    bottom: 116px;
  }

  .voice-character-5 {
    right: 0;
    bottom: 76px;
  }

  .voice-hero-benefits {
    grid-template-columns: 1fr;
    border-radius: 34px;
  }

  .voice-benefit-card {
    min-height: auto;
  }

  .voice-benefit-card + .voice-benefit-card {
    border-left: 0;
    border-top: 1px solid rgba(16, 16, 16, 0.08);
  }

  .morph-process {
    min-height: auto;
    display: grid;
    gap: 20px;
  }

  .morph-process-line {
    display: none;
  }

  .morph-process .process-bubble {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 180px;
    border-radius: 30px;
    transform: none !important;
    text-align: left;
    align-items: flex-start;
    opacity: 1 !important;
  }

  .morph-process .process-bubble::after {
    border-radius: 24px;
  }

  .morph-process .bubble-keys {
    justify-content: flex-start;
  }
}

/* ===========================
   Responsive — Mobile
   =========================== */

@media (max-width: 760px) {
  .voice-hero {
    padding-top: 72px;
    padding-bottom: 28px;
  }

  /* Désactiver les floats sur mobile : économie ressources + layout stable */
  .voice-character-1,
  .voice-character-2,
  .voice-character-4,
  .voice-character-5 {
    animation: none;
  }

  .voice-hero-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  /* Masquer grille de points et orbites sur mobile */
  .voice-hero-visual::after,
  .voice-hero-orbits {
    display: none;
  }

  .voice-character {
    position: relative;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .voice-character-core {
    width: 120px;
    height: 120px;
    flex: 0 0 auto;
    z-index: 1;
  }

  .voice-emotions {
    width: auto;
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 2;
  }

  .voice-emotions-left {
    justify-items: end;
  }

  .voice-emotions-right {
    justify-items: start;
  }

  .voice-emotions::before,
  .voice-emotion-chip::before {
    display: none;
  }

  .voice-emotion-chip {
    min-height: 39px;
    padding: 0 13px 0 14px;
    font-size: 13px;
    gap: 7px;
    max-width: 100%;
  }

  .voice-emotion-chip svg {
    width: 17px;
    height: 17px;
  }

  .voice-benefit-card {
    padding: 14px 8px;
    align-items: flex-start;
  }

  .voice-benefit-icon {
    width: 46px;
    height: 46px;
  }

  .voice-compare-grid {
    grid-template-columns: 1fr;
  }

  .voice-compare-card {
    padding: 22px;
  }

  .voice-morph-head {
    margin-bottom: 34px;
  }

  .voice-morph-summary {
    margin-top: 24px;
    padding: 22px 20px;
  }

  .voice-morph-summary p:last-child {
    font-size: 16px;
  }
}
