.elementor-5 .elementor-element.elementor-element-a2cc6d3{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5 .elementor-element.elementor-element-88c7b86{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-5 .elementor-element.elementor-element-acbba17{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5 .elementor-element.elementor-element-52bd2a0{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5 .elementor-element.elementor-element-f83a614{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5 .elementor-element.elementor-element-a082ec5{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* 
╔═══════════════════════════════════════════════════════════════════════════════
║                                                                               ║
║                         ZENDERWEB - MASTER CSS FILE                          ║
║                     Architecture Modulaire & Professionnelle                 ║
║                                                                               ║
╚═══════════════════════════════════════════════════════════════════════════════

📋 TABLE DES MATIÈRES (Ctrl+F pour navigation rapide)
────────────────────────────────────────────────────────────────────────────────

    [VAR]    → 1. VARIABLES GLOBALES
    [RESET]  → 2. RESET & BASE STYLES
    [ANIM]   → 3. ANIMATIONS GLOBALES
    [UTIL]   → 4. UTILITIES

    [HERO]   → 5. SECTION HERO (Section 1)
    [LOGOS]  → 6. SECTION LOGOS/SPÉCIALISATIONS
    [SERV]   → 7. SECTION SERVICES (4 cartes)
    [PROC]   → 8. SECTION PROCESS (Section 2)
    [OFFER]  → 9. SECTION OFFERS (Section 3)
    [PREM]   → 10. SECTION PREMIUM (Section 4)

    [RESP]   → 11. RESPONSIVE (Tous les breakpoints)

────────────────────────────────────────────────────────────────────────────────
*/


/* ═══════════════════════════════════════════════════════════════════════════
   [VAR] 1. VARIABLES GLOBALES
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Couleurs principales */
    --primary: #5AA8FF;
    --accent: #79E0C2;
    --purple: #8B5CF6;
    --gold: #FFB84D;
    --gold-light: #FFC978;
    --silver: #94A3B8;
    --premium-purple: #A855F7;
    
    /* Backgrounds */
    --dark: #0A0E14;
    --dark-card: #151B24;
    --dark-panel: #0B101A;
    --dark-panel-alt: #141B2E;
    
    /* Texte */
    --text: #E8EEF5;
    --text-dim: #9CA3AF;
    --text-secondary: #A5B4D5;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    
    /* Transitions */
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    
    /* CTA Hover Color - NOUVELLE COULEUR PREMIUM */
    --cta-hover-text: #67e8f9;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [RESET] 2. RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    overflow-x: hidden;
    background: #0a0e27;
    width: 100%;
    margin: 0;
    padding: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    position: relative;
    min-height: 100vh;
}

.block-layout, 
.block-layout--layout {
    max-width: none !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [ANIM] 3. ANIMATIONS GLOBALES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Animations de base */
@keyframes fadeUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeUpScale {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations de gradient */
@keyframes gradientShift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, 5%) scale(1.1); }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientFlowFast {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animations de rotation */
@keyframes rotate {
    to { transform: rotate(360deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Animations de float/hover */
@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes wavesMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Animations de particules */
@keyframes particleFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) translateX(30px) rotate(360deg);
        opacity: 0;
    }
}

/* Animations wave effect */
@keyframes zw-wave-rise {
    0% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-12px) scale(1.15); }
    60% { transform: translateY(-12px) scale(1.15); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes letterWave {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-3px) scale(1.08) rotateZ(3deg);
    }
    50% {
        transform: translateY(-5px) scale(1.12) rotateZ(0deg);
    }
    75% {
        transform: translateY(-3px) scale(1.08) rotateZ(-3deg);
    }
}

/* Animations de glow/pulse */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(6, 182, 212, 0.5); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 18px rgba(6, 182, 212, 0.7); 
    }
}

@keyframes zw-halo-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Animations d'underline */
@keyframes zw-underline-draw {
    0% { width: 0%; opacity: 0; }
    100% { width: 100%; max-width: 400px; opacity: 1; }
}

/* Animations de lettres (Hero) */
@keyframes letterExitRight {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(120px) rotate(8deg);
        opacity: 0;
    }
}

@keyframes letterEnterLeft {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleTransition {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.98);
        opacity: 0.95;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animations orbit/border */
@keyframes orbitBorder {
    0% {
        top: 0;
        left: 50%;
        transform: translate(-50%, -4px);
    }
    25% {
        top: 50%;
        left: calc(100% + 4px);
        transform: translate(-50%, -50%);
    }
    50% {
        top: calc(100% + 4px);
        left: 50%;
        transform: translate(-50%, -50%);
    }
    75% {
        top: 50%;
        left: -4px;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 0;
        left: 50%;
        transform: translate(-50%, -4px);
    }
}

@keyframes rotateBorderLight {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}

/* Animations flow particles (Offers) */
@keyframes flowFromLeft {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateX(50vw) translateY(var(--flow-y));
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateX(50vw) translateY(calc(var(--flow-y) + 20px));
    }
}

@keyframes flowFromRight {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50vw) translateY(var(--flow-y));
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateX(-50vw) translateY(calc(var(--flow-y) + 20px));
    }
}

/* Animations premium section */
@keyframes zw-icon-breathe {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05) rotate(3deg);
        opacity: 0.95;
    }
}

@keyframes zw-icon-spin-360 {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1.15) rotate(360deg); }
}

