     /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Arial', sans-serif;
            background: #0b0b0e;
            color: #fff;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER / HERO ===== */
        .hero {
            position: relative;
            background: url('head.jpg') center / cover no-repeat;
            background-color: #12121a;
            min-height: 500px;
            display: flex;
            flex-direction: column;
        }

        /* тёмный оверлей для читаемости */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }

        .hero>* {
            position: relative;
            z-index: 2;
        }
		
		

	

        /* ===== TOP BAR ===== */
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            flex-wrap: wrap;
            gap: 12px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.3px;
            color: #fff;
        }

        .logo .bolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            line-height: 1;
            color: #ff7a1a;
        }

        .logo span {
            color: #fff;
        }

        .top-contacts {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px 30px;
        }

        .top-contacts .phone {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: #fff;
        }

        .top-contacts .email {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 2px;
        }

        .btn-chat {
            background: #ff7a1a;
            color: #fff;
            border: none;
            padding: 8px 24px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            box-shadow: 0 4px 14px rgba(255, 122, 26, 0.35);
        }

        .btn-chat:hover {
            background: #e86a0c;
            transform: scale(1.02);
        }

        /* ===== HERO CONTENT ===== */
        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 0 60px;
            max-width: 780px;
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 900;
            letter-spacing: 4px;
            color: #fff;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .hero-content .sub-bold {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .hero-content .sub-light {
            font-size: 18px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }

        .btn-primary {
            background: #ff7a1a;
            color: #fff;
            border: none;
            padding: 14px 44px;
            border-radius: 40px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            box-shadow: 0 6px 20px rgba(255, 122, 26, 0.4);
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: #e86a0c;
            transform: scale(1.02);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(4px);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 14px 40px;
            border-radius: 40px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            letter-spacing: 0.3px;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }

        /* ===== PRODUCTS SECTION (dark purple) ===== */
        .products {
            background: #4d37e8;
            padding: 70px 0 80px;
        }


        .products-color {
            background: #0c7ac3;
            padding: 70px 0 80px;
        }


        .products .section-title {
            font-size: 38px;
            font-weight: 900;
            letter-spacing: 3px;
            text-align: center;
            color: #fff;
            margin-bottom: 48px;
            text-transform: uppercase;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }


        .products-double-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            /*background: url('bnner3.png') center / cover no-repeat;*/
        }


        .product-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 16px 16px 20px;
            text-align: center;
            transition: background 0.25s, transform 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .product-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .product-card .img-wrap {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 12px;
            overflow: hidden;
            background: #25203a;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .product-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-card .img-wrap .placeholder {
            color: rgba(255, 255, 255, 0.2);
            font-size: 14px;
            text-align: center;
            padding: 10px;
        }

        .product-card .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
        }

        /* ===== YANDEX FORM SECTION ===== */
        .form-section {
            
            /* background: url(form_b2.jpg) center / cover no-repeat; */
            background: #0c7ac3;
            padding: 60px 0 70px;
            display: flex;
            justify-content: center;
        }

        .form-section .form-wrapper {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            padding: 20px 10px 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 700px;
            width: 100%;
            display: flex;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .form-section iframe {
            max-width: 100%;
            border-radius: 12px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #002b60;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px 0 30px;
        }

        .footer .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px 30px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }

        .footer .footer-logo .bolt {
            font-size: 24px;
            color: #ff7a1a;
        }

        .footer .footer-contacts {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px 30px;
        }

        .footer .footer-contacts .phone {
            font-size: 17px;
            font-weight: 600;
            color: #fff;
        }

        .footer .footer-contacts .email {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer .btn-chat-footer {
            background: #ff7a1a;
            color: #fff;
            border: none;
            padding: 7px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .footer .btn-chat-footer:hover {
            background: #e86a0c;
        }

        .footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 36px;
            padding-top: 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer .footer-links a {
            transition: color 0.2s;
            border-bottom: 1px solid transparent;
        }

        .footer .footer-links a:hover {
            color: #ff7a1a;
            border-bottom-color: rgba(255, 122, 26, 0.3);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
			
			    .products-double-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .hero-content h1 {
                font-size: 48px;
                letter-spacing: 2px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 520px;
            }

            .top-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 14px 0 10px;
            }

            .top-contacts {
                width: 100%;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 8px 16px;
            }

            .top-contacts .phone {
                font-size: 16px;
            }

            .hero-content h1 {
                font-size: 34px;
                letter-spacing: 1px;
            }

            .hero-content .sub-bold {
                font-size: 18px;
            }

            .hero-content .sub-light {
                font-size: 15px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                text-align: center;
                padding: 14px 20px;
                font-size: 16px;
            }

            .products .section-title {
                font-size: 28px;
                letter-spacing: 1px;
            }

            .products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
			
			
			
			    .products-double-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
			

            .product-card .product-name {
                font-size: 14px;
            }

            .footer .footer-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .footer .footer-contacts {
                width: 100%;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 8px 16px;
            }

            .footer .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 440px;
            }

            .hero-content {
                padding: 20px 0 40px;
            }

            .hero-content h1 {
                font-size: 26px;
                letter-spacing: 0.5px;
            }

            .hero-content .sub-bold {
                font-size: 15px;
            }

            .hero-content .sub-light {
                font-size: 13px;
            }

            .products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
			
			
			    .products-double-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
			
			
			

            .product-card {
                padding: 10px 10px 14px;
            }

            .product-card .product-name {
                font-size: 12px;
            }

            .top-contacts .email {
                font-size: 13px;
            }

            .btn-chat {
                font-size: 13px;
                padding: 6px 16px;
            }

            .form-section {
            padding: 40px 0 50px;
			font-size: 38px;
            font-weight: 900;
            letter-spacing: 3px;
            text-align: center;
            color: #fff;
            margin-bottom: 48px;
            text-transform: uppercase;
            }
        }

