     /* Чистый CSS без внешних библиотек (Tailwind/FontAwesome удалены) */
        :root {
            --bg-dark: #0f172a;
            --card-bg: #1e293b;
            --accent-blue: #3b82f6;
            --accent-purple: #a855f7;
            --text-main: #f1f5f9;
            --text-dim: #94a3b8;
            --border: #334155;
        }

        .ai-container {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            max-width: 1100px; 
            padding: 20px;
            color: var(--text-main);
            background-color: var(--bg-dark);
    margin: 0 -15px 15px -15px;
        }

        .hero-section {
            text-align: center;
            padding: 40px 0;
        }

        .badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .gradient-h1 {
            font-size: clamp(32px, 5vw, 30px);
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0 0 20px 0;
        }

        .hero-p {
            color: var(--text-dim);
            font-size: 18px;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 10px;
        }

        .stat-item {
            background: var(--card-bg);
            padding: 24px;
            border-radius: 24px;
            border: 1px solid var(--border);
            text-align: center;
        }

        .stat-emoji { font-size: 32px; margin-bottom: 10px; display: block; }
        .stat-val { font-size: 24px; font-weight: bold; display: block; }
        .stat-lab { font-size: 12px; color: var(--text-dim); text-transform: uppercase; font-weight: bold; }

        .info-promo {
            background: linear-gradient(135deg, #1e40af, #4c1d95);
            border-radius: 32px;
            padding: 40px;
            margin-bottom: 60px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .info-content { flex: 1; min-width: 300px; }
        .info-content h2 { font-size: 28px; margin-bottom: 20px; }
        .info-list { list-style: none; padding: 0; }
        .info-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; color: #e2e8f0; }
        .info-list li::before { content: "✓"; color: #60a5fa; font-weight: bold; }

        .bot-card {
            background: var(--card-bg);
            border-radius: 32px;
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .bot-card:hover { transform: translateY(-5px); border-color: #475569; }

        @media (min-width: 768px) {
           
                    
                    
            .bot-card { flex-direction: row; }
            .bot-img { width: 35%; }
            .bot-content { width: 65%; }
            .bot-card.reverse { flex-direction: row-reverse; }
        }

     @media (max-width: 768px) {
                  .ai-container {    margin: 0; }
        }

        .bot-img { position: relative; min-height: 250px; }
        .bot-img img { width: 100%; height: 100%; object-fit: cover; }
        .bot-rank { position: absolute; top: 20px; left: 20px; background: #2563eb; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 14px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

        .bot-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
        .bot-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .bot-title { font-size: 26px; font-weight: bold; margin: 0; }
        .bot-desc { color: var(--text-dim); line-height: 1.6; font-size: 16px; margin-bottom: 25px; }
        
        .tag-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .tag { background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #cbd5e1; }

        .btn-tg {
            display: block;
            background: #2563eb;
            color: white;
            text-decoration: none;
            text-align: center;
            padding: 16px;
            border-radius: 16px;
            font-weight: bold;
            font-size: 18px;
            transition: 0.3s;
        }
        .btn-tg:hover { background: #1d4ed8; }

        .faq-section { background: #020617; border-radius: 40px; padding: 60px 40px; margin-top: 60px; }
        .faq-h2 { text-align: center; font-size: 32px; margin-bottom: 40px; }
        .faq-item { background: rgba(255,255,255,0.03); padding: 25px; border-radius: 20px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.05); }
        .faq-q { color: #60a5fa; font-weight: bold; margin-bottom: 10px; display: block; font-size: 18px; }
        .faq-a { color: var(--text-dim); line-height: 1.5; margin: 0; }

    