@keyframes zw-card-reveal {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes zw-border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animations gauge premium */
@keyframes zw-particle-flow-premium {
    0% {
        opacity: 0;
        left: 7.5%;
        top: 83.3%;
        transform: scale(0.4);
    }
    5% {
        opacity: 1;
        transform: scale(0.8);
    }
    15% {
        left: 17%;
        top: 73%;
        transform: scale(1);
    }
    25% {
        left: 27.5%;
        top: 64.6%;
        transform: scale(1.1);
    }
    40% {
        left: 42%;
        top: 45%;
        transform: scale(1.2);
    }
    55% {
        left: 57%;
        top: 33%;
        transform: scale(1.3);
    }
    70% {
        left: 72%;
        top: 20%;
        transform: scale(1.4);
    }
    82% {
        left: 82%;
        top: 12.5%;
        transform: scale(1.5);
    }
    92% {
        opacity: 1;
        left: 92.5%;
        top: 8.3%;
        transform: scale(1.6);
    }
    100% {
        left: 92.5%;
        top: 8.3%;
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes zw-power-sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes zw-power-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes zw-power-pulse-2 {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   [UTIL] 4. UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */



/* Force la transition logo - ACCUEIL FIX */
.zw-logo-static {
    position: relative;
    z-index: 2 !important;
    opacity: 1 !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.zw-logo-animated {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.zw-logo-link:hover .zw-logo-static {
    opacity: 0 !important;
}

.zw-logo-link:hover .zw-logo-animated {
    opacity: 1 !important;
}




/* Text utilities */
.zw-no-break,
.hero-micro-text,
.hero-title,
.hero-subtitle,
.card-title,
.card-description,
.services-title,
.services-subtitle,
.social-proof-text,
.floating-tag,
.logos-title,
.zw-main-title,
.zw-subtitle,
.zw-intro-text,
.zw-card-title,
.zw-card-text {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* Animation utilities */
.zw-animate-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.zw-animate-fade.zw-visible {
    opacity: 1;
    transform: translateY(0);
}

/* GPU Acceleration */
.zw-gpu-accelerate,
.offer-card,
.service-card,
.zw-advantage-card,
.zw-icon-wrapper,
.hero-title .zw-letter {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [HERO] 5. SECTION HERO (Section 1)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Container principal */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(139, 92, 246, 0.1), transparent),
        linear-gradient(135deg, #0a0e27 0%, #151a3d 25%, #1a1147 50%, #151a3d 75%, #0f0a2e 100%);
    background-size: 100% 100%;
    background-position: center center;
    overflow: hidden;
    padding: 40px 40px 30px;
    margin: 0;
    max-width: none !important;
}

/* Background animé */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    animation: gradientShift 250s ease-in-out infinite alternate;
}

.light-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    animation: wavesMove 200s ease-in-out infinite alternate;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 60s linear infinite;
    opacity: 0.5;
}

/* Container 2 colonnes */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 0 20px;
}

/* Colonne gauche - Contenu texte */
.hero-content {
    max-width: 600px;
}

.hero-micro-text {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* Titre avec effet lettre par lettre */
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    position: relative;
    opacity: 1;
    display: flex;
    align-items: center;
}

.hero-title-animated {
    position: relative;
    display: block;
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-title-animated.transitioning {
    animation: scaleTransition 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-title .word-wrapper {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.35em;
}

.hero-title .word-wrapper:last-child {
    margin-right: 0;
}

.hero-title .zw-letter {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.3));
}

.hero-title .zw-letter:hover {
    transform: scale(1.15) translateY(-5px);
    filter: 
        drop-shadow(0 0 35px rgba(192, 192, 255, 0.9))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.hero-title .zw-letter.exiting {
    animation: letterExitRight 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.34) forwards;
}

.hero-title .zw-letter.entering {
    animation: letterEnterLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

/* Sous-titre et CTAs */
.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.9s forwards;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA PRIMARY - STYLES PREMIUM AVEC HOVER CYAN
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(34, 211, 238, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #67e8f9 !important; /* CYAN LUMINEUX - NOUVELLE COULEUR */
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.6);
}

.hero-cta-primary:hover::before { 
    left: 100%; 
}

.hero-cta-primary:hover .cta-arrow {
    transform: translateX(6px);
    filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.8));
}

/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta-secondary:hover {
    color: #67e8f9; /* CYAN LUMINEUX - COHÉRENT AVEC LE PRIMARY */
    transform: translateX(3px);
    text-shadow: 0 0 15px rgba(103, 232, 249, 0.5);
}

.cta-arrow {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-cta-secondary:hover .cta-arrow {
    transform: translateX(4px);
    filter: drop-shadow(0 0 6px rgba(103, 232, 249, 0.6));
}

/* Preuve sociale */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.1s forwards;
}

.social-proof-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
}

.social-proof-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-proof-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Colonne droite - Mockup visuel */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeUpScale 1s ease-out 0.6s forwards;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 540px;
    perspective: 1500px;
}

.mockup-laptop {
    position: relative;
    width: 100%;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 40px rgba(99, 102, 241, 0.15));
}

