/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   PERFORMANCE - DÉSACTIVATION DES ANIMATIONS LOURDES
   ============================================ */

/* Désactiver toutes les animations sur desktop pour éviter les bugs PC */
@media (min-width: 769px) {
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1s !important;
        transition-delay: 0s !important;
    }
    
    /* Maintenir les transformations statiques mais sans animation */
    .problem-icon:hover,
    .solution-icon:hover,
    .feature-icon:hover,
    .advantage-icon:hover {
        animation: none !important;
        transform: none !important;
    }
    
    /* Désactiver spécifiquement les animations de rotation et mouvements */
    [class*="pulse"],
    [class*="rotate"],
    [class*="float"],
    [class*="bounce"],
    [class*="shake"],
    [class*="glow"],
    [class*="shimmer"],
    [class*="sparkle"] {
        animation: none !important;
    }
    
    /* Préserver uniquement les transitions ultra-rapides pour les hovers */
    .btn:hover,
    .card:hover,
    .nav-link:hover {
        transition-duration: 0.1s !important;
    }
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Thème QuickQuote - Design System */
:root {
    --qq-primary: #06b6d4;        /* cyan 500 */
    --qq-primary-600: #0891b2;    /* cyan 600 */
    --qq-primary-700: #0e7490;    /* cyan 700 */
    --qq-accent: #f59e0b;         /* amber 500 */
    --qq-dark: #0f172a;           /* slate 900 */
    --qq-muted: #6b7280;          /* gray 500 */
    --qq-bg: #f8fafc;             /* slate 50 */
    --qq-light: #e2f8ff;          /* cyan-50 */
    
    /* Consistent spacing system */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 3rem;     /* 48px */
    --spacing-2xl: 4rem;    /* 64px */
    --spacing-3xl: 5rem;    /* 80px */
    
    /* Border radius system */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    
    /* Common glassmorphism */
    --blur-bg: rgba(255, 255, 255, 0.06);
    --blur-border: rgba(255, 255, 255, 0.12);
    --gradient-primary: linear-gradient(135deg, #06B6D4, #F59E0B);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Section backgrounds */
    --bg-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --bg-radial: radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.12), transparent),
                 radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.08), transparent);
}

/* Empêche tout débordement horizontal global (corrige bande blanche à droite) */
html { overflow-x: hidden; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: saturate(140%) blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-cta { margin-left: 12px; display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 1rem;
}

.lang-btn {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover { background: #f9fafb; }
.lang-btn.active { border-color: #6366f1; color: #4f46e5; background: #eef2ff; }

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.site-logo { height: 44px; width: auto; margin-right: 10px; display: block; }

/* Hide brand text next to the logo */
.nav-logo span { display: inline-block; margin-left: 8px; color: var(--qq-primary); font-weight: 800; letter-spacing: -0.02em; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden; /* coupe les éléments absolus (caméra) pour éviter le scroll horizontal */
}

.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; position: relative !important; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
.hero-copy { text-align: left; }
.hero-bullets { display: flex; gap: 10px; flex-wrap: wrap; margin: 10px 0 14px; }
.hero-bullets span { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; color: #eafcff; background: rgba(255,255,255,0.08); font-size: 0.9rem; border: none !important; }
.hero-bullets span span { border: none !important; background: none !important; padding: 0 !important; }
.hero-widget-card { display: flex; justify-content: center; align-items: center; }
@media (max-width: 900px) { 
    .hero-grid { grid-template-columns: 1fr; } 
    .hero-copy { text-align: center; } 
    .hero-bullets { justify-content: center; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enhanced Catering Simulator (Hero Widget) */
.catering-simulator {
    margin: 20px auto 0;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(251, 146, 60, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
}

.catering-simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fb923c, #ef4444, #f59e0b, #fb923c);
    background-size: 200% 100%;
    animation: shimmerTop 3s ease-in-out infinite;
}

/* Header Section */
.cs-header {
    padding: 12px 16px;
    text-align: center;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    color: white;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}

.cs-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 3px 0;
    background: linear-gradient(135deg, #ffffff, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.cs-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
    font-weight: 400;
}

/* Configuration Cards */
.cs-config {
    padding: 14px 18px;
}

.config-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.config-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.config-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.range-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.range-card label {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.range-card .range-selector {
    flex: 1;
    justify-content: space-between;
}

.config-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 146, 60, 0.3);
    transform: translateY(-2px);
}

.config-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

.config-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.cs-formula {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 6px 8px;
    color: #ffffff;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.cs-formula:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.2);
}

/* Slider Container */
.slider-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-guests {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.cs-guests::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ef4444);
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(251, 146, 60, 0.4);
}

.slider-value {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs-guests-readout {
    color: #fb923c;
    font-weight: 700;
    font-size: 0.85rem;
}

.slider-value small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
}

/* Range Selector */
.range-selector {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cs-range {
    display: none;
}

.range-option {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.range-option:hover {
    border-color: rgba(251, 146, 60, 0.5);
    background: rgba(251, 146, 60, 0.1);
}

.cs-range:checked + .range-option {
    border-color: #fb923c;
    background: rgba(251, 146, 60, 0.2);
}

.range-option span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
}

.range-option small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    margin-top: 1px;
}

/* Toggle Service */
.toggle-service {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toggle-switch {
    width: 32px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cs-delivery:checked + .toggle-switch,
.toggle-switch.active {
    background: linear-gradient(135deg, #fb923c, #ef4444);
}

.cs-delivery:checked + .toggle-switch::after,
.toggle-switch.active::after {
    transform: translateX(14px);
}

.toggle-content {
    display: flex;
    flex-direction: column;
}

.toggle-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
}

.toggle-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    margin-top: 1px;
}

/* Result Section */
.cs-result {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
}

.result-breakdown {
    margin-bottom: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.breakdown-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
}

.discount-value {
    color: #10b981 !important;
}

.result-total {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.total-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.total-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.currency {
    font-size: 1.1rem;
    opacity: 0.8;
}

.total-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
}

/* Call to Action */
.cs-cta {
    padding: 12px 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-btn-primary {
    background: linear-gradient(135deg, #fb923c, #ef4444);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(251, 146, 60, 0.3);
}

.cs-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.4);
}

/* Animations */
@keyframes shimmerTop {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .catering-simulator {
        margin: 12px;
        max-width: none;
    }
    
    .config-row-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .config-column {
        gap: 8px;
    }
    
    .cs-header {
        padding: 10px 12px;
    }
    
    .cs-config, .cs-result, .cs-cta {
        padding: 10px 12px;
    }
    
    .config-card {
        padding: 10px;
    }
    
    .cs-title {
        font-size: 1.05rem;
    }
    
    .total-amount {
        font-size: 1.3rem;
    }
    
    .cs-btn-primary {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6366f1;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.hero-image { display: flex; justify-content: center; align-items: center; }

.camera-mockup {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.camera-mockup i {
    font-size: 8rem;
    color: #fbbf24;
}

/* Nouveau mockup logiciel */
.software-mockup { display: flex; justify-content: center; align-items: center; transform: translateY(10px); }

.screen-mockup {
    width: 400px;
    height: 300px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.screen-header {
    background: #2a2a2a;
    padding: 8px 16px;
    display: flex;
    align-items: center;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #27ca3f;
}

.screen-content {
    padding: 20px;
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.camera-feed {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.camera-feed i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.surveillance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.detection-alert {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Powered By */
.hero-powered-by {
    position: absolute !important;
    bottom: -20px !important;
    right: 30px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 100;
}

/* Caméra de sécurité animée (coin haut droit du hero) */
.hero-security-camera {
    position: absolute;
    top: 80px;
    right: 0;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 1501;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}

/* Plaque de fixation au coin supérieur droit */
/* Base retirée pour un design minimal (trait seul) */

/* Douille inclinée pour une jonction homogène avec la tige */
/* Douille retirée */

.hero-security-camera .camera-arm {
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 14px;
    background: linear-gradient(180deg, #1f2937, #0d1526);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -2px 0 rgba(0,0,0,0.75), 0 6px 12px rgba(0,0,0,0.3);
    transform-origin: 100% 0%;
    transform: rotate(-45deg);
    z-index: 1;
}

.hero-security-camera .camera-arm::before { display: none; }

.hero-security-camera .camera-head {
    position: absolute;
    top: 30px; /* nudge up */
    right: 56px; /* further right */
    width: 78px;
    height: 78px;
    transform-origin: 95% 35%;
    animation: camera-sweep 5s ease-in-out infinite;
    z-index: 3;
}

/* Hub (base ronde) au point de jonction bras/caméra */
/* Retiré: hub circulaire */

.hero-security-camera .camera-body {
    width: 78px;
    height: 44px;
    background: linear-gradient(180deg, #0f172a 0%, #111827 60%, #0b1220 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    position: absolute;
    top: 12px;
    right: 0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -2px 0 rgba(0,0,0,0.6);
}

.hero-security-camera .camera-led {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239,68,68,0.85);
    animation: led-blink 2.4s ease-in-out infinite;
}

.hero-security-camera .camera-lens {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 45%, #67e8f9 0%, #22d3ee 40%, #0e7490 75%, #020617 100%);
    box-shadow: 0 0 10px rgba(34,211,238,0.85), 0 0 24px rgba(34,211,238,0.35);
    border: 2px solid rgba(255,255,255,0.15);
}

.hero-security-camera .camera-lens::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    filter: blur(0.3px);
}

@keyframes camera-sweep {
    0% { transform: rotate(-60deg); }
    50% { transform: rotate(-30deg); }
    100% { transform: rotate(-60deg); }
}

@keyframes led-blink {
  0%, 20% { opacity: 0.15; }
  25%, 35% { opacity: 1; }
  40%, 100% { opacity: 0.15; }
}

@media (max-width: 768px) {
    /* Plus d'espace en bas du hero pour éviter le chevauchement avec le badge powered-by */
    .hero { padding-bottom: 120px; }

    /* Légère marge sous le mockup pour dégager l'alerte en bas à droite */
    .screen-mockup { margin-bottom: 12px; }
  .hero-security-camera {
    top: 80px;
    right: 0;
    transform: scale(0.70);
    transform-origin: top right;
  }
  .hero-security-camera .camera-arm {
    width: 84px;
    height: 12px;
    transform: rotate(-45deg);
  }
  .hero-security-camera .camera-head {
    top: 30px;
    right: 50px;
  }
}

.hero-powered-by span {
    font-weight: 500;
}

.codally-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-powered-by:hover .codally-logo {
    opacity: 1;
}

/* Sections générales */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Problème et Solution */
.problem-solution { padding: 60px 0; background: linear-gradient(180deg, #0b1220 0%, #06111a 100%); position: relative; overflow: hidden; }

.problem-solution::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 300px at 10% 0%, rgba(6,182,212,0.09), transparent), radial-gradient(600px 260px at 90% 20%, rgba(245,158,11,0.08), transparent); pointer-events: none; }

.problem-solution-content { position: relative; z-index: 2; }
.comparison-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    align-items: center;
}
.problem-side, .solution-side { 
    background: var(--blur-bg); 
    border: 1px solid var(--blur-border); 
    border-radius: var(--radius-xl); 
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}
.problem-side:hover, .solution-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}
.side-sub { 
    color: rgba(255,255,255,0.85); 
    margin: 1rem 0 1.5rem; 
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}
.problem-side h2, .solution-side h2 { margin-top: 4px; }
/* Responsive Problem/Solution */
@media (max-width: 1024px) { 
    .comparison-grid { 
        align-items: center;
    }
    .problem-side, .solution-side {
        padding: 2rem;
    }
}

@media (max-width: 900px) { 
    .comparison-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .problem-timeline::before {
        left: 24px;
    }
    .solution-tiles {
        grid-template-columns: 1fr;
    }
    .solution-flow {
        flex-direction: column;
        gap: 0.5rem;
    }
    .flow-connector {
        width: 3px;
        height: 20px;
        transform: rotate(90deg);
    }
    .flow-connector::after {
        content: '↓';
        right: 50%;
        top: -8px;
        transform: translateX(50%);
    }
}

/* Problem Timeline Enhanced */
.problem-timeline { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
    position: relative;
    flex: 1;
}
.problem-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.6), rgba(245, 158, 11, 0.4));
    border-radius: 2px;
}
.timeline-item { 
    display: flex;
    align-items: flex-start; 
    gap: 1rem; 
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border-left: 3px solid rgba(239, 68, 68, 0.3);
    transition: var(--transition-smooth);
}
.timeline-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(239, 68, 68, 0.6);
    transform: translateX(5px);
}
.timeline-dot { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #ef4444, #f59e0b); 
    display: flex; 
    align-items: center;
    justify-content: center;
    color: #fff; 
    font-size: 1.2rem; 
    font-weight: 700; 
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}
.timeline-content h3 { 
    color: #eafcff; 
    font-size: 1.1rem; 
    margin: 0 0 0.5rem;
    font-weight: 600;
}
.timeline-content p { 
    color: rgba(255,255,255,0.85); 
    font-size: 0.9rem; 
    line-height: 1.5; 
    margin: 0;
}

.problem-section,
.solution-section {
    flex: 1;
}

.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.solution-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.problem-section h2,
.solution-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.problem-section h2::after {
    content: '❌';
    position: absolute;
    top: -20px;
    right: 20%;
    font-size: 2rem;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.problem-cards,
.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.problem-card,
.solution-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(239, 68, 68, 0.18);
}

.problem-icon,
.solution-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    flex-shrink: 0;
}

.problem-icon::after { display: none; }

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.problem-icon i {
    font-size: 1rem;
    color: white;
}

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

.problem-content,
.solution-content {
    flex: 1;
}

.problem-card h3,
.solution-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 2px 0 4px;
    color: #ffffff;
}

.problem-card p,
.solution-card p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px;
}

.problem-stats,
.solution-highlight {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.problem-stats > span,
.solution-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 14px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
}

/* Emphase du nombre pour les highlights Solution (sans badge intérieur) */
.solution-highlight strong {
    color: #34d399;
    font-weight: 800;
}

/* Séparateur discret entre nombre et libellé */
.solution-highlight span::before {
    content: '•';
    margin: 0 2px 0 0;
    color: rgba(255,255,255,0.5);
}

/* Hover/subtile focus */
.problem-stats > span:hover,
.solution-highlight:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 10px 18px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .problem-stats,
  .solution-highlight { justify-content: center; }
  .problem-stats > span,
  .solution-highlight { font-size: 0.78rem; padding: 6px 10px; }
}

/* Section Solution */
.solution-section {
    text-align: center;
    position: relative;
}

.solution-section::before { display: none; }

@keyframes sparkle {
    0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
    50% { transform: translateX(-50%) scale(1.2) rotate(180deg); }
}

.solution-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solution-section h2::after { display: none; }

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

.solution-cards {
    display: none;
}

.solution-tiles { 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
    margin: 0;
    flex: 1;
}
.tile { 
    display: flex; 
    align-items: flex-start; 
    gap: 0.75rem; 
    background: var(--blur-bg); 
    border: 1px solid var(--blur-border); 
    padding: 1.25rem; 
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border-left: 3px solid rgba(6, 182, 212, 0.3);
}
.tile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(6, 182, 212, 0.6);
    transform: translateX(-5px);
}
.tile-icon { 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center;
    justify-content: center;
    color: #05202a; 
    background: var(--gradient-primary); 
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}
.tile-content {
    flex: 1;
}
.tile h3 { 
    color: #eafcff; 
    font-size: 1rem; 
    margin: 0 0 0.25rem;
    font-weight: 600;
}
.tile p { 
    color: rgba(255,255,255,0.85); 
    font-size: 0.85rem; 
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 700px) { .solution-tiles { grid-template-columns: 1fr; } }

/* Enhanced Solution Flow */
.solution-flow { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 1rem; 
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.flow-node { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--blur-bg); 
    border: 1px solid var(--blur-border); 
    color: #eafcff; 
    border-radius: var(--radius-md); 
    padding: 1rem;
    text-align: center; 
    font-weight: 600;
    min-width: 80px;
    transition: var(--transition-smooth);
}
.flow-node:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.flow-node.highlight { 
    background: var(--gradient-primary); 
    color: #05202a;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}
.flow-connector { 
    width: 40px;
    height: 3px; 
    background: var(--gradient-primary); 
    border-radius: 2px;
    position: relative;
}
.flow-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--qq-primary);
    font-weight: bold;
}
.fn-icon { 
    width: 32px; 
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.flow-node.highlight .fn-icon {
    background: rgba(5, 32, 42, 0.2);
}
.fn-label { 
    font-size: 0.8rem;
    font-weight: 600;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.18);
}

.solution-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
}

