        /* Сброс базовых отступов (аккуратно, чтобы не сломать вашу текущую верстку) */
        .utp-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .utp-section {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #0a1a2f 0%, #0c2a3e 100%);
            color: #ffffff;
            padding: 3rem 1.5rem;
            border-radius: 10px 10px 10px 10px;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        /* Легкий декоративный элемент (опционально) */
        .utp-section::before {
            content: "";
            position: absolute;
            top: -30%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .utp-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Бренды — акцентные */
        .brands {
            font-size: 1.2rem;
            letter-spacing: 1px;
            color: #7ac7f0;
            margin-bottom: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }

        .brands span {
            background: rgba(255,255,255,0.12);
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
        }

        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }

        .h1-accent {
            color: #f9c74f;
            border-bottom: 3px solid #f9c74f;
            display: inline-block;
            padding-bottom: 2px;
        }

        .subtitle {
            font-size: 1.3rem;
            line-height: 1.4;
            margin-bottom: 1rem;
            font-weight: 400;
            color: #e0f2fe;
        }

        .subtitle strong {
            color: #ffffff;
            font-weight: 600;
        }

        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 2rem 0 2rem 0;
            list-style: none;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(2px);
            padding: 0.5rem 1.2rem;
            border-radius: 60px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .features-list li::before {
            content: "✓";
            color: #4cbf6e;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0 1rem 0;
        }

        .btn-primary {
            background-color: #f9c74f;
            color: #0a1a2f;
            padding: 0.9rem 2.2rem;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            background-color: #da9800;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.25);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 0.85rem 2rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 60px;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: #da9800;
        }

        .micro-text {
            font-size: 0.85rem;
            color: #b6d7f0;
            margin-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 1rem;
            display: inline-block;
        }

        /* Адаптив */
        @media (max-width: 768px) {
            .utp-section {
                padding: 2rem 1rem;
               }
            h1 {
                font-size: 1.9rem;
            }
            .subtitle {
                font-size: 1.1rem;
            }
            .brands span {
                font-size: 0.75rem;
            }
            .features-list li {
                font-size: 0.85rem;
                padding: 0.4rem 1rem;
            }
            .btn-primary, .btn-outline {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
        }