        * {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .fade-in-right {
            animation: fadeInRight 0.8s ease-out 0.2s both;
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .bot-image {
            width: 408px;
            height: 612px;
            object-fit: cover;
            filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
        }
        
        .feature-item {
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .feature-item:hover {
            transform: translateX(8px);
            color: #2563eb;
        }
        
        .feature-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            transform: scale(1.2);
        }
        
        .section-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        @media (max-width: 1024px) {
            .bot-image {
                width: auto;
                height: auto;
                max-width: 320px;
            }
            
            .section-bg {
                padding: 4rem 0;
            }
        }
        
        @media (max-width: 768px) {
            .bot-image {
                width: auto;
                height: auto;
                max-width: 280px;
            }
            
            .section-bg {
                padding: 3rem 0;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .feature-item > div:first-child {
                margin-right: 0;
                margin-bottom: 0.75rem;
            }
        }
        
        @media (max-width: 640px) {
            .bot-image {
                max-width: 240px;
            }
            
            .section-bg {
                padding: 2.5rem 0;
            }
        }
        
        .title-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle-gradient {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }