/* ==========================================
   FOCUS-RISE - Clean & Bold Design
   ========================================== */

/* ==========================================
   Variables
   ========================================== */
:root {
    /* Theme 6 - White & Gold (Light) - Default */
    --bg-primary: #FFFDF7;
    --bg-secondary: #FFF9E6;
    --bg-dark: #1A1A1A;

    --text-primary: #1A1A1A;
    --text-secondary: #525252;
    --text-light: #737373;
    --text-inverse: #FFFDF7;

    --accent: #E8B923;
    --accent-light: #FFD43B;
    --accent-dark: #C9981A;

    --border: #E5E0D5;
    --border-dark: #C9981A;

    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;
}

/* ==========================================
   Dark Mode - Early Application (prevents flash)
   ========================================== */
html.dark-mode,
html.dark-mode body {
    background: #0A0A0A;
    color: #E4E4E7;
}

html.dark-mode .choice-page {
    background: #0A0A0A;
}

/* Variables CSS sur html.dark-mode pour application immédiate */
html.dark-mode {
    --bg-primary: #0A0A0A;
    --bg-secondary: #141414;
    --bg-dark: #000000;
    --text-primary: #E4E4E7;
    --text-secondary: #A1A1AA;
    --text-light: #71717A;
    --text-inverse: #0A0A0A;
}

/* Fond sombre pour le globe pendant le chargement (évite zone blanche) */
html.dark-mode .hero,
html.dark-mode .hero__globe-section,
html.dark-mode .hero__globe {
    background: #0A0A0A;
}

/* Overlay de transition en dark-mode (évite flash or lors changement de langue) */
html.dark-mode .page-entry-overlay {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 50%, #0A0A0A 100%);
}

/* Canvas du globe en dark-mode (évite zone blanche pendant chargement) */
html.dark-mode .hero__globe canvas,
html.dark-mode #globe-container canvas {
    background: #0A0A0A;
}

/* ==========================================
   Animations & Keyframes
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(232, 185, 35, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(232, 185, 35, 0.6);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(232, 185, 35, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(232, 185, 35, 0.8), 0 0 60px rgba(232, 185, 35, 0.4);
    }
}

@keyframes numberPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Particles container */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(9) { left: 90%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 16s; }

/* Numbers are styled without animation for better readability */

/* Accent text animation */
.hero__title-accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}


/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Stagger animation for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ==========================================
   Reset & Base
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: var(--text-inverse);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Anti-overflow sur conteneurs principaux */
.hero, .services, .process, .results, .faq, .contact, .guarantee, .footer, .marquee {
    overflow-x: hidden;
    max-width: 100%;
}

/* Forcer tous les éléments enfants à respecter leur conteneur */
section * {
    max-width: 100%;
}

/* ==========================================
   Announcement Bar
   ========================================== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--accent);
    color: var(--bg-dark);
    text-align: center;
    padding: 10px var(--space-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.announcement-bar__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.announcement-bar__text svg {
    flex-shrink: 0;
}

/* ==========================================
   Navigation
   ========================================== */
.nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-primary);
    transition: box-shadow 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 0 var(--border);
    padding: var(--space-sm) var(--space-lg);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    height: 36px;
    width: auto;
}

.nav__center {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.profile-switch {
    display: flex;
    gap: 4px;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 6px;
}

.profile-switch__btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    min-height: 44px;
}

.profile-switch__btn:hover { color: var(--text-primary); }

.profile-switch__btn.active {
    background: var(--accent);
    color: white;
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 6px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover { color: var(--text-primary); }

.lang-btn.active {
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dark-mode-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    color: var(--text-primary);
    background: var(--border);
}

.dark-mode-toggle .icon-moon { display: none; }
.dark-mode-toggle .icon-sun { display: block; }

body.dark-mode .dark-mode-toggle .icon-moon { display: block; }
body.dark-mode .dark-mode-toggle .icon-sun { display: none; }

.nav__cta {
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-inverse);
    background: var(--text-primary);
    border-radius: 8px;
    transition: all 0.4s var(--ease-out-expo);
}

.nav__cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav { padding: var(--space-sm) var(--space-md); }
    .nav__center, .nav__cta, .profile-switch { display: none; }
    .nav__burger { display: flex; }
}

@media (max-width: 1100px) {
    .profile-switch { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu content - styles moved to Mobile Audit section */

/* ==========================================
   Hero - Clean & Bold
   ========================================== */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg) var(--space-lg);
    padding-top: 160px;
    padding-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    width: fit-content;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Layout grille titre + globe */
.hero__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* Bloc texte (titre + description + CTA) */
.hero__text-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Globe + Stats regroupés */
.hero__globe-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: revealLine 1s var(--ease-out-expo) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.3s; }
.hero__title-line:nth-child(2) { animation-delay: 0.45s; }
.hero__title-line:nth-child(3) { animation-delay: 0.6s; }

.hero__title-accent {
    color: var(--accent);
}

@keyframes revealLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero__stats {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    justify-content: center;
}

.hero__stat {
    text-align: left;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    cursor: default;
    transition: transform 0.3s ease;
}

.hero__stat:hover {
    transform: translateY(-3px);
}