.mockup-laptop:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px 12px 0 0;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1147 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screen-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.laptop-base {
    width: 120%;
    height: 12px;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-radius: 0 0 12px 12px;
    margin: 0 -10%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tags flottants */
.floating-tag {
    position: absolute;
    padding: 12px 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    animation: floatTag 3s ease-in-out infinite;
    z-index: 10;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-tag:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.floating-tag:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-tag:nth-child(2) {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.floating-tag:nth-child(3) {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.tag-icon {
    display: inline-block;
    margin-right: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [LOGOS] 6. SECTION LOGOS/SPÉCIALISATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.logos-section {
    background: linear-gradient(180deg, 
        rgba(15, 23, 42, 0.4) 0%, 
        rgba(10, 14, 39, 0.6) 100%);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 40px 20px;
    width: 100%;
    max-width: none !important;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.logos-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.03), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.logos-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.logos-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    width: 100%;
    display: block;
}

.logos-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.4) 50%, 
        transparent 100%);
    border-radius: 2px;
}

.logos-word {
    display: inline-block;
}

.logos-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-item {
    position: relative;
    flex: 0 1 auto;
    min-width: 90px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
    pointer-events: none;
    opacity: 0.6;
}

.logo-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%,
        rgba(139, 92, 246, 0.15) 50%,
        rgba(59, 130, 246, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.logo-item:hover::after {
    opacity: 1;
}

.logo-name {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    text-align: center;
}

.logo-item:hover {
    transform: translateY(-4px);
    background: rgba(15, 23, 42, 0.35);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.15),
        0 0 30px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(200%);
}

.logo-item:hover .logo-name {
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    text-shadow: 
        0 0 20px rgba(147, 197, 253, 0.4),
        0 0 40px rgba(99, 102, 241, 0.25);
}

/* Hover couleurs par item */
.logo-item:nth-child(1):hover {
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-item:nth-child(2):hover {
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.25),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 0 40px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-item:nth-child(3):hover {
    box-shadow: 
        0 12px 40px rgba(236, 72, 153, 0.25),
        0 0 0 1px rgba(236, 72, 153, 0.2),
        0 0 40px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-item:nth-child(4):hover {
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.25),
        0 0 0 1px rgba(34, 211, 238, 0.2),
        0 0 40px rgba(34, 211, 238, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-item:nth-child(5):hover {
    box-shadow: 
        0 12px 40px rgba(249, 115, 22, 0.25),
        0 0 0 1px rgba(249, 115, 22, 0.2),
        0 0 40px rgba(249, 115, 22, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


/* ═══════════════════════════════════════════════════════════════════════════
   [SERV] 7. SECTION SERVICES (4 cartes)
   ═══════════════════════════════════════════════════════════════════════════ */

.services-section {
    background: #0a0e27;
    padding: 35px 40px 60px;
    width: 100%;
    max-width: none !important;
    margin: 0;
    overflow: visible;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
    overflow: visible;
}

.services-header {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(
        120deg, 
        #60a5fa 0%,
        #a78bfa 25%,
        #3b82f6 50%,
        #8b5cf6 75%,
        #60a5fa 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    cursor: default;
    animation: gradientFlow 8s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.services-title:hover {
    animation: gradientFlowFast 3s ease-in-out infinite;
}

.services-subtitle {
    font-size: 1rem;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(147, 197, 253, 0.8) 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 600px;
    margin: 0 auto;
    cursor: default;
    animation: gradientFlow 10s ease-in-out infinite;
}

.services-subtitle:hover {
    animation: gradientFlow 4s ease-in-out infinite;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 20px;
}

.service-card {
    position: relative;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    overflow: visible;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.8s ease;
    background-size: 300% 300%;
    animation: gradientRotate 6s ease-in-out infinite;
}

.service-card[data-card="vitrine"]::before {
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.15), 
        rgba(96, 165, 250, 0.25), 
        rgba(147, 197, 253, 0.15), 
        rgba(59, 130, 246, 0.25));
}

.service-card[data-card="refonte"]::before {
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.15), 
        rgba(167, 139, 250, 0.25), 
        rgba(196, 181, 253, 0.15), 
        rgba(139, 92, 246, 0.25));
}

.service-card[data-card="custom"]::before {
    background: linear-gradient(45deg, 
        rgba(34, 211, 238, 0.15), 
        rgba(103, 232, 249, 0.25), 
        rgba(165, 243, 252, 0.15), 
        rgba(34, 211, 238, 0.25));
}

.service-card[data-card="support"]::before {
    background: linear-gradient(45deg, 
        rgba(249, 115, 22, 0.15), 
        rgba(251, 146, 60, 0.25), 
        rgba(253, 186, 116, 0.15), 
        rgba(249, 115, 22, 0.25));
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.service-card[data-card="vitrine"]::after {
    background: radial-gradient(circle, rgba(147, 197, 253, 1) 0%, transparent 70%);
    box-shadow: 
        0 0 15px 3px rgba(96, 165, 250, 0.8),
        0 0 25px 6px rgba(59, 130, 246, 0.6);
}

.service-card[data-card="refonte"]::after {
    background: radial-gradient(circle, rgba(196, 181, 253, 1) 0%, transparent 70%);
    box-shadow: 
        0 0 15px 3px rgba(167, 139, 250, 0.8),
        0 0 25px 6px rgba(139, 92, 246, 0.6);
}

.service-card[data-card="custom"]::after {
    background: radial-gradient(circle, rgba(165, 243, 252, 1) 0%, transparent 70%);
    box-shadow: 
        0 0 15px 3px rgba(103, 232, 249, 0.8),
        0 0 25px 6px rgba(34, 211, 238, 0.6);
}

.service-card[data-card="support"]::after {
    background: radial-gradient(circle, rgba(253, 186, 116, 1) 0%, transparent 70%);
    box-shadow: 
        0 0 15px 3px rgba(251, 146, 60, 0.8),
        0 0 25px 6px rgba(249, 115, 22, 0.6);
}

.service-card:hover::after {
    opacity: 1;
    animation: orbitBorder 3s linear infinite;
}

.service-card:hover {
    transform: translateY(-25px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.5);
}

.service-card[data-card="vitrine"]:hover {
    box-shadow: 
        0 35px 70px rgba(59, 130, 246, 0.5),
        0 0 80px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.4);
}

.service-card[data-card="refonte"]:hover {
    box-shadow: 
        0 35px 70px rgba(139, 92, 246, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.4);
}

.service-card[data-card="custom"]:hover {
    box-shadow: 
        0 35px 70px rgba(34, 211, 238, 0.5),
        0 0 80px rgba(34, 211, 238, 0.3),
        0 0 0 1px rgba(34, 211, 238, 0.4);
}

.service-card[data-card="support"]:hover {
    box-shadow: 
        0 35px 70px rgba(249, 115, 22, 0.5),
        0 0 80px rgba(249, 115, 22, 0.3),
        0 0 0 1px rgba(249, 115, 22, 0.4);
}

.card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 8px 15px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(5deg);
}

.card-icon.blue-gradient { background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%); }
.card-icon.purple-gradient { background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%); }
.card-icon.cyan-gradient { background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%); }
.card-icon.orange-gradient { background: linear-gradient(135deg, #fb923c 0%, #f97316 100%); }

.service-card:hover .card-icon-wrapper {
    transform: translateY(-10px) scale(1.05);
}

.service-card:hover .card-icon {
    transform: perspective(1000px) rotateX(0deg) scale(1.12);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 12px 25px rgba(0, 0, 0, 0.4),
        inset 0 4px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
}

.icon-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 35px;
    filter: blur(25px);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.icon-glow.blue { background: radial-gradient(ellipse, rgba(59, 130, 246, 0.7) 0%, transparent 70%); }
.icon-glow.purple { background: radial-gradient(ellipse, rgba(139, 92, 246, 0.7) 0%, transparent 70%); }
.icon-glow.cyan { background: radial-gradient(ellipse, rgba(34, 211, 238, 0.7) 0%, transparent 70%); }
.icon-glow.orange { background: radial-gradient(ellipse, rgba(249, 115, 22, 0.7) 0%, transparent 70%); }

.service-card:hover .icon-glow { 
    opacity: 1; 
    filter: blur(30px); 
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-description {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations staggerées */
.service-card:nth-child(1) { animation: fadeUp 0.8s ease-out 0.2s forwards; }
.service-card:nth-child(2) { animation: fadeUp 0.8s ease-out 0.4s forwards; }
.service-card:nth-child(3) { animation: fadeUp 0.8s ease-out 0.6s forwards; }
.service-card:nth-child(4) { animation: fadeUp 0.8s ease-out 0.8s forwards; }


/* ═══════════════════════════════════════════════════════════════════════════
   [PROC] 8. SECTION PROCESS (Section 2)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Neige colorée */
.zw-snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.zw-snowflake {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.9;
    animation: snowfall linear infinite;
}

/* Section processus - Container */
.zw-process-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(180deg, #0B101A 0%, #141B2E 50%, #0B101A 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
}

.zw-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(77, 163, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(142, 92, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.zw-process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Header avec titre wave */
.zw-process-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zw-process-header.zw-visible {
    opacity: 1;
    transform: translateY(0);
}

.zw-process-title {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    cursor: pointer;
    padding-bottom: 15px;
}

.zw-process-title .zw-wave-word {
    background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zw-wave-word {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.zw-wave-char {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom center;
    color: inherit;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-clip: inherit;
}

.zw-process-title:hover .zw-wave-char {
    animation: zw-wave-rise 0.6s ease-in-out;
    animation-fill-mode: both;
    animation-delay: var(--char-delay, 0s);
}

.zw-title-underline {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    max-width: 400px;
    height: 4px;
    background: linear-gradient(90deg, #4DA3FF 0%, #8E5CFF 50%, #FF9D4E 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(77, 163, 255, 0.6);
}

.zw-process-header.zw-visible .zw-title-underline {
    animation: zw-underline-draw 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

.zw-process-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #A5B4D5;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Halo d'ambiance */
.zw-halo-bg {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 163, 255, 0.15) 0%, rgba(142, 92, 255, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    opacity: 0.5;
    animation: zw-halo-pulse 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Panel de contenu */
.zw-process-panel {
    position: relative;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(77, 163, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: visible;  /* Permet aux glows de dépasser */
    margin-bottom: 40px;
    contain: layout style;
}

.zw-process-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(23, 30, 48, 0.4);
    border-radius: 24px;
    z-index: -1;
}

/* Content wrapper - 2 colonnes */
.zw-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;  /* START pas center - évite le recentrage */
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    contain: layout;
}

/* Colonne texte avec slides - CSS Grid pour hauteur auto */
.zw-text-column {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: start;
    max-width: 550px;
    contain: layout;
}

.zw-process-slide {
    /* CSS Grid - toutes les slides dans la même cellule */
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: visible;  /* VISIBLE pour contribuer à la hauteur du grid */
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1;
    will-change: opacity;
    backface-visibility: hidden;
}

.zw-process-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
}

.zw-process-slide.exiting {
    opacity: 0;
    z-index: 2;
}

.zw-slide-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #4DA3FF 0%, #8E5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.zw-slide-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.3;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    cursor: pointer;
    text-align: left;
}

.zw-slide-title .zw-wave-word {
    background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zw-slide-title:hover .zw-wave-char {
    animation: zw-wave-rise 0.6s ease-in-out;
    animation-fill-mode: both;
    animation-delay: var(--char-delay, 0s);
}

.zw-slide-hook {
    font-size: 15px;
    color: #A5B4D5;
    margin-bottom: 22px;
    font-weight: 400;
    line-height: 1.7;
}

.zw-slide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    padding-left: 10px;  /* Espace pour les glows des puces */
}

.zw-slide-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #A5B4D5;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.zw-slide-list li:hover {
    color: #D0D9F5;
    transform: translateX(4px);
}

.zw-process-slide.active .zw-slide-list li:nth-child(1) {
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.zw-process-slide.active .zw-slide-list li:nth-child(2) {
    animation: fadeUp 0.6s ease 0.3s forwards;
}

.zw-process-slide.active .zw-slide-list li:nth-child(3) {
    animation: fadeUp 0.6s ease 0.4s forwards;
}

.zw-slide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.3), rgba(142, 92, 255, 0.3));
    border: 2px solid rgba(77, 163, 255, 0.5);
    box-shadow: 0 0 10px rgba(77, 163, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zw-slide-list li:hover::before {
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.6), rgba(142, 92, 255, 0.6));
    border: 2px solid rgba(77, 163, 255, 0.9);
    box-shadow:
        0 0 20px rgba(77, 163, 255, 0.8),
        0 0 30px rgba(142, 92, 255, 0.5),
        inset 0 0 8px rgba(255, 255, 255, 0.3);
    transform: scale(1.2) rotate(180deg);
}

.zw-slide-list strong {
    color: #FFFFFF;
    font-weight: 600;
}

.zw-slide-result {
    font-size: 14px;
    color: #A5B4FC;
    font-style: italic;
    margin-top: 22px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.1), rgba(142, 92, 255, 0.08));
    border-left: 3px solid #4DA3FF;
    border-radius: 10px;
    box-shadow:
        0 6px 20px rgba(77, 163, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.zw-slide-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 48%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 52%,
        transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.zw-slide-result:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.zw-slide-result:hover {
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.18), rgba(142, 92, 255, 0.15));
    border-left-color: rgba(77, 163, 255, 1);
    box-shadow:
        0 12px 35px rgba(77, 163, 255, 0.35),
        0 0 25px rgba(142, 92, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 20px rgba(77, 163, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
}

/* Mockup avec vidéos */
.zw-mockup-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zw-mockup-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 16/10;
    /* CSS Grid pour superposer les mockups */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    contain: layout;
}

.zw-mockup-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(77, 163, 255, 0.3) 0%,
        rgba(142, 92, 255, 0.2) 40%,
        rgba(255, 157, 78, 0.15) 70%,
        transparent 100%);
    filter: blur(40px);
    opacity: 0.6;
    z-index: -1;
    animation: zw-halo-pulse 4s ease-in-out infinite;
    pointer-events: none;
    transition: background 0.8s ease, opacity 0.8s ease;
}

.zw-mockup-container.glow-step-1::before {
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(142, 92, 255, 0.35) 0%,
        rgba(77, 163, 255, 0.25) 40%,
        rgba(255, 157, 78, 0.15) 70%,
        transparent 100%);
}

.zw-mockup-container.glow-step-2::before {
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(236, 72, 153, 0.35) 0%,
        rgba(142, 92, 255, 0.25) 40%,
        rgba(77, 163, 255, 0.15) 70%,
        transparent 100%);
}

