
        /* СБРОС И БАЗОВЫЕ СТИЛИ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background: #1a1f2e;
            color: #ffffff;
            line-height: 1.6;
        }

        /* ГЕРОЙ СЕКЦИЯ */
        .hero {
            background: linear-gradient(135deg, #2d3654 0%, #3a4568 100%);
            min-height: 8vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
             border-radius: 30px;
        }

        .hero-content {
            max-width: auto;
            width: 100%;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            color: #b8c2e0;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-image {
            max-width: 500px;
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .hero-image:hover {
            transform: scale(1.05);
        }

        /* СЕКЦИИ */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
             border-radius: 30px
        }

        .section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: bold;
        }

        /* СЕТКА ОСОБЕННОСТЕЙ */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
             border-radius: 30px
        }

        .feature {
            background: linear-gradient(145deg, #3a4568, #2d3654);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #4a5678;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .feature p {
            color: #b8c2e0;
        }

        /* УСТРОЙСТВА */
        .devices {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .device {
            background: rgba(255,255,255,0.05);
            padding: 30px 20px;
             border-radius: 30px
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .device-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .device h4 {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .device p {
            color: #b8c2e0;
            font-size: 0.9rem;
        }

        /* CTA */
        .cta {
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            padding: 80px 20px;
            text-align: center;
             border-radius: 30px
        }

        .cta h2 {
            color: white;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .cta-button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        /* ИНФО */
        .info {
            background: #2a3147;
            padding: 60px 20px;
             border-radius: 30px
        }

        .info-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info h3 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }

        .info p {
            margin-bottom: 20px;
            color: #b8c2e0;
        }

        .blog-link {
            color: #00c6ff;
            text-decoration: none;
            font-weight: bold;
        }

        .blog-link:hover {
            text-decoration: underline;
        }

        /* АДАПТИВНОСТЬ */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section h2 {
                font-size: 2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .devices {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .devices {
                grid-template-columns: 1fr;
            }
            
            .cta h2 {
                font-size: 1.8rem;
            }
        }
