/* AI Revolution Section - Compact Design */
.ai-revolution-section {
    background: #0a0e27;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.ai-revolution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(53, 67, 240, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(53, 67, 240, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.revolution-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.revolution-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.revolution-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Stat Cards Grid */
.stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(53, 67, 240, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #3543F0;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-text {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Main Callout */
.revolution-main-callout {
    text-align: center;
    padding: 2rem;
}

.revolution-main-callout p {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.revolution-main-callout span {
    color: #8B5CF6;
    position: relative;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

.revolution-main-callout {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ai-revolution-section {
        padding: 60px 20px;
    }
    
    .revolution-title {
        font-size: 1.75rem;
    }
    
    .revolution-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .stat-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-text {
        font-size: 0.95rem;
    }
    
    .revolution-main-callout p {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
}