* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            color: #f0f4ff;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 40px 0;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.05);
            padding: 8px 20px 8px 16px;
            border-radius: 60px;
            backdrop-filter: blur(4px);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(145deg, #2AABEE, #1e7cb3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 20px rgba(42,171,238,0.3);
        }

        .logo-png {
            width: 96px;
            height: 96px;
        }
        .youtube {
            width: 124px;
        }
        .shorts{
            width: 68px;
            height: 68px;
        }
        .reels{
            width: 68px;
            height: 68px;
        }
        .footer-logo-png {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            padding-left: 20px;
        }
        
        .logo-text span {
            color: #2AABEE;
        }

        .badge {
            background: rgba(42,171,238,0.2);
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            border: 1px solid rgba(42,171,238,0.5);
            color: #a0dcff;
        }

        /* Hero */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            padding: 60px 0 40px;
        }

        .video {
            width: 420px;
            height: 860px;
        }

        .hero-text {
            flex: 1;
            min-width: 280px;
        }

        .hero-text h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(to right, #ffffff, #a0dcff);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 24px;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #cbd5ff;
            margin-bottom: 32px;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background: #2AABEE;
            color: white;
            box-shadow: 0 10px 25px -5px rgba(42,171,238,0.4);
        }

        .btn-primary:hover {
            background: #1e8ec9;
            transform: scale(1.02);
            box-shadow: 0 15px 30px -5px rgba(42,171,238,0.5);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid #2AABEE;
            color: #2AABEE;
        }

        .btn-outline:hover {
            background: rgba(42,171,238,0.1);
            transform: scale(1.02);
        }

        .hero-image {
            flex: 1;
            min-width: 260px;
            text-align: center;
        }

        .mockup {
            background: linear-gradient(145deg, #ffffff08, #ffffff02);
            border-radius: 48px;
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
        }

        /* Платформы */
        .platforms {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 40px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin: 40px 0;
        }

        .platform {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .platform-icon {
            font-size: 2rem;
        }

        /* Преимущества */
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 48px;
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: rgba(255,255,255,0.03);
            border-radius: 32px;
            padding: 32px 24px;
            transition: all 0.2s;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.07);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: #b9c3f0;
        }

        /* Как работает */
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 50px 0;
        }

        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            background: rgba(42,171,238,0.05);
            padding: 28px 20px;
            border-radius: 28px;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: #2AABEE;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }

        /* Премиум */
        .premium-block {
            background: linear-gradient(135deg, #1e2a5e, #0f142e);
            border-radius: 48px;
            padding: 48px 32px;
            margin: 60px 0;
            text-align: center;
            border: 1px solid rgba(42,171,238,0.4);
        }

        /* Конкурс */
        .contest {
            background: rgba(255,215,0,0.08);
            border-radius: 40px;
            padding: 40px 28px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #ffd966;
        }

        /* Кнопка бота фикс */
        .fixed-bot-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #2AABEE;
            padding: 14px 24px;
            border-radius: 60px;
            color: white;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .fixed-bot-btn:hover {
            background: #1e8ec9;
            transform: scale(1.02);
        }

        footer {
            text-align: center;
            padding: 40px 0;
            color: #7a85b0;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 10px;
        }
        .footer-content p {
            margin-left: 10px;
        }

        @media (max-width: 680px) {
            .header {
                flex-direction: column;
                text-align: center;
            }
            .hero-text h1 {
                text-align: center;
            }
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .fixed-bot-btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }
        /* Видео внутри мокапа - полное отображение без обрезки */
        .hero-image .video {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 28px;
            background: #000000;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Эффект при наведении на видео */
        .hero-image .video:hover {
            transform: scale(1.01);
        }

        /* Увеличенный мокап и конструкция */
        .hero-image .mockup {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* Яркое свечение вокруг всего мокапа - всегда активно */
        .hero-image .mockup::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: radial-gradient(circle, rgba(42,171,238,0.4) 0%, rgba(42,171,238,0.15) 50%, transparent 80%);
            border-radius: 60px;
            filter: blur(20px);
            z-index: -1;
            animation: pulse 2s ease-in-out infinite;
        }

        /* Второй слой свечения для яркости */
        .hero-image .mockup::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: radial-gradient(circle, rgba(42,171,238,0.2) 0%, rgba(42,171,238,0.05) 60%, transparent 100%);
            border-radius: 55px;
            filter: blur(30px);
            z-index: -1;
            animation: pulse 2s ease-in-out infinite 0.5s;
        }

        /* Анимация пульсации свечения */
        @keyframes pulse {
            0%, 100% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
            }
        }

        /* Увеличенные размеры для десктопа */
        @media (min-width: 1200px) {
            .hero-image {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .hero-image .mockup {
                max-width: 520px;
                margin: 0 auto;
                transform: scale(1.05);
            }
            
            .hero-image .video {
                object-fit: contain;
                max-height: 750px;
                width: 100%;
                border-radius: 32px;
            }
            
            .hero-image .mockup > div {
                padding: 20px !important;
                border-radius: 48px !important;
            }
            
            .hero-image .mockup > div > div {
                border-radius: 32px !important;
                overflow: hidden;
                position: relative;
                background: #000000 !important;
            }
            
            /* Увеличенная тень */
            .hero-image .mockup > div {
                box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.5);
            }
        }

        /* Для планшетов и средних экранов */
        @media (max-width: 1199px) and (min-width: 769px) {
            .hero-image .mockup {
                max-width: 460px;
                margin: 0 auto;
                transform: scale(1.02);
            }
            
            .hero-image .video {
                max-height: 680px;
                border-radius: 28px;
            }
            
            .hero-image .mockup > div {
                padding: 18px !important;
                border-radius: 44px !important;
            }
            
            .hero-image .mockup > div > div {
                border-radius: 28px !important;
            }
        }

        @media (max-width: 768px) {
            .hero-image .mockup {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .hero-image .video {
                border-radius: 24px;
                max-height: 65vh;
            }
            
            .hero-image .mockup > div {
                padding: 16px !important;
                border-radius: 40px !important;
            }
            
            .hero-image .mockup > div > div {
                border-radius: 24px !important;
            }
        }

        @media (max-width: 480px) {
            .hero-image .mockup {
                max-width: 340px;
            }
            
            .hero-image .video {
                border-radius: 20px;
                max-height: 55vh;
            }
            
            .hero-image .mockup > div {
                padding: 14px !important;
                border-radius: 36px !important;
            }
            
            .hero-image .mockup > div > div {
                border-radius: 20px !important;
            }
        }

        /* Для очень маленьких телефонов */
        @media (max-width: 380px) {
            .hero-image .mockup {
                max-width: 300px;
            }
            
            .hero-image .mockup > div {
                padding: 12px !important;
                border-radius: 32px !important;
            }
            
            .hero-image .video {
                border-radius: 18px;
            }
            
            .hero-image .mockup > div > div {
                border-radius: 18px !important;
            }
        }

        /* Анимация появления видео */
        .hero-image .video {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Увеличенная тень для всего мокапа */
        .hero-image .mockup > div {
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5);
            transition: box-shadow 0.3s ease;
        }

        /* Эффект глянца на экране */
        .hero-image .mockup > div > div::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 40%);
            border-radius: inherit;
            pointer-events: none;
            z-index: 1;
        }

        /* Убираем старые свечения, которые были внутри */
        .hero-image .mockup > div > div::after {
            display: none;
        }

