/* VocalBoost - Enhanced Styles (Obsidiance-inspired) */

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-magenta: #7273d3;
    --color-magenta-dark: #5a5bb8;
    --color-magenta-light: #a629ac;
    --color-navy: #0f1729;
    --color-navy-light: #1a2332;
    --color-gray-dark: #1a1a1a;
    --color-gray-medium: #2a2a2a;
    --color-gray-light: #3a3a3a;
    --color-text-muted: #999999;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* subscribe.html.twig */
/* login twig */
:root {
    --color-primary: #ffffff;
    --color-primary-hover: #b01da3;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

footer a {
	color: #d924c8 !important;
	transition: color 0.3s ease;
}
footer a:hover {
	color: #ff00ff !important;
}

/* Animated Background with Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 50%, white, transparent),
        radial-gradient(1px 1px at 66% 20%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: moveStars 60s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes moveStars {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.center {
	text-align:center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Navbar with Glassmorphism */
.navbar {
    background: rgba(15, 23, 41, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(15, 23, 41, 0.95);
    box-shadow: 0 8px 32px rgba(217, 36, 200, 0.1);
}

.navbar-brand .logo {
    width: 350px;
    height: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 10px rgba(217, 36, 200, 0.3));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(217, 36, 200, 0.6));
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    font-size: 0.90rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-magenta), var(--color-magenta-light));
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--color-magenta);
}

.nav-link:hover::after {
    width: 80%;
}

/* (Fix) duplication supprimée: width: 300px; height: auto; width: 300px; */
.navbar-logo {
    width: 300px;
    height: auto;
}

/* Enhanced Buttons with Glow */
.btn-primary-custom {
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    border: none;
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;	
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(24 24 26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
	text-decoration: none;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px #3F51B5, 0 0 60px rgba(217, 36, 200, 0.4);
    background: linear-gradient(135deg, var(--color-magenta-light) 0%, var(--color-magenta) 100%);
}

.btn-outline-primary-custom {
    border: 2px solid var(--color-magenta);
    color: var(--color-magenta);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
	text-decoration:none;
}

.btn-outline-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-magenta);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-outline-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-primary-custom:hover {
    color: var(--color-white);
    border-color: var(--color-magenta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 36, 200, 0.4);
}

.btn-outline-primary-custom span {
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Fix pour les boutons outline - texte blanc au clic et hover */
.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus,
.btn-outline-primary-custom:active,
.btn-outline-primary-custom:active:focus {
    color: #ffffff !important;
    background-color: #7273d3 !important;
    border-color: #7273d3 !important;
}

/* Force le texte blanc sur tous les éléments enfants au survol */
.btn-outline-primary-custom:hover *,
.btn-outline-primary-custom:focus *,
.btn-outline-primary-custom:active *,
.btn-outline-primary-custom:active:focus * {
    color: #ffffff !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light:active:focus {
    color: #000000 !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Désactiver l'effet hover pour certains boutons outline */
.btn-outline-primary-custom.btn-no-hover:hover {
    background-color: transparent !important;
    color: #7273d3 !important;
    border-color: #7273d3 !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-outline-primary-custom.btn-no-hover:hover::before {
    width: 0 !important;
    height: 0 !important;
}

.btn-outline-primary-custom.btn-no-hover:hover span,
.btn-outline-primary-custom.btn-no-hover:hover * {
    color: #7273d3 !important;
}

/* ══════════════════════════════════════════
   HERO — fond photo + layout pleine largeur
   Remplace l'ancienne section Hero
══════════════════════════════════════════ */
.vb-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 120px); /* 120px = navbar + bandeau promo */
  max-height: 780px;              /* plafond sur très grands écrans */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;    /* ancre le contenu en haut plutôt qu'au centre */
  padding: 40px 0 40px;
}
.vb-hero__photo {
  position: absolute;
  inset: -60px 0;
  background-image: url('../images/hero-poc-home.webp');
  background-size: cover;
  background-position: right center;
  will-change: transform;
  z-index: 0;
}
.vb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 14, 28, 0.97) 0%,
    rgba(13, 21, 38, 0.92) 35%,
    rgba(19, 13, 42, 0.70) 60%,
    rgba(26, 13, 46, 0.30) 100%
  );
  z-index: 1;
}
.vb-hero__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(234,32,209,0.10) 0%, transparent 60%);
  z-index: 2;
}
.vb-hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,115,211,0.14) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}
.vb-hero__container { position: relative; z-index: 4; }
.vb-hero__content {
  max-width: 660px;
  display: flex;
  flex-direction: column;
}
.vb-hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(234,32,209,0.10);
  border: 1px solid rgba(234,32,209,0.30);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem; width: fit-content;
}
.vb-hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-magenta); box-shadow: 0 0 8px var(--color-magenta);
  animation: vbPulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes vbPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
.vb-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; color: #fff;
  line-height: 1.12; letter-spacing: -0.025em;
  margin: 0 0 1.4rem;
}
.vb-hero__title-accent {
  background: linear-gradient(90deg, var(--color-magenta) 0%, #ea20d1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline;
}
.vb-hero__subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.62);
  line-height: 1.75; margin-bottom: 1.8rem;
}
.vb-hero__subtitle strong { color: #fff; font-weight: 600; }
.vb-hero__checks {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.vb-hero__checks li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.vb-hero__checks li i {
  color: var(--color-magenta); font-size: 0.65rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(114,115,211,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.vb-hero__cta {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.vb-hero__btn-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 1rem; font-weight: 700;
  padding: 0.95rem 2.4rem; border-radius: 12px;
  background: linear-gradient(135deg, var(--color-magenta), #ea20d1);
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(114,115,211,0.38);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
}
.vb-hero__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(114,115,211,0.55);
  color: #fff;
}
.vb-hero__cta-note {
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
  display: flex; align-items: center; gap: 0.35rem;
}
.vb-hero__cta-note i { color: var(--color-magenta); }
.vb-hero__float-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.60);
  font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: 50px;
  width: fit-content;
}
.vb-hero__float-badge i { color: #ffe066; }
.vb-hero__float-badge strong { color: rgba(255,255,255,0.82); }

/* Hero Section with Advanced Effects */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top, rgba(217, 36, 200, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.hero-section-2 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px; 
    position: relative;
    overflow: hidden;
    background:
		radial-gradient(ellipse at top, rgba(217, 36, 200, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.hero-section-2 .container {
    padding-top: 120px;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(217, 36, 200, 0.15) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(217, 36, 200, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-magenta-light) 50%, #ff6ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 3rem;
}

/* Hero Image Container with 3D Effect */
.hero-image-container {
    position: relative;
    padding: 2rem;
    perspective: 1000px;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    25% { transform: translateY(-20px) rotateY(2deg); }
    50% { transform: translateY(-10px) rotateY(-2deg); }
    75% { transform: translateY(-15px) rotateY(1deg); }
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(135deg, rgba(15, 23, 41, 0.25) 0%, rgba(26, 35, 50, 0.15) 100%);
	z-index: 1;
}

.hero-overlay-solution {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(135deg, rgba(15, 23, 41, 0.85) 0%, rgba(26, 35, 50, 0.45) 100%);
	z-index: 1;
}


/* Hero Section Small */
.hero-section-small {
    padding-top: 100px;
    min-height: 40vh;
}

/* Sections with Enhanced Backgrounds */
.section-dark,
.section-light {
    padding: 100px 0;
    position: relative;
}

.section-dark { background: var(--color-navy); }
.section-light { background: var(--color-navy-light); }

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 40px rgba(217, 36, 200, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(26, 35, 50, 0.7);
    border-color: rgba(217, 36, 200, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(217, 36, 200, 0.2);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 3rem;
}

/* (Dedup) .stat-item, .stat-number, .stat-label exist in multiple places.
   On conserve une version "générique" ici; les variations spécifiques restent dans leurs sections. */
.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Hero stats (style initial) */
.hero-stats { padding: 2rem 0; }

.hero-stats .stat-number {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    margin: 0;
}

/* Multi-page stats (style alternatif) */
.stats-row .stat-number {
    font-size: 3rem;
    color: var(--color-magenta);
}

.stats-row .stat-label {
    margin-top: 0.5rem;
}

/* Audio Player Demo with Glassmorphism */
.audio-player-demo {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(217, 36, 200, 0.2);
    position: relative;
}

.audio-player-demo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-magenta), transparent, var(--color-magenta-light));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.audio-player-demo:hover::before {
    opacity: 0.5;
}

.player-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    margin-right: 1rem;
    box-shadow: 0 0 20px rgba(217, 36, 200, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(217, 36, 200, 0.6); }
    50% { box-shadow: 0 0 30px rgba(217, 36, 200, 0.8); }
}

.player-info { flex: 1; }

.player-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.player-product {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.player-waveform {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    margin-bottom: 1.5rem;
    gap: 4px;
}

.wave-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-magenta-light) 0%, var(--color-magenta) 100%);
    border-radius: 4px;
    animation: wave 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(217, 36, 200, 0.5);
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    border: none;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(217, 36, 200, 0.6);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(217, 36, 200, 0.8);
}

.player-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Problem Cards with Glassmorphism */
.problem-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 36, 200, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.problem-card:hover::before { opacity: 1; }

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-magenta);
    box-shadow: 0 20px 40px rgba(217, 36, 200, 0.3), 0 0 60px rgba(217, 36, 200, 0.1);
}

