/* ============================================
   DIAGIA - Styles principaux
   Design ultra-moderne pour conversion maximale
   ============================================ */

/* Variables CSS */
:root {
    /* Couleurs principales */
    --color-bg-primary: #0A0E1A;
    --color-bg-secondary: #0f1419;
    --color-bg-tertiary: #1a1f2e;
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #94a3b8;
    --color-text-tertiary: #64748b;
    
    --color-primary: #00D9FF;
    --color-secondary: #8b5cf6;
    --color-accent: #10b981;
    --color-warning: #fbbf24;
    --color-error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.logo-icon svg {
    display: block;
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links a {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -50px); }
    50% { transform: translate(0, -100px); }
    75% { transform: translate(-50px, -50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.badge-primary {
    background: rgba(0, 217, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.badge-secondary {
    background: rgba(239, 68, 68, 0.1);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    flex-wrap: wrap;
}

.hero-trust svg {
    flex-shrink: 0;
}

/* ============================================
   PHONE MOCKUP
   ============================================ */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

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

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #1a1f2e, #0f1419);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #0A0E1A;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-primary);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem 1rem;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
}

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

.phone-logo-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
}

.phone-logo-text {
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.phone-menu {
    font-size: 1.5rem;
}

.phone-content {
    padding: 1rem;
}

.diagnostic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-warning);
    margin-bottom: 1rem;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    line-height: 1.4;
}

.user-message {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    align-self: flex-end;
    max-width: 85%;
}

.ai-message {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    align-self: flex-start;
    max-width: 85%;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.precision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    margin-top: 1rem;
}

/* ============================================
   FLOATING CARDS
   ============================================ */

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInFloat 1s ease-out forwards;
}

.card-1 {
    top: 5%;
    left: -25%;
    animation-delay: 0.5s;
}

.card-2 {
    top: 50%;
    right: -30%;
    animation-delay: 0.7s;
}

.card-3 {
    bottom: 10%;
    left: -20%;
    animation-delay: 0.9s;
}

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

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

.card-1, .card-2, .card-3 {
    animation: fadeInFloat 1s ease-out forwards, floatCard 6s ease-in-out infinite;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.promo-icon {
    font-size: 1.5rem;
}

.promo-text {
    color: var(--color-text-primary);
    font-size: 1rem;
}

.promo-timer {
    background: rgba(239, 68, 68, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: var(--font-weight-semibold);
    color: #FCA5A5;
    font-size: 0.875rem;
}

.promo-progress {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    text-align: center;
}

/* ============================================
   SOCIAL PROOF COUNTER
   ============================================ */

.social-proof-counter {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.proof-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.counter {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    color: var(--color-primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */

.problems-section {
    background: var(--color-bg-secondary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.problem-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.problem-cost {
    padding: var(--spacing-md);
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--color-error);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: #FCA5A5;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-section {
    background: var(--color-bg-secondary);
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.feature-reverse {
    grid-template-columns: 2fr 1fr;
}

.feature-reverse .feature-visual {
    order: 2;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.gradient-bg-1 {
    background: var(--gradient-primary);
}

.gradient-bg-2 {
    background: var(--gradient-secondary);
}

.gradient-bg-3 {
    background: var(--gradient-accent);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text-secondary);
}

.feature-list li::before {
    content: '→';
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-secondary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.unique-selling-point {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
}

.unique-selling-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: #FCA5A5;
    margin-bottom: var(--spacing-md);
}

.usp-badge-icon {
    font-size: 1.25rem;
}

.usp-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.usp-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.usp-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.usp-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-weight: var(--font-weight-semibold);
}

.usp-feature-item svg {
    color: var(--color-primary);
}

/* ============================================
   HUMAN SUPPORT SECTION
   ============================================ */

.human-support-section {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.human-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.support-badge-icon {
    font-size: 1.25rem;
}

.support-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.support-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.support-feature {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.support-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.support-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.support-feature p {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    margin: 0;
}

.support-note {
    padding: var(--spacing-lg);
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.support-note strong {
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.support-quota {
    display: block;
    margin-top: var(--spacing-sm);
    font-style: italic;
    color: var(--color-text-tertiary);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
    background: var(--color-bg-primary);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.before {
    border-color: rgba(239, 68, 68, 0.3);
}

.after {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    font-size: 2rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    background: var(--color-bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

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

.card-highlight {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, transparent 100%);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.benefit-example {
    padding: var(--spacing-md);
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--color-accent);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.benefit-example strong {
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.25rem;
}

/* ROI Calculator */
.roi-calculator {
    margin-top: var(--spacing-md);
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.roi-input-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.roi-input-group label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    flex: 1;
}

.roi-input-group input {
    width: 80px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-weight: var(--font-weight-semibold);
    text-align: center;
}

.roi-input-group span {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.roi-result {
    padding: var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    text-align: center;
}

.roi-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.roi-value {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
}

.roi-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    text-align: center;
    color: var(--color-text-secondary);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section {
    background: var(--color-bg-primary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background: rgba(0, 217, 255, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    background: var(--color-bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
}

.author-name {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.stat-box .stat-value {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: var(--spacing-2xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-header h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-logo {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-tertiary);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 0.8;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.trust-badge .badge-icon {
    font-size: 2rem;
}

.badge-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.badge-text span {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    background: var(--color-bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.3);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, transparent 100%);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.price-amount {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-tertiary);
}

.pricing-quota {
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.btn-pricing-featured {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.btn-pricing-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.pricing-note {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
}

.pricing-guarantee {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-guarantee h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xl);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.guarantee-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: var(--color-bg-secondary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
}

.final-cta-content p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.final-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-final-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-xl);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

.final-cta-note {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-secondary);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.footer-links-col h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.footer-links-col a {
    display: block;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links-col a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

/* ============================================
   MODALS
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
    padding: var(--spacing-xl);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-error);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.modal-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* FIX GEMINI: Lisibilité selecteurs */
.form-group select option {
    background-color: var(--color-bg-secondary);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.btn-modal {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.btn-back {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    margin-top: var(--spacing-sm);
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Lead Popup */
.lead-popup {
    text-align: center;
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.popup-note {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    margin-top: var(--spacing-md);
}

.btn-popup {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Signup Steps */
.signup-step {
    display: none;
}

.signup-step.active {
    display: block;
}

.plan-selection {
    margin: var(--spacing-lg) 0;
}

.plan-selection h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.plan-option {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.05);
}

.plan-option.recommended {
    border-color: var(--color-primary);
    background: rgba(0, 217, 255, 0.05);
}

.plan-option input[type="radio"] {
    margin-right: var(--spacing-md);
}

.plan-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.badge-small {
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
}

.processing-animation {
    text-align: center;
    padding: var(--spacing-2xl);
}

.spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-xl);
    border: 4px solid rgba(0, 217, 255, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Demo Modal */
.demo-modal {
    text-align: center;
}

.demo-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   CHATBOT
   ============================================ */

.chatbot {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 380px;
    max-height: 600px;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.chatbot.minimized {
    max-height: 70px;
    width: 300px;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    cursor: pointer;
}

.chatbot-avatar {
    position: relative;
}

.avatar-img {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

.avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border: 2px solid var(--color-bg-secondary);
    border-radius: 50%;
}

.chatbot-info {
    flex: 1;
}

.chatbot-name {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.25rem;
}

.chatbot-status {
    font-size: 0.75rem;
    color: var(--color-accent);
}

.chatbot-toggle {
    background: transparent;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.toggle-close {
    display: none;
}

.chatbot.minimized .toggle-open {
    display: none;
}

.chatbot.minimized .toggle-close {
    display: block;
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot.minimized .chatbot-body {
    display: none;
}

.chatbot-messages {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.bot-message {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.message-bubble {
    padding: var(--spacing-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.6;
}

.chatbot-suggestions {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.chatbot-suggestions button {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    text-align: left;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.chatbot-suggestions button:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: white;
}

.chatbot-footer {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    display: block;
    padding: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9997;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================
   SOCIAL PROOF NOTIFICATION
   ============================================ */

.social-proof-notification {
    position: fixed;
    bottom: var(--spacing-xl);
    left: var(--spacing-xl);
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: none;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 9996;
    max-width: 320px;
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-proof-notification.active {
    display: flex;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .solution-feature,
    .feature-reverse {
        grid-template-columns: 1fr;
    }
    
    .feature-reverse .feature-visual {
        order: 1;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .chatbot {
        width: calc(100% - 2rem);
        right: 1rem;
        left: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .promo-content {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 280px;
        height: 570px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .modal {
        padding: var(--spacing-md);
    }
    
    .modal-content {
        padding: var(--spacing-lg);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Print styles */
@media print {
    .navbar,
    .chatbot,
    .whatsapp-float,
    .social-proof-notification,
    .promo-banner {
        display: none !important;
    }
}

/* CORRECTIF CREANEAUX HORAIRES LISIBLES */
select option {
    background-color: #1a1f2e !important;
    color: #ffffff !important;
}

select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