/* ============================================ */
/* АНИМАЦИИ ДЛЯ HEADER И HERO (НА ВЕСЬ ФОН) */
/* ============================================ */

/* Убираем ограничение контейнера для фона */
.container {
    position: relative;
    z-index: 2;
}

/* Общий фон для header и hero */
.header, .hero {
    position: relative;
    background: transparent !important;
}

/* Фоновые анимации для всей области */
body {
    position: relative;
}

/* Анимированные частицы на фоне для header и hero */
.header::before, .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.header::before {
    background: radial-gradient(ellipse at 20% 50%, rgba(42,171,238,0.08) 0%, transparent 60%);
    animation: headerGlow 8s ease-in-out infinite;
}

.hero::before {
    background: radial-gradient(ellipse at 80% 50%, rgba(42,171,238,0.1) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* ============================================ */
/* ИСПРАВЛЕННЫЕ ЛЕТАЮЩИЕ ИКОНКИ - БЕЗ НАГРОМОЖДЕНИЯ */
/* ============================================ */

/* Контейнер для иконок */
.social-icons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Стили для каждой иконки */
.floating-social-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    animation: floatSocial 20s linear forwards;
}

/* Ключевая анимация - плавное появление и движение */
@keyframes floatSocial {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.15;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    95% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-200px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Анимация для header и hero вместе */
.header, .hero {
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Добавляем фоновый шум для всей страницы */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(42,171,238,0.02) 0px,
        rgba(42,171,238,0.02) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
    z-index: 0;
}

/* Анимация появления для header */
.header {
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация для логотипа */
.logo {
    animation: logoPop 0.5s ease-out 0.2s both;
}

@keyframes logoPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Анимация для бейджа */
.badge {
    animation: badgeSlide 0.5s ease-out 0.3s both;
}

@keyframes badgeSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Пульсация для бейджа */
.badge {
    animation: badgeSlide 0.5s ease-out 0.3s both, badgePulse 2s ease-in-out infinite 1s;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(42,171,238, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(42,171,238, 0);
    }
}

/* Анимация для текста заголовка */
.hero-text h1 {
    background: linear-gradient(135deg, #ffffff 0%, #2AABEE 50%, #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientText 4s linear infinite, slideInFromLeft 0.8s ease-out;
}

@keyframes gradientText {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Эффект свечения для header при прокрутке */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Дополнительные анимации для hero */
.hero {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация для видео */
.video {
    position: relative;
    animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(42,171,238, 0);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(42,171,238, 0.3);
    }
}

/* Эффект ряби на фоне header */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42,171,238,0.5), transparent);
    animation: lineWave 3s ease-in-out infinite;
}

@keyframes lineWave {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .floating-social-icon {
        font-size: 18px;
    }
    
    @keyframes floatSocial {
        0% {
            transform: translateY(0) translateX(0) rotate(0deg);
            opacity: 0;
        }
        5% {
            opacity: 0.1;
        }
        10% {
            opacity: 0.15;
        }
        90% {
            opacity: 0.15;
        }
        100% {
            transform: translateY(-100px) translateX(50px) rotate(360deg);
            opacity: 0;
        }
    }
}

/* ============================================ */
/* РАСШИРЯЕМ ГРАНИЦЫ ДЛЯ СВЕЧЕНИЯ */
/* ============================================ */

/* Убираем overflow у всех родительских контейнеров */
.container,
.hero,
.hero-image,
.mockup {
    overflow: visible !important;
}

/* Расширяем hero-image, чтобы свечение не обрезалось */
.hero-image {
    overflow: visible !important;
    margin-right: -30px !important;
    padding-right: 30px !important;
    margin-left: -30px !important;
    padding-left: 30px !important;
}

/* Расширяем контейнер, если нужно */
.container {
    overflow: visible !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Увеличиваем зону свечения, чтобы она выходила за пределы */
.hero-image .mockup {
    position: relative;
    overflow: visible !important;
}

.hero-image .mockup::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(42,171,238,0.3) 0%, rgba(42,171,238,0.1) 50%, transparent 80%);
    border-radius: 60px;
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.hero-image .mockup::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -35px;
    right: -35px;
    bottom: -25px;
    background: radial-gradient(circle, rgba(42,171,238,0.15) 0%, rgba(42,171,238,0.05) 60%, transparent 100%);
    border-radius: 55px;
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

/* Убираем возможное ограничение по бокам у body */
body {
    overflow-x: hidden;
    position: relative;
}

/* Для десктопов увеличиваем вылет свечения */
@media (min-width: 1200px) {
    .hero-image {
        margin-right: -50px !important;
        padding-right: 50px !important;
        margin-left: -50px !important;
        padding-left: 50px !important;
    }
    
    .hero-image .mockup::before {
        left: -60px;
        right: -60px;
    }
    
    .hero-image .mockup::after {
        left: -50px;
        right: -50px;
    }
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .hero-image {
        margin-right: -15px !important;
        padding-right: 15px !important;
        margin-left: -15px !important;
        padding-left: 15px !important;
    }
    
    .hero-image .mockup::before {
        left: -25px;
        right: -25px;
    }
    
    .hero-image .mockup::after {
        left: -20px;
        right: -20px;
    }
}
/* ============================================ */
/* ПОЛНОСТЬЮ УБИРАЕМ ГРАНИЦЫ СВЕЧЕНИЯ */
/* ============================================ */

/* Удаляем все старые свечения */
.hero-image .mockup::before,
.hero-image .mockup::after,
.hero-image .mockup > div::before {
    display: none !important;
}

/* Создаём равномерное свечение со всех сторон */
.hero-image {
    position: relative;
    filter: drop-shadow(0 0 40px rgba(42,171,238, 0.3)) drop-shadow(0 0 80px rgba(42,171,238, 0.15));
}

/* Альтернативное свечение через box-shadow на самом мокапе */
.hero-image .mockup > div {
    position: relative;
    background: #1e243b !important;
    border-radius: 32px;
    box-shadow: 
        0 0 30px 10px rgba(42,171,238, 0.2),
        0 0 60px 20px rgba(42,171,238, 0.1),
        0 0 100px 30px rgba(42,171,238, 0.05);
    transition: box-shadow 0.3s ease;
}

/* Добавляем свечение через outline с размытием */
.hero-image .mockup {
    position: relative;
}

.hero-image .mockup::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: -20px !important;
    left: -20px !important;
    right: -20px !important;
    bottom: -20px !important;
    background: transparent !important;
    border-radius: 60px !important;
    box-shadow: 0 0 60px 30px rgba(42,171,238, 0.2) !important;
    filter: blur(20px) !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Самый простой и надёжный способ - тень на родителе */
.mockup {
    filter: drop-shadow(0 0 25px rgba(42,171,238, 0.25)) 
            drop-shadow(0 0 50px rgba(42,171,238, 0.15))
            drop-shadow(0 0 75px rgba(42,171,238, 0.05));
}

/* Убираем любые обрезки */
.hero, .hero-image, .mockup, .container {
    overflow: visible !important;
}

/* Для видео тоже убираем резкие тени */
.video {
    box-shadow: none !important;
}
/* ============================================ */
/* МОБИЛЬНАЯ ВЕРСИЯ - БЕЗ ТЯЖЁЛЫХ АНИМАЦИЙ */
/* ============================================ */

@media (max-width: 768px) {
    
    /* Отключаем все тяжёлые анимации для телефонов */
    .hero::before,
    .header::before,
    .hero-image .mockup::before,
    .hero-image .mockup::after,
    .hero-image::before,
    body::before {
        display: none !important;
        animation: none !important;
    }
    
    /* Отключаем летающие иконки на телефонах */
    .social-icons-container,
    .floating-social-icon {
        display: none !important;
    }
    
    /* Убираем все пульсации и сложные анимации */
    .video,
    .badge,
    .hero-text h1,
    .logo,
    .header,
    .hero {
        animation: none !important;
    }
    
    /* Убираем градиентную анимацию текста */
    .hero-text h1 {
        background: linear-gradient(135deg, #ffffff 0%, #2AABEE 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        animation: none !important;
    }
    
    /* Простое статическое свечение (лёгкое) */
    .hero-image .mockup > div {
        box-shadow: 0 0 15px 5px rgba(42,171,238, 0.15);
    }
    
    /* Убираем transform и переходы */
    .video:hover,
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none !important;
    }
    
    /* Упрощаем фон */
    body {
        background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    }
    
    /* Убираем лишние эффекты */
    .header::after,
    .hero::after {
        display: none !important;
    }
    
    /* Делаем видео легче */
    .video {
        filter: none !important;
        box-shadow: none !important;
    }
    
    /* Простая тень для мокапа вместо свечения */
    .mockup {
        filter: none !important;
    }
    
    /* Убираем все filter и blur */
    .hero-image .mockup,
    .hero-image .mockup > div,
    .video {
        filter: none !important;
        backdrop-filter: none !important;
    }
    
    /* Упрощаем кнопки */
    .btn-primary::before,
    .btn-outline::before {
        display: none !important;
    }
}

/* Для планшетов - оставляем лёгкие анимации */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Уменьшаем количество иконок */
    .floating-social-icon {
        opacity: 0.05 !important;
    }
    
    /* Упрощаем свечение */
    .hero-image .mockup::before {
        filter: blur(20px) !important;
        opacity: 0.3 !important;
    }
}