.problem-icon {
    font-size: 3rem;
    color: var(--color-magenta);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(217, 36, 200, 0.6));
}

.problem-stat {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.problem-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cost-highlight {
    background: rgba(217, 36, 200, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-magenta);
    border-radius: 20px;
    padding: 2rem 3rem;
    display: inline-block;
    box-shadow: 0 0 40px rgba(217, 36, 200, 0.3);
}

.cost-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Solution Visual */
.solution-visual {
    position: relative;
    padding: 2rem 0;
}

.solution-step-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.solution-step-card:hover {
    transform: translateX(10px);
    border-color: var(--color-magenta);
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.2);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.solution-list li {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.solution-list i {
    color: var(--color-magenta);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(217, 36, 200, 0.6));
}

.solution-badge {
    background: rgba(217, 36, 200, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-magenta);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.solution-badge i {
    color: var(--color-magenta);
    font-size: 1.5rem;
}

/* Feature Cards with Enhanced Effects */
.feature-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 36, 200, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-magenta);
    box-shadow: 0 20px 40px rgba(217, 36, 200, 0.3), 0 0 60px rgba(217, 36, 200, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    margin: 0 1rem 1.5rem 0;
    box-shadow: 0 10px 30px rgb(24 24 26);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(217, 36, 200, 0.7);
}

.feature-icon i {
    color: var(--color-white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Feature List */
.features-list .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list .feature-item:last-child {
    border-bottom: none;
}

/* Use Case Cards */
.use-case-card {
    text-align: center;
    transition: var(--transition-smooth);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
}

.icon-circle i {
    font-size: 2rem;
    color: #ffffff;
}

.use-case-card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.4);
}

/* Pricing Cards with Glassmorphism */
.pricing-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-magenta);
    box-shadow: 0 20px 40px rgba(217, 36, 200, 0.3);
}

.pricing-card-popular {
    border: 2px solid var(--color-magenta);
    box-shadow: 0 20px 60px rgba(217, 36, 200, 0.4), 0 0 80px rgba(217, 36, 200, 0.2);
    background: rgba(26, 35, 50, 0.7);
}

.pricing-card-featured {
    border: 2px solid var(--color-magenta);
}

.popular-badge,
.pricing-badge {
    position: absolute;
    top: -15px;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(217, 36, 200, 0.6);
}

.popular-badge { left: 50%; transform: translateX(-50%); }
.pricing-badge { right: 20px; border-radius: 20px; box-shadow: 0 5px 20px rgba(217, 36, 200, 0.4); }

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price { margin-bottom: 0.5rem; }

.price-amount {
    font-weight: 800;
    font-family: var(--font-heading);
}

.price-period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--color-magenta);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(217, 36, 200, 0.6));
}

.pricing-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* (Dedup) variation “multi-page” : on garde les tailles sans écraser le gradient */
.price-amount {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
}

/* Step Cards with 3D Effect */
/* How to twig */
.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number-large {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(217, 36, 200, 0.2), rgba(217, 36, 200, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-white);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.5), 0 0 60px rgba(217, 36, 200, 0.3);
    transition: var(--transition-smooth);
}

.step-icon i {
    font-size: 2.5rem;
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card:hover .step-icon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(217, 36, 200, 0.7), 0 0 80px rgba(217, 36, 200, 0.5);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* How to twig (version “card”) */
.step-card {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 36, 200, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 36, 200, 0.5);
    box-shadow: 0 20px 60px rgba(217, 36, 200, 0.2);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.4);
    background: linear-gradient(135deg, #191f2f 0%, #1c2132 100%);
    border: 1px solid rgba(217, 36, 200, 0.5);
}

.feature-highlight {
    background: rgba(217, 36, 200, 0.05);
    border-left: 3px solid #7273d3;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(217, 36, 200, 0.5) 0%, rgba(217, 36, 200, 0) 100%);
    transform: translateX(-50%);
}

.screenshot-preview {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(217, 36, 200, 0.2);
}

.screenshot-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section with Gradient Background */
.cta-section {
    background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-magenta-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: moveCTAGradient 15s ease-in-out infinite;
}

@keyframes moveCTAGradient {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer with Glassmorphism */
.footer {
    background: rgba(15, 23, 41, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(217, 36, 200, 0.3));
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 36, 200, 0.5);
    border-color: transparent;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright,
.footer-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== NEW MULTI-PAGE STYLES ===== */

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

/* Image Parallax Container */
.image-parallax-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-parallax-container img {
    transition: transform 0.3s ease-out;
}

.image-parallax-container:hover img {
    transform: scale(1.05);
}

/* Accordion Dark Theme */
.accordion {
    --bs-accordion-btn-color: #FFFFFF;
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #FFFFFF;
}

/* (Fix) Bootstrap overrides: éviter background-image avec une couleur */
.accordion-button:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-dark .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1rem;
}

.accordion-dark .accordion-button {
    background: rgba(26, 35, 50, 0.6);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px !important;
    padding: 1.25rem 1.5rem;
}

.accordion-dark .accordion-button:not(.collapsed) {
    background: rgba(217, 36, 200, 0.2);
    border-color: var(--color-magenta);
    color: white;
}

.accordion-dark .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 36, 200, 0.25);
}

.accordion-button:focus {
	border:0;
}

.accordion-dark .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-dark .accordion-collapse {
    border: none;
}