.hero__stat:nth-child(1) { animation-delay: 0.8s; }
.hero__stat:nth-child(2) { animation-delay: 0.95s; }

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    /* Nouveau dégradé doré plus marqué */
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Animation de flottement légère en continu */
    animation: floatNumber 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero__stat:nth-child(1) .hero__stat-number {
    animation-delay: 0s;
}

.hero__stat:nth-child(2) .hero__stat-number {
    animation-delay: 1s;
}

/* Animation de flottement subtile */
@keyframes floatNumber {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Effet au hover : mouvement plus prononcé */
.hero__stat:hover .hero__stat-number {
    animation: floatNumberHover 0.5s ease-in-out;
    transform: translateY(-8px) scale(1.05);
}

@keyframes floatNumberHover {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.08); }
    100% { transform: translateY(-8px) scale(1.05); }
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 8px;
}

.hero__cta {
    margin-top: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-inverse);
    background: var(--text-primary);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.hero__cta-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(232, 185, 35, 0.3);
}

.hero__cta-btn svg {
    transition: transform 0.3s ease;
}

.hero__cta-btn:hover svg {
    transform: translateX(4px);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.3s forwards;
}

.hero__scroll-line {
    width: 60px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Hero responsive moved to Mobile Audit section */

/* ==========================================
   Globe 3D Animation (Three.js)
   ========================================== */
.hero__globe {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

.hero__globe canvas {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

/* ==========================================
   Section Marquee
   ========================================== */
.marquee {
    padding: var(--space-lg) 0;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.marquee__track {
    display: flex;
    gap: 0;
    will-change: transform;
    animation: scrollMarquee var(--marquee-duration, 20s) linear infinite;
}

.marquee__track:hover {
    animation-play-state: paused;
}

.marquee__track--artist {
    display: flex;
}

.marquee__track--corporate {
    display: none;
}

.profile-corporate .marquee__track--artist {
    display: none;
}

.profile-corporate .marquee__track--corporate {
    display: flex;
}

.marquee__content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee__item {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    padding: 0 var(--space-md);
}

.marquee__separator {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes scrollMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(var(--scroll-distance, -50%)); }
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--space-2xl) var(--space-lg);
}

.services__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.services__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-top: var(--space-sm);
}

.services__intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    align-self: end;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--bg-secondary);
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-secondary);
    line-height: 1;
    margin-bottom: var(--space-md);
    transition: color 0.4s ease;
}

.service-card:hover .service-card__number {
    color: var(--accent);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.service-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 968px) {
    .services { padding: var(--space-xl) var(--space-md); }

    .services__header {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .services__grid {
        grid-template-columns: 1fr;
    }
}

/* Breakpoint intermédiaire 900px */
@media (max-width: 900px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   Process Section
   ========================================== */
.process {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.process__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.process__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.process__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.process__step {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    border: 1px solid var(--border-dark);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    background: transparent;
}

.process__step:hover {
    border-color: var(--accent);
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px rgba(232, 185, 35, 0.25);
    background: rgba(232, 185, 35, 0.05);
}

.process__step-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--border-dark);
    line-height: 1;
    margin-bottom: var(--space-md);
    transition: color 0.4s ease;
}

.process__step:hover .process__step-number {
    color: var(--accent);
}

.process__step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.process__step-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #B3B3B3;
}

.process__step-text strong {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 968px) {
    .process { padding: var(--space-xl) var(--space-md); }

    .process__steps {
        grid-template-columns: 1fr;
    }

    .process__step-number {
        font-size: 4rem;
    }
}

/* ==========================================
   Results Section
   ========================================== */
.results {
    padding: var(--space-2xl) var(--space-lg);
}

.results__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.results__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.results__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider__track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial {
    flex: 0 0 100%;
    padding: var(--space-lg);
    text-align: center;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.testimonial__quote::before {
    content: '"';
    color: var(--accent);
}

.testimonial__quote::after {
    content: '"';
    color: var(--accent);
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial__name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonials-slider__btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.testimonials-slider__btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonials-slider__dots {
    display: flex;
    gap: 8px;
}

.testimonials-slider__dot {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-slider__dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Témoignages par profil */
.testimonials-slider--artist {
    display: block;
}

.profile-corporate .results {
    display: none;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-secondary);
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.faq__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
    margin-bottom: 1px;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--accent);
}

.faq__question::-webkit-details-marker { display: none; }

.faq__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.faq__icon::before {
    width: 24px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq__icon::after {
    width: 2px;
    height: 24px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq__item[open] .faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq__item[open] .faq__question {
    color: var(--accent);
}

.faq__answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq__answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-dark);
    color: var(--text-inverse);
    text-align: center;
}

.contact__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.contact__text {
    font-size: 1.25rem;
    color: #B3B3B3;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--accent);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.contact__btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(232, 185, 35, 0.4);
}

.contact__email {
    display: block;
    margin-top: var(--space-lg);
    font-size: 1rem;
    color: #B3B3B3;
}

.contact__email a {
    color: var(--text-inverse);
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.contact__email a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Contact compact - espaces réduits */
.contact--compact {
    padding: var(--space-xl) var(--space-lg);
}

.contact--compact .contact__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-sm);
}

.contact--compact .contact__text {
    margin-bottom: var(--space-md);
}

