/* Подключение шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Общие стили */
body {
    font-family: 'Inter', Arial, sans-serif;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Хедер */
header {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #007bff;
}

/* Гамбургер-меню */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 10px 0;
        text-align: center;
    }
}

/* Герой-блок */
.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #007BFF, #00C853);
    color: white;
    border-radius: 10px;
    margin: 20px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Кнопки */
.button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #007bff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
}

.button:hover {
    background: #0056b3;
}

/* Блок "Почему выбирают нас?" */
.features {
    padding: 40px;
    background: white;
}

.features h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 180px;
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Каталог */
.catalog {
    padding: 40px;
}

.bot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.bot-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 280px;
    transition: 0.3s;
}

.bot-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.bot-card p {
    font-size: 14px;
    color: #666;
}

.bot-card .button {
    margin-top: 15px;
}

/* Подвал */
.footer {
    background: #f1f1f1;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}