.accordion-dark .accordion-body {
    background: rgba(26, 35, 50, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
}

/* FAQ twig */
.accordion-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.accordion-button {
    background: transparent !important;
    border: none !important;
	cursor: pointer;	
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1) !important;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #e0e0e0 !important;
}

/* Form Controls Dark */
.form-control-dark {
    background: rgba(26, 35, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.form-control-dark:focus {
    background: rgba(26, 35, 50, 0.8);
    border-color: var(--color-magenta);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(217, 36, 200, 0.25);
}

.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Background Gradient Primary */
.bg-gradient-primary {
    background: linear-gradient(135deg, rgb(18 23 41) 0%, rgb(0 0 0 / 30%) 100%);
    position: relative;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    opacity: 0.1;
    z-index: 0;
}

.bg-gradient-primary > * {
    position: relative;
    z-index: 1;
}

/* Dégradés de fond style Obsidiance */
.gradient-obsidiance {
    background: linear-gradient(180deg,
        #0f1729 0%,
        #1a2332 50%,
        #1e2740 100%
    );
}

.gradient-obsidiance-reverse {
    background: linear-gradient(180deg,
        #1e2740 0%,
        #1a2332 50%,
        #0f1729 100%
    );
}

.gradient-obsidiance-subtle {
    background: linear-gradient(180deg,
        rgba(15, 23, 41, 1) 0%,
        rgba(26, 35, 50, 0.95) 30%,
        rgba(30, 39, 64, 0.9) 70%,
        rgba(15, 23, 41, 1) 100%
    );
}

/* Dégradé radial pour effet de profondeur */
.gradient-obsidiance-radial {
    background:
        radial-gradient(ellipse at top,
            rgba(217, 36, 200, 0.08) 0%,
            rgba(15, 23, 41, 1) 50%
        ),
        linear-gradient(180deg,
            #0f1729 0%,
            #1a2332 50%,
            #1e2740 100%
        );
}

/* ===================================
   About Section Styles
   =================================== */

.about-content {
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(217, 36, 200, 0.1), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(217, 36, 200, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.3);
    border-color: #7273d3;
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.stats-grid .stat-number {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.stats-grid .stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(217, 36, 200, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

/* POC Banner */
.poc-banner {
    background: linear-gradient(135deg, rgb(170 36 167) 0%, rgb(29 11 51) 100%);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.poc-banner p {
    font-size: 0.95rem;
    font-weight: 500;
}

.poc-banner a {
    transition: all 0.3s ease;
}

.poc-banner a:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .poc-banner {
        display: none !important;
    }
}

/* POC Badge */
.poc-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

@media (max-width: 768px) {
    .poc-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Chargement des styles en dur - 16-01-2026 */

.login-container,
.signup-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.login-card,
.signup-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 3rem;
    width: 100%;
}

.login-card { max-width: 480px; }
.signup-card { max-width: 600px; }

.login-logo,
.signup-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.login-logo i,
.signup-logo i {
    color: white;
    font-size: 1.8rem;
}

.login-title,
.signup-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.login-subtitle,
.signup-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

/* reset-card (spécifique) */
.reset-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
}

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

.reset-logo {
    width: 200px;
    margin-bottom: 1.5rem;
}

.reset-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.reset-subtitle {
    color: #666;
    font-size: 0.95rem;
}

/* promo-box (signup) */
.promo-box {
    background: rgba(114, 115, 211, 0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.promo-box strong { color: var(--color-primary); }

.promo-box ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
}

.promo-box li {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Form styles (base) */
.form-label {
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    opacity: 0.5;
}

/* (Dedup) variantes contextuelles */
.login-card .form-control,
.signup-card .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.reset-card .form-control {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(217, 36, 200, 0.15);
    color: #ffffff !important;
    background: rgba(26, 35, 50, 0.95);
}

.reset-card .form-control:focus {
    border-color: #7273d3;
    box-shadow: 0 0 0 0.2rem rgba(217, 36, 200, 0.1);
    background: #ffffff;
    color: #1a1a1a !important;
}

.form-check-input:checked {
    /* background-color: var(--color-primary); */
    border-color: var(--color-primary);
}

.text-primary-custom {
    color: var(--color-primary) !important;
    text-decoration: none;
    font-weight: 500;
}

/* .text-primary-custom:hover {
    text-decoration: underline;
} */

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-reset {
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    border: none;
    color: white;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.3);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    color: #999;
    font-size: 0.9rem;
}

.ssl-badge {
    text-align: center;
    margin-top: 1.5rem;
    color: #999;
    font-size: 0.875rem;
}

.ssl-badge i {
    color: #4caf50;
    margin-right: 0.25rem;
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: #7273d3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.back-link a:hover {
    color: #b01da3;
}

.alert-info {
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    color: #1976d2;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

/* CGU twig */
/* CGV twig */
/* *LEGAL twig */
/* POLICY  twig*/
/* FAQ twig */
/* PRIVACY POLICY twig */

/* (Dedup) Base Legal layout */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #7273d3;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.legal-content ul { margin-left: 20px; }

.update-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* (Dedup) Forced white text */
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    color: #ffffff !important;
}

.legal-content p,
.legal-content li,
.legal-content span {
    color: #e0e0e0 !important;
}

.legal-content strong {
    color: #FFFFFF !important;
}

.legal-content a {
    color: #d924c8 !important;
}

.legal-content a:hover {
    color: #ff00ff !important;
}

.warning-box {
    background: rgba(217, 36, 200, 0.1);
    border-left: 4px solid #7273d3;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.info-box {
    background: rgba(66, 153, 225, 0.1);
    border-left: 4px solid #4299e1;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* CGV twig (pricing table) */
.pricing-table {
    margin: 20px 0;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: rgba(217, 36, 200, 0.2);
    color: #7273d3;
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* PRIVACY POLICY twig*/
.legal-container {
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 3rem;
    margin: 2rem 0;
}

.legal-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #d924c8;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p,
.legal-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    padding-left: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(217, 36, 200, 0.05) 0%, rgba(234, 32, 209, 0.05) 100%);
    border-left: 4px solid #d924c8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Supprimer tout bleu violacé */
.text-primary,
.text-primary-custom {
    color: #d924c8 !important;
}

/* ========================================
   RESPONSIVE MOBILE OPTIMIZATIONS
   ======================================== */

/* Responsive (initial) */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .hero-image-container { margin-top: 3rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    .cta-buttons { flex-direction: column; }
    .btn-lg { width: 100%; }
}

/* Tablets and below (max-width: 992px) */
@media (max-width: 992px) {
    .navbar-brand .logo { width: 250px; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats .stat-number { font-size: 2rem; }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Navbar mobile */
    .navbar { padding: 1rem 0; }
    .navbar-brand .logo { width: 200px; }

    .navbar-collapse {
        background: rgba(15, 23, 41, 0.98);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        border: 1px solid rgba(217, 36, 200, 0.2);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem !important;
    }

    .nav-link:last-child { border-bottom: none; }

    /* Hero section mobile */
    .hero-section {
        min-height: auto;
		padding: 300px 0 60px !important;
        height: 280px;
		text-align: center;
    }

    /* vb-hero mobile */
    .vb-hero { padding: 70px 0 50px; min-height: auto; max-height: none; }
    .vb-hero__content { max-width: 100%; }
    .vb-hero__title { font-size: clamp(1.9rem, 7vw, 2.5rem); }
    .vb-hero__subtitle { font-size: 0.96rem; }
    .vb-hero__cta { flex-direction: column; align-items: center; }
    .vb-hero__btn-primary { width: 100%; max-width: 340px; justify-content: center; }
    .vb-hero__cta-note { justify-content: center; }
    .vb-hero__checks { align-items: flex-start; }
    .vb-hero__checks li { text-align: left; }
    .vb-hero__checks li span { text-align: left; }
    .vb-hero__overlay {
      background: linear-gradient(
        to right,
        rgba(8,14,28,0.97) 0%,
        rgba(13,21,38,0.96) 60%,
        rgba(19,13,42,0.92) 100%
      );
    }
	
    .hero-section-2 {
        min-height: auto;
        padding: 80px 0 40px;
        height: 370px;
        text-align: center;
    }	

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-video {
        min-height: 100%;
        object-fit: cover;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-cta .btn:last-child { margin-bottom: 0; }

    /* Stats mobile */
    .stats-row {
        flex-direction: column;
        gap: 1.5rem !important;
    }

    .hero-stats .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.85rem; }

    /* Audio player demo mobile */
    .audio-player-demo {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .player-waveform { height: 60px; }

    /* Use case cards mobile */
    .use-case-card { margin-bottom: 1rem; }

    /* Pricing cards mobile */
    .pricing-card { margin-bottom: 1.5rem; }

    /* Footer mobile */
    .footer { padding: 3rem 0 1.5rem !important; }

    .footer .col-lg-4,
    .footer .col-lg-2 {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }

    .footer-title {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-links li { margin-bottom: 0.5rem !important; }
    .footer-links a { font-size: 0.9rem !important; }
    .footer-social { justify-content: center !important; }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    /* Amélioration du bandeau cookies */
    .cookie-banner {
        padding: 1rem !important;
        max-width: 95% !important;
        left: 2.5% !important;
        right: 2.5% !important;
        bottom: 10px !important;
    }

    .cookie-banner h5 { font-size: 1rem !important; }
    .cookie-banner p { font-size: 0.85rem !important; }

    .cookie-options { gap: 0.75rem !important; }
    .cookie-option { padding: 0.75rem !important; }

    .cookie-buttons {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .cookie-buttons button {
        width: 100% !important;
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
    }

    /* Amélioration des cartes de fonctionnalités */
    .feature-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .feature-card h3 { font-size: 1.1rem !important; }
    .feature-card p { font-size: 0.9rem !important; }

    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }

    /* Amélioration des cartes de tarification */
    .pricing-card { padding: 1.5rem !important; }
    .price-amount { font-size: 2rem !important; }
    .pricing-card .btn { width: 100% !important; }

    .pricing-features li {
        font-size: 0.9rem !important;
        padding: 0.5rem 0 !important;
    }

    /* Amélioration des formulaires */
    .signup-card,
    .login-card {
        padding: 1.5rem !important;
        margin: 1rem !important;
    }

    .signup-title,
    .login-title { font-size: 1.5rem !important; }

    .form-control {
        font-size: 16px !important; /* Empêche le zoom sur iOS */
        padding: 0.875rem 1rem !important;
    }

    .form-label { font-size: 0.9rem !important; }

    .promo-box { padding: 0.75rem !important; }
    .promo-box ul { font-size: 0.85rem !important; }

    /* Amélioration de la page Comment ça marche */
    .step-card {
        padding: 2rem 1rem 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
        top: -25px !important;
    }

    .step-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .step-icon i { font-size: 1.75rem !important; }

    .step-card h3 { font-size: 1.1rem !important; }
    .step-card p { font-size: 0.9rem !important; }

    /* Amélioration des sections avec parallax */
    .parallax-bg { background-attachment: scroll !important; }

    .parallax-section {
        padding: 3rem 1rem !important;
    }

    /* Amélioration de la navigation */
    .navbar-toggler {
        border: none !important;
        padding: 0.5rem !important;
    }

    .navbar-toggler:focus { box-shadow: none !important; }

    .navbar-toggler-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .navbar-nav { padding: 1rem 0 !important; }
    .nav-item { margin: 0 !important; }

    .nav-link {
        padding: 0.75rem 0 !important;
    }

    .navbar .btn {
        width: 100% !important;
        margin-top: 1rem !important;
    }

    /* Touch-friendly improvements */
    a, button, .btn, input[type="submit"], input[type="button"] {
        min-height: 44px;
    }
}

/* Small mobile devices (max-width: 576px) */
@media (max-width: 576px) {
    .navbar-brand .logo { width: 180px; }

    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }

    .btn-primary-custom,
    .btn-outline-primary-custom,
    .btn-outline-light {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.8rem; }

    .audio-player-demo { padding: 1rem; }


    .player-waveform {
        height: 50px;
        gap: 2px;
    }

    .play-btn {
        width: 40px;
        height: 40px;
    }

    /* Section spacing mobile */
    section { padding: 3rem 0 !important; }

    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.9rem; }

    /* Amélioration des espaces */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
		text-align: center;
    }

    /* Amélioration du player audio démo */
    .audio-player-demo { border-radius: 15px !important; }

    .player-controls { justify-content: center !important; }
    .player-time { font-size: 0.8rem !important; }

    /* Amélioration du texte */
    body {
        font-size: 15px;
        line-height: 1.6;
    }

    h1 { font-size: 2.8rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.80rem !important; }
    h4 { font-size: 1.60rem !important; }
    h5 { font-size: 1.80rem !important; }
    h6 { font-size: 0.9rem !important; }

    p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
		padding:0 25px;
    }
}

/* Extra small devices (max-width: 375px) */
@media (max-width: 375px) {
    .navbar-brand .logo { width: 160px; }
    .hero-title { font-size: 1.75rem; }
    .hero-stats .stat-number { font-size: 1.5rem; }

    .btn-primary-custom,
    .btn-outline-primary-custom {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Mobile: Amélioration des images */
@media (max-width: 768px) {
    img {
        max-width: 268px;
        height: auto;
    }

    .hero-image-container img {
        max-width: 100%;
        border-radius: 15px;
    }
}

/* Mobile: Fix pour les overflow horizontaux */
@media (max-width: 768px) {
    .container-fluid { overflow-x: hidden; }
    section { overflow-x: hidden; }
}

/* Mobile: Amélioration des modales et popups */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100% - 1rem) !important;
    }

    .modal-content { border-radius: 15px !important; }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem !important;
    }
}

/* Responsive adjustments for About Section */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }

    .stat-card { padding: 20px 15px; }
    .stats-grid .stat-number { font-size: 2rem; }

    .value-card {
        padding: 20px;
        margin-bottom: 20px;
    }
	.none { display:none;}
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-row { gap: 1.5rem; }

    .stats-row .stat-number { font-size: 2.5rem; }

    .parallax-bg { background-attachment: scroll; }
	
	.min-vh-100	{ min-height: auto !important;}
	
	.card-body { text-align:center}
	
	
}


/* Fix Font Awesome écrasé par un reset CSS */
.fa-solid, .fa-regular, .fa-brands, .fa-light, .fa-thin, .fa-duotone {
  font-family: "Font Awesome 6 Free" !important;
}

.fa-solid {
  font-weight: 900 !important;
}

.fa-regular {
  font-weight: 400 !important;
}

/* au cas où un reset neutralise les pseudo-éléments */
.fa-solid::before,
.fa-regular::before,
.fa-brands::before {
  display: inline-block;
}


/* Retire le focus bleu Bootstrap sur les accordions */
.accordion-button:focus,
.accordion-button:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
  border-color: transparent !important; /* ou inherit */
}