.solution-icon::after { display: none; }

.solution-icon i {
    font-size: 1rem;
    color: white;
}

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

.solution-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 2px 0 4px;
    color: #ffffff;
}

.solution-card h3::after { display: none; }

.solution-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    font-size: 0.85rem;
    margin: 0 0 8px;
}

.solution-card .solution-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    padding: 4px 8px;
    border-radius: 8px;
    border-left: 2px solid #10b981;
}

.solution-card .solution-highlight strong {
    color: #34d399;
    font-size: 0.9rem;
}

/* Section Fonctionnalités et Avantages */
.features-advantages {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}


/* Angled divider between sections */
.section-divider { position: relative; height: 40px; background: transparent; }
.section-divider::before { content: ''; position: absolute; left: 0; right: 0; top: -40px; height: 80px; background: linear-gradient(180deg, rgba(11,18,32,1) 0%, rgba(248,250,252,1) 100%); transform: skewY(-3deg); transform-origin: top left; }

/* CTA band */
.cta-band { background: linear-gradient(90deg, var(--qq-primary) 0%, var(--qq-accent) 100%); color: #05202a; padding: 28px 0; }
.cta-band .container { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.cta-band h3 { margin: 0; font-size: 1.4rem; letter-spacing: -0.01em; }
.cta-actions { display: flex; gap: 10px; }
@media (max-width: 700px) { .cta-band .container { grid-template-columns: 1fr; text-align: center; } .cta-actions { justify-content: center; } }

/* Timeline for How It Works */
.how-timeline .timeline { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; }
.how-timeline .timeline-step { background: white; border: 1px solid rgba(6,182,212,0.18); border-radius: 12px; padding: 16px; position: relative; box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.how-timeline .step-marker { position: absolute; top: -12px; left: 16px; background: linear-gradient(135deg, var(--qq-primary), var(--qq-accent)); color: #05202a; font-weight: 800; border-radius: 999px; padding: 6px 10px; font-size: 0.85rem; box-shadow: 0 6px 16px rgba(6,182,212,0.25); }
.how-timeline .step-content h3 { margin: 8px 0 6px; color: #0b1220; font-size: 1rem; }
.how-timeline .step-content p { margin: 0; color: #475569; font-size: 0.95rem; }

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

/* Metrics band */
.metrics-band { background: linear-gradient(135deg, #eef7fa 0%, #f8fafc 100%); }
.metrics-band .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.metrics-band .metric { background: white; border: 1px solid rgba(6,182,212,0.18); border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.metrics-band .metric-value { font-size: 2rem; font-weight: 800; color: var(--qq-primary-700); letter-spacing: -0.02em; }
.metrics-band .metric-label { font-size: 0.95rem; color: #475569; margin-top: 6px; }

/* Integrations badges */
.integrations-badges .badge-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.integrations-badges .badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: white; border: 1px solid rgba(6,182,212,0.18); border-radius: 999px; color: #0b1220; box-shadow: 0 8px 18px rgba(0,0,0,0.05); }
.integrations-badges .badge i { color: var(--qq-primary-700); }

.features-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23e2e8f0"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.2;
}

.features-advantages .container {
    position: relative;
    z-index: 2;
}

.features-section,
.advantages-section {
    margin-bottom: 3rem;
}

.features-section h2,
.advantages-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1f2937;
    position: relative;
}

.features-section h2::after,
.advantages-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 1.25rem;
}

.feature-card {
    background: white;
    padding: 1rem 1rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.12);
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 8px;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.35);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
}

.feature-icon::after { display: none; }

.feature-icon i {
    font-size: 1rem;
    color: white;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
    grid-column: 2;
}

.feature-card h3::after { display: none; }

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 4px 0 0;
    grid-column: 1 / -1;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Section Avantages */
.advantages {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,0 30,8.66 30,21.65 15,30 0,21.65 0,8.66" fill="none" stroke="%23e2e8f0" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.advantages .container {
    position: relative;
    z-index: 2;
}

.advantages .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.advantages .section-header h2::after {
    content: '🏆';
    position: absolute;
    top: -20px;
    right: 20%;
    font-size: 2rem;
    animation: trophy 2s infinite;
}

@keyframes trophy {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.advantage-card {
    background: white;
    padding: 1rem 1rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.advantage-content {
    flex: 1;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.35);
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin: 0.25rem 0 0;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
    position: relative;
}

.advantage-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    opacity: 0.3;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.advantage-icon i {
    font-size: 1rem;
    color: white;
    animation: none;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
}

.advantage-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 2px 0 4px;
    color: #111827;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.45;
    font-size: 0.85rem;
    margin: 0 0 8px;
}

.advantage-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(245, 158, 11, 0.08);
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.advantage-stat::before { display: none; }

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #b45309;
}

.stat-label {
    font-size: 0.75rem;
    color: #92400e;
    letter-spacing: 0.2px;
    font-weight: 600;
}





/* Section Contact et Devis */
.contact {
    padding: 4rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden; /* évite tout débordement horizontal (caméra décorative) */
}

/* Caméra décorative pour la section contact (coin haut gauche) */
.contact-security-camera {
    position: absolute;
    top: -8px;
    left: 0;
    width: 220px;
    height: 160px;
    pointer-events: none;
    z-index: 1;
}

.contact-security-camera .camera-arm {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 12px;
    background: linear-gradient(180deg, #1f2937, #0d1526);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -2px 0 rgba(0,0,0,0.75), 0 6px 12px rgba(0,0,0,0.15);
    transform-origin: 0% 0%;
    transform: rotate(45deg);
}

.contact-security-camera .camera-head {
    position: absolute;
    top: 46px;
    left: 70px;
    width: 78px;
    height: 78px;
    transform-origin: 5% 35%;
    animation: contact-camera-sweep 5s ease-in-out infinite;
}

.contact-security-camera .camera-body {
    width: 78px;
    height: 44px;
    background: linear-gradient(180deg, #0f172a 0%, #111827 60%, #0b1220 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    position: absolute;
    top: 12px;
    left: 0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -2px 0 rgba(0,0,0,0.6);
}

.contact-security-camera .camera-led {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239,68,68,0.65);
    animation: led-blink 2.4s ease-in-out infinite;
}

.contact-security-camera .camera-lens {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 45%, #67e8f9 0%, #22d3ee 40%, #0e7490 75%, #020617 100%);
    box-shadow: 0 0 10px rgba(34,211,238,0.45), 0 0 20px rgba(34,211,238,0.25);
    border: 2px solid rgba(255,255,255,0.15);
}

@keyframes contact-camera-sweep {
    0% { transform: rotate(30deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(30deg); }
}

@media (max-width: 768px) {
  .contact-security-camera { top: -6px; left: 0; transform: scale(0.8); transform-origin: top left; }
  .contact-security-camera .camera-arm { width: 90px; transform: rotate(40deg); }
  .contact-security-camera .camera-head { top: 30px; left: 58px; }
}

.contact-header h2 { letter-spacing: -0.02em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; margin-top: 1.5rem; }
.info-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 18px; box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.info-card .info-sub { color: #6b7280; margin-bottom: 10px; }
.reason-list { list-style: none; display: grid; gap: 10px; margin: 0 0 12px; padding: 0; }
.reason-item { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; }
.icon-bullet { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--qq-primary), var(--qq-accent)); color: #05202a; font-size: 0.95rem; }
.reason-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.reason-step { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.reason-step .step-index { width: 28px; height: 28px; border-radius: 8px; background: #0f172a; color: #e5f6fb; display: grid; place-items: center; font-weight: 700; border: 1px solid rgba(6,182,212,0.25); }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 10px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: #eef7fa; border: 1px solid rgba(6,182,212,0.2); color: #0b1220; font-size: 0.85rem; }
.quick-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #eef7fa; color: #0b1220; border: 1px solid rgba(6,182,212,0.2); text-decoration: none; font-size: 0.9rem; }
.chip i { color: var(--qq-primary-700); }

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-reasons {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-reasons li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
    overflow-wrap: anywhere; /* évite le dépassement horizontal */
    word-break: break-word;
}

.contact-reasons li:last-child {
    border-bottom: none;
}

.contact-reasons i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-reasons strong {
    color: #1f2937;
}

/* Empêche les spans traduits de déborder en mobile */
.contact-reasons li span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); width: 100%; max-width: 520px; border: 1px solid #e5e7eb; }
.contact-form-card.enhanced .form-header { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; margin-bottom: 10px; }
.form-badge { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--qq-primary), var(--qq-primary-700)); color: #05202a; }
.privacy-note { margin-top: 10px; color: #6b7280; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.form-consent { margin: 8px 0; }
.consent { display: inline-grid; grid-auto-flow: column; align-items: center; gap: 8px; font-size: 0.9rem; color: #4b5563; }
.field .hint { color: #9ca3af; font-size: 0.8rem; margin-top: 4px; display: block; }
.alt-contact { margin-top: 6px; font-size: 0.9rem; color: #6b7280; }
.alt-contact a { color: var(--qq-primary-700); text-decoration: none; }
.alt-contact a:hover { text-decoration: underline; }
.submit-btn { position: relative; }
.btn-spinner { width: 0; height: 0; border: 2px solid transparent; border-top-color: #05202a; border-radius: 50%; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); animation: none 0.6s linear infinite; }
.submit-btn.loading .btn-spinner { width: 14px; height: 14px; animation-name: spin; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.form-toggle {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #eef2ff, #f3f4f6);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px;
    gap: 6px;
    margin: 0 auto 1rem; /* center horizontally */
    width: max-content;  /* shrink to content (desktop) */
    overflow: hidden;
}

.form-toggle .toggle-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
}

.toggle-btn {
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: normal; /* autorise le saut de ligne dans les libellés longs */
    word-break: break-word;
}

.toggle-btn i { color: #6b7280; font-size: 0.95rem; }
.toggle-btn.active i { color: #4f46e5; }
.toggle-btn.active { color: #111827; }

.quote-only { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-toggle { width: 100%; }
  .toggle-btn { text-align: center; }
  .quote-only { grid-template-columns: 1fr; }
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    text-align: center;
}

.contact-form-card p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Éléments de contact */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-wrap: anywhere; /* casse les emails/urls/numéros si besoin */
    word-break: break-word;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
}

.contact-item i {
    color: #6366f1;
    font-size: 1.2rem;
    width: 20px;
}

/* Styles généraux pour les formulaires */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}



/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #6366f1;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-language .lang-switcher { margin-top: 0; }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
}

/* Footer Powered By */
.footer-powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #9ca3af;
    background: rgba(55, 65, 81, 0.1);
    transition: all 0.3s ease;
}

.footer-powered-by:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.footer-powered-by span {
    font-weight: 500;
}

.footer-powered-by .codally-logo {
    height: 18px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-powered-by:hover .codally-logo {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .camera-mockup {
        width: 200px;
        height: 200px;
    }

    .camera-mockup i {
        font-size: 5rem;
    }

    .screen-mockup {
        width: 300px;
        height: 225px;
    }

    .problem-solution-content {
        flex-direction: column;
        gap: 2rem;
    }

    .solution-arrow { transform: rotate(90deg); width: 60px; height: 60px; font-size: 20px; }

    .problem-cards,
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Centrage horizontal des cartes Solution */
    .solution-cards { justify-items: center; }
    .solution-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .solution-card .solution-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .solution-card .solution-highlight { align-items: center; }

    .features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-card,
    .solution-card,
    .advantage-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .problem-icon,
    .solution-icon,
    .advantage-icon {
        margin: 0 auto;
    }

    /* Centrage parfait des cartes Solution en mobile */
    .solution-card { text-align: center; }
    .solution-card .solution-content { display: grid; place-items: center; }
    .solution-card .solution-highlight {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    .solution-card .solution-highlight strong { display: block; line-height: 1; }
    .solution-card .solution-highlight span { display: block; line-height: 1.1; }



    .form-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-powered-by {
        bottom: -30px !important;
        right: 10px;
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .hero-powered-by .codally-logo {
        height: 16px;
    }
    
    .footer-powered-by {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .footer-powered-by .codally-logo {
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-cta-modern {
        display: none !important;
    }
    
    /* Le sélecteur de langue est dans le menu mobile */
}

/* ================= QuickQuote Visual Overrides ================ */
/* Palette & tokens */
:root {
  --qq-primary: #06b6d4;
  --qq-primary-600: #0891b2;
  --qq-primary-700: #0e7490;
  --qq-accent: #f59e0b;
  --qq-dark: #0f172a;
  --qq-muted: #6b7280;
  --qq-bg: #f8fafc;
}

/* Typography */
body { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif; }

/* Navbar Modern Override */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 32, 42, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 32px rgba(6, 182, 212, 0.1);
}

.nav-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    position: relative;
    align-items: center;
    gap: 2rem;
    height: 76px;
}

.nav-brand-modern {
    display: flex;
    align-items: center;
}

.nav-logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-weight: 800;
    font-size: 1.4rem;
    color: #e2f8ff;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.75rem;
    color: rgba(226, 248, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-center-modern {
    display: flex;
    justify-content: center;
}

.nav-menu-modern {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 248, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(245, 158, 11, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.nav-link-modern:hover::before {
    opacity: 1;
}

.nav-link-modern:hover {
    color: #e2f8ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
}

.nav-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-text {
    font-weight: 600;
}

.nav-actions-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher-modern {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
}

.lang-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(226, 248, 255, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn-modern:hover,
.lang-btn-modern.active {
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    transform: scale(1.05);
}



.nav-cta-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.nav-cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #06B6D4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Menu Mobile */
.nav-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0b1220 0%, #05202a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1.5rem;
    z-index: 1001;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.mobile-menu-list li {
    margin-bottom: 0.75rem;
}

.mobile-menu-list a {
    display: block;
    color: #e2f8ff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-list a:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #06B6D4;
}

.mobile-lang-switcher {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.mobile-lang-label {
    display: block;
    color: rgba(226, 248, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(226, 248, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    border-color: transparent;
}

/* Menu mobile visible */
.nav-mobile-menu.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding: 1.5rem;
}

/* Animation du bouton hamburger */
.nav-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Footer Modern */
.footer-modern {
    background: linear-gradient(180deg, #0b1220 0%, #05202a 100%);
    color: #e2f8ff;
    overflow: hidden;
}

/* Footer Hero Band */
.footer-hero-band {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(245, 158, 11, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.footer-hero-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2f8ff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-hero-text p {
    font-size: 1.1rem;
    color: rgba(226, 248, 255, 0.8);
    margin: 0;
}

.footer-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-cta-primary, .footer-cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.footer-cta-primary {
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.footer-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6, 182, 212, 0.4);
}

.footer-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2f8ff;
}

.footer-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Footer Main Content */
.footer-main-content {
    padding: 4rem 0 2rem;
}

.footer-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand-column {
    padding-right: 1rem;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 16px rgba(6, 182, 212, 0.3));
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    color: #e2f8ff;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-tagline {
    font-size: 0.8rem;
    color: rgba(226, 248, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    color: rgba(226, 248, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(226, 248, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.3);
}

/* Navigation & Solutions Columns */
.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2f8ff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: rgba(226, 248, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 0;
    position: relative;
}

.footer-nav-link:hover {
    color: #06B6D4;
    padding-left: 8px;
}

.footer-nav-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #F59E0B;
}

.footer-nav-link:hover::before {
    opacity: 1;
    left: -16px;
}

/* Contact Column */
.footer-contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(226, 248, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #06B6D4;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #06B6D4;
}

.footer-lang-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2f8ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-switcher-footer {
    display: flex;
    gap: 8px;
}

.lang-btn-footer {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(226, 248, 255, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-btn-footer:hover,
.lang-btn-footer.active {
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-copyright p {
    margin: 0;
    color: rgba(226, 248, 255, 0.7);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(226, 248, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #06B6D4;
}

.footer-powered-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(226, 248, 255, 0.7);
    font-size: 0.85rem;
}

.powered-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.powered-link:hover {
    color: #06B6D4;
    transform: scale(1.05);
}

.powered-logo {
    height: 28px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.powered-text {
    font-weight: 600;
}

/* Workflow Modern Section */
.workflow-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2f8ff;
    position: relative;
    overflow: hidden;
}

.workflow-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1), transparent),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.08), transparent);
    pointer-events: none;
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.workflow-header {
    text-align: center;
    margin-bottom: 4rem;
}

.workflow-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2f8ff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-subtitle {
    font-size: 1.2rem;
    color: rgba(226, 248, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Workflow Masterpiece - Timeline Horizontal ULTIME */
.workflow-masterpiece {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
    background: 
        linear-gradient(135deg, 
            rgba(6, 182, 212, 0.025) 0%, 
            rgba(59, 130, 246, 0.03) 25%,
            rgba(147, 51, 234, 0.025) 50%,
            rgba(245, 158, 11, 0.03) 75%,
            rgba(6, 182, 212, 0.02) 100%
        ),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 52px;
    padding: 5.5rem 4.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 40px 80px rgba(6, 182, 212, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(6, 182, 212, 0.05),
        inset 0 3px 0 rgba(255, 255, 255, 0.15),
        inset 0 0 50px rgba(6, 182, 212, 0.02);
    position: relative;
    overflow: hidden;
    animation: masterpiece-glow 8s ease-in-out infinite;
}

@keyframes masterpiece-glow {
    0%, 100% { 
        box-shadow: 
            0 40px 80px rgba(6, 182, 212, 0.08),
            0 20px 50px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(6, 182, 212, 0.05),
            inset 0 3px 0 rgba(255, 255, 255, 0.15),
            inset 0 0 50px rgba(6, 182, 212, 0.02);
    }
    50% { 
        box-shadow: 
            0 40px 80px rgba(6, 182, 212, 0.12),
            0 20px 50px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(6, 182, 212, 0.08),
            inset 0 3px 0 rgba(255, 255, 255, 0.18),
            inset 0 0 50px rgba(6, 182, 212, 0.04);
    }
}

/* Workflow Masterpiece Background Effect */
.workflow-masterpiece::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(245, 158, 11, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.04) 0%, transparent 65%),
        radial-gradient(circle at 25% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.workflow-masterpiece::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.015) 50%, transparent 70%),
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(147, 51, 234, 0.02) 0%, transparent 25%);
    pointer-events: none;
    z-index: 1;
    animation: particles-float 12s ease-in-out infinite;
}

@keyframes particles-float {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0) scale(1);
    }
    33% { 
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
    66% { 
        opacity: 0.7;
        transform: translateY(5px) scale(0.98);
    }
}

/* Workflow Progress Header */
.workflow-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(6, 182, 212, 0.12);
    position: relative;
    z-index: 1;
}

.progress-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #eafcff;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-title p {
    font-size: 1rem;
    color: rgba(226, 248, 255, 0.8);
    margin: 0;
}

.progress-indicator-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-track {
    width: 200px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #06B6D4, #F59E0B);
    border-radius: 12px;
    width: 25%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.4), rgba(245, 158, 11, 0.4));
    border-radius: 12px;
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
}

.progress-stats {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #06B6D4;
}

.current-step {
    font-size: 1.3rem;
    color: #F59E0B;
}

.step-separator {
    margin: 0 0.5rem;
    color: rgba(226, 248, 255, 0.5);
}

/* Workflow Masterpiece - Timeline Horizontale */
.workflow-masterpiece .workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* Desktop: Timeline Horizontale */
@media (min-width: 1024px) {
    .workflow-masterpiece .workflow-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
    }
    
    /* Ligne de connexion horizontale ANIMÉE */
    .workflow-masterpiece .workflow-steps::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 15%;
        right: 15%;
        height: 4px;
        background: linear-gradient(90deg, 
            #06B6D4 0%, 
            #3B82F6 33%, 
            #9333EA 66%, 
            #F59E0B 100%
        );
        border-radius: 4px;
        z-index: 0;
        box-shadow: 
            0 0 25px rgba(6, 182, 212, 0.4),
            0 0 50px rgba(6, 182, 212, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        animation: timeline-shimmer 3s ease-in-out infinite;
    }
    
    /* Effet shimmer sur la timeline */
    .workflow-masterpiece .workflow-steps::after {
        content: '';
        position: absolute;
        top: 58px;
        left: 15%;
        right: 15%;
        height: 8px;
        background: linear-gradient(90deg, 
            transparent 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 70%,
            transparent 100%
        );
        border-radius: 8px;
        z-index: 1;
        animation: shimmer-flow 4s linear infinite;
        opacity: 0.7;
    }

@keyframes timeline-shimmer {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(6, 182, 212, 0.4),
            0 0 50px rgba(6, 182, 212, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(6, 182, 212, 0.6),
            0 0 70px rgba(6, 182, 212, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes shimmer-flow {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    50% { 
        opacity: 0.7;
    }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}
    

}

@keyframes timeline-pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.7; 
    }
}

/* Workflow Steps Base - Animations Supprimées */
.workflow-masterpiece .workflow-step {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 1rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    transition: none; /* SUPPRIMER transitions */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 1; /* Toujours visible, plus d'animation */
    transform: none; /* SUPPRIMER transform */
    animation: none; /* SUPPRIMER animations */
}

/* Animations d'entrée supprimées pour desktop clean */

/* ================================================
   DESKTOP CLEAN - LAYOUT RÉORGANISÉ SANS ANIMATIONS
   ================================================ */
@media (min-width: 1024px) {
    .workflow-masterpiece {
        padding: 4rem 3rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    
    /* NOUVELLE ORGANISATION : 2x2 Grid Clean */
    .workflow-masterpiece .workflow-steps {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
        margin-top: 2rem;
        position: static;
    }
    
    /* SUPPRIMER timeline horizontale et animations */
    .workflow-masterpiece .workflow-steps::before,
    .workflow-masterpiece .workflow-steps::after {
        display: none !important;
    }
    
    /* Cards Desktop - Layout Clean avec BORDURES ANIMÉES OPTIMISÉES */
    .workflow-masterpiece .workflow-step {
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        position: static !important;
        max-width: none !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 2px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 20px !important;
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.04) !important;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                   border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                   background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                   box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        min-height: 400px !important; /* Hauteur minimale pour flexbox */
        justify-content: space-between !important; /* Étaler le contenu */
        will-change: transform, border-color, background-color, box-shadow !important; /* GPU acceleration */
    }
    
    /* État: Étape terminée */
    .workflow-masterpiece .workflow-step.completed {
        border-color: rgba(34, 197, 94, 0.6) !important;
        background: rgba(34, 197, 94, 0.05) !important;
        box-shadow: 
            0 8px 20px rgba(34, 197, 94, 0.15),
            0 0 0 1px rgba(34, 197, 94, 0.2) !important;
    }
    
    /* État: Étape actuelle */
    .workflow-masterpiece .workflow-step.active {
        border-color: rgba(6, 182, 212, 0.8) !important;
        background: rgba(6, 182, 212, 0.08) !important;
        box-shadow: 
            0 12px 30px rgba(6, 182, 212, 0.2),
            0 0 0 2px rgba(6, 182, 212, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        transform: translateY(-2px) !important;
    }
    
    /* État: Étape à venir */
    .workflow-masterpiece .workflow-step.pending {
        border-color: rgba(255, 255, 255, 0.05) !important;
        background: rgba(255, 255, 255, 0.02) !important;
        opacity: 0.7 !important;
    }
    
    /* SUPPRIMER tous les connecteurs et points */
    .workflow-masterpiece .workflow-step::before,
    .workflow-masterpiece .workflow-step::after {
        display: none !important;
    }
    
    /* Hover simple sans animation */
    .workflow-masterpiece .workflow-step:hover {
        background: rgba(255, 255, 255, 0.06) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 
            0 12px 25px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.08) !important;
        transform: none !important; /* SUPPRIMER transform animations */
        animation: none !important; /* SUPPRIMER toutes animations */
    }
}

/* Animations supprimées pour desktop clean */

/* Header Desktop Clean - Layout Horizontal LARGEUR COMPLÈTE */
@media (min-width: 1024px) {
    .workflow-masterpiece .step-header {
        display: grid !important;
        grid-template-columns: 60px 1fr 60px !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 1.75rem 2rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        text-align: left !important;
        position: relative !important;
        border-radius: 20px 20px 0 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    /* SUPPRIMER effet overlay */
    .workflow-masterpiece .step-header::before {
        display: none !important;
    }
    
    /* Badge Desktop Simple */
    .workflow-masterpiece .step-badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.75rem !important;
        border-radius: 12px !important;
        background: rgba(6, 182, 212, 0.1) !important;
        border: 1px solid rgba(6, 182, 212, 0.2) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-weight: 600 !important;
        box-shadow: none !important; /* SUPPRIMER box-shadow animé */
        color: #06B6D4 !important;
    }
    
    /* Badge Info Layout */
    .workflow-masterpiece .step-badge-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: flex-start !important;
    }
    
    /* Title Desktop Simple */
    .workflow-masterpiece .step-title {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.95) !important;
        /* SUPPRIMER gradient text */
    }
    
    /* Circle Numbers Desktop avec ÉTATS */
    .workflow-masterpiece .step-number-circle {
        width: 55px !important;
        height: 55px !important;
        background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
        box-shadow: 
            0 4px 12px rgba(6, 182, 212, 0.2),
            0 0 0 2px rgba(6, 182, 212, 0.1) !important;
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                   background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                   box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform, background, box-shadow !important;
    }
    
    /* Circle pour étape terminée */
    .workflow-masterpiece .workflow-step.completed .step-number-circle {
        background: linear-gradient(135deg, #22C55E, #16A34A) !important;
        box-shadow: 
            0 4px 12px rgba(34, 197, 94, 0.3),
            0 0 0 2px rgba(34, 197, 94, 0.2) !important;
    }
    
    /* Circle pour étape actuelle */
    .workflow-masterpiece .workflow-step.active .step-number-circle {
        background: linear-gradient(135deg, #06B6D4, #0891B2) !important;
        box-shadow: 
            0 6px 18px rgba(6, 182, 212, 0.4),
            0 0 0 3px rgba(6, 182, 212, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
        transform: scale(1.1) !important;
    }
    
    /* Circle pour étape à venir */
    .workflow-masterpiece .workflow-step.pending .step-number-circle {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    }
    
    .workflow-masterpiece .step-number-circle .step-number {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: white !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    /* Checkmark pour étapes terminées */
    .workflow-masterpiece .workflow-step.completed .step-number-circle .step-number::before {
        content: "✓" !important;
        font-size: 1.3rem !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        color: white !important;
    }
    
    .workflow-masterpiece .workflow-step.completed .step-number-circle .step-number {
        font-size: 0 !important; /* Cacher le numéro */
        position: relative !important;
    }
    
    /* Numéro en gras pour étape actuelle */
    .workflow-masterpiece .workflow-step.active .step-number-circle .step-number {
        font-weight: 800 !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Numéro discret pour étapes à venir */
    .workflow-masterpiece .workflow-step.pending .step-number-circle .step-number {
        color: rgba(255, 255, 255, 0.6) !important;
        font-weight: 600 !important;
    }
    
    /* Icon Desktop Simple */
    .workflow-masterpiece .step-icon {
        width: 50px !important;
        height: 50px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important; /* SUPPRIMER box-shadow complexe */
        border-radius: 12px !important;
    }
    
    .workflow-masterpiece .step-icon i {
        font-size: 1.3rem !important;
        color: #06B6D4 !important;
        filter: none !important; /* SUPPRIMER drop-shadow */
    }
    
    /* Content Desktop Clean - LARGEUR COMPLÈTE */
    .workflow-masterpiece .step-content {
        padding: 2rem !important;
        text-align: left !important;
        background: transparent !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        flex: 1 !important; /* Prendre tout l'espace disponible */
    }
    
    .workflow-masterpiece .step-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: rgba(226, 248, 255, 0.85) !important;
        margin-bottom: 1.25rem !important;
    }
    
    .workflow-masterpiece .step-features {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .workflow-masterpiece .step-features li {
        font-size: 0.8rem !important;
        padding: 0.375rem 0 !important;
        color: rgba(226, 248, 255, 0.8) !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .workflow-masterpiece .step-features li i {
        color: #06B6D4 !important;
        font-size: 0.7rem !important;
        width: 14px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }
    
    /* Metrics Desktop Clean - LARGEUR COMPLÈTE AU BAS */
    .workflow-masterpiece .step-metrics {
        display: flex !important;
        flex-direction: row !important;
        padding: 1.25rem 2rem 1.75rem 2rem !important;
        gap: 1rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 0 0 20px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        margin-top: auto !important; /* Forcer au bas de la carte */
    }
    
    .workflow-masterpiece .metric {
        flex: 1 !important;
        padding: 0.75rem 1rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 10px !important;
        text-align: center !important;
        font-size: 0.75rem !important;
        font-weight: 500 !important;
        color: rgba(226, 248, 255, 0.8) !important;
        box-shadow: none !important; /* SUPPRIMER box-shadow complexe */
        transition: none !important; /* SUPPRIMER transitions */
    }
    
    /* Hover simple sans animation */
    .workflow-masterpiece .metric:hover {
        background: rgba(255, 255, 255, 0.04) !important;
        border-color: rgba(255, 255, 255, 0.12) !important;
        transform: none !important; /* SUPPRIMER transform */
        box-shadow: none !important; /* SUPPRIMER animations glow */
    }
    
    .workflow-masterpiece .metric i {
        font-size: 0.8rem !important;
        color: #06B6D4 !important;
        margin-bottom: 0.25rem !important;
        display: block !important;
    }
}

.workflow-masterpiece .step-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

/* Masterpiece Number Circles - Plus Imposants */
.workflow-masterpiece .step-number-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 8px 20px rgba(6, 182, 212, 0.3),
        0 0 0 3px rgba(6, 182, 212, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Couleurs spécifiques par étape */
.workflow-masterpiece .workflow-step[data-step="2"] .step-number-circle {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 
        0 8px 20px rgba(59, 130, 246, 0.3),
        0 0 0 3px rgba(59, 130, 246, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.workflow-masterpiece .workflow-step[data-step="3"] .step-number-circle {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    box-shadow: 
        0 8px 20px rgba(147, 51, 234, 0.3),
        0 0 0 3px rgba(147, 51, 234, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.workflow-masterpiece .workflow-step[data-step="4"] .step-number-circle {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 
        0 8px 20px rgba(245, 158, 11, 0.3),
        0 0 0 3px rgba(245, 158, 11, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.workflow-masterpiece .step-number-circle .step-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Glow Effects Supprimés pour Desktop Clean */
.workflow-masterpiece .number-glow {
    display: none; /* SUPPRIMER complètement les effets glow */
}

.workflow-masterpiece .step-badge-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.workflow-masterpiece .step-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #06B6D4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0.4rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Couleurs spécifiques par étape pour badges */
.workflow-masterpiece .workflow-step[data-step="2"] .step-badge {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.workflow-masterpiece .workflow-step[data-step="3"] .step-badge {
    color: #9333EA;
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
}

.workflow-masterpiece .workflow-step[data-step="4"] .step-badge {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.workflow-masterpiece .step-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #eafcff;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #eafcff, rgba(226, 248, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.step-icon i {
    font-size: 1.4rem;
    color: #06B6D4;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.2);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Step Content */
.step-content {
    padding: 1.5rem 2rem;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(226, 248, 255, 0.9);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(226, 248, 255, 0.8);
}

.step-features li i {
    color: #06B6D4;
    font-size: 0.75rem;
    width: 12px;
    flex-shrink: 0;
}

/* Step Metrics */
.step-metrics {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.1);
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.metric i {
    font-size: 0.8rem;
    color: #06B6D4;
}

.metric span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(226, 248, 255, 0.9);
}

/* Hover Effects supprimés pour desktop clean */

/* Tous les hover effects spécifiques supprimés pour desktop clean */

.workflow-ultimate .workflow-step:hover .icon-pulse {
    opacity: 1;
}

.workflow-ultimate .workflow-step:hover .number-glow {
    opacity: 1;
    filter: blur(8px);
}

.workflow-ultimate .workflow-step.active {
    opacity: 1;
    background: rgba(6, 182, 212, 0.06);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 
        0 12px 25px rgba(6, 182, 212, 0.12),
        0 0 0 1px rgba(6, 182, 212, 0.1);
}

.workflow-ultimate .workflow-step.active .icon-pulse {
    opacity: 0.8;
}

.workflow-ultimate .workflow-step.final.active {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.2);
}

.workflow-ultimate .workflow-step.final .step-number-circle {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.workflow-ultimate .workflow-step.final .step-icon {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.workflow-ultimate .workflow-step.final .step-icon i {
    color: #F59E0B;
}

.workflow-ultimate .workflow-step.final .metric {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
}

.workflow-ultimate .workflow-step.final .metric i {
    color: #F59E0B;
}

/* Performance Stats Section */
.workflow-performance {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.performance-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #eafcff;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-header p {
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.perf-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.perf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.05), transparent);
    transition: left 0.5s ease;
}

.perf-card:hover {
    background: rgba(6, 182, 212, 0.04);
    border-color: rgba(6, 182, 212, 0.12);
    transform: translateY(-2px);
}

.perf-card:hover::before {
    left: 100%;
}

.perf-card.automation:hover {
    background: rgba(147, 51, 234, 0.04);
    border-color: rgba(147, 51, 234, 0.12);
}

.perf-card.accuracy:hover {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.12);
}

.perf-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perf-card.time .perf-icon {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.perf-card.automation .perf-icon {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.perf-card.accuracy .perf-icon {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.perf-icon i {
    font-size: 1.2rem;
    z-index: 2;
}

.perf-card.time .perf-icon i {
    color: #06B6D4;
}

.perf-card.automation .perf-icon i {
    color: #9333EA;
}

.perf-card.accuracy .perf-icon i {
    color: #F59E0B;
}

.perf-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.perf-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #eafcff;
    line-height: 1;
}

.perf-label {
    font-size: 0.85rem;
    color: rgba(226, 248, 255, 0.7);
    line-height: 1.2;
}

.workflow-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    align-items: start;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(245, 158, 11, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover::before {
    opacity: 1;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.workflow-step:hover::after {
    left: 100%;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #05202a;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(226, 248, 255, 0.6);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #eafcff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #eafcff, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-details p {
    color: rgba(226, 248, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.step-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(226, 248, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.step-features i {
    color: #06B6D4;
    font-size: 0.8rem;
}

/* Advanced Workflow Animation - Fully Integrated */
.workflow-animation-advanced {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
}



/* Workflow Header - Simplified */
.workflow-animation-advanced .workflow-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    text-align: center;
}

.workflow-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #06B6D4;
    margin: 0 0 0.5rem 0;
}

.workflow-title p {
    font-size: 0.85rem;
    color: rgba(226, 248, 255, 0.8);
    margin: 0 0 1rem 0;
}

/* Progress Bar */
.workflow-progress-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-track {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #06B6D4, #F59E0B);
    border-radius: 10px;
    width: 25%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

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

.progress-indicator {
    position: absolute;
    right: -4px;
    top: -2px;
    width: 12px;
    height: 12px;
    background: #F59E0B;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
    animation: pulse-indicator 1.5s infinite;
}

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

.progress-stats {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #06B6D4;
}

.current-step {
    font-size: 1.2rem;
    color: #F59E0B;
}

.step-separator {
    margin: 0 0.5rem;
    color: rgba(226, 248, 255, 0.5);
}

/* Workflow Container */
.workflow-container {
    position: relative;
    z-index: 1;
}

.workflow-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Advanced Workflow Steps - Compact */
.workflow-animation-advanced .workflow-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.8s ease;
}

.workflow-animation-advanced .workflow-step.active {
    opacity: 1;
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    transform: translateX(5px);
}

.workflow-step.active::before {
    left: 100%;
}

.workflow-step.final.active {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 
        0 10px 30px rgba(245, 158, 11, 0.15),
        0 0 0 1px rgba(245, 158, 11, 0.1);
}

/* Advanced Step Numbers - Compact */
.workflow-animation-advanced .step-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    border: 2px solid rgba(6, 182, 212, 0.3);
    font-size: 1rem;
    font-weight: 700;
    color: #06B6D4;
    transition: all 0.4s ease;
}

.workflow-animation-advanced .workflow-step.active .step-number {
    background: linear-gradient(135deg, #06B6D4, #0891b2);
    border-color: transparent;
    color: #05202a;
    transform: scale(1.1);
}

.workflow-step.final.active .step-number {
    background: linear-gradient(135deg, #F59E0B, #d97706);
}

.number-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #06B6D4;
    opacity: 0;
    animation: number-glow 2s infinite;
}

.workflow-step.active .number-glow {
    opacity: 1;
}

@keyframes number-glow {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Step Visual */
.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(245, 158, 11, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workflow-step.active .icon-background {
    opacity: 1;
    animation: icon-rotate 8s linear infinite;
}

@keyframes icon-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.step-icon {
    font-size: 2rem;
    color: rgba(226, 248, 255, 0.7);
    z-index: 2;
    transition: all 0.4s ease;
}

.workflow-step.active .step-icon {
    color: #06B6D4;
    transform: scale(1.2);
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06B6D4;
    border-radius: 50%;
    opacity: 0;
}

.workflow-step.active .particle {
    animation: particle-float 3s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

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

/* Data Flow */
.step-data-flow {
    display: flex;
    gap: 4px;
    align-items: center;
}

.data-point {
    width: 6px;
    height: 6px;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.workflow-step.active .data-point {
    background: #06B6D4;
    animation: data-pulse 1.5s infinite;
}

.data-point:nth-child(2) { animation-delay: 0.2s; }
.data-point:nth-child(3) { animation-delay: 0.4s; }

@keyframes data-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Advanced Step Details - Compact */
.workflow-animation-advanced .step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.step-badge.success {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border-color: rgba(245, 158, 11, 0.3);
}

.workflow-animation-advanced .step-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #eafcff;
    margin: 0;
    transition: color 0.3s ease;
}

.workflow-step.active .step-details h4 {
    color: #06B6D4;
}

.workflow-animation-advanced .step-details p {
    font-size: 0.8rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.step-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(226, 248, 255, 0.6);
}

.metric i {
    color: rgba(6, 182, 212, 0.7);
}

.workflow-step.active .metric {
    color: rgba(226, 248, 255, 0.9);
}

.workflow-step.active .metric i {
    color: #06B6D4;
}

/* Advanced Workflow Connectors - Simplified */
.workflow-animation-advanced .workflow-connector {
    display: none;
}

.connector-path {
    position: relative;
    width: 100px;
    height: 60px;
}

.connector-svg {
    width: 100%;
    height: 100%;
}

.flow-pulse {
    position: absolute;
    top: 0;
    left: 48%;
    width: 4px;
    height: 4px;
    background: #06B6D4;
    border-radius: 50%;
    animation: flow-pulse 2s infinite linear;
}

@keyframes flow-pulse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(60px);
        opacity: 0;
    }
}

.connector-arrow {
    color: rgba(6, 182, 212, 0.6);
    font-size: 0.9rem;
    animation: connector-bounce 2s infinite;
}

@keyframes connector-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* Advanced Workflow Stats - Compact */
.workflow-animation-advanced .workflow-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-animation-advanced .stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.05), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.1);
}

.stat-card:hover::before {
    left: 100%;
}

.workflow-animation-advanced .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(245, 158, 11, 0.2));
    border-radius: 8px;
    font-size: 1rem;
    color: #06B6D4;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.workflow-animation-advanced .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #eafcff;
    line-height: 1;
}

.workflow-animation-advanced .stat-label {
    font-size: 0.7rem;
    color: rgba(226, 248, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
    opacity: 0.6;
    transform: translateX(-10px);
}

.flow-step.active {
    opacity: 1;
    transform: translateX(0);
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
}

.flow-step.final {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
}

.step-circle {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.flow-step.active .step-circle {
    background: linear-gradient(135deg, #06B6D4, #0891b2);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.flow-step.final .step-circle {
    background: linear-gradient(135deg, #F59E0B, #d97706);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.step-icon {
    font-size: 1.6rem;
    color: #eafcff;
    z-index: 2;
}

.flow-step.active .step-icon,
.flow-step.final .step-icon {
    color: #05202a;
}

.step-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #06B6D4;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

.flow-step.active .step-pulse {
    opacity: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.step-content {
    text-align: left;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #eafcff;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.flow-step.active .step-content h4 {
    color: #06B6D4;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
    transition: color 0.3s ease;
}

.flow-step.active .step-content p {
    color: rgba(226, 248, 255, 0.9);
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.1));
    border-radius: 1px;
}

.connector-arrow {
    position: absolute;
    bottom: -2px;
    color: rgba(6, 182, 212, 0.6);
    font-size: 1rem;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.workflow-timer {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F59E0B;
    font-size: 0.9rem;
    font-weight: 500;
}

.timer-display i {
    animation: tick 1s infinite;
}

@keyframes tick {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

/* Integrations Section */
.integrations-section {
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.integrations-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #e2f8ff;
    margin-bottom: 3rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.integration-category h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2f8ff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.integration-category h4 i {
    color: #06B6D4;
}

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: rgba(226, 248, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.integration-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.integration-badge.wordpress { border-color: #21759b; }
.integration-badge.shopify { border-color: #95bf47; }
.integration-badge.wix { border-color: #0c6ebd; }
.integration-badge.api { border-color: #06B6D4; }

/* ============================================
   ADVANTAGES PREMIUM SECTION
   ============================================ */

.advantages-premium {
    margin-top: 5rem;
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 41, 59, 0.3) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.metrics-showcase h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #e2f8ff;
    margin-bottom: 3rem;
}

.metrics-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #05202a;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2f8ff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    color: rgba(226, 248, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ==============================================
   TABLET RESPONSIVE FIXES (1024px) 
   ============================================== */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-center-modern {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    /* Footer */
    .footer-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* WORKFLOW TABLET - Structure Propre */
    .workflow-masterpiece {
        padding: 3.5rem 2rem;
        border-radius: 40px;
        gap: 3rem;
    }
    
    .workflow-masterpiece .workflow-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        position: relative;
    }
    
    /* Désactiver la ligne horizontale sur tablet */
    .workflow-masterpiece .workflow-steps::before,
    .workflow-masterpiece .workflow-steps::after {
        display: none;
    }
    
    .workflow-masterpiece .workflow-step {
        margin: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
    }
    
    .workflow-masterpiece .step-header {
        grid-template-columns: 55px 1fr 55px;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .workflow-masterpiece .step-number-circle {
        width: 55px;
        height: 55px;
    }
    
    .workflow-masterpiece .step-number-circle .step-number {
        font-size: 1.1rem;
    }
    
    .workflow-masterpiece .step-title {
        font-size: 1.05rem;
    }
    
    .workflow-masterpiece .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .workflow-masterpiece .step-icon i {
        font-size: 1.3rem;
    }
    
    .workflow-masterpiece .step-content {
        padding: 1.5rem;
    }
    
    .workflow-masterpiece .step-metrics {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: row;
        gap: 1rem;
    }
    
    /* Performance Cards */
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .metrics-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

/* ==============================================
   MOBILE RESPONSIVE FIXES (768px) 
   ============================================== */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-container-modern {
        grid-template-columns: auto 1fr auto;
        height: 70px;
        padding: 0 1rem;
    }
    
    .nav-center-modern {
        display: none;
    }
    
    .nav-actions-modern {
        justify-self: end;
        display: flex;
        align-items: center;
    }
    
    .lang-switcher-modern {
        display: none !important;
    }
    
    .nav-mobile-toggle {
        display: flex !important;
        align-self: center;
    }
    
    .nav-cta-modern {
        display: none !important;
    }
    
    /* Footer Mobile */
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-hero-band {
        padding: 2rem 0;
    }
    
    .footer-hero-text h3 {
        font-size: 1.8rem;
    }
    
    .footer-hero-actions {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* ========================================
       WORKFLOW MOBILE - ORGANISATION PARFAITE
       ======================================== */
    .workflow-masterpiece {
        padding: 2.5rem 1rem;
        border-radius: 32px;
        gap: 2.5rem;
        margin: 2rem 0;
    }
    
    /* Progress Header Mobile */
    .workflow-progress-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .progress-title h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .progress-track {
        width: 120px;
        height: 6px;
        margin: 0 auto;
    }
    
    /* Cards Mobile - Colonne unique optimisée */
    .workflow-masterpiece .workflow-steps {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
    }
    
    /* Désactiver toutes les lignes sur mobile */
    .workflow-masterpiece .workflow-steps::before,
    .workflow-masterpiece .workflow-steps::after {
        display: none !important;
    }
    
    /* Cartes mobiles - Design compact - LARGEUR COMPLÈTE */
    .workflow-masterpiece .workflow-step {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        overflow: hidden;
        animation: none; /* Désactiver animations pour performance mobile */
        box-sizing: border-box !important;
    }
    
    /* Header mobile compact - LARGEUR COMPLÈTE */
    .workflow-masterpiece .step-header {
        display: grid !important;
        grid-template-columns: 50px 1fr 45px !important;
        width: 100% !important;
        padding: 1.25rem 1.5rem !important;
        gap: 0.75rem !important;
        background: rgba(6, 182, 212, 0.05);
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Cercles plus petits */
    .workflow-masterpiece .step-number-circle {
        width: 45px !important;
        height: 45px !important;
        border: 2px solid #06B6D4;
    }
    
    .workflow-masterpiece .step-number-circle .step-number {
        font-size: 0.95rem !important;
        font-weight: 700;
    }
    
    /* Badge mobile */
    .workflow-masterpiece .step-badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.5rem;
    }
    
    /* Titre compact */
    .workflow-masterpiece .step-title {
        font-size: 0.95rem !important;
        line-height: 1.3;
        margin: 0;
    }
    
    /* Icône mobile */
    .workflow-masterpiece .step-icon {
        width: 42px !important;
        height: 42px !important;
    }
    
    .workflow-masterpiece .step-icon i {
        font-size: 1.1rem !important;
    }
    
    /* Contenu mobile optimisé - LARGEUR COMPLÈTE */
    .workflow-masterpiece .step-content {
        padding: 1.25rem 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    .workflow-masterpiece .step-description {
        font-size: 0.85rem !important;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: rgba(226, 248, 255, 0.85);
    }
    
    /* Features list mobile */
    .workflow-masterpiece .step-features {
        margin: 0;
        padding: 0;
    }
    
    .workflow-masterpiece .step-features li {
        font-size: 0.75rem !important;
        padding: 0.25rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .workflow-masterpiece .step-features li i {
        color: #06B6D4;
        font-size: 0.7rem;
        width: 12px;
    }
    
    /* Metrics mobile - Stack vertical - LARGEUR COMPLÈTE */
    .workflow-masterpiece .step-metrics {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 1rem 1.5rem 1.25rem 1.5rem !important;
        gap: 0.75rem !important;
        background: rgba(6, 182, 212, 0.02);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .workflow-masterpiece .metric {
        padding: 0.5rem 0.75rem !important;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .workflow-masterpiece .metric i {
        font-size: 0.8rem;
        color: #06B6D4;
    }
    
    /* Performance Cards Mobile */
    .workflow-performance {
        margin-top: 2rem;
    }
    
    .performance-header h4 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem;
    }
    
    .perf-card {
        padding: 1rem !important;
        text-align: center;
        border-radius: 16px;
    }
    
    .perf-number {
        font-size: 1.3rem !important;
        margin-bottom: 0.25rem;
    }
    
    .perf-label {
        font-size: 0.8rem;
    }
    
    /* Container global mobile */
    .workflow-container {
        padding: 0 1rem;
    }
}

/* ==============================================
   TRES PETIT MOBILE (480px) 
   ============================================== */
@media (max-width: 480px) {
    .workflow-masterpiece {
        padding: 2rem 0.75rem !important;
        border-radius: 24px;
        gap: 2rem;
        margin: 1.5rem 0;
    }
    
    .workflow-masterpiece .workflow-steps {
        gap: 1.25rem !important;
    }
    
    .workflow-masterpiece .step-header {
        padding: 1rem 1.25rem !important;
    }
    
    .workflow-masterpiece .step-content {
        padding: 1rem 1.25rem !important;
    }
    
    .workflow-masterpiece .step-metrics {
        padding: 0.75rem 1.25rem 1rem 1.25rem !important;
    }
    
    .performance-grid {
        padding: 0 !important;
    }
}

/* ==============================================
   DÉSACTIVATION ANCIENNES RÈGLES CONFLICTUELLES
   ============================================== */
   
/* Anciennes règles workflow en conflit - DÉSACTIVÉES */
@media (max-width: 768px) {
    /* Priorité absolue pour nos nouvelles règles */
    .workflow-step:not(.workflow-masterpiece .workflow-step) {
        display: block; /* Annuler anciennes règles */
    }
    
    /* Assurer que nos cards masterpiece ont priorité absolue */
    .workflow-masterpiece .workflow-step {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .workflow-masterpiece .workflow-steps {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
}
    
    .step-icon {
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .workflow-timer {
        margin-top: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
}

/* Contact Modern Section */
.contact-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2f8ff;
    position: relative;
    overflow: hidden;
}

.contact-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.12), transparent),
        radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.08), transparent);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Contact Hero */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03), rgba(245, 158, 11, 0.02));
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e2f8ff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.3rem;
    color: rgba(226, 248, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-metric:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-metric .metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #05202a;
}

.hero-metric .metric-text {
    flex: 1;
}

.hero-metric .metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #e2f8ff;
    line-height: 1;
}

.hero-metric .metric-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.7);
    margin-top: 2px;
}

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

/* Why Custom Card */
.why-custom-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    height: fit-content;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #05202a;
}

.card-title h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e2f8ff;
    margin: 0 0 0.5rem;
}

.card-title p {
    color: rgba(226, 248, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.custom-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.custom-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.custom-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
    font-size: 1rem;
    flex-shrink: 0;
}

.custom-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2f8ff;
    margin: 0 0 4px;
}

.custom-content p {
    font-size: 0.8rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(226, 248, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    color: #06B6D4;
}

/* Contact Form Modern */
.contact-form-modern {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.form-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.2rem;
    background: transparent;
    border: none;
    color: rgba(226, 248, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    user-select: none;
}

.form-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.form-tab.active {
    color: #e2f8ff;
    background: rgba(255, 255, 255, 0.06);
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06B6D4, #F59E0B);
}

.form-content {
    padding: 2.5rem;
}

.form-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Animation fluide pour le changement de contenu */
.form-content {
    position: relative;
    min-height: 400px;
}

.form-panel.active {
    animation: fadeInUp 0.4s ease forwards;
}

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

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.form-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2f8ff;
    margin: 0 0 0.5rem;
}

.form-header p {
    color: rgba(226, 248, 255, 0.8);
    margin: 0;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2f8ff;
    margin-bottom: 0;
}

.form-field small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2f8ff;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #e2f8ff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #06B6D4;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(226, 248, 255, 0.5);
}

.form-field small {
    font-size: 0.8rem;
    color: rgba(226, 248, 255, 0.6);
}

.form-consent {
    margin: 0.75rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.9);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #05202a;
    font-weight: bold;
    font-size: 12px;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    color: #05202a;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.submit-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(5, 32, 42, 0.3);
    border-top: 2px solid #05202a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(226, 248, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.security-notice i {
    color: #06B6D4;
}

.contact-alternative span {
    display: block;
    color: rgba(226, 248, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #06B6D4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    color: #F59E0B;
    transform: translateY(-1px);
}

/* Global UI/UX Consistency */
/* Section base styles */
section {
    position: relative;
    overflow: hidden;
}

/* Consistent section spacing */
.workflow-modern,
.contact-modern,
.problem-solution {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
    color: var(--qq-light);
}

.workflow-modern::before,
.contact-modern::before,
.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-radial);
    pointer-events: none;
}

/* Consistent card styles */
.workflow-step,
.custom-item,
.metric-card,
.hero-metric,
.tile {
    background: var(--blur-bg);
    border: 1px solid var(--blur-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

/* ============================================
   EMAILJS FORM FEEDBACK STYLES
   ============================================ */

/* Messages de feedback pour les formulaires */
.form-feedback {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #059669;
}

.form-feedback-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.feedback-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feedback-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-feedback-success .feedback-content i {
    color: #10b981;
}

.form-feedback-error .feedback-content i {
    color: #ef4444;
}

/* État de chargement des boutons */
.modern-form button[type="submit"].loading {
    pointer-events: none;
    opacity: 0.8;
}

.modern-form button[type="submit"].loading .submit-loader {
    display: inline-block !important;
}

.modern-form button[type="submit"] .submit-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

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

/* Responsive pour les messages de feedback */
@media (max-width: 768px) {
    .form-feedback {
        margin: 0.75rem 0;
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .feedback-content {
        gap: 0.5rem;
    }
    
    .feedback-content i {
        font-size: 1.1rem;
    }
}

.workflow-step:hover,
.custom-item:hover,
.metric-card:hover,
.hero-metric:hover,
.tile:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
}

/* Consistent icon styles */
.step-icon,
.metric-icon,
.tile-icon,
.custom-icon,
.card-icon {
    background: var(--gradient-primary);
    color: var(--qq-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

/* Consistent button styles */
.btn,
.form-submit,
.nav-cta-modern,
.footer-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary,
.form-submit,
.nav-cta-modern,
.footer-cta-primary {
    background: var(--gradient-primary);
    color: var(--qq-dark);
}

.btn-primary:hover,
.form-submit:hover,
.nav-cta-modern:hover,
.footer-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.btn-secondary,
.footer-cta-secondary {
    background: var(--blur-bg);
    border: 1px solid var(--blur-border);
    color: var(--qq-light);
}

.btn-secondary:hover,
.footer-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Consistent typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.workflow-header h2,
.contact-hero h2,
.footer-hero-text h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Consistent form styles */
.form-field input,
.form-field select,
.form-field textarea {
    background: var(--blur-bg);
    border: 1px solid var(--blur-border);
    border-radius: var(--radius-sm);
    color: var(--qq-light);
    transition: var(--transition-smooth);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--qq-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

/* Consistent container styles */
.workflow-container,
.contact-container,
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Responsive consistency */
@media (max-width: 768px) {
    .workflow-container,
    .contact-container,
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .workflow-modern,
    .contact-modern,
    .problem-solution {
        padding: var(--spacing-2xl) 0;
    }
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-custom-card {
        position: static;
    }
    
    .customization-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-hero h2 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-metric {
        padding: 1rem;
    }
    
    .why-custom-card {
        padding: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .customization-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Form grid responsive rule moved above */
    
    .form-content {
        padding: 1.5rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
}
.nav-link { color: #e2e8f0; font-weight: 600; }
.nav-link:hover { color: var(--qq-primary); }

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(6, 182, 212, 0.18), transparent),
              radial-gradient(900px 500px at 90% 20%, rgba(245, 158, 11, 0.14), transparent),
              linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: #e5f6fb;
}
.highlight { color: var(--qq-accent); }

/* Buttons */
.btn-primary { background: var(--qq-primary); color: #05202a; }
.btn-primary:hover { background: var(--qq-primary-600); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #e2e8f0; border: 2px solid var(--qq-primary); }
.btn-secondary:hover { background: var(--qq-primary); color: #0b1220; transform: translateY(-2px); }

/* Mockup & badge */
.screen-mockup { width: 460px; height: 320px; background: #0b1323; border-radius: 18px; box-shadow: 0 30px 60px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.06); }
.screen-header { background: #0f172a; padding: 10px 16px; }
.screen-dots span { width: 10px; height: 10px; background: var(--qq-primary); box-shadow: 0 0 0 3px rgba(6,182,212,0.15); }
.camera-feed { background: linear-gradient(135deg, #04202a 0%, #0a2535 35%, #0b3b4a 100%); border-radius: 10px; }
.detection-alert { background: linear-gradient(90deg, var(--qq-primary), var(--qq-primary-700)); color: #05202a; border-radius: 999px; box-shadow: 0 8px 20px rgba(6,182,212,0.28); }
.hero-powered-by { 
    position: absolute !important; 
    bottom: -20px !important; 
    right: 30px !important; 
    background: rgba(6,182,212,0.1); 
    color: rgba(224, 252, 255, 0.85); 
    backdrop-filter: saturate(140%) blur(10px); 
    z-index: 100 !important;
}
.hero-security-camera { display: none !important; }

/* Problem/Solution section */
.problem-solution { background: linear-gradient(135deg, #05202a 0%, #0b1220 100%); }
.problem-section h2, .solution-section h2 { color: #e2f8ff; }
.problem-card::before { background: linear-gradient(90deg, #ef4444, #f59e0b); }
.solution-card::before { background: linear-gradient(90deg, var(--qq-primary), var(--qq-accent)); }

/* Feature/Advantages sections */
.features-advantages { background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%); }
.feature-card::before { height: 3px; background: linear-gradient(90deg, var(--qq-primary), var(--qq-accent)); }
.feature-icon { background: linear-gradient(135deg, var(--qq-primary), var(--qq-primary-700)); }
.advantages .section-header h2 { color: #0b1220; letter-spacing: -0.02em; }

/* ============================================
   ADVANTAGES COMPACT SECTION - ONE LINE
   ============================================ */

.advantages-compact {
    margin-top: 3rem;
    padding: 0;
    background: none;
    border: none;
    position: relative;
}

.advantages-compact-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
}

.advantage-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

.advantage-compact:hover {
    transform: scale(1.05);
}

.advantage-compact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.advantage-compact-content {
    flex: 1;
    min-width: 0;
}

.advantage-compact-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.advantage-compact .value-sign {
    font-size: 1.2rem;
    color: #06B6D4;
    margin-right: 0.15rem;
}

.advantage-compact .value-number {
    font-size: 2rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.advantage-compact .value-unit {
    font-size: 1rem;
    color: rgba(226, 248, 255, 0.8);
    margin-left: 0.15rem;
}

.advantage-compact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(226, 248, 255, 0.9);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card-specific icon colors for compact */
.advantage-compact.conversion .advantage-compact-icon {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.advantage-compact.workload .advantage-compact-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.advantage-compact.errors .advantage-compact-icon {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.advantage-compact.satisfaction .advantage-compact-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Hover effects for specific cards */
.advantage-compact.conversion:hover .advantage-compact-icon {
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.5);
}

.advantage-compact.workload:hover .advantage-compact-icon {
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.5);
}

.advantage-compact.errors:hover .advantage-compact-icon {
    box-shadow: 0 6px 18px rgba(147, 51, 234, 0.5);
}

.advantage-compact.satisfaction:hover .advantage-compact-icon {
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
}

/* Responsive design for compact version */
@media (max-width: 768px) {
    .advantages-compact-grid {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
    }
    
    .advantage-compact {
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .advantage-compact:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    }
    
    .advantage-compact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }
    
    .advantage-compact-content {
        flex: 1;
    }
    
    .advantage-compact-value {
        margin-bottom: 0.5rem;
        justify-content: flex-start;
    }
    
    .advantage-compact .value-number {
        font-size: 1.8rem;
        margin-right: 0.25rem;
    }
    
    .advantage-compact .value-sign {
        font-size: 1.1rem;
        margin-right: 0.1rem;
    }
    
    .advantage-compact .value-unit {
        font-size: 0.9rem;
        margin-left: 0.1rem;
    }
    
    .advantage-compact-label {
        font-size: 0.9rem;
        white-space: normal;
        text-overflow: unset;
        overflow: visible;
        line-height: 1.3;
        color: rgba(226, 248, 255, 0.8);
    }
}
    
    /* Integrations Section Mobile */
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .integration-category {
        margin-bottom: 2rem;
    }
    
    .integration-category h4 {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .integration-items {
        justify-content: center;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .advantages-compact {
        margin-top: 2rem;
    }
    
    .advantages-compact-grid {
        gap: 1rem;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .advantage-compact {
        padding: 0.75rem;
        gap: 0.75rem;
        border-radius: 10px;
    }
    
    .advantage-compact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .advantage-compact-value {
        margin-bottom: 0.25rem;
    }
    
    .advantage-compact .value-number {
        font-size: 1.5rem;
    }
    
    .advantage-compact .value-sign {
        font-size: 1rem;
    }
    
    .advantage-compact .value-unit {
        font-size: 0.8rem;
    }
    
    .advantage-compact-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}
    
    /* Integrations Section Small Mobile */
    .integrations-section {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    
    .integrations-section h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .integrations-grid {
        gap: 1.5rem;
    }
    
    .integration-category h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .integration-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Hide the old advantages premium section */
.advantages-premium {
    display: none;
}

/* ============================================
   PROBLEM/SOLUTION MODERN SECTION
   ============================================ */

.problem-solution-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2f8ff;
    position: relative;
    overflow: hidden;
}

/* Particules flottantes */
.problem-solution-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(147, 51, 234, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(6, 182, 212, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(147, 51, 234, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particles-float 20s linear infinite;
    pointer-events: none;
}

@keyframes particles-float {
    0% { 
        transform: translateX(0) translateY(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-100px) translateY(-50px);
        opacity: 1;
    }
    100% { 
        transform: translateX(-200px) translateY(-100px);
        opacity: 0.6;
    }
}

.problem-solution-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: background-shift 20s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateX(20px) translateY(-10px) scale(1.02);
        opacity: 1;
    }
    50% { 
        transform: translateX(-10px) translateY(15px) scale(0.98);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(15px) translateY(-5px) scale(1.01);
        opacity: 1;
    }
}

/* Section Header */
.section-header-modern {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #10b981 100%);
    background-size: 300% 300%;
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(6, 182, 212, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: badge-rainbow 4s ease-in-out infinite, badge-glow 3s ease-in-out infinite;
}

@keyframes badge-rainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transform: rotate(45deg);
    animation: badge-shine 4s linear infinite;
}

@keyframes badge-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
        border-color: rgba(6, 182, 212, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
        border-color: rgba(6, 182, 212, 0.5);
    }
}

@keyframes badge-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #10b981 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    position: relative;
    animation: titleShimmer 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

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

.section-title-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: title-pulse 4s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes title-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.section-subtitle-modern {
    font-size: 1.3rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0 auto 2rem auto;
    font-weight: 500;
    max-width: 600px;
}

/* Demo Disclaimer */
.demo-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    padding: 1.5rem 2rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.demo-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6, #10b981);
    background-size: 200% 200%;
    animation: borderFlow 3s ease-in-out infinite;
}

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

.disclaimer-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.2rem;
}

.disclaimer-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.disclaimer-content p {
    margin: 0;
    font-size: 0.95rem;
}

.disclaimer-content p:first-child {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.disclaimer-content p:last-child {
    color: rgba(255, 255, 255, 0.8);
}

/* Comparison Layout */
.comparison-modern {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.comparison-side {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-side:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Problem Side */
.problem-modern {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.02);
}

.problem-modern:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
    box-shadow: 
        0 25px 50px rgba(239, 68, 68, 0.15),
        0 0 0 1px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.problem-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.05) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.problem-modern:hover::before {
    background: radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
}

/* Solution Side */
.solution-modern {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.02);
}

.solution-modern:hover {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 
        0 25px 50px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solution-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.solution-modern:hover::before {
    background: radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
}

/* Side Headers */
.side-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.side-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.side-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    animation: icon-border-rotate 4s linear infinite;
}

.side-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.problem-icon {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.problem-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
}

.problem-icon:hover i {
    transform: scale(1.1);
    animation: shake 0.6s ease-in-out;
}

.solution-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.solution-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
}

.solution-icon:hover i {
    transform: scale(1.1);
    animation: bounce-check 0.6s ease-in-out;
}

@keyframes icon-border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: scale(1.1) translateX(0); }
    25% { transform: scale(1.1) translateX(-3px); }
    75% { transform: scale(1.1) translateX(3px); }
}

@keyframes bounce-check {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.3); }
}

.side-title-group {
    flex: 1;
}

.side-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e2f8ff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.side-subtitle {
    font-size: 1rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
}

/* Issue Cards */
.problem-issues {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.issue-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
}

.issue-card:hover {
    transform: translateX(-5px);
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
}

.issue-card:last-child {
    margin-bottom: 0;
}

.issue-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.issue-content {
    flex: 1;
}

.issue-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2f8ff;
    margin-bottom: 0.5rem;
}

.issue-content p {
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.7);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.issue-metric {
    margin-top: 0.5rem;
}

.metric-bad {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #EF4444;
}

/* Benefit Cards */
.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
}

.benefit-card:hover {
    transform: translateX(5px);
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
}

.benefit-card:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2f8ff;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.7);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.benefit-metric {
    margin-top: 0.5rem;
}

.metric-good {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #22C55E;
}

/* Transformation Arrow - Scroll Following */
.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    height: 180px;
    z-index: 10;
    align-self: center;
    /* Assurer un centrage parfait par rapport aux sides */
    margin: auto 0;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    gap: 0;
}

.arrow-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #06B6D4, #9333EA, #F59E0B);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    animation: line-energy 3s ease-in-out infinite;
}

.arrow-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #06B6D4, #0891B2);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.8),
        0 0 40px rgba(6, 182, 212, 0.4);
    animation: pulse-energy 2s infinite;
}

.arrow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: energy-flow 2s linear infinite;
}

.arrow-head {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4, #9333EA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 
        0 12px 25px rgba(6, 182, 212, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: float-advanced 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0;
}

.arrow-head::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: arrow-shine 3s linear infinite;
}

@keyframes line-energy {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
        transform: scaleY(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
        transform: scaleY(1.05);
    }
}

@keyframes pulse-energy {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 
            0 0 20px rgba(6, 182, 212, 0.8),
            0 0 40px rgba(6, 182, 212, 0.4);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
        box-shadow: 
            0 0 30px rgba(6, 182, 212, 1),
            0 0 60px rgba(6, 182, 212, 0.6);
    }
}

@keyframes energy-flow {
    0% { transform: translateX(-50%) translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-50%) translateY(100%); opacity: 0; }
}

@keyframes float-advanced {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes arrow-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.transformation-label {
    position: relative;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(226, 248, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
}

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

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Bottom CTA */
.comparison-cta {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.cta-content {
    margin-bottom: 2rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #e2f8ff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-demo, .btn-quote {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    color: inherit;
}

.btn-demo {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white !important;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.btn-demo::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;
}

.btn-demo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(6, 182, 212, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    filter: brightness(1.1);
}

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

.btn-quote {
    background: rgba(255, 255, 255, 0.1);
    color: #e2f8ff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.btn-quote:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 15px 35px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        align-items: stretch;
    }
    
    .transformation-arrow {
        position: relative;
        top: auto;
        transform: none;
        height: auto;
        order: 2;
        margin: 3rem 0;
        z-index: 5;
    }
    
    .solution-modern {
        order: 3;
    }
    
    .arrow-line {
        width: 100px;
        height: 2px;
    }
    
    .transformation-label {
        margin-top: 0.5rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .problem-solution-modern {
        padding: 4rem 0;
    }
    
    .section-title-modern {
        font-size: 2.2rem;
    }
    
    .section-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .comparison-side {
        padding: 2rem;
    }
    
    .side-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .side-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .side-title {
        font-size: 1.5rem;
    }
    
    .transformation-arrow {
        display: none;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-demo, .btn-quote {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ADVANTAGES PREMIUM SECTION - OLD (HIDDEN)
   ============================================ */

.advantages-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: advantages-glow 8s ease-in-out infinite;
}

@keyframes advantages-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Header Section */
.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.advantages-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #06B6D4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.advantages-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2f8ff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-subtitle {
    font-size: 1.2rem;
    color: rgba(226, 248, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

/* Grid Layout */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Individual Cards */
.advantage-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 
        0 25px 50px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(6, 182, 212, 0.1);
}

/* Background Effects */
.advantage-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-background {
    opacity: 1;
}

.advantage-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: glow-rotate 6s linear infinite;
}

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

/* Icon Section */
.advantage-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 10px 25px rgba(6, 182, 212, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.advantage-icon i {
    position: relative;
    z-index: 2;
}

.icon-particles {
    position: absolute;
    inset: -10px;
    border-radius: 25px;
    background: linear-gradient(45deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    animation: particle-orbit 4s ease-in-out infinite;
}

@keyframes particle-orbit {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

/* Content Section */
.advantage-content {
    position: relative;
    z-index: 3;
    margin-bottom: 1.5rem;
}

.advantage-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    font-weight: 800;
}

.value-sign {
    font-size: 2rem;
    color: #06B6D4;
    margin-right: 0.25rem;
}

.value-number {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #06B6D4, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
}

.value-unit {
    font-size: 1.5rem;
    color: rgba(226, 248, 255, 0.8);
    margin-left: 0.25rem;
}

.advantage-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2f8ff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.advantage-description {
    font-size: 0.9rem;
    color: rgba(226, 248, 255, 0.7);
    line-height: 1.5;
}

/* Visual Elements */
.advantage-visual {
    position: relative;
    z-index: 3;
    height: 40px;
    display: flex;
    align-items: center;
}

/* Progress Bar for Conversion */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #06B6D4, #F59E0B);
    border-radius: 3px;
    animation: progress-animate 2s ease-out;
}

@keyframes progress-animate {
    0% { width: 0%; }
}

/* Time Blocks for Workload */
.time-saved {
    display: flex;
    justify-content: center;
    width: 100%;
}

.time-blocks {
    display: flex;
    gap: 0.5rem;
}

.time-block {
    width: 12px;
    height: 24px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.time-block.saved {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.time-block.remaining {
    background: rgba(255, 255, 255, 0.1);
}

.advantage-card:hover .time-block.saved {
    transform: scale(1.1);
}

/* Check Mark for Errors */
.accuracy-indicator {
    display: flex;
    justify-content: center;
    width: 100%;
}

.check-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    animation: check-pulse 2s ease-in-out infinite;
}

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

/* Stars for Satisfaction */
.satisfaction-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
}

.satisfaction-stars i {
    font-size: 1rem;
    color: #F59E0B;
    animation: star-twinkle 2s ease-in-out infinite;
}

.satisfaction-stars i:nth-child(1) { animation-delay: 0s; }
.satisfaction-stars i:nth-child(2) { animation-delay: 0.2s; }
.satisfaction-stars i:nth-child(3) { animation-delay: 0.4s; }
.satisfaction-stars i:nth-child(4) { animation-delay: 0.6s; }
.satisfaction-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Card-specific Colors */
.advantage-card.conversion:hover {
    border-color: rgba(6, 182, 212, 0.4);
}

.advantage-card.conversion .advantage-icon {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.advantage-card.workload:hover {
    border-color: rgba(34, 197, 94, 0.4);
}

.advantage-card.workload .advantage-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

.advantage-card.errors:hover {
    border-color: rgba(147, 51, 234, 0.4);
}

.advantage-card.errors .advantage-icon {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
}

.advantage-card.satisfaction:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.advantage-card.satisfaction .advantage-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

/* Responsive Design */
@media (max-width: 768px) {
    .advantages-premium {
        margin-top: 3rem;
        padding: 3rem 0;
        border-radius: 24px;
    }
    
    .advantages-header h3 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-number {
        font-size: 3rem;
    }
}

/* Additional advantage card styles */
.advantage-card::before { 
    background: linear-gradient(90deg, var(--qq-accent), var(--qq-primary)); 
}

.advantage-icon { 
    background: linear-gradient(135deg, var(--qq-primary), var(--qq-primary-700)); 
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.28); 
}

.advantage-stat { 
    background: rgba(6, 182, 212, 0.08); 
    border: 1px solid rgba(6, 182, 212, 0.25); 
}
.stat-number { color: var(--qq-primary-700); }
.stat-label { color: #0e7490; }

/* Contact */
.contact { background: var(--qq-bg); }
.contact-security-camera { display: none; }

/* ============================================
   EXTERNAL METRICS SECTION
   ============================================ */

.external-metrics-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.external-metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.metrics-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.metrics-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 var(--spacing-sm) 0;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metrics-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.metric-card-external {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card-external::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card-external:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.metric-card-external:hover::before {
    opacity: 1;
}

.metric-icon-external {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.metric-value-external {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.metric-label-external {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.metric-trend {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.metric-trend.positive {
    color: #10b981;
}

.process-flow-external {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.process-flow-external h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 var(--spacing-lg) 0;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    min-width: 120px;
}

.flow-step.active {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.flow-step.processing {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.flow-step.processing .step-number {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.step-content {
    text-align: center;
}

.step-title {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.step-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.flow-arrow {
    color: rgba(6, 182, 212, 0.6);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   DASHBOARD DEMO SECTION
   ============================================ */

.dashboard-demo-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.dashboard-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 8s ease-in-out infinite;
}

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

/* Floating particles effect */
.dashboard-demo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(16, 185, 129, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(168, 85, 247, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Container spécifique pour le dashboard - Plus large */
.dashboard-full-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 var(--spacing-md);
}

@media (min-width: 1200px) {
    .dashboard-full-container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1400px) {
    .dashboard-full-container {
        padding: 0 var(--spacing-xl);
    }
}

.dashboard-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) {
    .dashboard-container {
        max-width: 2000px;
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1600px) {
    .dashboard-container {
        max-width: 2200px;
        padding: 0 var(--spacing-xl);
    }
}

.dashboard-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-wrapper.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.dashboard-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.dashboard-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.dashboard-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.dashboard-btn.primary {
    background: linear-gradient(135deg, var(--qq-primary) 0%, var(--qq-primary-600) 100%);
    color: white;
}

.dashboard-btn.primary:hover {
    background: linear-gradient(135deg, var(--qq-primary-600) 0%, var(--qq-primary-700) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.dashboard-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.dashboard-btn.generating {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Dashboard Content */
.dashboard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    padding: 0;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    min-height: 450px;
}

@media (min-width: 1400px) {
    .dashboard-content {
        max-width: 2000px;
    }
}

@media (min-width: 1600px) {
    .dashboard-content {
        max-width: 2200px;
    }
}

/* Ligne de séparation */
.dashboard-content::before {
    content: '';
    position: absolute;
    left: 66.66%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e2e8f0;
    transform: translateX(-50%);
    z-index: 1;
}

.dashboard-panel:first-child {
    margin-right: calc(var(--spacing-lg) / 2);
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dashboard-panel:last-child {
    margin-left: calc(var(--spacing-lg) / 2);
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Configuration Panel - 4 colonnes première ligne */
.config-panel .panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--spacing-md);
    padding: 0;
}

/* Ligne 1: Type + Taille + Utilisateurs */
.form-group.row-1 {
    /* Prend une colonne normale */
}

/* Ligne 2: Fonctionnalités+Maintenance + Intégrations+Délai */
.form-group.row-2-left {
    grid-column: span 2; /* Fonctionnalités+Maintenance prennent 2 colonnes */
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group.row-2-right {
    grid-column: span 2; /* Intégrations+Délai prennent 2 colonnes */
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Maintenance Section */
.maintenance-section {
    margin-top: var(--spacing-md);
}

/* Timeline Section compacte */
.timeline-section {
    margin-top: var(--spacing-md);
}

.timeline-section label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qq-dark);
    margin-bottom: var(--spacing-xs);
}

/* Timeline Selector compact */
.timeline-selector.compact {
    padding: var(--spacing-xs);
    min-height: auto;
}

.timeline-selector.compact .timeline-option {
    min-height: 40px;
    padding: var(--spacing-xs);
}

.timeline-selector.compact .timeline-icon {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.timeline-selector.compact .timeline-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.timeline-selector.compact .timeline-desc {
    font-size: 0.65rem;
}

/* Ligne 3 supprimée - plus besoin */

/* Champs qui prennent toute la largeur */
.form-group.full-width {
    grid-column: 1 / -1;
}

/* ============================================
   STYLE DASHBOARD GADGET - SECTIONS COMPACTES
   ============================================ */

/* Features Selector - Style calculatrice */
.features-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
}

.features-selector .checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 32px;
}

.features-selector .checkbox-label:hover {
    border-color: var(--qq-primary);
    background: rgba(6, 182, 212, 0.05);
}

.features-selector .checkbox-label input:checked + .checkbox-custom + span {
    color: var(--qq-primary);
    font-weight: 600;
}

/* Integrations Selector - Style compact */
.integrations-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
}

.integrations-selector .checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 32px;
}

.integrations-selector .checkbox-label:hover {
    border-color: var(--qq-primary);
    background: rgba(6, 182, 212, 0.05);
}

/* Timeline Selector - Style gadget en ligne */
.timeline-selector {
    display: flex;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
}

.timeline-selector input[type="radio"] {
    display: none;
}

.timeline-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 70px;
    text-align: center;
    flex: 1;
}

.timeline-option:hover {
    border-color: var(--qq-primary);
    background: rgba(6, 182, 212, 0.05);
}

.timeline-selector input[type="radio"]:checked + .timeline-option {
    border-color: var(--qq-primary);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.timeline-icon {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.timeline-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--qq-dark);
    margin-bottom: 2px;
}

.timeline-desc {
    font-size: 0.7rem;
    color: var(--qq-muted);
    font-weight: 500;
}

/* Switch Button - Style gadget */
.switch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    min-height: 50px;
}

.switch-container:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: var(--qq-primary);
}

.switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.switch-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qq-dark);
}

.switch {
    position: relative;
    width: 60px;
    height: 30px;
    margin-left: var(--spacing-md);
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.switch input:checked + .slider {
    background: linear-gradient(135deg, var(--qq-primary), #0ea5e9);
    border-color: var(--qq-primary);
}

.switch input:checked + .slider:before {
    transform: translateX(30px);
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.switch input:focus + .slider {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

/* Preview Actions - Boutons d'action modernes */
.preview-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid #e2e8f0;
}

.btn-preview-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--qq-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
}

.btn-preview-action.primary {
    background: linear-gradient(135deg, var(--qq-primary), #0ea5e9);
    color: white;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.btn-preview-action:hover {
    border-color: var(--qq-primary);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(16, 185, 129, 0.05));
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-preview-action.primary {
    background: var(--qq-primary);
    color: white;
    border-color: var(--qq-primary);
}

.btn-preview-action.primary:hover {
    background: #0891b2;
    border-color: #0891b2;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.btn-preview-action.secondary {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.btn-preview-action.secondary:hover {
    background: #059669;
    border-color: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-preview-action.tertiary {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
}

.btn-preview-action.tertiary:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.btn-preview-action.quaternary {
    background: white;
    color: var(--qq-dark);
    border-color: #cbd5e1;
}

.btn-preview-action.quaternary:hover {
    background: #f8fafc;
    border-color: var(--qq-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-panel {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: var(--spacing-lg);
}

/* Animation hover supprimée */

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.panel-header h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
    color: var(--qq-dark);
}

.panel-header h3 i {
    color: var(--qq-primary);
}

.panel-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--qq-primary) 0%, var(--qq-primary-600) 100%);
    color: white;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.panel-content {
    padding: 0;
}

/* Configuration Panel - Style moderne épuré */
.config-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.config-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--qq-primary), #8b5cf6, #10b981);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.config-panel .panel-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border-bottom: 1px solid #e2e8f0;
    padding: var(--spacing-md);
    margin: 0 0 var(--spacing-md) 0;
}

.config-panel .panel-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--qq-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.config-panel .panel-header h3 i {
    font-size: 1.25rem;
    color: var(--qq-primary);
}

/* Panel header pour quote/preview */
.dashboard-quote-section .panel-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
    border-bottom: 1px solid #e2e8f0;
    padding: var(--spacing-md);
    margin: 0 0 var(--spacing-md) 0;
}

.dashboard-quote-section .panel-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--qq-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.dashboard-quote-section .panel-header h3 i {
    font-size: 1.25rem;
    color: #10b981;
}

.form-group {
    margin-bottom: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    transition: all 0.2s ease;
}

.form-group:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group:focus-within {
    border-color: var(--qq-primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qq-dark);
    margin-bottom: var(--spacing-xs);
}

.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #d1d5db;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: white;
    transition: var(--transition-smooth);
}

.form-group select:focus {
    outline: none;
    border-color: var(--qq-primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.input-with-slider {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.input-with-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
}

.input-with-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--qq-primary) 0%, var(--qq-primary-600) 100%);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-with-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--qq-primary) 0%, var(--qq-primary-600) 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-value {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qq-primary);
    padding: var(--spacing-xs);
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.complexity-selector {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.complexity-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.complexity-option:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: var(--qq-primary);
}

.complexity-selector input[type="radio"] {
    display: none;
}

.complexity-selector input[type="radio"]:checked + .complexity-option {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--qq-primary);
    color: var(--qq-primary);
}

.complexity-icon {
    font-size: 1.25rem;
}

.complexity-text {
    font-weight: 500;
}

.dashboard-panel .checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}

.dashboard-panel .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: var(--transition-smooth);
}

.dashboard-panel .checkbox-label input[type="checkbox"] {
    display: none;
}

.dashboard-panel .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--qq-primary);
    border-color: var(--qq-primary);
}

.dashboard-panel .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Features Selector */
.features-selector {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.features-selector .checkbox-label {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.features-selector .checkbox-label:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: var(--qq-primary);
}

/* Integrations Selector */
.integrations-selector {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.integrations-selector .checkbox-label {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.integrations-selector .checkbox-label:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: var(--qq-primary);
}

/* Timeline Selector */
.timeline-selector {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.timeline-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.timeline-option:hover {
    background: rgba(6, 182, 212, 0.05);
    border-color: var(--qq-primary);
}

.timeline-selector input[type="radio"] {
    display: none;
}

.timeline-selector input[type="radio"]:checked + .timeline-option {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--qq-primary);
    color: var(--qq-primary);
}

.timeline-icon {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.timeline-title {
    font-weight: 600;
    font-size: 0.875rem;
}

.timeline-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Preview Panel - Style moderne épuré */
.dashboard-quote-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, var(--qq-primary), #8b5cf6);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.quote-preview {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
    border-bottom: 1px solid #e2e8f0;
}

.quote-logo img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.quote-info h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--qq-dark);
    margin-bottom: 0.25rem;
}

.quote-info p {
    font-size: 0.75rem;
    color: var(--qq-muted);
}

.quote-details {
    padding: var(--spacing-md);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--qq-muted);
}

.detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qq-dark);
}

.quote-total {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    padding: var(--spacing-md);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.total-row:last-child {
    margin-bottom: 0;
}

.total-row.final {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--qq-primary);
    padding-top: var(--spacing-xs);
    border-top: 2px solid var(--qq-primary);
}

/* Analytics Panel */
.metric-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--qq-primary) 0%, var(--qq-primary-600) 100%);
    color: white;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--qq-dark);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--qq-muted);
    margin-top: 0.25rem;
}

.process-indicator {
    margin-top: var(--spacing-md);
}

.process-indicator h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qq-dark);
    margin-bottom: var(--spacing-sm);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xs);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: var(--spacing-xs);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    opacity: 0.4;
}

.process-step.active {
    opacity: 1;
    background: rgba(6, 182, 212, 0.1);
    transform: scale(1.05);
}

.step-icon {
    font-size: 1.25rem;
}

.process-step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--qq-dark);
}

/* Dashboard Footer */
.dashboard-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--qq-muted);
}

.info-item i {
    color: var(--qq-primary);
}

/* Demo CTA */
.demo-cta {
    margin-top: var(--spacing-2xl);
    text-align: center;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--qq-dark) 0%, #1e293b 100%);
    border-radius: var(--radius-2xl);
    color: white;
}

.demo-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.demo-cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.btn-demo-primary,
.btn-demo-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-demo-primary {
    background: linear-gradient(135deg, var(--qq-primary) 0%, var(--qq-primary-600) 100%);
    color: white;
}

.btn-demo-primary:hover {
    background: linear-gradient(135deg, var(--qq-primary-600) 0%, var(--qq-primary-700) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-demo-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-demo-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Animations et transitions */
.dashboard-panel.updating {
    transform: scale(0.98);
    opacity: 0.8;
}

.preview-panel.generated {
    animation: generatedPulse 0.6s ease-in-out;
}

@keyframes generatedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
    100% { transform: scale(1); }
}

.dashboard-wrapper.resetting {
    animation: resetShake 0.5s ease-in-out;
}

@keyframes resetShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Dashboard Notifications */
.dashboard-notification {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-notification-success {
    border-left: 4px solid #10b981;
}

.dashboard-notification .notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
}

.dashboard-notification .notification-content i {
    color: #10b981;
    font-size: 1.25rem;
}

.dashboard-notification .notification-content span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--qq-dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: var(--spacing-lg);
        max-width: 900px;
    }
    
    .dashboard-content::before {
        display: none;
    }
    
    .dashboard-content {
        gap: var(--spacing-xl);
    }
    
    .dashboard-panel:first-child,
    .dashboard-panel:last-child {
        margin: 0;
    }
    
    .config-panel .panel-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md) var(--spacing-lg);
    }
    
    .form-group.row-2-left,
    .form-group.row-2-right {
        grid-column: span 1; /* Reset sur tablet */
    }
    
    .timeline-selector.compact .timeline-option {
        min-height: 40px;
        padding: var(--spacing-xs);
    }
    
    .features-selector {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .timeline-selector {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0;
        margin: 0;
        max-width: 100%;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-wrapper {
        margin: 0;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
    
    .dashboard-panel {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-panel:first-child {
        border-top-left-radius: var(--radius-md);
        border-top-right-radius: var(--radius-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dashboard-panel:last-child {
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
    }
    
    .config-panel .panel-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
        width: 100%;
        box-sizing: border-box;
    }
    
    .panel-header {
        padding: var(--spacing-sm) var(--spacing-md);
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .panel-header h3 {
        font-size: 1rem;
        margin: 0;
        text-align: center;
    }
    
    .panel-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: var(--spacing-sm);
        box-sizing: border-box;
    }
    
    .form-group.row-1,
    .form-group.row-2-left,
    .form-group.row-2-right,
    .form-group.full-width {
        grid-column: 1;
        margin-bottom: var(--spacing-sm);
    }
    
    .form-group.row-2-left,
    .form-group.row-2-right {
        gap: var(--spacing-sm);
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .form-group select,
    .form-group input {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .timeline-selector.compact {
        flex-direction: column;
    }
    
    .timeline-selector.compact .timeline-option {
        min-height: 35px;
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-sm);
    }
    
    .switch {
        width: 50px;
        height: 26px;
    }
    
    .slider:before {
        height: 18px;
        width: 18px;
    }
    
    .switch input:checked + .slider:before {
        transform: translateX(24px);
    }
    
    .preview-actions {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) 0;
        margin-top: var(--spacing-sm);
    }
    
    .btn-preview-action {
        font-size: 0.85rem;
        min-height: 40px;
        padding: var(--spacing-sm);
        border-radius: var(--radius-md);
    }
    
    .features-selector {
        grid-template-columns: 1fr;
    }
    
    .integrations-selector {
        grid-template-columns: 1fr;
    }
    
    .timeline-selector {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .timeline-option {
        min-height: 50px;
        flex-direction: row;
        justify-content: flex-start;
        gap: var(--spacing-sm);
    }
    
    .timeline-icon {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .timeline-content {
        text-align: left;
    }
    
    .switch-container {
        min-height: 50px;
    }
}

@media (max-width: 768px) {
    .dashboard-demo-section {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }
    
    .dashboard-full-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-container {
        max-width: 100%;
        width: 100%;
        padding: 0 var(--spacing-xs);
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }
    
    .section-header-modern {
        text-align: center;
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }
    
    .section-title-modern {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto var(--spacing-lg);
    }
    
    .demo-disclaimer {
        margin: var(--spacing-xl) auto;
        max-width: 90%;
        padding: var(--spacing-md);
        text-align: left;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
        padding: var(--spacing-md);
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .dashboard-brand {
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .dashboard-logo {
        justify-content: center;
        align-items: center;
        margin-bottom: var(--spacing-sm);
    }
    
    .dashboard-brand-logo {
        width: 32px;
        height: 32px;
    }
    
    .dashboard-brand-name {
        font-size: 1.125rem;
        font-weight: 600;
    }
    
    .dashboard-status {
        justify-content: center;
        margin-top: var(--spacing-xs);
    }
    
    .dashboard-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .dashboard-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }
    
    .demo-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-demo-primary,
    .btn-demo-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Mobile Form Elements Styling */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: var(--spacing-md);
        width: 100%;
    }
    
    /* Quote Preview Responsive */
    .quote-preview {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: var(--spacing-md);
        box-sizing: border-box;
    }
    
    .quote-header {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .quote-info {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .quote-info .info-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-xs) 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .quote-details {
        width: 100%;
    }
    
    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-xs) 0;
        font-size: 0.875rem;
    }
    
    .quote-total {
        text-align: center;
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
        background: #f8fafc;
        border-radius: var(--radius-md);
    }
    
    .form-group label {
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: var(--spacing-xs);
        display: block;
    }
    
    .form-group select,
    .form-group input {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
        border: 1px solid #e2e8f0;
        font-size: 0.875rem;
        background: #ffffff;
    }
    
    .features-selector,
    .integrations-selector {
        background: #f8fafc;
        border-radius: var(--radius-md);
        padding: var(--spacing-md);
        margin-top: var(--spacing-xs);
    }
    
    .feature-option,
    .integration-option {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
        background: #ffffff;
        border-radius: var(--radius-sm);
        border: 1px solid #e2e8f0;
    }
    
    .feature-option label,
    .integration-option label {
        margin: 0;
        font-size: 0.875rem;
        cursor: pointer;
    }
    
    .timeline-selector.compact .timeline-option {
        padding: var(--spacing-sm);
        margin-right: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
        min-height: auto;
        border-radius: var(--radius-sm);
    }
    
    .switch-container {
        background: #f8fafc;
        border-radius: var(--radius-md);
        padding: var(--spacing-md);
        border: 1px solid #e2e8f0;
    }
    
    .switch-description {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .preview-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .btn-preview-action {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .dashboard-full-container {
        padding: 0;
    }
    
    .dashboard-container {
        padding: 0 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-wrapper {
        max-width: 100%;
        margin: 0;
    }
    
    .dashboard-content {
        max-width: 100%;
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-header,
    .panel-content {
        padding: var(--spacing-sm);
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .demo-cta {
        padding: var(--spacing-lg);
    }
    
    .demo-cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Mobile External Metrics */
@media (max-width: 768px) {
    .external-metrics-section {
        padding: var(--spacing-xl) 0;
        margin-top: var(--spacing-lg);
    }
    
    .metrics-container {
        padding: 0 var(--spacing-md);
        max-width: 95%;
        margin: 0 auto;
    }
    
    .metrics-header {
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .metrics-header h3 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .metrics-header p {
        font-size: 0.875rem;
        opacity: 0.8;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .metric-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-lg);
        padding: var(--spacing-md);
        text-align: center;
        border: 1px solid rgba(6, 182, 212, 0.2);
    }
    
    .metric-value {
        font-size: 1.5rem;
        font-weight: 700;
        display: block;
        margin-bottom: var(--spacing-xs);
    }
    
    .metric-label {
        font-size: 0.75rem;
        opacity: 0.7;
    }
    
    .metric-trend {
        font-size: 0.7rem;
        margin-top: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .metric-item {
        padding: var(--spacing-sm);
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
}

/* ============================================
   EMPTY STATE STYLES
   ============================================ */

.empty-state-content {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.empty-state-icon {
    font-size: 4rem;
    color: #94a3b8;
    margin-bottom: var(--spacing-md);
}

.empty-state-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
}

.empty-state-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.configuration-preview {
    background: #f8fafc;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 350px;
}

.configuration-preview h5 {
    font-size: 1rem;
    color: #374151;
    margin: 0 0 var(--spacing-md) 0;
    font-weight: 600;
}

.config-summary {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.config-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.config-value {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

.estimated-range {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    width: 100%;
    max-width: 350px;
}

.range-label {
    font-size: 0.875rem;
    margin: 0 0 var(--spacing-sm) 0;
    opacity: 0.9;
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.range-min, .range-max {
    font-size: 1.5rem;
    font-weight: 700;
}

.range-separator {
    font-size: 1.25rem;
    opacity: 0.7;
}

.range-note {
    font-size: 0.75rem;
    margin: var(--spacing-sm) 0 0 0;
    opacity: 0.8;
    font-style: italic;
}

.btn-preview-action.large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
    min-height: 50px;
}

/* Mobile Empty State */
@media (max-width: 768px) {
    .empty-state-content {
        padding: var(--spacing-lg) var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .empty-state-icon {
        font-size: 3rem;
    }
    
    .empty-state-title {
        font-size: 1.25rem;
    }
    
    .empty-state-description {
        font-size: 0.875rem;
    }
    
    .configuration-preview,
    .estimated-range {
        max-width: 100%;
    }
    
    .price-range {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .range-min, .range-max {
        font-size: 1.25rem;
    }
    
    .btn-preview-action.large {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 1rem;
    }
}

/* ============================================
   FONCTIONNALITÉS INCLUSES - VISUAL STYLING
   ============================================ */

.feature-included {
    position: relative;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
}

.feature-included-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    margin-left: var(--spacing-md);
}

/* Animation subtile pour les fonctionnalités incluses */
.feature-included {
    transition: all 0.3s ease;
}

.feature-included:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-color: rgba(6, 182, 212, 0.3);
}

/* ============================================
   ACTIONS GRID - DEUX COLONNES DESKTOP
   ============================================ */

.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    width: 100%;
}

/* Desktop: deux colonnes avec disposition 2x2 */
@media (min-width: 769px) {
    .actions-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    
    .actions-grid .btn-preview-action {
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
        min-height: 45px;
        font-size: 0.875rem;
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .actions-grid .btn-preview-action i {
        font-size: 0.875rem;
    }
    
    .actions-grid .btn-preview-action span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Mobile: une seule colonne */
@media (max-width: 768px) {
    .actions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .actions-grid .btn-preview-action {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }
}

/* ============================================
   PIPELINE AUTOMATISÉ SECTION
   ============================================ */

.process-flow-external {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.process-flow-external::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-flow-external h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.flow-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.flow-step.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.flow-step.processing {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.flow-step.processing .step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: pulse 2s infinite;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.step-content {
    color: #ffffff;
}

.step-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.step-desc {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.flow-arrow {
    color: #06b6d4;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrowPulse 2s infinite;
}

/* Desktop arrows - horizontal */
.flow-arrow .desktop-arrow {
    display: block !important;
}

.flow-arrow .mobile-arrow {
    display: none !important;
}

/* Assurer que l'animation desktop reste simple */
@media (min-width: 769px) {
    .flow-arrow {
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        margin: 0 var(--spacing-sm) !important;
        animation: arrowPulse 2s infinite !important;
    }
}

@keyframes arrowPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
    }
}

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

/* ============================================
   MOBILE PIPELINE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .process-flow-external {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-lg);
    }
    
    .process-flow-external h4 {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-md);
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .flow-step {
        flex: none;
        width: 100%;
        margin-bottom: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-desc {
        font-size: 0.8rem;
    }
    
    /* Flèches pour mobile */
    .flow-arrow {
        margin: var(--spacing-sm) 0;
        align-self: center;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(6, 182, 212, 0.1);
        border-radius: 50%;
        border: 1px solid rgba(6, 182, 212, 0.2);
        animation: verticalArrowPulse 2s infinite;
    }
    
    .flow-arrow .desktop-arrow {
        display: none !important;
    }
    
    .flow-arrow .mobile-arrow {
        display: block !important;
        font-size: 1rem;
    }
    
    @keyframes verticalArrowPulse {
        0%, 100% { 
            opacity: 0.8; 
            transform: scale(1); 
            background: rgba(6, 182, 212, 0.1);
            box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
        }
        50% { 
            opacity: 1; 
            transform: scale(1.1); 
            background: rgba(6, 182, 212, 0.2);
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
        }
    }
}

@media (max-width: 480px) {
    .process-flow-external {
        padding: var(--spacing-md);
    }
    
    .flow-step {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .step-title {
        font-size: 0.875rem;
    }
    
    .step-desc {
        font-size: 0.75rem;
    }
}
