/* ===== Базовые настройки для всей страницы ===== */
body { /* Стили для всего документа */
    margin: 0; /* убираем отступы по умолчанию */
    font-family: Arial, sans-serif; /* шрифт по умолчанию */
    background: #fff; /* белый фон */
    color: #222; /* основной цвет текста */
}

/* ===== HERO (главный экран) ===== */
header.hero { /* контейнер главного блока */
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* градиентный фон */
    color: #fff; /* белый текст */
    padding: 100px 20px; /* отступы сверху и по бокам */
    text-align: center; /* выравнивание по центру */
    position: relative; /* для позиционирования элементов внутри */
    overflow: hidden; /* обрезает лишнее за границами */
}

.hero-content { /* контейнер содержимого в hero */
    max-width: 800px; /* максимальная ширина */
    margin: 0 auto; /* центрируем */

}

.hero h1 { /* главный заголовок */
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero h1 span { /* верхняя строка заголовка */
    font-weight: 300;
    display: block;
    font-size: 28px;
    opacity: 0.9; /* лёгкая прозрачность */
}

.hero h1 strong { /* нижняя строка заголовка */
    font-weight: 700;
    font-size: 36px;
    color: #ffcc00; /* жёлтый акцент */
}

.hero-subtitle { /* подзаголовок */
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0; /* светло-серый текст */
}

.cta-buttons { /* контейнер для кнопок */
    display: flex; /* кнопки в одну линию */
    justify-content: center; /* центрируем */
    gap: 20px; /* расстояние между кнопками */
    flex-wrap: wrap; /* перенос на новую строку при нехватке места */
}

.logos {
    display: flex;
    justify-content: center;   /* центрируем по горизонтали */
    align-items: center;       /* центрируем по вертикали */
    flex-wrap: wrap;           /* переносим, если не хватает места */
    gap: 40px;                 /* расстояние между логотипами */
    padding: 40px 20px;        /* отступы секции */
    background: #f8f9fa;       /* лёгкий фон для отделения */
}

.logos img {
    max-height: 60px;          /* ограничиваем высоту */
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);   /* логотипы ч/б */
}

.logos img:hover {
    transform: scale(1.05);    /* лёгкое увеличение при наведении */
    filter: grayscale(0%);     /* цвет при наведении */
}


/* ===== Кнопки ===== */
.btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s; /* анимация при наведении */
}

.btn.dark { /* кнопка с фоном */
    background-color: #ffcc00;
    color: #222;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3); /* тень */
}
.btn.dark:hover {
    background-color: #e6b800; /* тёмнее при наведении */
}