/* ===== AUDIO FEATURES SECTION - 3 COLONNES ===== */

/* Audio Features Section */
.audio-features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Audio Feature Card */
.audio-feature-card {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gradient Background on Hover */
.audio-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 36, 200, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.audio-feature-card:hover::before {
    opacity: 1;
}

/* Featured Card Styling */
.audio-feature-card.featured {
    border: 2px solid var(--color-magenta);
    box-shadow: 0 20px 60px rgba(217, 36, 200, 0.3), 0 0 80px rgba(217, 36, 200, 0.15);
    background: rgba(26, 35, 50, 0.7);
    transform: scale(1.02);
}

.audio-feature-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
}

/* Card Hover Effect */
.audio-feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-magenta);
    box-shadow: 0 20px 40px rgba(217, 36, 200, 0.3), 0 0 60px rgba(217, 36, 200, 0.1);
}

/* Feature Header */
.feature-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Large Feature Icon */
.feature-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(217, 36, 200, 0.5), 0 0 60px rgba(217, 36, 200, 0.3);
    transition: var(--transition-smooth);
}

.audio-feature-card:hover .feature-icon-large {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(217, 36, 200, 0.7), 0 0 80px rgba(217, 36, 200, 0.5);
}

/* Feature Title */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Audio Stats */
.audio-stat {
    background: rgba(217, 36, 200, 0.1);
    border: 1px solid rgba(217, 36, 200, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.audio-feature-card:hover .audio-stat {
    background: rgba(217, 36, 200, 0.2);
    border-color: var(--color-magenta);
}

.audio-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.audio-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Audio Duration */
.audio-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-duration i {
    color: var(--color-magenta);
    font-size: 1.1rem;
}

/* Feature Description */
.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Use Case Badge */
.use-case-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(217, 36, 200, 0.2) 0%, rgba(234, 32, 209, 0.1) 100%);
    border: 1px solid var(--color-magenta);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--color-white);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.audio-feature-card:hover .use-case-badge {
    background: linear-gradient(135deg, rgba(217, 36, 200, 0.3) 0%, rgba(234, 32, 209, 0.2) 100%);
    transform: translateX(5px);
}