.zw-mockup-container.glow-step-3::before {
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(255, 157, 78, 0.35) 0%,
        rgba(236, 72, 153, 0.25) 40%,
        rgba(142, 92, 255, 0.15) 70%,
        transparent 100%);
}

.zw-mockup-state {
    /* CSS Grid - tous dans la même cellule */
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 1;
    will-change: opacity;
    backface-visibility: hidden;
}

.zw-mockup-state.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.zw-mockup-frame {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(23, 30, 48, 0.6), rgba(11, 16, 26, 0.8));
    padding: 16px;
    position: relative;
    border: 1px solid rgba(77, 163, 255, 0.15);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(77, 163, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.zw-mockup-frame:hover {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(77, 163, 255, 0.3),
        0 0 150px rgba(142, 92, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(77, 163, 255, 0.25);
}

.zw-mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Timeline container */
.zw-timeline-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    contain: layout style;
}

.zw-timeline-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(165, 180, 213, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Progress bar */
.zw-progress-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 30px;
}

.zw-progress-track {
    position: relative;
    height: 8px;
    background: linear-gradient(90deg,
        rgba(77, 163, 255, 0.08) 0%,
        rgba(142, 92, 255, 0.08) 50%,
        rgba(255, 157, 78, 0.08) 100%);
    border-radius: 4px;
    overflow: visible;
    box-shadow:
        0 0 20px rgba(77, 163, 255, 0.15),
        inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.zw-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        #4DA3FF 0%,
        #8E5CFF 50%,
        #FF9D4E 100%);
    box-shadow:
        0 0 30px rgba(77, 163, 255, 1),
        0 0 50px rgba(142, 92, 255, 0.6),
        0 4px 18px rgba(77, 163, 255, 0.3);
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

/* Steps */
.zw-steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 15px;
    /* Hauteur fixe pour éviter les sauts */
    min-height: 120px;
    align-items: flex-start;
}

.zw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    cursor: pointer;
    /* Transitions spécifiques - pas "all" */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    flex: 1;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    /* Empêcher les reflows de se propager */
    contain: layout style;
}

.zw-step:hover {
    /* Seulement scale, pas translateY qui cause des sauts de layout */
    transform: scale(1.02);
}