.btn.light { /* кнопка с прозрачным фоном */
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.btn.light:hover {
    background-color: #ffffff22; /* лёгкий белый фон при наведении */
}

/* ===== Секция с фоном (Возможности) ===== */
.features-grid {
    background: #f7f8fa;
    padding: 80px 20px;
    text-align: center;
}

.section-header h2 { /* заголовок секции */
    font-size: 32px;
    margin-bottom: 10px;
}
.section-header p { /* описание секции */
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ===== Карточки ===== */
.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    flex: 1 1 260px;
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card .icon { font-size: 36px; margin-bottom: 15px; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; color: #111; }
.feature-card p { font-size: 15px; color: #666; }

/* ===== Секция "Платформа" ===== */
.platform-ready {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.platform-ready .section-header h2 { font-size: 32px; margin-bottom: 10px; }
.platform-ready .section-header p { font-size: 16px; color: #555; max-width: 700px; margin: 0 auto 40px; }
.platform-ready .feature-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.platform-ready .feature-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    max-width: 300px;
    flex: 1 1 260px;
    transition: all 0.3s ease;
}
.platform-ready .feature-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.platform-ready .icon { font-size: 36px; margin-bottom: 15px; color: #333; }
.platform-ready h3 { font-size: 20px; margin-bottom: 10px; color: #111; }
.platform-ready p { font-size: 15px; color: #666; }

/* ===== E-commerce секция ===== */
.ecommerce-scale {
    background: #f0f2f5;
    padding: 80px 20px;
    text-align: center;
}
.ecommerce-scale .section-header h2 { font-size: 32px; margin-bottom: 10px; }
.ecommerce-scale .section-header p { font-size: 16px; color: #444; max-width: 700px; margin: 0 auto 40px; }
.ecommerce-scale .feature-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.ecommerce-scale .feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    flex: 1 1 260px;
    transition: all 0.3s ease;
}
.ecommerce-scale .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.ecommerce-scale .icon { font-size: 36px; margin-bottom: 15px; }
.ecommerce-scale h3 { font-size: 20px; margin-bottom: 10px; color: #111; }
.ecommerce-scale p { font-size: 15px; color: #555; }

/* ===== Тарифы ===== */
.pricing {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.pricing .section-header h2 { font-size: 32px; margin-bottom: 10px; }
.pricing .section-header p { font-size: 16px; color: #555; margin-bottom: 40px; }
.plans { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.plan {
    background: #f9f9f9;
    padding: 40px 25px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); }
.plan-icon { font-size: 40px; margin-bottom: 15px; }
.plan h3 { font-size: 22px; margin-bottom: 5px; }
.plan .price { font-size: 18px; color: #333; margin-bottom: 15px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 25px 0; color: #666; }
.plan ul li { margin: 8px 0; font-size: 15px; }
.plan.highlight {
    background: linear-gradient(135deg, #ffe082, #ffca28);
    color: #111;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}
.plan.highlight h3,
.plan.highlight .price,
.plan.highlight ul li { color: #111; }

/* ===== Отзывы ===== */
.testimonials {
    background: #fafafa;
    padding: 80px 20px;
    text-align: center;
}
.testimonials .section-header h2 { font-size: 32px; margin-bottom: 10px; }
.testimonials .section-header p { font-size: 16px; color: #555; margin-bottom: 40px; }
.testimonial-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 300px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); }
.avatar { font-size: 40px; margin-bottom: 15px; }
.quote { font-style: italic; font-size: 16px; color: #333; margin-bottom: 15px; }
.author { font-weight: bold; color: #666; font-size: 14px; }

/* ===== FAQ ===== */
.faq {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}
.faq .section-header h2 { font-size: 32px; margin-bottom: 10px; }
.faq .section-header p { font-size: 16px; color: #666; margin-bottom: 40px; }
.faq-list { max-width: 700px; margin: 0 auto; text-align: left; }
.faq-list details {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid #eee;
}
.faq-list details:hover { background: #f1f1f1; }
.faq-list summary {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    list-style: none;
}
.faq-list p { margin-top: 10px; font-size: 15px; color: #444; line-height: 1.5; }

/* ===== Цифры ===== */
.numbers {
    background: #f7f7f7;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}
.number-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 250px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}
.number-card:hover { transform: translateY(-5px); }
.number-card strong { display: block; font-size: 28px; color: #ff9800; margin-bottom: 10px; }
.number-card p { font-size: 15px; color: #555; }

/* ===== Финальный CTA ===== */
.cta-footer {
    background: linear-gradient(135deg, #203a43, #2c5364);
    color: white;
    padding: 80px 20px;
    text-align: center;
}
.cta-footer .cta-inner { max-width: 800px; margin: 0 auto; }
.cta-footer h2 { font-size: 32px; margin-bottom: 15px; color: #ffcc00; }
.cta-footer p { font-size: 16px; color: #e0e0e0; margin-bottom: 30px; }
.cta-footer .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-footer .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

/* ===== Шапка с навигацией ===== */
.site-header {
    position: sticky; /* фиксируем при прокрутке */
    top: 0;
    z-index: 100;
    background: rgba(16, 24, 32, 0.85); /* тёмный полупрозрачный фон */
    backdrop-filter: blur(8px); /* лёгкое размытие */
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
}

.logo i {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffcc00, #ff9800);
    display: inline-block;
}



.nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a {
    color: #e9eef2;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav a:hover { background: rgba(255,255,255,.08); }

.nav-cta {
    background: #ffcc00;
    color:#111;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
}

.nav-cta:hover { background:#e6b800; }

/* ===== Блок контактов ===== */
.contacts {
    background: #0f1820;
    color: #e6edf3;
    padding: 60px 20px;
}

.contacts .container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.contacts h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.contacts p, .contacts a {
    color: #cfd7de;
    text-decoration: none;
}

.contacts a:hover {
    color: #ffcc00;
}

.contacts .social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contacts .social a {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
}

.footer-copy {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 28px;
    padding-top: 18px;
    text-align: center;
    color: #aab6be;
}

/* ===== Мобильная адаптация для шапки ===== */
@media (max-width: 640px) {
    .nav { display: none; } /* временно убираем меню, можно заменить на бургер */
}


.cta-footer .btn.dark { background-color: #ffcc00; color: #222; }
.cta-footer .btn.dark:hover { background-color: #e6b800; }
.cta-footer .btn.light { background: transparent; border: 2px solid white; color: white; }
.cta-footer .btn.light:hover { background: #ffffff22; }

/* ===== Общие стили для кнопок, секций, плана, футера и логотипов ===== */
.cta-buttons { margin-top: 20px; }
.btn { padding: 12px 20px; text-decoration: none; border-radius: 5px; font-weight: bold; }
.btn.dark { background: #ff9800; color: white; }
.btn.light { background: white; color: #111; border: 1px solid #ccc; }
.section, .pricing, .testimonials, .faq, .numbers, .cta-footer { padding: 60px 20px; text-align: center; }
.section.alt { background: #f4f4f4; }
.plans { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.plan { border: 1px solid #ddd; padding: 20px; border-radius: 10px; width: 250px; }
.plan.highlight { border: 2px solid #ff9800; }
footer { background: #111; color: white; padding: 30px; text-align: center; }
.logos img { height: 40px; margin: 10px; }

.logo img {
    height: 50px; /* или нужная тебе высота */
    width: auto;  /* сохраняем пропорции */
    display: block;
}
