
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }


        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

     

        body {
            background-color: #0A0A0A;
            color: #FEFEFE;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }



@media (max-width: 768px) {
  #vanta-bg {
    display: none;
  }
}

        @supports (-webkit-touch-callout: none) {
         #vanta-bg {
            height: 100vh; /* Фикс для Safari */
            position: fixed;
          }
        }

        
          /* Vanta.js container styles */
        .vanta-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        #vanta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        @media (max-width: 768px) {
            .vanta-container {
                background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
            }
            #vanta-bg {
                display: none;
            }
        }


        /* Improved Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            margin-top: 20px;
            position: relative;
            z-index: 100;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 45px;
            height: 45px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: rotate(15deg) scale(1.1);
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo-link:hover {
            transform: scale(1.05);
        }

        .logo-link:hover .logo {
            animation: logoBounce 0.5s ease;
        }

        @keyframes logoBounce {
            0%, 100% { transform: rotate(0); }
            25% { transform: rotate(-15deg); }
            75% { transform: rotate(15deg); }
        }

        .logo_name {
            color: #FEFEFE;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #4a90e2, #8b6bff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Navigation */
        .nav {
            display: flex;
            gap: 3rem;
        }

        .nav__link {
            color: #FEFEFE;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav__link:hover {
            color: #4a90e2;
        }

        .nav__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #4a90e2;
            transition: width 0.3s ease;
        }

        .nav__link:hover::after {
            width: 100%;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icon {
            text-decoration: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .telegram { background-color: #0a0a0a; }
        .instagram { background: linear-gradient(45deg, #0a0a0a, #0a0a0a, #0a0a0a, #0a0a0a, #0a0a0a); }
        .email { background: linear-gradient(45deg, #0a0a0a, #0a0a0a); }


        /* Общие стили для всех устройств */
        .burger {
            display: none; /* По умолчанию скрыт */
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 101;
        }

        .burger span {
            display: block;
            width: 100%;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 80px 20px 20px;
            transition: left 0.5s ease;
            z-index: 100;
            display: none; /* По умолчанию скрыт */
            background-image: url('img/mobile-menu-bg.jpg'); /* Добавьте свою картинку */
            background-image: url('https://images.unsplash.com/photo-1677442135136-760c81364f3d?q=80&w=800');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay; /* Красивое наложение на темный фон */
            transition: left 0.5s ease, background-position 5s ease;




            /* Финальные стили для навбара (2024) удалить если что */

            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            background-image: 
                url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%2344d2ff" opacity="0.2" d="M20,100 Q100,20 180,100 T340,100" stroke="%23FFFFFF" stroke-width="0.5"/></svg>'),
                url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.7"/></svg>');
            background-size: 300% 300%, 2px 2px;
            animation: spaceMove 25s infinite linear, starsPulse 5s infinite alternate;
            background-blend-mode: overlay, screen;


        }

        @keyframes pulse {
            0% { background-position: 50% 50%; }
            50% { background-position: 55% 55%; }
            100% { background-position: 50% 50%; }
        }
        @media (prefers-color-scheme: dark) {
            .mobile-menu {
                background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
            }
        }
        .mobile-menu.active {
            background-position: 20% center; 
            animation: pulse 15s infinite ease-in-out;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }


        .mobile-nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }

        .mobile-social-icons {
            position: absolute;
            bottom: 30px;
            left: 20px;
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 0 20px; 
        }



        /* Анимации (работают на всех устройствах) */
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-menu.active {
            left: 0;
        }

        /* Мобильные стили (только для 768px и меньше) */
        @media (max-width: 768px) {
            
            
            /* Скрываем десктопные элементы */
            .nav, 
            .social-icons {
                display: none !important;
            }
            
            /* Показываем мобильные элементы */
            .burger,
            .mobile-menu {
                display: flex; /* Для бургера */
            }
            
            .mobile-menu {
                display: block; /* Для меню */
            }
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4rem 5%;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            z-index: 10;

        }

        .hero__content {
            max-width: 600px;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        .hero__title {
              font-size: clamp(2.5rem, 5vw, 4rem);
              font-weight: 800;
              line-height: 1.2;
              margin-bottom: 1.5rem;
              background: linear-gradient(90deg, #fff, #4a90e2);
             -webkit-background-clip: text;
              background-clip: text;
              color: transparent;
        }

        .hero__title-highlight {
                color: #4a90e2;
                position: relative;
                display: inline-block;
        }

        .hero__title-highlight::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 0;
                width: 100%;
                height: 8px;
                background-color: rgba(74, 144, 226, 0.3);
                z-index: -1;
                border-radius: 4px;
                transform: scaleX(0);
                transform-origin: left;
                animation: highlightExpand 1.5s ease-out forwards;
                animation-delay: 0.5s;
        }

        .hero__subtitle {
                font-size: clamp(1rem, 2vw, 1.3rem);
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 2.5rem;
                line-height: 1.6;
                max-width: 90%;
                text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .hero__cta {
            background: linear-gradient(135deg, #4a90e2 0%, #2a5a9e 100%);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
            position: relative;
            overflow: hidden;
        }

        .hero__cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .hero__cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(74, 144, 226, 0.5);
        }

        .hero__cta:hover::before { left: 100%; }
     
        .hero__cta:active { transform: translateY(-2px) scale(0.98); }
       
        .hero__cta-arrow { transition: transform 0.3s ease; }

        .hero__cta:hover .hero__cta-arrow { transform: translateX(5px); }
          

        .hero__visual {
            position: relative;
            width: 50%;
            height: 600px;
            z-index: 1;
        }

    


    

    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-20px) translateX(10px); }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes highlightExpand {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }

    /* Mobile Adaptation */
    @media (max-width: 992px) {
        .hero {
            flex-direction: column;
            text-align: center;
            padding: 6rem 5% 4rem;
        }

        .hero__content {
            max-width: 100%;
            margin-bottom: 3rem;
        }

        .hero__subtitle {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__title-highlight::after {
            bottom: 2px;
            height: 6px;
        }

       
    }

    @media (max-width: 576px) {
        .hero__title {
            font-size: 2.2rem;
        }

        .hero__cta {
            margin: 0 auto;
        }

        .node {
            width: 8px;
            height: 8px;
        }
    }


      
        .education {
            padding: 80px 5%;
            background: radial-gradient(circle at 20% 50%, rgba(8, 16, 26, 0.8) 0%, rgba(10, 12, 18, 1) 100%);
        }

        .header-bg {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            font-size: 2.5rem;
            background: linear-gradient(90deg, #fff, #4a90e2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            font-weight: 300;
        }

        .cards-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card-row {
            display: flex;
            gap: 30px;
        }

        .edu-card {
            flex: 1;
            min-height: 280px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 24px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .edu-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .edu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(74, 144, 226, 0.3);
        }

        .edu-card:hover::before {
            opacity: 1;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .card-content h3 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .card-content p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #4a90e2;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .card-link svg {
            transition: transform 0.3s ease;
        }

        .card-link:hover {
            color: #fff;
        }

        .card-link:hover svg {
            transform: translateX(4px);
        }

        /* Специфичные фоны карточек */
        #mentor-card { background: rgba(8, 16, 26, 0.6); }
        #simulator-card { background: rgba(19, 26, 35, 0.6); }
        #community-card { background: rgba(25, 26, 35, 0.6); }
        #certificate-card { background: rgba(30, 22, 41, 0.6); }

        /* Адаптивность */
        @media (max-width: 992px) {
            .card-row {
                flex-direction: column;
            }
            
            .edu-card {
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .header-bg {
                padding: 20px;
                margin-bottom: 40px;
            }
        }


        #mentor-card:hover { background: linear-gradient(135deg, rgba(8, 16, 26, 0.8), rgba(10, 40, 80, 0.6)); }
        #simulator-card:hover { background: linear-gradient(135deg, rgba(19, 26, 35, 0.8), rgba(30, 40, 60, 0.6)); }

        .section-title {
                font-size: 2.8rem;
                letter-spacing: -0.5px;
                font-weight: 700;
        }

        .card-content h3 {
                 font-size: 1.6rem;
                 font-weight: 600;
                 letter-spacing: -0.3px;
                 margin-bottom: 12px;
        }


        .edu-card {
    position: relative;
    z-index: 1;
}

.edu-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(74, 144, 226, 0.8), 
        rgba(138, 107, 255, 0.6),
        transparent 70%);
    z-index: -1;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edu-card:hover::after {
    opacity: 1;
}


.card-link {
    position: relative;
    width: fit-content;
}

.card-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.card-link:hover::before {
    width: 100%;
}



.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-row {
    display: contents; /* Убираем ряды, используем только grid */
}

@media (min-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Общие мобильные стили */
@media (max-width: 992px) {
    .education {
        padding: 40px 20px;
    }
    
    .header-bg {
        padding: 20px 15px;
        margin-bottom: 30px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Мобильная карусель */
.cards-mobile {
    display: none;
}

@media (max-width: 992px) {
    .cards-desktop {
        display: none;
    }
    
    .cards-mobile {
        display: block;
        padding: 0 10px 40px;
    }
    
    .edu-card {
        min-height: 240px;
        padding: 30px;
        margin: 0 10px;
        width: calc(100% - 20px) !important;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .card-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .swiper-pagination {
        bottom: 0 !important;
    }
    
    .swiper-pagination-bullet {
        background: rgba(255,255,255,0.5) !important;
        opacity: 1 !important;
    }
    
    .swiper-pagination-bullet-active {
        background: #4a90e2 !important;
        width: 20px;
        border-radius: 4px;
    }
}

/* Особые стили для очень маленьких экранов */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .edu-card {
        padding: 25px;
        min-height: 220px;
    }
}

/* Общие стили */
.pricing-section {
    padding: 80px 20px;
    background: #0A0A0A;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.section-title_cart {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    background: linear-gradient(90deg, #4a90e2, #8b6bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Сетка карточек */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Стили карточек */
.price-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    padding: 70px 30px 30px;
    width: 350px;
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.5);
    background: rgba(40, 40, 40, 0.9);
}

.price-card.premium {
    border-color: rgba(74, 144, 226, 0.5);
}

.price-card.premium:hover {
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.8);
}

/* Тег плана */
.plan-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(74, 144, 226, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-card:hover .plan-tag {
    background: rgba(74, 144, 226, 0.5);
    transform: translateY(-3px);
}

.price-card.premium .plan-tag {
    background: rgba(74, 144, 226, 0.7);
}

/* Шапка карточки */
.card-header {
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.price-card:hover .card-header {
    transform: scale(1.02);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    transition: all 0.3s ease;
}

.price-card:hover .duration {
    color: rgba(255, 255, 255, 0.9);
}

/* Цена */
.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.price-card:hover .price {
    color: #4a90e2;
    transform: scale(1.05);
}

.price-card.premium:hover .price {
    color: #8b6bff;
}

/* Разделитель */
.divider {
    height: 1px;
    background: rgba(74, 144, 226, 0.3);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.price-card:hover .divider {
    background: rgba(74, 144, 226, 0.7);
    height: 2px;
}

/* Особенности */
.features {
    margin-bottom: 20px;
}

.features h4 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover .features h4 {
    transform: translateX(5px);
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover .features li {
    transform: translateX(5px);
}

.features li::before {
    content: '•';
    color: #4a90e2;
    position: absolute;
    left: 10px;
    transition: all 0.3s ease;
}

.price-card:hover .features li::before {
    color: #8b6bff;
    transform: scale(1.3);
}

/* Кнопка */
.action-btn {
    display: block;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.price-card .action-btn {
    transform: translateY(10px);
    opacity: 0.9;
}

.price-card:hover .action-btn {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(90deg, #4a90e2, #5d9eff);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.price-card.premium .action-btn {
    background: #8b6bff;
}

.price-card.premium:hover .action-btn {
    background: linear-gradient(90deg, #8b6bff, #9d7dff);
    box-shadow: 0 5px 15px rgba(139, 107, 255, 0.4);
}

.action-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 20px rgba(74, 144, 226, 0.5) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .price-card {
        padding: 60px 20px 25px;
    }
}


/* Products Section */
.products-section {
    padding: 60px 8%;
    background: #0A0A0A;
}

.products-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
}

.product-card {
    width: 700px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: space-between;
    padding: 40px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.product-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4a90e2, #8b6bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 1.2rem;
    align-self: flex-start;
    position: relative;
    transition: all 0.3s ease;
}

.product-link::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: #8b6bff;
}

.product-link:hover::after {
    transform: translateX(5px);
}

.product-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-icon img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.3));
    transition: all 0.3s ease;
}

.product-card:hover .product-icon img {
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.5));
    transform: scale(1.05);
}

.features {
    margin-bottom: 20px;
    min-height: 320px; 
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        height: auto;
        flex-direction: column;
        padding: 30px;
    }
    
    .product-icon {
        width: 100px;
        height: 100px;
        margin-top: 20px;
    }
}

/* Social Section */
.social-section {
    padding: 40px 8%;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    width: calc(33.333% - 30px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-card.telegram:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
}

.social-card.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
}

.social-card.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.social-card.telegram .social-icon {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.social-card.instagram .social-icon {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
}

.social-card.youtube .social-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-content {
    flex: 1;
}

.social-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.social-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-card:hover .social-arrow {
    color: white;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 60px 8% 30px;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.5), transparent);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo .logo_name {
    color: #FEFEFE;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #4a90e2, #8b6bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-icon.telegram { background-color: #0088cc; }
.footer-social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-icon.youtube { background-color: #ff0000; }

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-nav, .footer-contacts, .footer-subscribe {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #8b6bff);
}

.footer-nav ul, .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li, .footer-contacts li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #4a90e2;
    padding-left: 5px;
}

.footer-contacts li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contacts i {
    width: 20px;
    color: #4a90e2;
}

.subscribe-form {
    display: flex;
    margin-bottom: 20px;
}

.subscribe-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
    color: white;
    font-size: 0.9rem;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    background: linear-gradient(90deg, #4a90e2, #8b6bff);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 30px;
    line-height: 1.6;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #4a90e2;
}