.zw-step-dot-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.zw-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 1));
    border: 2px solid rgba(77, 163, 255, 0.3);
    /* Transitions spécifiques - pas "all" */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.5s ease, 
                border-color 0.5s ease, 
                box-shadow 0.5s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.71);  /* 20/28 = 0.71 */
    box-shadow:
        0 0 18px rgba(77, 163, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.zw-step.active .zw-step-dot {
    transform: translate(-50%, -50%) scale(1);  /* Full size */
    background: linear-gradient(135deg, #4DA3FF, #8E5CFF);
    border: 3px solid rgba(77, 163, 255, 0.5);
    box-shadow:
        0 0 32px rgba(77, 163, 255, 1),
        0 0 55px rgba(142, 92, 255, 0.8),
        0 0 80px rgba(255, 157, 78, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.4);
}

.zw-step-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(165, 180, 213, 0.75);
    text-align: center;
    /* Transitions spécifiques - pas "all" */
    transition: color 0.4s ease, 
                background 0.4s ease, 
                border-color 0.4s ease, 
                box-shadow 0.4s ease,
                background-image 0.4s ease;
    padding: 12px 22px;
    background: linear-gradient(135deg,
        rgba(23, 30, 48, 0.6),
        rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(77, 163, 255, 0.2);
    border-radius: 20px;
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.zw-step.active .zw-step-label {
    color: #FFFFFF;
    font-weight: 800;
    border: 2px solid transparent;
    background-image:
        linear-gradient(135deg, rgba(23, 30, 48, 1), rgba(15, 23, 42, 1)),
        linear-gradient(135deg, #4DA3FF, #8E5CFF, #FF9D4E);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 12px 50px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(77, 163, 255, 0.6),
        0 0 100px rgba(142, 92, 255, 0.4),
        inset 0 2px 10px rgba(77, 163, 255, 0.2);
}


/* ═══════════════════════════════════════════════════════════════════════════
   [OFFER] 9. SECTION OFFERS (Section 3)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Container principal */
#zw-offers {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    background: linear-gradient(180deg, #0A0E14 0%, #151B24 100%);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

/* Particles background */
.particles-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(90, 168, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(121, 224, 194, 0.1) 0%, transparent 50%);
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.flow-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(90, 168, 255, 0.3));
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
}

.flow-particle.from-left {
    left: 0;
    animation: flowFromLeft 8s ease-in-out infinite;
}

.flow-particle.from-right {
    right: 0;
    animation: flowFromRight 8s ease-in-out infinite;
}

/* Header section */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 99996;
    isolation: isolate;
    padding: 60px 40px 0;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    perspective: 1000px;
}

.section-title .line {
    display: block;
    animation: slideUp 0.6s var(--ease) backwards;
    transform-style: preserve-3d;
    line-height: 1.1;
}

.section-title .line:nth-child(2) {
    animation-delay: 0.15s;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .letter {
    display: inline-block;
    position: relative;
    transition: all 0.3s var(--ease);
    transform-style: preserve-3d;
    vertical-align: baseline;
    line-height: 1;
}

.section-title .letter::before {
    content: attr(data-letter);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    filter: blur(0px);
    transition: all 0.4s var(--ease);
    z-index: 1;
}

.section-title .letter::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s;
    z-index: -1;
}

.section-title .letter.active {
    transform: translateY(-4px) scale(1.15) rotateX(15deg);
    filter: drop-shadow(0 8px 20px rgba(90, 168, 255, 0.6));
}

.section-title .letter.active::before {
    opacity: 1;
    background-position: 100% 50%;
    filter: blur(0px);
}

.section-title .letter.active::after {
    opacity: 0.6;
    animation: glowPulse 0.6s ease-in-out;
}

.section-title .letter.wave {
    animation: letterWave 0.6s var(--ease);
}

.letter-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99990;
}

@keyframes letterParticleFloat {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-40px) scale(0.2);
    }
}

.explosion-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(2px);
    mix-blend-mode: screen;
    z-index: 1;
}

.section-subtitle {
    font-size: clamp(16px, 2.2vw, 19px);
    color: rgba(232, 238, 245, 0.85);
    font-weight: 400;
    max-width: 750px;
    margin: -2px auto 0;
    line-height: 1.6;
    animation: slideUp 0.6s var(--ease) 0.3s backwards;
    letter-spacing: 0.01em;
}

.section-footer {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text);
    font-weight: 600;
    margin: 40px 0 0 0 !important;
    padding: 0 40px 60px;
    animation: slideUp 0.8s var(--ease) 0.8s backwards;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    position: relative;
    transition: all 0.3s var(--ease);
    display: block;
    line-height: 1.4;
}

.section-footer::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle at center, rgba(90, 168, 255, 0.15), transparent 70%);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.section-footer:hover::after {
    opacity: 1;
}

/* Cards container */
.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.offer-card {
    position: relative;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s var(--ease);
    animation: slideUp 0.6s var(--ease) backwards;
    transform-style: preserve-3d;
}

.offer-card:nth-child(1) { animation-delay: 0.4s; }
.offer-card:nth-child(2) { animation-delay: 0.5s; }
.offer-card:nth-child(3) { animation-delay: 0.6s; }

.offer-card.featured {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #79E0C2, #06B6D4);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

/* Card effects */
.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.5s;
    animation: rotate 6s linear infinite;
    z-index: -1;
}

.offer-card:hover .card-glow {
    opacity: 0.5;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease);
}

.offer-card:hover .card-shine {
    transform: translateX(100%);
}

/* Bordures animées par carte */
.offer-card:nth-child(1)::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #5AA8FF, #3B82F6, #5AA8FF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.offer-card:nth-child(1):hover::after {
    opacity: 0.7;
}

.offer-card:nth-child(2)::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #06B6D4, #79E0C2, #06B6D4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.offer-card:nth-child(2):hover::after {
    opacity: 0.8;
}

.offer-card:nth-child(3)::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #FFB84D, #A855F7, #FFB84D);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.offer-card:nth-child(3):hover::after {
    opacity: 0.9;
}

.offer-card:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    opacity: 0.4;
    z-index: -1;
    transition: opacity 0.4s;
}

.offer-card:nth-child(3):hover::before {
    opacity: 0.7;
}

/* Border light animation */
.card-border-light {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    filter: blur(4px);
    offset-rotate: 0deg;
}

.offer-card:nth-child(1) .card-border-light {
    background: radial-gradient(circle, #fff 0%, #5AA8FF 30%, transparent 70%);
    box-shadow: 
        0 0 20px #5AA8FF,
        0 0 40px rgba(90, 168, 255, 0.6),
        0 0 60px rgba(90, 168, 255, 0.3);
    animation: rotateBorderLight 3s linear infinite;
}

.offer-card:nth-child(2) .card-border-light {
    background: radial-gradient(circle, #fff 0%, #06B6D4 30%, transparent 70%);
    box-shadow: 
        0 0 20px #06B6D4,
        0 0 40px rgba(6, 182, 212, 0.6),
        0 0 60px rgba(6, 182, 212, 0.3);
    animation: rotateBorderLight 2.5s linear infinite;
}

.offer-card:nth-child(3) .card-border-light {
    background: radial-gradient(circle, #fff 0%, #FFB84D 30%, #A855F7 60%, transparent 80%);
    box-shadow: 
        0 0 25px #FFB84D,
        0 0 45px rgba(255, 184, 77, 0.7),
        0 0 65px rgba(168, 85, 247, 0.4);
    animation: rotateBorderLight 2.2s linear infinite;
}

.offer-card:hover .card-border-light {
    opacity: 1;
}

/* Card content */
.card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 20, 0.6) 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.offer-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px 20px 22px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark);
}