.use-case-badge i {
    color: var(--color-magenta);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .audio-feature-card.featured {
        transform: scale(1);
    }

    .audio-feature-card.featured:hover {
        transform: translateY(-15px);
    }

    .audio-features-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .audio-feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .audio-stat .stat-number {
        font-size: 2rem;
    }

    .audio-features-section {
        padding: 60px 0;
    }
}

/* badge home section hero */
@media (max-width: 768px) {
	.featured-badge {   
		top: 168px;
	}
}
/* ============================================ */
/* Section Vidéo VocalBoost - Styles Responsive */
/* ============================================ */

/* Section vidéo */
.video-showcase-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Wrapper vidéo avec ratio 16:9 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: none;
}

/* Élément vidéo */
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
	z-index: 1;
	inset:0;
}

/* Masquer le fallback texte de la balise video */
/* .video-player p,
#vocalboostVideo p {
    display: none !important;
} */


/* Informations vidéo */
.video-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Highlights des fonctionnalités */
.feature-highlight {
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-highlight:hover {
    transform: translateY(-10px);
    border-color: #7273d3;
    box-shadow: 0 20px 40px rgba(217, 36, 200, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: #7273d3;
    margin-bottom: 1rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(114, 115, 211, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-highlight:hover .feature-icon {
    background: rgba(114, 115, 211, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(217, 36, 200, 0.3);
}

.feature-highlight h5 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feature-highlight p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Animation au chargement */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-wrapper {
    animation: slideInUp 0.6s ease-out;
}

.feature-highlight {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-highlight:nth-child(1) { animation-delay: 0.1s; }
.feature-highlight:nth-child(2) { animation-delay: 0.2s; }
.feature-highlight:nth-child(3) { animation-delay: 0.3s; }

/* Accessibilité - Focus visible */
.video-player:focus-visible {
    outline: 3px solid #7273d3;
    outline-offset: 2px;
}

.btn-primary-custom:focus-visible,
.btn-outline-primary-custom:focus-visible {
    outline: 3px solid #7273d3;
    outline-offset: 2px;
}

/* Support du mode sombre système */
@media (prefers-color-scheme: dark) {
    .video-wrapper {
        box-shadow: 0 20px 60px rgba(217, 36, 200, 0.25);
    }
}

/* Support des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .video-wrapper,
    .feature-highlight,
    .feature-highlight:hover .feature-icon,
    .feature-highlight:hover {
        animation: none;
        transition: none;
    }
}

/* ============================================ */
/* Responsive - Tablette (768px et moins) */
/* ============================================ */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .video-wrapper {
        border-radius: 15px;
		position: relative;
    }

    .video-player {
        border-radius: 15px;
		z-index: 1;
    }

    .feature-highlight {
        padding: 1.5rem;
    }

    .feature-highlight h5 {
        font-size: 1.1rem;
    }

    .feature-highlight p {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* Responsive - Mobile (576px et moins) */
/* ============================================ */
@media (max-width: 576px) {
    .video-showcase-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .video-wrapper {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(217, 36, 200, 0.15);
    }

    .video-player {
        border-radius: 12px;
    }

    .video-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .feature-highlight {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .feature-highlight h5 {
        font-size: 1rem;
    }

    .feature-highlight p {
        font-size: 0.85rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }
}

/* ============================================ */
/* Responsive - Extra Small (480px et moins) */
/* ============================================ */
@media (max-width: 480px) {
    .video-showcase-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
        border-radius: 10px;
    }

    .video-player {
        border-radius: 10px;
    }

    .video-info {
        padding: 0.75rem 0;
        font-size: 0.85rem;
    }

    .video-info small {
        font-size: 0.75rem;
    }

    .feature-highlight {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .feature-highlight h5 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .feature-highlight p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}

/* ============================================ */
/* Optimisation pour les appareils tactiles */
/* ============================================ */
@media (hover: none) and (pointer: coarse) {
    .feature-highlight {
        transform: none;
    }

    .feature-highlight:active {
        transform: translateY(-5px);
        border-color: #7273d3;
    }

    .feature-icon {
        transform: none;
    }

    .feature-highlight:active .feature-icon {
        transform: scale(1.05);
    }
}

/* ============================================ */
/* Optimisation pour les écrans haute densité */
/* ============================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .video-wrapper {
        box-shadow: 0 20px 60px rgba(217, 36, 200, 0.2);
    }

    .feature-highlight {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* ============================================ */
/* Optimisation pour les connexions lentes */
/* ============================================ */
@media (prefers-reduced-data: reduce) {
    .feature-highlight {
        background: rgba(26, 35, 50, 0.7);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}





/* ============================================ */
/* Bouton Play Central HTML */
/* ============================================ */

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #7273d3 0%, #a629ac 100%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
	z-index: 10;
	pointer-events: auto;
}

.video-play-button::after {
    content: '▶';
    font-size: 50px;
    color: #fff;
    margin-left: 4px;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
	cursor: pointer;
/*     transform: translate(-50%, -50%) scale(0.8); */
}


/* ══════════════════════════════════════════════════════════════════════════
   WIDGET STUDIO SECTION — vocalboost_widget_studio.css
   À inclure dans style.css ou via Webpack Encore
   Toutes les classes sont préfixées ws- / s- / w- / tool- pour éviter
   tout conflit avec les classes Bootstrap et le CSS existant.
══════════════════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.ws-section {
  --ws-magenta:      #7273d3;
  --ws-magenta-dark: #5a5bb8;
  --ws-magenta-alt:  #a629ac;
  --ws-navy:         #0f1729;
  --ws-navy-light:   #1a2332;
  --ws-white:        #ffffff;
  --ws-muted:        rgba(255, 255, 255, 0.55);
  --ws-card-bg:      rgba(26, 35, 50, 0.6);
  --ws-card-border:  rgba(255, 255, 255, 0.08);
  --ws-transition:   all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  padding: 100px 0 110px;
  background: var(--ws-navy-light);
  position: relative;
  overflow: hidden;
}

.ws-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(circle, rgba(114, 115, 211, 0.11) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── En-tête ── */
.ws-head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.ws-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(114, 115, 211, 0.15);
  border: 1px solid rgba(114, 115, 211, 0.5);
  color: #a0a1e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.ws-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ws-white);
  text-align: center;
  text-shadow: 0 0 40px rgba(114, 115, 211, 0.25);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.ws-subtitle {
  font-size: 1.1rem;
  color: var(--ws-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   BLOC 1 — Mockup + Argumentaire
══════════════════════════════════════════════════════════ */
.ws-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

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

/* ── Mockup navigateur ── */
.ws-mockup {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: wsFloat 6s ease-in-out infinite;
}

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

.ws-bar {
  background: rgba(18, 26, 44, 0.97);
  border-radius: 16px 16px 0 0;
  padding: 0.62rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.url-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.26rem 0.75rem;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.48);
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ws-body {
  background: rgba(13, 21, 38, 0.97);
  border-radius: 0 0 16px 16px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: none;
}

/* Onglets device */
.dev-tabs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.dev-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 0.38rem 0.65rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s;
}

.dev-tab.active,
.dev-tab:hover {
  background: linear-gradient(135deg, rgba(114, 115, 211, 0.28), rgba(166, 41, 172, 0.18));
  border-color: rgba(114, 115, 211, 0.6);
  color: var(--ws-white);
}

/* Grille studio */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

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

.s-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.9rem;
}

.s-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 0.55rem;
}

.s-label-accent {
  color: var(--ws-magenta);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* Avatars */
.av-row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: all 0.25s;
}

.av.on {
  background: linear-gradient(135deg, var(--ws-magenta), var(--ws-magenta-alt));
  border-color: transparent;
  color: var(--ws-white);
  box-shadow: 0 4px 14px rgba(114, 115, 211, 0.5);
}

/* Upload avatar */
.av-upload {
  background: rgba(114, 115, 211, 0.1);
  border: 1px dashed rgba(114, 115, 211, 0.4);
  border-radius: 8px;
  padding: 0.38rem 0.7rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 0.85rem;
}

.av-upload:hover {
  background: rgba(114, 115, 211, 0.2);
  border-color: rgba(114, 115, 211, 0.7);
  color: var(--ws-white);
}

.av-upload-note {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(114, 115, 211, 0.25);
  color: #a0a1e8;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

/* Sélecteurs et inputs */
.s-select,
.s-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.42rem 0.7rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0;
}

.s-chevron { opacity: 0.38; }
.s-placeholder { opacity: 0.4; }

.s-btn {
  background: linear-gradient(135deg, var(--ws-magenta), var(--ws-magenta-alt));
  border-radius: 8px;
  padding: 0.48rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ws-white);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(114, 115, 211, 0.38);
  transition: var(--ws-transition);
}

.s-btn:hover { transform: scale(1.03); }

/* Widget preview */
.w-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(114, 115, 211, 0.3);
  border-radius: 10px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.w-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ws-magenta), var(--ws-magenta-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--ws-white);
  flex-shrink: 0;
  animation: wsPulse 2s ease-in-out infinite;
}

@keyframes wsPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(114, 115, 211, 0.6); }
  50%       { box-shadow: 0 0 20px rgba(166, 41, 172, 0.8); }
}

.w-inner { flex: 1; min-width: 0; }
.w-name  { font-size: 0.68rem; font-weight: 700; color: rgba(255, 255, 255, 0.8); margin-bottom: 0.28rem; }

/* Waveform */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  margin-bottom: 0.3rem;
}

.wbar {
  flex: 1;
  background: linear-gradient(180deg, var(--ws-magenta-alt), var(--ws-magenta));
  border-radius: 2px;
  animation: wsWave 1.4s ease-in-out infinite;
}
.wbar:nth-child(1) { height: 60%; animation-delay: 0s; }
.wbar:nth-child(2) { height: 90%; animation-delay: 0.1s; }
.wbar:nth-child(3) { height: 45%; animation-delay: 0.2s; }
.wbar:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.wbar:nth-child(5) { height: 70%; animation-delay: 0.4s; }
.wbar:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.wbar:nth-child(7) { height: 80%; animation-delay: 0.6s; }
.wbar:nth-child(8) { height: 40%; animation-delay: 0.7s; }

@keyframes wsWave {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.32); }
}

