        /* --- CSS Variables & Reset --- */
		:root {
			--primary: #2ca85c; /* Свежий зелёный */
			--dark: #1f2b1f;
			--light: #f3f7f3;
			--white: #ffffff;
			--gray: #5d6f5d;
			--shadow: 0 4px 15px rgba(0, 80, 0, 0.05);
			--container-width: 1100px;
		}


        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- Layout Utility --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        /* --- Header --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo span { color: var(--dark); }

        /* Desktop Menu */
        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .nav-menu a:hover { color: var(--primary); }

        /* Mobile Menu Button */
        .burger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- Hero Section --- */
        .hero {
            padding: 80px 0;
            background: linear-gradient(135deg, #f9fbfd 0%, #edf2f7 100%);
        }

        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
        }

        /* H1: Используется 1 раз строго здесь */
        h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
        }
        .btn-primary:hover { background: #1a66a6; }

        .hero-img {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .hero-img img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        /* --- Categories Section --- */
        .categories {
            padding: 80px 0;
            background: var(--white);
        }

        /* H2: 1-е использование */
        h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
            color: var(--dark);
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 колонки */
            gap: 30px;
        }

        .cat-card {
            background: var(--light);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .cat-card:hover {
            transform: translateY(-5px);
            background: #eef4fa;
        }

        .cat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: inline-block;
        }

        /* Using div styled as heading to save H-tags limit */
        .cat-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cat-desc {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* --- SEO Text Section --- */
        .seo-section {
            padding: 60px 0;
            background: #fcfcfc;
            border-top: 1px solid #eee;
        }

        .seo-content {
            max-width: 800px;
            margin: 0 auto;
        }

        /* H2: 2-е использование */
        .seo-content h2 {
            text-align: left;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        /* H3: 1-е использование */
        h3 {
            font-size: 1.3rem;
            margin: 25px 0 15px 0;
            color: #444;
        }

        .seo-content p {
            margin-bottom: 15px;
            color: #555;
        }

        /* --- FAQ Section --- */
        .faq {
            padding: 80px 0;
        }

        /* H2: 3-е использование (МАКСИМУМ ДОСТИГНУТ) */
        .faq h2 {
            margin-bottom: 40px;
        }

        /* H3: 2-е использование */
        .faq-intro h3 {
            text-align: center;
            font-size: 1.2rem;
            font-weight: normal;
            color: var(--gray);
            margin-top: -30px;
            margin-bottom: 40px;
        }

        .faq-item {
            background: var(--light);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 20px 20px;
            color: var(--gray);
            display: none; /* JS will toggle */
            border-top: 1px solid #eee;
            margin-top: 10px;
        }

        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-question {
            color: var(--primary);
        }

        /* --- Footer --- */
        footer {
            margin-top: auto;
            background: var(--dark);
            color: #aaa;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
        }




























.news {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.news h2 {
  margin-bottom: 24px;
  font-size: 22px;
}

.news-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.news-item {
  flex: 1 1 280px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
}

.news-title {
  margin: 0 0 10px;
  font-size: 20px;
}

.news-desc {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.news-link {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid #2ca85c;
  color: #fff;
  background: #2ca85c;
}

.news-link:hover {
  background: #fff;
  color: #2ca85c;
}







.news-full {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: system-ui, sans-serif;
}

.news-full-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.news-full-date {
  color: #777;
  margin-bottom: 20px;
}

.news-full-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.news-full-content p {
  margin-bottom: 18px;
  line-height: 1.65;
  font-size: 18px;
}

.news-back {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #007bff;
  font-size: 16px;
}

.news-back:hover {
  text-decoration: underline;
}



.news-full-content ul, li {
  margin-bottom: 18px;
  line-height: 1.65;
  font-size: 18px;
  list-style-type: disc;      /* стандартные маркеры */
  padding-left: 20px;         /* отступ слева */
  margin: 20px 0;
}








/* --- Contacts Section Styles --- */
    .contacts-section {
        padding: 80px 0;
        background: var(--white);
        text-align: center;
        border-top: 1px solid #eee;
    }
    
    .contacts-section .section-title {
        margin-bottom: 50px;
        color: var(--dark);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .contact-item {
        background: var(--light);
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        transition: background 0.3s;
    }

    .contact-item:hover {
        background: #eef4fa;
    }

    .contact-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
        display: inline-block;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--primary);
    }
    
    .contact-item p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--dark);
    }
    
    .contact-item a {
        font-weight: 500;
        color: var(--primary);
    }
    
    .contact-item a:hover {
        text-decoration: underline;
    }

    .contact-item .small-text {
        font-size: 0.8rem;
        color: var(--gray);
        margin-top: 5px;
    }





.cat-link {
    /* Делаем его блочным, чтобы он мог содержать cat-card */
    display: block; 
    /* Убираем стандартное подчёркивание ссылки */
    text-decoration: none; 
    /* Наследуем цвет текста от родителя (или задаём нужный) */
    color: inherit; 
}

/* При необходимости, можно добавить стили для .cat-card при наведении на ссылку */
.cat-link:hover .cat-card {
    /* Например, изменить тень или фон */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
}



/* --- Final CTA Section --- */
    .final-cta {
        padding: 60px 0;
        background: #eef4fa; /* Легкий оттенок синего */
        text-align: center;
        border-top: 1px solid #ddd;
    }

    .final-cta h3 {
        font-size: 1.5rem;
        margin: 0 0 15px 0;
        color: var(--dark);
    }

    .final-cta p {
        margin-bottom: 25px;
        color: var(--gray);
    }
    
    /* Делаем кнопку чуть больше для акцента */
    .final-cta .btn-primary {
        padding: 15px 40px;
        font-size: 1.1rem;
    }




.btn-secondary {
	background: transparent;
	color: #4f46e5;
	padding: 15px 40px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	border: 2px solid #4f46e5;
	transition: 0.2s;
}

.btn-secondary:hover {
	background: #4f46e5;
	color: #fff;
}









.security-info {
    padding: 40px 0;
    background: #f8f9fc;
    border-top: 1px solid #e1e5ee;
}

.security-box {
    background: #ffffff;
    border: 1px solid #dce2ec;
    border-radius: 10px;
    padding: 25px 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.security-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.security-box ul {
    margin: 15px 0 20px;
    padding-left: 20px;
}

.security-box ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.security-box .notice {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}











/* Основная обертка для изоляции стилей */
.cl-wrapper {
    /* Настройки цветов (можно поменять под ваш бренд) */
    --cl-primary: #2563eb;
    --cl-primary-hover: #1d4ed8;
    --cl-text-dark: #111827;
    --cl-text-gray: #4b5563;
    --cl-bg-gray: #f9fafb;
    --cl-white: #ffffff;
    --cl-radius: 12px;
    --cl-gap: 40px;
    
    width: 100%;
    overflow: hidden; /* Защита от горизонтального скролла */
    font-family: inherit; /* Наследуем шрифт сайта */
}

/* Сброс box-sizing для элементов внутри обертки */
.cl-wrapper * {
    box-sizing: border-box;
}

/* Контейнер */
.cl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Отступы секций */
.cl-section {
    padding: 60px 0;
}

.cl-hero {
    background: linear-gradient(to right, #f0f9ff, #ffffff);
}

.cl-features {
    background-color: var(--cl-bg-gray);
}

/* Сетка (Flexbox) для 1 и 2 блока */
.cl-row {
    display: flex;
    align-items: center;
    gap: var(--cl-gap);
    justify-content: space-between;
}

.cl-col {
    flex: 1;
}

/* Типографика */
.cl-title-main {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Адаптивный размер */
    font-weight: 800;
    line-height: 1.2;
    color: var(--cl-text-dark);
    margin-bottom: 20px;
}

.cl-title-sub {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--cl-text-dark);
    margin-bottom: 20px;
}

.cl-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cl-text-gray);
    margin-bottom: 30px;
}

/* Изображения */
.cl-media img {
    width: 100%;
    height: auto;
    border-radius: var(--cl-radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

/* Кнопка */
.cl-btn {
    display: inline-block;
    background-color: var(--cl-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.cl-btn:hover {
    background-color: var(--cl-primary-hover);
    transform: translateY(-2px);
    color: #fff; /* Фикс для некоторых тем */
}

/* 3-й блок: Grid сетка */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cl-card {
    background: var(--cl-white);
    padding: 5px;
    border-radius: var(--cl-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.cl-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--cl-primary);
}

.cl-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cl-text-dark);
    margin: 0;
}

/* --- Адаптивность (Mobile & Tablet) --- */
@media (max-width: 992px) {
    .cl-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшете */
    }
}

@media (max-width: 768px) {
    .cl-section {
        padding: 40px 0;
		min-height: 100vh; /* Секция займет весь экран */
        display: flex;
        align-items: center;
    }

    .cl-row {
        flex-direction: column; /* Вертикальное расположение */
        gap: 30px;
		/* Добавляем эти строки: */
        justify-content: center; /* Центрирует по вертикали (т.к. направление column) */
        align-items: center;     /* Центрирует по горизонтали */
        text-align: center;      /* Выравнивает сам текст внутри колонки по центру */
        min-height: 80vh;
    }

	.cl-col {
        width: 100%;             /* Растягиваем колонку на всю ширину */
        display: flex;
        flex-direction: column;
        align-items: center;     /* Центрирует кнопку и заголовки внутри колонки */
    }

    /* Чтобы во 2-м блоке на мобильном картинка была сверху (опционально) */
    /* Убираем класс .cl-reverse-mobile из HTML, если хотите текст сверху во 2 блоке */
    .cl-reverse-mobile {
        flex-direction: column-reverse; 
        /* Или просто column, если хотите картинку сверху во 2-м блоке.
           Сейчас в HTML структура: Картинка -> Текст. 
           При column картинка будет первой. */
        flex-direction: column; 
    }

    .cl-grid {
        grid-template-columns: 1fr; /* 1 колонка на телефоне */
    }

    .cl-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .cl-card {
        min-height: auto;
        padding: 20px;
    }
}








/* --- Стили для 4-го блока (Каталог ботов) --- */

.cl-bots-grid {
    display: grid;
    /* Автоматическое заполнение: колонки будут не меньше 200px, но растянутся, если есть место */
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; /* Компактный отступ */
}

.cl-bot-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--cl-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Эффект при наведении */
.cl-bot-card:hover {
    border-color: var(--cl-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.cl-bot-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
}

/* Контейнер иконки */
.cl-bot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #eff6ff; /* Светло-синий фон иконки */
    border-radius: 8px;
    font-size: 1.2rem; /* Размер эмодзи */
    flex-shrink: 0;
}

/* Название бота */
.cl-bot-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cl-text-dark);
    line-height: 1.2;
}