.offer-card:hover .card-icon {
    transform: translateY(-3px) rotate(5deg);
}

/* Couleurs spécifiques par carte */
.offer-card:nth-child(1) .card-glow {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #5AA8FF 90deg,
        #3B82F6 180deg,
        #5AA8FF 270deg,
        transparent 360deg
    );
}

.offer-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #5AA8FF 0%, #3B82F6 100%);
    box-shadow: 0 6px 16px rgba(90, 168, 255, 0.25);
}

.offer-card:nth-child(1):hover .card-icon {
    box-shadow: 0 8px 20px rgba(90, 168, 255, 0.4);
}

.offer-card:nth-child(1) .card-price .value {
    background: linear-gradient(135deg, #5AA8FF 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card:nth-child(1):hover .card-title {
    background: linear-gradient(135deg, #5AA8FF 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card:nth-child(2) .card-glow {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #06B6D4 90deg,
        #79E0C2 180deg,
        #06B6D4 270deg,
        transparent 360deg
    );
}

.offer-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #79E0C2 100%);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.35);
}

.offer-card:nth-child(2):hover .card-icon {
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.5);
}

.offer-card:nth-child(2) .card-price .value {
    background: linear-gradient(135deg, #06B6D4 0%, #79E0C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card:nth-child(2):hover .card-title {
    background: linear-gradient(135deg, #06B6D4 0%, #79E0C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card:nth-child(3) .card-glow {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #FFB84D 90deg,
        #A855F7 180deg,
        #FFB84D 270deg,
        transparent 360deg
    );
}

.offer-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #FFB84D 0%, #A855F7 100%);
    box-shadow: 0 6px 16px rgba(255, 184, 77, 0.4);
}

.offer-card:nth-child(3):hover .card-icon {
    box-shadow: 0 8px 24px rgba(255, 184, 77, 0.6), 0 0 40px rgba(168, 85, 247, 0.3);
}

.offer-card:nth-child(3) .card-price .value {
    background: linear-gradient(135deg, #FFB84D 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card:nth-child(3):hover .card-title {
    background: linear-gradient(135deg, #FFB84D 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.card-price .label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 400;
}

.card-price .value {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.3s var(--ease);
}

.offer-card:hover .card-price .value {
    transform: scale(1.05);
}

.card-price .currency {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dim);
    font-weight: 400;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [PREM] 10. SECTION PREMIUM (Section 4)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Container premium */
.zw-premium-section {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(180deg, #0B101A 0%, #141B2E 50%, #0B101A 100%);
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
}

.zw-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(77, 163, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(142, 92, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.zw-premium-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
}

/* Header premium */
.zw-premium-header {
    text-align: center;
    margin-bottom: 80px;
}

.zw-main-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF !important;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(165, 180, 252, 0.5);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .zw-main-title {
        background: linear-gradient(135deg, #FFFFFF 0%, #D0D9FF 50%, #A5B4FC 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.zw-subtitle {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #4DA3FF 0%, #8E5CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.zw-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #A5B4D5;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Advantages grid */
.zw-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.zw-advantage-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 24px;
    border: 1px solid rgba(77, 163, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
}

.zw-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 30, 48, 0.6);
    border-radius: 24px;
    z-index: -1;
}

.zw-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(77, 163, 255, 0.3), 
        rgba(142, 92, 255, 0.3), 
        rgba(255, 157, 78, 0.3));
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: zw-border-flow 8s ease infinite;
}

.zw-advantage-card:hover .zw-card-border {
    opacity: 1;
}

.zw-advantage-card.zw-visible {
    animation: zw-card-reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--card-index) * 0.15s);
}

.zw-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.05) 0%, rgba(142, 92, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
    border-radius: 24px;
}

.zw-advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(77, 163, 255, 0.5);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(77, 163, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.zw-advantage-card:hover .zw-card-glow {
    opacity: 1;
}

/* Icons premium */
.zw-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    z-index: 2;
    overflow: visible;
}

.zw-icon-breathing {
    animation: zw-icon-breathe 4s ease-in-out infinite;
}

.zw-icon-blue {
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.15) 0%, rgba(77, 163, 255, 0.05) 100%);
    color: #4DA3FF;
    box-shadow: 0 8px 24px rgba(77, 163, 255, 0.2);
}

.zw-icon-violet {
    background: linear-gradient(135deg, rgba(142, 92, 255, 0.15) 0%, rgba(142, 92, 255, 0.05) 100%);
    color: #8E5CFF;
    box-shadow: 0 8px 24px rgba(142, 92, 255, 0.2);
}

.zw-icon-cyan {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0.05) 100%);
    color: #22D3EE;
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.2);
}

.zw-icon-orange {
    background: linear-gradient(135deg, rgba(255, 157, 78, 0.15) 0%, rgba(255, 157, 78, 0.05) 100%);
    color: #FF9D4E;
    box-shadow: 0 8px 24px rgba(255, 157, 78, 0.2);
}

.zw-advantage-card:hover .zw-icon-wrapper {
    animation: zw-icon-spin-360 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 
        0 12px 40px rgba(77, 163, 255, 0.5),
        0 0 80px rgba(77, 163, 255, 0.4);
}

.zw-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.zw-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

/* Impact gauge */
.zw-impact-gauge {
    position: relative;
    padding: 60px 48px;
    background: rgba(23, 30, 48, 0.4);
    border-radius: 28px;
    border: 1px solid rgba(77, 163, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: pointer;
}

.zw-impact-gauge.zw-visible {
    opacity: 1;
    transform: translateY(0);
}

.zw-gauge-label {
    position: relative;
    display: block;
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF !important;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    z-index: 1;
    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        #C9D9FF 20%,
        #A5B4FC 40%, 
        #8B9DFF 60%,
        #D0D9FF 80%,
        #FFFFFF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 
        0 0 40px rgba(165, 180, 252, 0.4),
        0 0 80px rgba(139, 157, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3);
    animation: gradientFlow 8s ease-in-out infinite;
    transition: all 0.4s ease;
}

.zw-gauge-label:hover {
    transform: scale(1.03);
    text-shadow: 
        0 0 50px rgba(165, 180, 252, 0.6),
        0 0 100px rgba(139, 157, 255, 0.4),
        0 0 150px rgba(77, 163, 255, 0.2),
        0 4px 30px rgba(0, 0, 0, 0.4);
}

.zw-gauge-subtitle {
    position: relative;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #8B95A8;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
    padding: 0 30px;
}

.zw-impact-gauge.zw-visible .zw-gauge-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Aspect ratio wrapper pour gauge SVG */
.zw-gauge-aspect-wrapper {
    position: relative;
    width: 100%;
    padding-top: 30%;
    margin-bottom: 40px;
    overflow: visible !important;
    z-index: 10;
}

.zw-gauge-curved-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible !important;
    padding: 0 40px;
}

.zw-gauge-svg {
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.zw-gauge-bg-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    transition: stroke-width 0.3s ease;
}

.zw-gauge-fill-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 3.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zw-impact-gauge.zw-visible .zw-gauge-fill-path {
    stroke-dashoffset: 0;
}