.contact--compact .contact__email {
    margin-top: var(--space-md);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto var(--space-lg);
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo .logo-svg {
    height: 32px;
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 8px;
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__contact a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    max-width: 1400px;
    margin: 0 auto;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

.footer__legal a {
    font-size: 0.8125rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--accent);
}

@media (max-width: 968px) {
    .footer { padding: var(--space-lg) var(--space-md); }

    .footer__container {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ==========================================
   Animations & Scroll Reveal
   ========================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out-expo);
}

/* ==========================================
   Choice Page
   ========================================== */
.choice-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

/* Canvas des particules connectées */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Orbes lumineux flottants */
.choice-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.choice-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.choice-orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.choice-orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, transparent 70%);
    top: 60%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.choice-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -5%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.choice-orb--4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
    top: 20%;
    right: 15%;
    animation-delay: -15s;
    animation-duration: 18s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

/* Particules CSS décoratives */
.choice-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.choice-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s ease-in-out infinite;
}

.choice-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.choice-particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.choice-particle:nth-child(2) { top: 20%; left: 90%; animation-delay: 0.5s; }
.choice-particle:nth-child(3) { top: 40%; left: 3%; animation-delay: 1s; }
.choice-particle:nth-child(4) { top: 60%; left: 95%; animation-delay: 1.5s; }
.choice-particle:nth-child(5) { top: 80%; left: 8%; animation-delay: 2s; }
.choice-particle:nth-child(6) { top: 90%; left: 85%; animation-delay: 2.5s; }
.choice-particle:nth-child(7) { top: 15%; left: 70%; animation-delay: 0.3s; }
.choice-particle:nth-child(8) { top: 35%; left: 15%; animation-delay: 0.8s; }
.choice-particle:nth-child(9) { top: 55%; left: 80%; animation-delay: 1.3s; }
.choice-particle:nth-child(10) { top: 75%; left: 25%; animation-delay: 1.8s; }
.choice-particle:nth-child(11) { top: 5%; left: 45%; animation-delay: 2.3s; }
.choice-particle:nth-child(12) { top: 95%; left: 55%; animation-delay: 2.8s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }
}

.choice {
    width: 100%;
    max-width: 700px;
    padding: var(--space-md);
    position: relative;
    z-index: 10;
}

.choice__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.35s forwards;
}

.choice__lang {
    display: flex;
    gap: 6px;
}

.choice__lang .lang-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.choice__lang .lang-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--accent);
}

.choice__lang .lang-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.choice__darkmode {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
}

.choice__darkmode:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.choice__darkmode .icon-moon {
    display: none;
}

body.dark-mode .choice__darkmode .icon-sun {
    display: none;
}

body.dark-mode .choice__darkmode .icon-moon {
    display: block;
}

body.dark-mode .choice__darkmode {
    background: rgba(255, 255, 255, 0.05);
    border-color: #27272A;
    color: #A1A1AA;
}

body.dark-mode .choice__darkmode:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

body.dark-mode .choice__lang .lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: #27272A;
    color: #71717A;
}

body.dark-mode .choice__lang .lang-btn:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--accent);
    color: #E4E4E7;
}

body.dark-mode .choice__lang .lang-btn.active {
    background: var(--accent);
    color: #1A1A1A;
    border-color: var(--accent);
}

.choice__container {
    text-align: center;
}

.choice__logo {
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s forwards;
}

.choice__logo .logo-svg {
    height: 36px;
    width: auto;
    margin: 0 auto;
}

.choice__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.choice__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.choice__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.choice__card {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: left;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.choice__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.choice__card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.choice__card:hover::before {
    transform: scaleX(1);
}

.choice__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    transition: all 0.4s var(--ease-out-expo);
}

.choice__card-icon svg {
    width: 28px;
    height: 28px;
}

.choice__card:hover .choice__card-icon {
    background: var(--accent);
    color: white;
}

.choice__card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.choice__card-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.choice__card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.choice__card-arrow svg {
    width: 16px;
    height: 16px;
}

.choice__card:hover .choice__card-arrow {
    background: var(--accent);
    color: white;
    transform: translateX(4px);
}

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

    .choice__controls {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
    }

    .choice__lang {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 0;
        justify-content: center;
        display: flex;
        align-items: stretch;
    }

    .choice__lang .lang-btn {
        height: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
    }

    .choice__darkmode {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
    }
}

/* ==========================================
   Guarantee Section
   ========================================== */
.guarantee {
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-align: center;
}

.guarantee__content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.guarantee__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.guarantee__text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: var(--space-lg);
}

.guarantee__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.guarantee__stat {
    text-align: center;
    padding: var(--space-md);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.guarantee__stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.guarantee__stat-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    animation: statPulse 2s ease-in-out infinite;
}

.guarantee__stat:nth-child(1) .guarantee__stat-value {
    animation-delay: 0s;
}

.guarantee__stat:nth-child(2) .guarantee__stat-value {
    animation-delay: 0.5s;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.guarantee__stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    display: block;
    color: white;
}