/* Contrôles */
.w-ctrl {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.w-play {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ws-magenta), var(--ws-magenta-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  color: var(--ws-white);
  flex-shrink: 0;
}

.w-prog {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
}

.w-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ws-magenta), var(--ws-magenta-alt));
  border-radius: 2px;
  animation: wsProg 4s ease-in-out infinite alternate;
}

@keyframes wsProg {
  0%   { width: 8%; }
  100% { width: 88%; }
}

.w-time { font-size: 0.62rem; color: rgba(255, 255, 255, 0.38); flex-shrink: 0; }

/* Zone capture + drag hint */
.w-screen {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.76rem;
  margin-top: 0.7rem;
}

.w-screen-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.w-drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(114, 115, 211, 0.18);
  border: 1px solid rgba(114, 115, 211, 0.35);
  color: #a0a1e8;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
  animation: wsDragPulse 2.5s ease-in-out infinite;
}

@keyframes wsDragPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(0.97); }
}

/* Badge flottant */
.ws-float-badge {
  position: absolute;
  bottom: -15px;
  right: 22px;
  background: linear-gradient(135deg, var(--ws-magenta), var(--ws-magenta-alt));
  color: var(--ws-white);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.42rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(114, 115, 211, 0.5);
  white-space: nowrap;
  z-index: 10;
}

/* ── Argumentaire ── */
.ws-arg-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ws-magenta);
  filter: drop-shadow(0 0 5px rgba(114, 115, 211, 0.5));
}

.ws-arg-title {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--ws-white);
  margin: 0.7rem 0 1.1rem;
  line-height: 1.25;
}

.ws-arg-desc {
  font-size: 1rem;
  color: var(--ws-muted);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* Liste des bénéfices */
.ws-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.ws-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.82rem;
  line-height: 1.5;
}

.ws-checks li i {
  color: var(--ws-magenta);
  font-size: 1.05rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(114, 115, 211, 0.55));
}

.ws-checks strong { color: var(--ws-white); }

/* Note étoile */
.ws-star-note {
  color: var(--ws-magenta);
  font-weight: 500;
  font-size: 0.85em;
  vertical-align: super;
  line-height: 0;
}

.ws-star-legend {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.5rem;
  font-style: italic;
}