.cl-bot-card:hover .cl-bot-name {
    color: var(--cl-primary);
}

/* Описание */
.cl-bot-desc {
    font-size: 0.85rem;
    color: var(--cl-text-gray);
    margin: 0;
    line-height: 1.4;
    
    /* Обрезаем текст, если он слишком длинный (опционально) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Адаптивность для ботов */
@media (max-width: 480px) {
    .cl-bots-grid {
        /* На совсем маленьких экранах - 2 колонки, но узкие */
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .cl-bot-card {
        padding: 12px;
    }

    .cl-bot-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .cl-bot-name {
        font-size: 1.15rem;
    }
    
    .cl-bot-desc {
        font-size: 0.75rem;
    }
}

/* --- Адаптивность для 4-го блока --- */
@media (max-width: 992px) {
    /* На планшете - 2 колонки */
    .cl-bots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* На телефоне - 1 колонка */
    .cl-bots-grid {
        grid-template-columns: 1fr; 
        gap: 10px;
    }
}









        /* --- Responsive Design (Mobile) --- */
        @media (max-width: 900px) {
            .cat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-inner { position: relative; }
            
            .burger { display: block; }

            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                gap: 15px;
                text-align: center;
            }

            .nav-menu.active { display: flex; }

			.hero-wrapper {
                /* Меняем column-reverse на column */
                flex-direction: column; 
                text-align: center;
                gap: 30px; /* Отступ между текстом и картинкой */
            }

            h1 { font-size: 2.2rem; }

            .cat-grid {
                grid-template-columns: 1fr; /* 1 колонка */
            }
        }



















.similar-bots {
	padding: 50px 0;
}

.similar-bots h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 26px;
}

/* Сетка */
.bots-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Карточка */
.bot-card {
	background: #fff;
	border-radius: 12px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bot-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.bot-card img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
}

.bot-card h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.bot-card p {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
}

/* Адаптив */
@media (max-width: 992px) {
	.bots-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.bots-grid {
		grid-template-columns: 1fr;
	}
}



.rating {
	color: #ffc107;
	font-size: 18px;
	margin-bottom: 8px;
	letter-spacing: 2px;
}