.cookie-banner {
    position: fixed; /* Фиксируем позицию */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95); /* Темный фон */
    color: #fff;
    z-index: 9999; /* Чтобы баннер был поверх всего контента */
    font-size: 14px;
    display: none; /* Скрываем по умолчанию, JS покажет его при необходимости */
}

/* Контейнер для текста и кнопок внутри строки */
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

/* На мобильных экранах текст сверху, кнопки снизу */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Основной текст */
.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

/* Кнопки */
.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.cookie-btn:hover {
    opacity: 0.9;
}

/* Главная кнопка "Принять" */
.cookie-btn {
    background-color: #007bff; /* Синий цвет */
    color: white;
}

/* Вторичная кнопка "Отклонить" */
.cookie-btn--secondary {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #444;
}





.orange {
    color: #ff7a1a;
}

/* Вторую часть можно оставить белой явно, 
   если у всего сайта другой цвет текста по умолчанию */
h1 {
	font-size: 64px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}





h2 {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
    margin-bottom: 48px;
    text-transform: uppercase;
	
}




html {
    scroll-behavior: smooth;
}




        /* ===== HEADER / HERO ===== */
        .bnr {
            position: relative;
            background: url('bnner2.png') center / cover no-repeat;
            background-color: #12121a;
            min-height: 500px;
            display: flex;
            flex-direction: column;
        }






.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;                /* никаких отступов между наборами */
    width: max-content;
    animation: scrollCarousel 12s linear infinite;
    will-change: transform; /* для плавности */
}

.carousel-set {
    display: flex;
    gap: 20px;             /* отступы между картинками внутри набора */
}

.carousel-set img {
    flex-shrink: 0;
    height: 300px;
    width: auto;           /* или задайте фиксированную ширину */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    object-fit: cover;
}

@keyframes scrollCarousel {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Остановка при наведении */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Адаптив */
@media (max-width: 768px) {
    .carousel-set img {
        height: 200px;
    }
    .carousel-set {
        gap: 12px;
    }
}