.ws-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.36);
  margin-top: 0.7rem;
}

.ws-note i { color: var(--ws-magenta); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* ══════════════════════════════════════════════════════════
   SÉPARATEUR
══════════════════════════════════════════════════════════ */
.ws-sep {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 5rem 0 4rem;
  position: relative;
  z-index: 2;
}

.ws-sep-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ws-sep-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(114, 115, 211, 0.12);
  border: 1px solid rgba(114, 115, 211, 0.35);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   BLOC 2 — Cards des 3 outils
══════════════════════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

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

.tool-card {
  background: var(--ws-card-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--ws-card-border);
  border-radius: 20px;
  padding: 1.75rem 1.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--ws-transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(114, 115, 211, 0.07) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tool-card:hover::before { opacity: 1; }

.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 115, 211, 0.38);
  box-shadow: 0 22px 55px rgba(114, 115, 211, 0.18);
}

/* Card mise en avant (Générateur Audio) */
.tool-card.featured {
  border-color: rgba(114, 115, 211, 0.4);
  background: linear-gradient(160deg, rgba(114, 115, 211, 0.12) 0%, rgba(26, 35, 50, 0.7) 60%);
}

.tool-card.featured::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(114, 115, 211, 0.4), transparent, rgba(166, 41, 172, 0.3));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.6;
}

/* ── En-tête de carte : numéro + icône à gauche, tag à droite ── */
.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.tool-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tool-num {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ws-magenta), var(--ws-magenta-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ws-white);
  box-shadow: 0 4px 14px rgba(114, 115, 211, 0.45);
  flex-shrink: 0;
}

.tool-icon {
  font-size: 1.45rem;
  color: var(--ws-magenta);
  line-height: 1;
  filter: drop-shadow(0 0 7px rgba(114, 115, 211, 0.5));
}

.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(114, 115, 211, 0.15);
  border: 1px solid rgba(114, 115, 211, 0.32);
  color: #a0a1e8;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* Séparateur visuel sous l'en-tête */
.tool-header::after {
  display: none;
}

.tool-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ws-white);
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.tool-desc {
  font-size: 0.88rem;
  color: var(--ws-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Séparateur entre description et liste */
.tool-desc + .tool-features {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.tool-features li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.45;
}

.tool-features li:last-child {
  border-bottom: none;
}

.tool-features li i {
  color: var(--ws-magenta);
  font-size: 0.78rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

.tool-features code {
  font-size: 0.78rem;
  color: var(--ws-magenta);
  background: rgba(114, 115, 211, 0.12);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Responsive : sur tablette, grille 2 colonnes */
@media (min-width: 640px) and (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tool-card.featured {
    grid-column: 1 / -1;
  }
}

/* ══════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════ */
.ws-final-cta {
  background: linear-gradient(135deg, rgba(114, 115, 211, 0.12) 0%, rgba(166, 41, 172, 0.08) 100%);
  border: 1px solid rgba(114, 115, 211, 0.25);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ws-final-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ws-white);
  margin-bottom: 0.9rem;
}

.ws-final-cta-desc {
  font-size: 1rem;
  color: var(--ws-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.ws-final-cta .cta-row { justify-content: center; }

.ws-final-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.9rem;
}

/* ══════════════════════════════════════════════════════════
   BOUTONS — Classes propres .btn-p et .btn-o
   Utilisées UNIQUEMENT dans la section #widget-studio
   Zéro conflit avec .btn-primary-custom du style.css global
══════════════════════════════════════════════════════════ */

/* ── .btn-p : bouton primaire plein ("Ouvrir le Widget Studio" / "Créer mon compte gratuit") ── */
.btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #7273d3, #a629ac);
  border: none;
  color: #ffffff !important;
  padding: 0.82rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(114, 115, 211, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  line-height: 1.4;
}

.btn-p::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.btn-p:hover::before { left: 100%; }

.btn-p i,
.btn-p span {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

.btn-p:hover,
.btn-p:focus,
.btn-p:active {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(114, 115, 211, 0.55), 0 0 50px rgba(166, 41, 172, 0.3);
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ── .btn-o : bouton outline ("Tester le Widget Studio d'abord") ── */
.btn-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid #7273d3;
  color: #7273d3 !important;
  padding: 0.78rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  line-height: 1.4;
}

.btn-o::before {
  content: '';
  position: absolute;
  inset: 0;
/*   background: linear-gradient(135deg, #7273d3, #a629ac);
 */  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 48px;
  z-index: 0;
  pointer-events: none;
}

.btn-o:hover::before { opacity: 1; }

.btn-o i,
.btn-o span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-o:hover,
.btn-o:focus,
.btn-o:active {
  color: #ffffff !important;
  /* border-color: #a629ac !important; */
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(114, 115, 211, 0.4);
  text-decoration: none !important;
  background: #7273d3;
}

.btn-o:hover i,
.btn-o:hover span,
.btn-o:focus i,
.btn-o:focus span {
  color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── TABLETTE (769px – 1024px) ──
   Sur tablette, ws-hero passe en colonne (déjà géré à 900px).
   On corrige ici les alignements de l'argumentaire et des boutons
   qui se retrouvent en pleine largeur sans les corrections mobiles. */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ── vb-hero tablette ── */
  .vb-hero { padding: 80px 0 60px; min-height: auto; max-height: none; }
  .vb-hero__content { max-width: 100%; }
  .vb-hero__title { font-size: clamp(2.2rem, 4vw, 3rem); }
  .vb-hero__cta { flex-wrap: wrap; justify-content: center; }
  .vb-hero__btn-primary { min-width: 220px; }
  .vb-hero__cta-note { justify-content: center; }
  .vb-hero__checks { align-items: flex-start; }
  .vb-hero__checks li { text-align: left; }
  .vb-hero__checks li span { text-align: left; }

  /* ── En-tête de section : reste centrée (titre principal + sous-titre) ── */
  .ws-head { text-align: center; }
  .ws-title { text-align: center; }
  .ws-subtitle { text-align: center; }

  /* ── Badge "Sans CB ni inscription" : centré sous le mockup ── */
  .ws-float-badge {
    position: static;
    display: block;
    width: fit-content;
    margin: 1.25rem auto 0;
    font-size: 0.74rem;
    text-align: center;
  }

  /* ── Argumentaire : tout aligné à gauche ── */
  .ws-arg-label { text-align: left; }
  .ws-arg-title { text-align: left; }
  .ws-arg-desc  { text-align: left; }

  /* ── Listes à puces ws-checks : alignées à gauche, texte justifié ── */
  .ws-checks     { text-align: left; }
  .ws-checks li  { text-align: left; }
  .ws-checks li span { text-align: justify; }

  /* ── Notes et légendes : alignées à gauche ── */
  .ws-star-legend { text-align: left; }
  .ws-note        { text-align: left; }

  /* ── Bouton CTA : aligné à gauche, boutons de taille naturelle ── */
  .cta-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
  }
  .cta-row .btn-p,
  .cta-row .btn-o {
    min-width: 200px;
  }

  /* ── 3 blocs outils : tout aligné à gauche ── */
  .tool-title { text-align: left; }
  .tool-desc  { text-align: left; }
  .tool-features li      { text-align: left; }
  .tool-features li span { text-align: justify; }
  .tool-tag { align-self: flex-start; }

  /* ── Séparateur ── */
  .ws-sep-label { font-size: 0.75rem; white-space: normal; text-align: center; }

  /* ── CTA final : aligné à gauche ── */
  .ws-final-cta-title { text-align: left; }
  .ws-final-cta-desc  { text-align: left; }
  .ws-final-cta .cta-row { justify-content: center; }
}

@media (max-width: 768px) {
  /* ── Général section ── */
  .ws-section { padding: 60px 0 70px; }

  /* ── Badge "Sans CB ni inscription" : centré sous le mockup ── */
  .ws-float-badge {
    position: static;
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
    font-size: 0.72rem;
    text-align: center;
  }

  /* ── Séparateur ── */
  .ws-sep { flex-direction: column; gap: 0.8rem; }
  .ws-sep-label { font-size: 0.7rem; padding: 0.4rem 0.8rem; white-space: normal; text-align: center; }
  .ws-sep-line { width: 100%; }

  /* ── En-tête de section : reste centrée ── */
  .ws-head { text-align: center; }
  .ws-title { text-align: center; }
  .ws-subtitle { text-align: center; }

  /* ── Argumentaire : tout aligné à gauche ── */
  .ws-arg-label { text-align: left; }
  .ws-arg-title { text-align: left; }
  .ws-arg-desc  { text-align: left; }

  /* ── Liste à puces ws-checks : alignée à gauche, texte justifié ── */
  .ws-checks { text-align: left; }
  .ws-checks li { text-align: left; }
  .ws-checks li span { text-align: justify; }

  /* ── Notes et légendes : alignées à gauche ── */
  .ws-star-legend { text-align: left; }
  .ws-note        { text-align: left; }

  /* ── Bouton CTA : aligné à gauche, pleine largeur sur mobile ── */
  .cta-row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .cta-row .btn-p,
  .cta-row .btn-o {
    width: 100%;
    max-width: 340px;
    text-align: center;
    justify-content: center;
  }

  /* ── 3 blocs outils : tout aligné à gauche ── */
  .tool-title { text-align: left; }
  .tool-desc  { text-align: left; }
  .tool-features li { text-align: left; }
  .tool-features li span { text-align: justify; }
  .tool-tag { align-self: flex-start; }

  /* ── CTA final : aligné à gauche ── */
  .ws-final-cta { padding: 2rem 1.5rem; }
  .ws-final-cta-title { text-align: left; }
  .ws-final-cta-desc  { text-align: left; }
  .ws-final-cta .cta-row { justify-content: center; }

  /* ── Studio grid ── */
  .studio-grid { grid-template-columns: 1fr; }
  .s-panel:last-child { display: none; }

  /* ── Boutons génériques widget studio ── */
  #widget-studio .btn-primary-custom,
  #widget-studio .btn-outline-primary-custom {
    padding: 0.7rem 1.5rem;
    font-size: 0.88rem;
    width: 100%;
  }
}





/* Responsive - Tablette */
@media (max-width: 768px) {
    .video-play-button {
        width: 100px;
        height: 100px;
		z-index: 10;
		pointer-events: auto;
    }
    
    .video-play-button::after {
        font-size: 40px;
    }
	.video-wrapper.playing .video-player {
	    pointer-events: auto;
	}
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .video-play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-play-button::after {
        font-size: 32px;
    }
}

/* Responsive - Extra-small */
@media (max-width: 480px) {
    .video-play-button {
        width: 70px;
        height: 70px;
    }
    
    .video-play-button::after {
        font-size: 28px;
    }
}

.video-wrapper { position: relative; }
.video-player { z-index: 1; }
.video-play-button { z-index: 10; }

/* quand ça joue, le bouton disparaît déjà */
.video-wrapper.playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}




/* Masquer le bouton pause des contrôles HTML5 */
/*  video::-webkit-media-controls-play-button {
    display: none;
}
 */
 video::-moz-media-controls-play-button {
    display: block;
} 




/* Masquer UNIQUEMENT le bouton pause blanc au centre */
  video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

/*  video::-moz-media-controls-overlay-play-button {
    display: none !important;
} */
 
 
 @media (max-width: 768px) {
  .video-wrapper.playing .video-player {
    pointer-events: auto;
  }
}



/* ═══════════════════════════════════════════════════════════════
   SECTION VOICES SHOWCASE — 6 players audio réels
   Palette : navy/obsidiance + accents magenta/violet
   Ajouté : mars 2026
═══════════════════════════════════════════════════════════════ */

.voices-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(15, 23, 41, 1) 0%,
    rgba(20, 29, 52, 0.98) 40%,
    rgba(26, 35, 64, 0.96) 70%,
    rgba(15, 23, 41, 1) 100%
  );
}

