/* 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;
}

.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;
}

.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 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;
    }
	
    .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;
}

/* 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); */
}

/* 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;
  }
}