@media (max-width: 768px) {
    .guarantee {
        padding: var(--space-lg) var(--space-md);
    }

    .guarantee__stats {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ==========================================
   Hero Guarantee Badge
   ========================================== */
.hero__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    margin-top: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1s forwards;
}

.hero__guarantee svg {
    flex-shrink: 0;
}

/* ==========================================
   Profile Adaptive Content
   ========================================== */
/* Default = artist profile */
.content--corporate { display: none; }
.content--artist { display: block; }


/* Corporate profile overrides */
.profile-corporate .content--artist { display: none; }
.profile-corporate .content--corporate { display: block; }

/* For inline elements */
.content-inline--corporate { display: none; }
.content-inline--artist { display: inline; }

.profile-corporate .content-inline--artist { display: none; }
.profile-corporate .content-inline--corporate { display: inline; }

/* For flex items in marquee */
.marquee__item--corporate { display: none; }
.marquee__item--artist { display: inline; }

.profile-corporate .marquee__item--artist { display: none; }
.profile-corporate .marquee__item--corporate { display: inline; }

/* ==========================================
   Logo Image Styles
   ========================================== */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer__logo .logo-img {
    height: 32px;
}

.choice__logo .logo-img {
    height: 36px;
    margin: 0 auto;
}

/* Adaptation du logo en dark mode si nécessaire */
body.dark-mode .logo-img {
    /* Le logo a un fond transparent, pas besoin de filtre */
}

/* ==========================================
   Dark Mode - Black & Gold
   ========================================== */
body.dark-mode {
    --bg-primary: #0A0A0A;
    --bg-secondary: #141414;
    --bg-dark: #000000;
    --text-primary: #E4E4E7;
    --text-secondary: #A1A1AA;
    --text-light: #71717A;
    --text-inverse: #0A0A0A;
    --border: #27272A;
    --border-dark: #3F3F46;
}

body.dark-mode .nav { background: #0A0A0A; }
body.dark-mode .nav.scrolled { box-shadow: 0 1px 0 #27272A; }
body.dark-mode .faq { background: #141414; }
body.dark-mode .faq__item { background: #0A0A0A; }
body.dark-mode .faq__question { color: #E4E4E7; }
body.dark-mode .faq__answer p { color: #A1A1AA; }
body.dark-mode .service-card { background: #0A0A0A; }
body.dark-mode .service-card:hover { background: #141414; }
body.dark-mode .service-card__number { color: #3F3F46; }
body.dark-mode .service-card__title { color: #E4E4E7; }
body.dark-mode .service-card__text { color: #A1A1AA; }
body.dark-mode .services__title { color: #E4E4E7; }
body.dark-mode .services__intro { color: #A1A1AA; }
body.dark-mode .results__title { color: #E4E4E7; }
body.dark-mode .results__text { color: #A1A1AA; }
body.dark-mode .testimonial__quote { color: #E4E4E7; }
body.dark-mode .testimonial__name { color: #E4E4E7; }
body.dark-mode .testimonial__role { color: #71717A; }
body.dark-mode .process { background: #000000; }
body.dark-mode .process__title { color: #E4E4E7; }
body.dark-mode .process__step { background: #0A0A0A; }
body.dark-mode .process__step-number { color: var(--accent); }
body.dark-mode .process__step-title { color: #E4E4E7; }
body.dark-mode .process__step-text { color: #A1A1AA; }
body.dark-mode .contact { background: #000000; }
body.dark-mode .contact__title { color: #E4E4E7; }
body.dark-mode .contact__text { color: #A1A1AA; }
body.dark-mode .contact__email { color: #A1A1AA; }
body.dark-mode .contact__email a { color: var(--accent); border-color: var(--accent); }
body.dark-mode .footer { background: #0A0A0A; border-top-color: #27272A; }
body.dark-mode .footer__text { color: #71717A; }
body.dark-mode .footer__link { color: #A1A1AA; }
body.dark-mode .marquee { background: #141414; }
body.dark-mode .marquee__item { color: #A1A1AA; }
body.dark-mode .lang-switch { background: #141414; }
body.dark-mode .lang-btn { color: #71717A; }
body.dark-mode .lang-btn:hover { color: #E4E4E7; }
body.dark-mode .lang-btn.active { background: var(--accent); color: #1A1A1A; }
body.dark-mode .profile-switch { background: #141414; }
body.dark-mode .profile-switch__btn { color: #71717A; }
body.dark-mode .profile-switch__btn:hover { color: #E4E4E7; }
body.dark-mode .profile-switch__btn.active { background: var(--accent); color: #0A0A0A; }
body.dark-mode .dark-mode-toggle { background: #141414; color: #71717A; }
body.dark-mode .dark-mode-toggle:hover { color: #E4E4E7; }
body.dark-mode .hero__badge { background: #141414; color: #A1A1AA; }
body.dark-mode .hero__stat-label { color: #71717A; }
body.dark-mode .hero__stat-value { color: #E4E4E7; }
body.dark-mode .hero__description { color: #A1A1AA; }
body.dark-mode .hero__title { color: #E4E4E7; }
body.dark-mode .choice-page { background: #0A0A0A; }
body.dark-mode .choice__lang { background: rgba(20, 20, 20, 0.95); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
body.dark-mode .choice__title { color: #E4E4E7; }
body.dark-mode .choice__subtitle { color: #A1A1AA; }
body.dark-mode .choice__card { background: #0A0A0A; border-color: #27272A; }
body.dark-mode .choice__card:hover { border-color: var(--accent); }
body.dark-mode .choice__card-title { color: #E4E4E7; }
body.dark-mode .choice__card-text { color: #A1A1AA; }
body.dark-mode .choice__card-icon { background: #141414; }
body.dark-mode .choice__card-arrow { background: #141414; }

/* Labels et sections additionnelles */
body.dark-mode .services__label { color: var(--accent); }
body.dark-mode .process__label { color: var(--accent); }
body.dark-mode .results__label { color: var(--accent); }
body.dark-mode .faq__label { color: var(--accent); }
body.dark-mode .faq__title { color: #E4E4E7; }
body.dark-mode .contact__label { color: var(--accent); }
body.dark-mode .guarantee { background: linear-gradient(135deg, var(--accent-dark) 0%, #A67C00 100%); }
body.dark-mode .guarantee__title { color: white; }
body.dark-mode .guarantee__text { color: rgba(255,255,255,0.9); }
body.dark-mode .guarantee__icon { color: white; }
body.dark-mode .guarantee__stat-value { color: white; }
body.dark-mode .guarantee__stat-label { color: rgba(255,255,255,0.9); }
body.dark-mode .legal { background: #0A0A0A; }
body.dark-mode .legal__title { color: #E4E4E7; }
body.dark-mode .legal__intro { color: #A1A1AA; }
body.dark-mode .legal__section h2 { color: #E4E4E7; }
body.dark-mode .legal__section p { color: #A1A1AA; }
body.dark-mode .legal__section li { color: #A1A1AA; }

/* Print */
@media print {
    .nav, .contact, .footer__contact, .theme-switcher { display: none; }
}

/* ==========================================
   RESPONSIVE MOBILE - CALIBRAGE COMPLET
   ========================================== */

/* ===================
   TABLETTE (768px - 968px)
   =================== */
@media (max-width: 968px) {
    /* Touch Targets */
    .profile-switch__btn {
        padding: 10px 16px;
        min-height: 44px;
    }

    .lang-btn {
        padding: 10px 16px;
        min-height: 44px;
    }

    /* Navigation */
    .nav {
        padding: var(--space-sm) var(--space-md);
    }

    /* Hero */
    .hero {
        padding: var(--space-lg) var(--space-md);
        padding-top: 140px;
    }

    .hero__main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero__text-block {
        text-align: center;
        align-items: center;
        order: 1;
    }

    .hero__globe-section {
        order: 0;
        gap: var(--space-md);
    }

    .hero__globe {
        height: 320px;
    }

    .hero__title {
        font-size: clamp(2.25rem, 7vw, 3.5rem);
    }

    .hero__description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero__stats {
        flex-direction: row;
        gap: var(--space-lg);
        justify-content: center;
    }

    .hero__stat {
        text-align: center;
    }

    .hero__stat-number {
        font-size: 2.5rem;
    }

    .hero__cta-btn {
        padding: 16px 32px;
    }

    /* Sections */
    .services {
        padding: var(--space-xl) var(--space-md);
    }

    .process {
        padding: var(--space-xl) var(--space-md);
    }

    .results {
        padding: var(--space-xl) var(--space-md);
    }

    .faq {
        padding: var(--space-xl) var(--space-md);
    }

    .contact {
        padding: var(--space-xl) var(--space-md);
    }

    .guarantee {
        padding: var(--space-lg) var(--space-md);
    }
}

/* ===================
   MOBILE (480px - 768px)
   =================== */
@media (max-width: 768px) {
    /* Variables adaptatives mobile */
    :root {
        --space-xs: 0.5rem;
        --space-sm: 0.75rem;
        --space-md: 1rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }

    /* Announcement Bar */
    .announcement-bar {
        padding: 8px var(--space-sm);
        font-size: 0.75rem;
    }

    .announcement-bar__text {
        gap: 6px;
    }

    .announcement-bar__text svg {
        width: 14px;
        height: 14px;
    }

    /* Navigation */
    .nav {
        top: 32px;
        padding: var(--space-sm);
    }

    .nav.scrolled {
        padding: 12px var(--space-sm);
    }

    /* Hero */
    .hero {
        padding: var(--space-md) var(--space-sm);
        padding-top: 120px;
        padding-bottom: var(--space-md);
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: var(--space-sm);
    }

    .hero__main {
        gap: var(--space-md);
    }

    .hero__globe {
        height: 250px;
    }

    .hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .hero__description {
        font-size: 0.9375rem;
        line-height: 1.6;
        padding: 0;
    }

    .hero__stats {
        gap: var(--space-md);
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .hero__stat-label {
        font-size: 0.75rem;
    }

    .hero__cta {
        margin-top: var(--space-sm);
    }

    .hero__cta-btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    /* Marquee */
    .marquee {
        padding: var(--space-md) 0;
    }

    .marquee__item {
        font-size: 1.125rem;
        padding: 0 var(--space-sm);
    }

    .marquee__separator {
        width: 6px;
        height: 6px;
    }

    /* Process */
    .process {
        padding: var(--space-lg) var(--space-sm);
    }

    .process__header {
        margin-bottom: var(--space-lg);
    }

    .process__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .process__steps {
        gap: var(--space-sm);
    }

    .process__step {
        padding: var(--space-md);
    }

    .process__step-number {
        font-size: 3rem;
        margin-bottom: var(--space-sm);
    }

    .process__step-title {
        font-size: 1.25rem;
    }

    .process__step-text {
        font-size: 0.875rem;
    }

    /* Results / Testimonials */
    .results {
        padding: var(--space-lg) var(--space-sm);
    }

    .results__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .testimonial {
        padding: var(--space-md);
    }

    .testimonial__quote {
        font-size: clamp(1.125rem, 4vw, 1.5rem);
    }

    .testimonials-slider__btn {
        width: 44px;
        height: 44px;
    }

    /* Guarantee */
    .guarantee {
        padding: var(--space-lg) var(--space-sm);
    }

    .guarantee__title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .guarantee__text {
        font-size: 1rem;
    }

    .guarantee__stats {
        flex-direction: row;
        gap: var(--space-sm);
        flex-wrap: wrap;
        justify-content: center;
    }

    .guarantee__stat {
        padding: var(--space-sm);
        flex: 1;
        min-width: 140px;
    }

    .guarantee__stat-value {
        font-size: 2rem;
    }

    .guarantee__stat-label {
        font-size: 0.8125rem;
    }

    /* FAQ */
    .faq {
        padding: var(--space-lg) var(--space-sm);
    }

    .faq__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .faq__question {
        padding: var(--space-sm);
        font-size: 1rem;
    }

    .faq__answer {
        padding: 0 var(--space-sm) var(--space-sm);
    }

    .faq__answer p {
        font-size: 0.9375rem;
    }

    /* Contact */
    .contact {
        padding: var(--space-lg) var(--space-sm);
    }

    .contact__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .contact__text {
        font-size: 1rem;
        max-width: 100%;
        padding: 0;
    }

    .contact__btn {
        padding: 18px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .contact__email {
        font-size: 0.875rem;
    }

    /* Footer */
    .footer {
        padding: var(--space-lg) var(--space-sm);
    }

    .footer__links {
        gap: var(--space-sm);
    }

    .footer__links a {
        font-size: 0.8125rem;
    }

    .footer__legal {
        gap: var(--space-sm);
    }
}

/* ===================
   PETIT MOBILE (< 480px)
   =================== */
@media (max-width: 480px) {
    /* Variables adaptées petit mobile */
    :root {
        --space-xs: 0.25rem;
        --space-sm: 1rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
    }

    /* Announcement Bar */
    .announcement-bar {
        font-size: 0.6875rem;
        padding: 6px var(--space-xs);
    }

    /* Navigation */
    .nav {
        top: 28px;
    }

    .logo-img {
        height: 32px;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
    }

    .hero__badge {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }

    .hero__globe {
        height: 200px;
    }

    .hero__title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }

    .hero__description {
        font-size: 0.875rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero__stat-number {
        font-size: 1.75rem;
    }

    .hero__stat-label {
        font-size: 0.6875rem;
    }

    .hero__cta-btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .hero__scroll {
        display: none;
    }

    /* Process */
    .process__step-number {
        font-size: 2.5rem;
    }

    .process__step-title {
        font-size: 1.125rem;
    }

    /* Guarantee */
    .guarantee__stats {
        flex-direction: column;
    }

    .guarantee__stat {
        width: 100%;
    }

    .guarantee__stat-value {
        font-size: 1.75rem;
    }

    /* Testimonials */
    .testimonial__quote {
        font-size: 1rem;
    }

    /* Contact */
    .contact__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .contact__btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    /* Choice Page */
    .choice {
        padding: var(--space-sm);
    }

    .choice__title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .choice__card {
        padding: var(--space-sm);
    }

    .choice__card-icon {
        width: 48px;
        height: 48px;
    }

    .choice__card-icon svg {
        width: 24px;
        height: 24px;
    }

    .choice__card-title {
        font-size: 1rem;
    }

    .choice__card-text {
        font-size: 0.75rem;
    }
}

/* Mobile menu styles */
.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    width: 100%;
    max-width: 320px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 8px 0;
    text-align: center;
}

.mobile-menu__link:hover {
    color: var(--accent);
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

/* Mobile menu profile switch */
.mobile-menu__profile-switch {
    display: flex;
    gap: 8px;
    margin-top: var(--space-lg);
    padding: 4px;
    background: var(--bg-secondary);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.mobile-menu.active .mobile-menu__profile-switch {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__profile-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    min-height: 44px;
}

.mobile-menu__profile-btn:hover {
    color: var(--text-primary);
}

.mobile-menu__profile-btn.active {
    background: var(--accent);
    color: white;
}

/* Mobile menu CTA */
.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-inverse);
    background: var(--text-primary);
    border-radius: 8px;
    transition: all 0.4s var(--ease-out-expo);
    min-height: 44px;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-menu__cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.mobile-menu__cta:hover {
    background: var(--accent);
}

/* Mobile menu lang switch */
.mobile-menu__lang {
    display: flex;
    gap: 8px;
    margin-top: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
}

.mobile-menu.active .mobile-menu__lang {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__lang .lang-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
    min-height: 40px;
}

body.dark-mode .mobile-menu__lang .lang-btn {
    color: #71717A;
}

body.dark-mode .mobile-menu__lang .lang-btn:hover {
    color: var(--accent);
}

body.dark-mode .mobile-menu__lang .lang-btn.active {
    background: var(--accent);
    color: #1A1A1A;
}

body.dark-mode .mobile-menu__profile-switch {
    background: #141414;
}

body.dark-mode .mobile-menu__profile-btn {
    color: #71717A;
}

body.dark-mode .mobile-menu__profile-btn:hover {
    color: #E4E4E7;
}

body.dark-mode .mobile-menu__profile-btn.active {
    background: var(--accent);
    color: #0A0A0A;
}

/* ==========================================
   TRANSITION ANIMATIONS - CHOICE PAGE
   ========================================== */

/* Overlay de transition */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.transition-overlay.active {
    pointer-events: all;
}

/* ===== ANIMATION ARTISTE - Thème Musical ===== */

/* Notes de musique flottantes */
@keyframes musicNoteFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    15% {
        opacity: 1;
        transform: translateY(-20px) scale(1) rotate(var(--rotate, 10deg));
    }
    100% {
        opacity: 0;
        transform: translateY(-150px) translateX(var(--drift, 30px)) scale(0.3) rotate(var(--rotate-end, 45deg));
    }
}

/* Ondes sonores */
@keyframes soundWave {
    0% {
        transform: scale(0);
        opacity: 0.8;
        border-width: 4px;
    }
    100% {
        transform: scale(4);
        opacity: 0;
        border-width: 1px;
    }
}

/* Pulsation du bouton artiste */
@keyframes artistPulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(0.98); }
    75% { transform: scale(1.03); }
}

/* Overlay artiste (violet/rose) */
@keyframes artistOverlay {
    0% {
        clip-path: circle(0% at var(--cx, 50%) var(--cy, 50%));
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        clip-path: circle(150% at var(--cx, 50%) var(--cy, 50%));
        opacity: 1;
    }
}

/* Conteneur des notes de musique */
.music-notes-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Note de musique individuelle */
.music-note {
    position: absolute;
    font-size: 2rem;
    color: #E8B923;
    animation: musicNoteFloat 0.8s var(--ease-out-expo) forwards;
    filter: drop-shadow(0 0 10px rgba(232, 185, 35, 0.5));
    z-index: 10001;
}

.music-note:nth-child(1) { --drift: -40px; --rotate: -15deg; --rotate-end: -60deg; animation-delay: 0ms; }
.music-note:nth-child(2) { --drift: 50px; --rotate: 20deg; --rotate-end: 80deg; animation-delay: 50ms; }
.music-note:nth-child(3) { --drift: -20px; --rotate: 10deg; --rotate-end: -45deg; animation-delay: 100ms; }
.music-note:nth-child(4) { --drift: 30px; --rotate: -25deg; --rotate-end: 70deg; animation-delay: 150ms; }
.music-note:nth-child(5) { --drift: -60px; --rotate: 15deg; --rotate-end: -90deg; animation-delay: 200ms; }
.music-note:nth-child(6) { --drift: 70px; --rotate: -10deg; --rotate-end: 60deg; animation-delay: 100ms; }
.music-note:nth-child(7) { --drift: 0px; --rotate: 30deg; --rotate-end: -30deg; animation-delay: 150ms; }

/* Onde sonore */
.sound-wave {
    position: absolute;
    border-radius: 50%;
    border: 4px solid #E8B923;
    animation: soundWave 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 10000;
}

.sound-wave:nth-child(1) { animation-delay: 0ms; }
.sound-wave:nth-child(2) { animation-delay: 100ms; border-color: #FFD43B; }
.sound-wave:nth-child(3) { animation-delay: 200ms; border-color: #C9981A; }

/* Overlay artiste gradient */
.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8B923 0%, #FFD43B 50%, #E8B923 100%);
    animation: artistOverlay 0.7s var(--ease-out-expo) forwards;
    z-index: 9999;
}

/* ===== ANIMATION ENTREPRISE - Thème Corporate ===== */

/* Blocs géométriques qui s'élèvent */
@keyframes blockRise {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(var(--block-rotate, 5deg));
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0.2) rotate(var(--block-rotate-end, 15deg));
    }
}

/* Lignes de grille qui pulsent */
@keyframes gridLine {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Ripple doré */
@keyframes corporateRipple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(5);
        opacity: 0;
    }
}

/* Overlay corporate (doré/bleu) */
@keyframes corporateOverlay {
    0% {
        clip-path: circle(0% at var(--cx, 50%) var(--cy, 50%));
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        clip-path: circle(150% at var(--cx, 50%) var(--cy, 50%));
        opacity: 1;
    }
}

/* Pulsation du bouton entreprise */
@keyframes corporatePulse {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.03); }
    50% { transform: scale(0.98); }
    75% { transform: scale(1.02); }
}

/* Conteneur des blocs */
.blocks-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Bloc géométrique individuel */
.corporate-block {
    position: absolute;
    background: linear-gradient(135deg, #E8B923 0%, #FFD43B 100%);
    animation: blockRise 0.8s var(--ease-out-expo) forwards;
    box-shadow: 0 4px 20px rgba(232, 185, 35, 0.4);
    z-index: 10001;
}

.corporate-block:nth-child(1) { width: 20px; height: 20px; --block-rotate: 15deg; --block-rotate-end: 45deg; animation-delay: 0ms; }
.corporate-block:nth-child(2) { width: 15px; height: 30px; --block-rotate: -10deg; --block-rotate-end: -30deg; animation-delay: 50ms; }
.corporate-block:nth-child(3) { width: 25px; height: 15px; --block-rotate: 8deg; --block-rotate-end: 25deg; animation-delay: 100ms; }
.corporate-block:nth-child(4) { width: 18px; height: 18px; --block-rotate: -15deg; --block-rotate-end: -50deg; animation-delay: 150ms; }
.corporate-block:nth-child(5) { width: 12px; height: 25px; --block-rotate: 20deg; --block-rotate-end: 60deg; animation-delay: 80ms; }
.corporate-block:nth-child(6) { width: 22px; height: 12px; --block-rotate: -5deg; --block-rotate-end: -20deg; animation-delay: 120ms; }

/* Ripple doré */
.corporate-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 185, 35, 0.4) 0%, transparent 70%);
    animation: corporateRipple 0.7s ease-out forwards;
    pointer-events: none;
    z-index: 10000;
}

.corporate-ripple:nth-child(1) { animation-delay: 0ms; }
.corporate-ripple:nth-child(2) { animation-delay: 150ms; }

/* Grille SVG */
.grid-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
}

.grid-line {
    stroke: #E8B923;
    stroke-width: 1;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: gridLine 0.5s ease-out forwards;
}

.grid-line:nth-child(odd) { animation-delay: 0ms; stroke: #C9981A; }
.grid-line:nth-child(even) { animation-delay: 100ms; }

/* Overlay corporate gradient */
.corporate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8B923 0%, #FFD43B 50%, #E8B923 100%);
    animation: corporateOverlay 0.7s var(--ease-out-expo) forwards;
    z-index: 9999;
}

/* Animation du bouton cliqué */
.choice__card.animating-artist {
    animation: artistPulse 0.3s ease-out;
}

.choice__card.animating-corporate {
    animation: corporatePulse 0.3s ease-out;
}

/* ===== TRANSITION D'ENTRÉE PAGE ===== */

/* Overlay plein écran pour transition fluide depuis choice.html */
.page-entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8B923 0%, #FFD43B 50%, #E8B923 100%);
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* État quand pas de transition - cacher immédiatement */
html:not(.page-entering) .page-entry-overlay {
    display: none;
}

/* Animation de fade-out de l'overlay */
.page-entry-overlay.fade-out {
    opacity: 0;
}

/* Keyframe alternative pour effet de révélation circulaire */
@keyframes pageReveal {
    0% {
        clip-path: circle(150% at 50% 50%);
        opacity: 1;
    }
    100% {
        clip-path: circle(0% at 50% 50%);
        opacity: 0;
    }
}

/* Responsive - Réduction des animations sur mobile */
@media (max-width: 768px) {
    .music-note {
        font-size: 1.5rem;
    }

    .corporate-block {
        transform: scale(0.8);
    }

    @keyframes musicNoteFloat {
        100% {
            transform: translateY(-100px) translateX(var(--drift, 20px)) scale(0.3) rotate(var(--rotate-end, 45deg));
        }
    }

    @keyframes blockRise {
        100% {
            transform: translateY(-80px) scale(0.2) rotate(var(--block-rotate-end, 15deg));
        }
    }
}

/* Préférence de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .music-note,
    .sound-wave,
    .corporate-block,
    .corporate-ripple,
    .artist-overlay,
    .corporate-overlay,
    .grid-line {
        animation-duration: 0.01ms !important;
    }

    .page-entry-overlay {
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   HOVER STATES - Tactile Support
   ========================================== */
@media (hover: hover) {
    .hero__stat:hover {
        transform: translateY(-3px);
    }

    .testimonials-slider__btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .nav__link:hover {
        color: var(--text-primary);
    }

    .nav__link:hover::after {
        width: 100%;
    }

    .nav__cta:hover {
        background: var(--accent);
        transform: translateY(-2px);
    }

    .hero__cta-btn:hover {
        background: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(232, 185, 35, 0.3);
    }

    .hero__cta-btn:hover svg {
        transform: translateX(4px);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        background: var(--bg-secondary);
    }

    .service-card:hover .service-card__number {
        color: var(--accent);
    }

    .process__step:hover {
        border-color: var(--accent);
        transform: translateY(-12px) !important;
        box-shadow: 0 25px 50px rgba(232, 185, 35, 0.25);
        background: rgba(232, 185, 35, 0.05);
    }

    .process__step:hover .process__step-number {
        color: var(--accent);
    }

    .faq__question:hover {
        color: var(--accent);
    }

    .contact__btn:hover {
        background: var(--accent-light);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(232, 185, 35, 0.4);
    }

    .footer__links a:hover {
        color: var(--accent);
    }

    .footer__contact a:hover {
        color: var(--accent);
    }

    .footer__legal a:hover {
        color: var(--accent);
    }

    .choice__card:hover {
        border-color: var(--accent);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .choice__card:hover::before {
        transform: scaleX(1);
    }

    .choice__card:hover .choice__card-icon {
        background: var(--accent);
        color: white;
    }

    .choice__card:hover .choice__card-arrow {
        background: var(--accent);
        color: white;
        transform: translateX(4px);
    }

    .guarantee__stat:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
    }

    .mobile-menu__link:hover {
        color: var(--accent);
    }

    .mobile-menu__cta:hover {
        background: var(--accent);
    }

    .mobile-menu__profile-btn:hover {
        color: var(--text-primary);
    }
}