/* Lueur de fond décorative */
.voices-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(114, 115, 211, 0.12) 0%,
    rgba(166, 41, 172, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.voices-section > * { position: relative; z-index: 1; }

/* ── En-tête ── */
.voices-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.voices-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(114, 115, 211, 0.12);
  border: 1px solid rgba(114, 115, 211, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.voices-badge i { color: var(--color-magenta); }

.voices-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.18;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.voices-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Grille des players ── */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Card player ── */
.vb-player-card {
  background: rgba(26, 35, 58, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  /* Ombrage naturel sous la card */
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.40),
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.vb-player-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(114, 115, 211, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.vb-player-card:hover {
  border-color: rgba(114, 115, 211, 0.40);
  transform: translateY(-5px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.50),
    0 8px 20px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(114, 115, 211, 0.20),
    0 0 40px rgba(114, 115, 211, 0.12);
}

.vb-player-card:hover::before { opacity: 1; }

/* ── En-tête de la card ── */
.vb-player-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

/* Avatar */
.vb-player-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2.5px solid rgba(114, 115, 211, 0.50);
  box-shadow:
    0 0 14px rgba(114, 115, 211, 0.30),
    0 4px 12px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, var(--color-magenta) 0%, #ea20d1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Avatar avec vraie image */
.vb-player-avatar--img {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 0 2px rgba(114, 115, 211, 0.25);
  padding: 0;
}

.vb-player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}

.vb-player-card:hover .vb-player-avatar {
  box-shadow:
    0 0 22px rgba(114, 115, 211, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.40);
  transform: scale(1.05);
}

/* Infos nom / rôle */
.vb-player-info { flex: 1; min-width: 0; }

.vb-player-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vb-player-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bouton play */
.vb-play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-magenta) 0%, #ea20d1 100%);
  border: none;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(114, 115, 211, 0.50);
  font-size: 0.9rem;
  padding-left: 2px; /* compense l'icône play visuellement */
}

.vb-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(114, 115, 211, 0.70);
}

.vb-play-btn.playing {
  background: linear-gradient(135deg, #ea20d1 0%, var(--color-magenta) 100%);
}

/* ── Barre de progression ── */
.vb-player-progress-wrap {
  margin-bottom: 0.75rem;
}

.vb-player-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.vb-player-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-magenta) 0%, #ea20d1 100%);
  border-radius: 4px;
  transition: width 0.1s linear;
}

/* Temps */
.vb-player-times {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ── Pied de card : mention VocalBoost ── */
.vb-player-footer {
  text-align: center;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vb-player-brand {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}

.vb-player-brand span {
  color: rgba(114, 115, 211, 0.70);
  font-weight: 600;
}

/* ── CTA sous les players ── */
.voices-cta {
  text-align: center;
  margin-top: 3rem;
}

.voices-cta-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
  .voices-section {
    padding: 70px 0;
  }
}