.zw-impact-gauge:hover .zw-gauge-fill-path {
    filter: url(#endGlow);
    stroke-width: 12;
}

.zw-impact-gauge:hover .zw-gauge-bg-path {
    stroke-width: 6;
}

.zw-milestone {
    filter: drop-shadow(0 0 8px currentColor);
}

.zw-milestone-glow {
    opacity: 0.3;
}

.zw-connection-line {
    display: block;
}

/* Milestone cards */
.zw-milestone-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: visible !important;
}

.zw-impact-gauge.zw-visible .zw-milestone-cards {
    animation: slideUp 0.8s ease forwards;
    animation-delay: 1s;
}

.zw-milestone-card {
    position: relative;
    padding: 24px 20px;
    background: rgba(11, 16, 26, 0.8);
    border: 1px solid rgba(77, 163, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible !important;
    cursor: pointer;
    isolation: isolate;
}

.zw-milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(77, 163, 255, 0.1) 0%, 
        rgba(142, 92, 255, 0.1) 50%, 
        rgba(255, 157, 78, 0.1) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.zw-milestone-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(77, 163, 255, 0.6);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(77, 163, 255, 0.3),
        0 0 90px rgba(142, 92, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.zw-milestone-card:hover::before {
    opacity: 1;
}

.zw-card-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zw-milestone-card:hover .zw-card-indicator {
    width: 60px;
    height: 5px;
    box-shadow: 0 4px 20px currentColor;
}

.zw-card-1 .zw-card-indicator {
    background: linear-gradient(90deg, #4DA3FF 0%, #6BB8FF 100%);
    box-shadow: 0 2px 12px rgba(77, 163, 255, 0.4);
}

.zw-card-2 .zw-card-indicator {
    background: linear-gradient(90deg, #8E5CFF 0%, #A575FF 100%);
    box-shadow: 0 2px 12px rgba(142, 92, 255, 0.4);
}

.zw-card-3 .zw-card-indicator {
    background: linear-gradient(90deg, #FF9D4E 0%, #FFB16E 100%);
    box-shadow: 0 2px 12px rgba(255, 157, 78, 0.4);
}

.zw-milestone-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #F1F5F9;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.zw-milestone-card:hover .zw-milestone-card-title {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.zw-milestone-card-desc {
    font-size: 13px;
    font-weight: 400;
    color: #94A3B8;
    margin: 0;
    line-height: 1.6;
    flex: 1;
    transition: all 0.3s ease;
}

.zw-milestone-card:hover .zw-milestone-card-desc {
    color: #B4C3D8;
}

/* Vidéo conclusion */
.zw-gauge-conclusion {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(77, 163, 255, 0.1);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zw-impact-gauge.zw-visible .zw-gauge-conclusion {
    animation: slideUp 0.8s ease forwards;
    animation-delay: 3.2s;
}

.zw-conv-wrapper {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px;
}

.zw-video-container {
    position: relative;
    overflow: visible;
    cursor: pointer;
}

#zw-conv-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(77, 163, 255, 0.15);
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s ease;
}

.zw-video-container:hover #zw-conv-video {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(77, 163, 255, 0.25),
        0 0 120px rgba(142, 92, 255, 0.15);
}

.zw-conclusion-line1 {
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(135deg, #94A3B8 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.zw-conclusion-line2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #4DA3FF 0%, #8E5CFF 50%, #FF9D4E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [RESP] 11. RESPONSIVE (Tous les breakpoints centralisés)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Desktop adjustments (min-width: 1024px) */
@media (min-width: 1024px) {
    .hero-section {
        padding-bottom: 15px;
    }
    
    .logos-section {
        margin-top: -12px;
    }
    
    .services-section {
        padding-top: 20px;
    }
    
    .hero-content {
        min-height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

/* Tablet landscape (max-width: 1200px) */
@media (max-width: 1200px) {
    .services-cards { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Hero */
    .hero-section { 
        padding: 40px 30px 35px; 
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .hero-content { 
        max-width: 100%; 
        text-align: center; 
    }
    
    .hero-ctas { 
        justify-content: center; 
    }
    
    .hero-social-proof { 
        justify-content: center; 
    }
    
    .hero-title {
        font-size: clamp(1.875rem, 4vw, 2.5rem);
    }
    
    .mockup-container { 
        max-width: 500px; 
        margin: 0 auto; 
    }
    
    .floating-tag { 
        display: none; 
    }
    
    /* Logos */
    .logos-section { 
        padding: 30px 30px 20px; 
    }
    
    /* Services */
    .services-section { 
        padding: 40px 30px; 
    }
    
    /* Process */
    .zw-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: start !important;
    }
    
    .zw-process-panel {
        padding: 40px 30px;
    }
    
    .zw-text-column {
        max-width: 100%;
    }
    
    /* Premium */
    .zw-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 80px;
    }
    
    .zw-main-title {
        font-size: 42px;
    }
    
    .zw-impact-gauge {
        padding: 50px 36px;
    }
    
    .zw-gauge-aspect-wrapper {
        padding-top: 28%;
    }
    
    .zw-gauge-curved-container {
        padding: 0 30px;
    }
    
    .zw-milestone-cards {
        gap: 20px;
    }
    
    .zw-milestone-card {
        padding: 20px 18px;
        min-height: 130px;
    }
    
    /* Désactiver animations */
    .hero-micro-text,
    .hero-title,
    .hero-subtitle,
    .hero-ctas,
    .hero-social-proof,
    .hero-visual,
    .service-card,
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero */
    .hero-section { 
        padding: 8px 20px 20px; 
        min-height: auto; 
    }
    
    .hero-title { 
        font-size: 1.75rem; 
        line-height: 1.25; 
    }
    
    .hero-subtitle { 
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .mockup-laptop {
        transform: none;
    }
    
    /* Logos */
    .logos-section { 
        padding: 25px 20px 15px; 
    }
    
    .logos-grid { 
        gap: 20px; 
    }
    
    .logo-item {
        min-width: 80px;
        padding: 9px 12px;
    }
    
    .logo-name {
        font-size: 0.75rem;
    }
    
    /* Services */
    .services-section { 
        padding: 35px 20px 30px 20px !important; 
    }
    
    .services-container {
        padding: 0 20px !important;
    }
    
    .services-cards { 
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .service-card { 
        padding: 36px 28px;
        margin-bottom: 0 !important;
    }
    
    .services-title {
        animation: gradientFlow 10s ease-in-out infinite !important;
    }
    
    .services-subtitle {
        animation: gradientFlow 12s ease-in-out infinite !important;
    }
    
    .service-card:hover::before,
    .service-card:hover::after {
        opacity: 0 !important;
        animation: none !important;
    }
    
    .service-card::before,
    .service-card::after {
        display: none !important;
    }
    
    .hero-title .zw-letter:hover {
        transform: none !important;
        filter: none !important;
    }
    
    .logo-item:hover {
        transform: none !important;
    }
    
    .hero-title .zw-letter.exiting,
    .hero-title .zw-letter.entering {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Process */
    .zw-process-section {
        padding: 24px 16px 12px 16px !important;
        contain: layout !important;
        transform: translateZ(0) !important;
    }
    
    .zw-process-header {
        margin-bottom: 24px;
    }
    
    .zw-process-title {
        font-size: 26px;
        margin-bottom: 8px !important;
    }
    
    .zw-process-subtitle {
        font-size: 13px;
        line-height: 1.5 !important;
    }
    
    .zw-process-panel {
        padding: 20px 16px;
        margin-bottom: 12px;
        contain: layout !important;
        transform: translateZ(0) !important;
    }
    
    .zw-content-wrapper {
        gap: 20px;
        margin-bottom: 20px;
        align-items: start !important;
    }
    
    /* Le JS gère les slides - on ne met que la transition */
    .zw-process-slide {
        transition: opacity 0.5s ease !important;
    }
    
    .zw-slide-label {
        font-size: 10px !important;
        margin-bottom: 8px !important;
    }
    
    .zw-slide-title {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }
    
    .zw-slide-hook {
        font-size: 13px !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
    }
    
    .zw-slide-list {
        margin-bottom: 10px !important;
    }
    
    .zw-slide-list li {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
        padding-left: 0 !important;
        padding-right: 4px !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .zw-slide-list li::before {
        display: none !important;
    }
    
    .zw-slide-result {
        font-size: 12px !important;
        margin-top: 10px !important;
        padding: 10px 12px !important;
        line-height: 1.4 !important;
    }
    
    /* Le JS gère les mockups - on ne met que la transition */
    .zw-mockup-state {
        transition: opacity 0.5s ease !important;
    }
    
    .zw-timeline-container {
        margin-top: 16px;
        transform: scale(0.8);
        transform-origin: center top;
    }
    
    .zw-timeline-title {
        margin-bottom: 12px !important;
        font-size: 10px !important;
    }
    
    .zw-progress-wrapper,
    .zw-steps-container {
        max-width: 100%;
        padding: 0 2px;
    }
    
    .zw-steps-container {
        gap: 2px;
    }
    
    .zw-step-dot-wrapper {
        transform: scale(0.75);
    }
    
    .zw-step-label {
        font-size: 8px;
        padding: 4px 5px;
        white-space: nowrap;
    }
    
    .zw-step-dot {
        width: 18px;
        height: 18px;
        transform: translate(-50%, -50%) scale(0.78);  /* 14/18 */
    }
    
    .zw-step.active .zw-step-dot {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .zw-halo-bg {
        display: none;
    }
    
    .zw-mockup-container::before,
    .zw-mockup-container::after {
        display: none;
    }
    
    .zw-snowflake {
        width: 6px;
        height: 6px;
    }
    
    .zw-step.active .zw-step-dot-wrapper::before,
    .zw-step.active .zw-step-dot-wrapper::after {
        display: none;
    }
    
    .zw-step::before,
    .zw-step::after {
        display: none;
    }
    
    /* Offers */
    #zw-offers {
        padding: 0 !important;
    }
    
    .section-header {
        margin-bottom: 24px;
        padding: 40px 20px 0;
    }
    
    .section-title {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        white-space: normal !important;
    }
    
    .section-title .line {
        word-break: keep-all !important;
        white-space: normal !important;
    }
    
    .section-title .letter {
        display: inline !important;
    }
    
    .cards-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-footer {
        margin: 32px 0 0 0 !important;
        padding: 0 20px 40px;
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .card-image {
        height: 160px;
    }
    
    /* Premium */
    .zw-premium-section {
        padding: 60px 16px;
    }
    
    .zw-main-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .zw-subtitle {
        font-size: 19px;
        line-height: 1.4;
    }
    
    .zw-intro-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .zw-advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .zw-advantage-card {
        padding: 28px 24px;
    }
    
    .zw-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .zw-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
    
    .zw-card-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .zw-card-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .zw-impact-gauge {
        padding: 40px 20px;
    }
    
    .zw-gauge-label {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .zw-gauge-subtitle {
        font-size: 13px;
        margin-bottom: 40px;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .zw-gauge-aspect-wrapper {
        padding-top: 40%;
        margin-bottom: 30px;
    }
    
    .zw-gauge-curved-container {
        padding: 0 20px;
    }
    
    .zw-connection-line {
        display: none;
    }
    
    .zw-milestone-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .zw-milestone-card {
        padding: 20px 18px;
        min-height: auto;
    }
    
    .zw-milestone-card-title {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .zw-milestone-card-desc {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .zw-conv-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .zw-video-container {
        overflow: hidden;
    }
    
    #zw-conv-video {
        border-radius: 8px;
    }
    
    .zw-conclusion-line1 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .zw-conclusion-line2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .zw-power-circle {
        display: none;
    }
    
    @keyframes zw-wave-rise {
        0% { transform: translateY(0) scale(1); }
        40% { transform: translateY(-8px) scale(1.05); }
        60% { transform: translateY(-8px) scale(1.05); }
        100% { transform: translateY(0) scale(1); }
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section { 
        padding: 4px 16px 20px; 
    }
    
    .logos-section { 
        padding: 20px 16px 15px; 
    }
    
    .services-section { 
        padding: 35px 16px 20px 16px !important; 
    }
    
    .zw-main-title {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .zw-subtitle {
        font-size: 17px;
        line-height: 1.3;
    }
    
    .zw-intro-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .zw-impact-gauge {
        padding: 35px 18px;
    }
    
    .zw-gauge-aspect-wrapper {
        padding-top: 45%;
    }
    
    .zw-conv-wrapper {
        padding: 0 15px;
    }
    
    .zw-video-container {
        overflow: hidden;
    }
    
    #zw-conv-video {
        border-radius: 6px;
    }
    
    .zw-conclusion-line1 {
        font-size: 17px;
    }
    
    .zw-conclusion-line2 {
        font-size: 18px;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .zw-advantage-card,
    .zw-icon-breathing,
    .zw-halo-bg,
    .zw-title-underline,
    .zw-wave-rise,
    .zw-marker-description,
    .zw-gauge-conclusion,
    .zw-gauge-subtitle,
    .zw-gauge-label,
    .zw-milestone-cards,
    .zw-card-border,
    .zw-card-hover-particle,
    .zw-milestone-card::before {
        animation: none !important;
        transition: none !important;
    }
    
    .zw-advantage-card:hover,
    .zw-milestone-card:hover,
    .zw-gauge-label:hover {
        transform: none;
    }
    
    .zw-gauge-fill-path {
        stroke-dashoffset: 0;
    }
    
    .zw-animate-fade,
    .zw-impact-gauge,
    .zw-milestone-cards,
    .zw-marker-description,
    .zw-gauge-conclusion,
    .zw-gauge-subtitle {
        opacity: 1;
        transform: none;
    }
    
    .zw-milestone,
    .zw-milestone-glow {
        opacity: 1 !important;
    }
    
    .zw-card-hover-particle {
        display: none !important;
    }
}/* End custom CSS */